{
"cells": [
{
"cell_type": "markdown",
"id": "03c87582",
"metadata": {},
"source": [
"# Python API Example - Access DES Hub Netbacks \n",
"\n",
"__N.B. This guide is just for Access DES Hub Netbacks. If you're looking for other API data products (such as Contract prices, Freight routes or Netbacks), please refer to their according code example files.__ "
]
},
{
"cell_type": "markdown",
"id": "21bd6181",
"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"
]
},
{
"cell_type": "markdown",
"id": "0037c795",
"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": 123,
"id": "5cbcba1b",
"metadata": {},
"outputs": [],
"source": [
"# import libraries for callin the API\n",
"import json\n",
"import os\n",
"import sys\n",
"import pandas as pd\n",
"from base64 import b64encode\n",
"from urllib.parse import urljoin\n",
"from pprint import pprint\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": 124,
"id": "b7442d2b",
"metadata": {},
"outputs": [],
"source": [
"# defining query functions \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(\n",
" client_id[:5], client_secret[:5]\n",
" )\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",
" print(f\"Fetching {url}\")\n",
"\n",
" # HTTP GET 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:access\",\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": "9b4b250b",
"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.\n",
"\n",
"The code then prints the available prices that are callable from the API, and their corresponding Python ticker names are displayed as a list at the bottom of the Output."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "3ec2647c",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
">>>> Found credentials!\n",
">>>> Client_id=01c23****, client_secret=80763****\n",
">>>> Successfully fetched an access token eyJhb****, valid 604799 seconds.\n"
]
}
],
"source": [
"# Insert file path to your client credentials here\n",
"client_id, client_secret = retrieve_credentials(file_path=\"/tmp/client_credentials.csv\")\n",
"\n",
"# Authenticate:\n",
"access_token = get_access_token(client_id, client_secret)"
]
},
{
"cell_type": "markdown",
"id": "e0328738",
"metadata": {},
"source": [
"## 2. Importing Data\n",
"Here we define the function to call the DES Hub Netbacks endpoint. The only required parameter is \"unit\", which can be set as \"usd-per-mmbtu\" or \"eur-per-mwh\". For full details on the input parameters, please refer to our API Website:\n",
"\n",
"https://www.sparkcommodities.com/api/lng-access/des-hub-netbacks.html"
]
},
{
"cell_type": "code",
"execution_count": 126,
"id": "35759cdd",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Fetching https://api.sparkcommodities.com/beta/access/des-hub-netbacks/?unit=usd-per-mmbtu\n"
]
}
],
"source": [
"## Defining the function to import the data\n",
"\n",
"def fetch_price_releases(access_token, unit, limit=None, offset=None, terminal=None):\n",
" \n",
" query_params = \"?unit={}\".format(unit)\n",
" if limit is not None:\n",
" query_params += \"&limit={}\".format(limit)\n",
" if offset is not None:\n",
" query_params += \"&offset={}\".format(offset)\n",
" if terminal is not None:\n",
" query_params += \"&terminal={}\".format(terminal)\n",
"\n",
"\n",
" content = do_api_get_query(\n",
" uri=\"/beta/access/des-hub-netbacks/{}\".format(query_params), access_token=access_token\n",
" )\n",
"\n",
" return content\n",
"\n",
"\n",
"## Calling that function and storing the output\n",
"historical = fetch_price_releases(access_token, unit='usd-per-mmbtu')"
]
},
{
"cell_type": "code",
"execution_count": 127,
"id": "1c5828a8",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{'errors': [],\n",
" 'data': [{'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.608',\n",
" 'netbackOutright': '10.917',\n",
" 'totalRegasificationCost': '1.401',\n",
" 'slotUnloadStorageRegas': '1.098',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.093',\n",
" 'entryCapacity': '0.122',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.535',\n",
" 'netbackOutright': '11.06',\n",
" 'totalRegasificationCost': '1.402',\n",
" 'slotUnloadStorageRegas': '1.098',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.094',\n",
" 'entryCapacity': '0.122',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.681',\n",
" 'netbackOutright': '10.997',\n",
" 'totalRegasificationCost': '1.402',\n",
" 'slotUnloadStorageRegas': '1.098',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.094',\n",
" 'entryCapacity': '0.122',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.707',\n",
" 'netbackOutright': '11.122',\n",
" 'totalRegasificationCost': '1.403',\n",
" 'slotUnloadStorageRegas': '1.098',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.095',\n",
" 'entryCapacity': '0.122',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.908',\n",
" 'netbackOutright': '11.051',\n",
" 'totalRegasificationCost': '1.402',\n",
" 'slotUnloadStorageRegas': '1.098',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.094',\n",
" 'entryCapacity': '0.122',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.942',\n",
" 'netbackOutright': '11.233',\n",
" 'totalRegasificationCost': '1.403',\n",
" 'slotUnloadStorageRegas': '1.098',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.095',\n",
" 'entryCapacity': '0.122',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.883',\n",
" 'netbackOutright': '11.392',\n",
" 'totalRegasificationCost': '1.405',\n",
" 'slotUnloadStorageRegas': '1.098',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.097',\n",
" 'entryCapacity': '0.122',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.885',\n",
" 'netbackOutright': '11.426',\n",
" 'totalRegasificationCost': '1.405',\n",
" 'slotUnloadStorageRegas': '1.098',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.097',\n",
" 'entryCapacity': '0.122',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.854',\n",
" 'netbackOutright': '11.471',\n",
" 'totalRegasificationCost': '1.405',\n",
" 'slotUnloadStorageRegas': '1.098',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.097',\n",
" 'entryCapacity': '0.122',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.774',\n",
" 'netbackOutright': '11.383',\n",
" 'totalRegasificationCost': '1.405',\n",
" 'slotUnloadStorageRegas': '1.098',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.097',\n",
" 'entryCapacity': '0.122',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.574',\n",
" 'netbackOutright': '10.661',\n",
" 'totalRegasificationCost': '1.399',\n",
" 'slotUnloadStorageRegas': '1.098',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.091',\n",
" 'entryCapacity': '0.122',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.665',\n",
" 'netbackOutright': '10.323',\n",
" 'totalRegasificationCost': '1.397',\n",
" 'slotUnloadStorageRegas': '1.098',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.089',\n",
" 'entryCapacity': '0.122',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.792',\n",
" 'netbackOutright': '10.733',\n",
" 'totalRegasificationCost': '1.028',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.795',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.083',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.769',\n",
" 'netbackOutright': '10.826',\n",
" 'totalRegasificationCost': '1.029',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.795',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.084',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.778',\n",
" 'netbackOutright': '10.9',\n",
" 'totalRegasificationCost': '1.029',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.795',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.084',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.757',\n",
" 'netbackOutright': '11.072',\n",
" 'totalRegasificationCost': '1.03',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.795',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.085',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.665',\n",
" 'netbackOutright': '11.294',\n",
" 'totalRegasificationCost': '1.058',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.796',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.112',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.518',\n",
" 'netbackOutright': '11.657',\n",
" 'totalRegasificationCost': '1.062',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.796',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.116',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.631',\n",
" 'netbackOutright': '11.644',\n",
" 'totalRegasificationCost': '1.061',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.796',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.115',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.701',\n",
" 'netbackOutright': '11.61',\n",
" 'totalRegasificationCost': '1.061',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.796',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.115',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.612',\n",
" 'netbackOutright': '11.713',\n",
" 'totalRegasificationCost': '1.062',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.796',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.116',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.45',\n",
" 'netbackOutright': '11.707',\n",
" 'totalRegasificationCost': '1.062',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.796',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.116',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.616',\n",
" 'netbackOutright': '10.619',\n",
" 'totalRegasificationCost': '1.052',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.796',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.106',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.566',\n",
" 'netbackOutright': '10.422',\n",
" 'totalRegasificationCost': '1.05',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.796',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.104',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.942',\n",
" 'netbackOutright': '10.583',\n",
" 'totalRegasificationCost': '1.178',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.302',\n",
" 'entryCapacity': '0.312',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.92',\n",
" 'netbackOutright': '10.675',\n",
" 'totalRegasificationCost': '1.18',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.304',\n",
" 'entryCapacity': '0.312',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.931',\n",
" 'netbackOutright': '10.747',\n",
" 'totalRegasificationCost': '1.182',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.306',\n",
" 'entryCapacity': '0.312',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.913',\n",
" 'netbackOutright': '10.916',\n",
" 'totalRegasificationCost': '1.186',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.31',\n",
" 'entryCapacity': '0.312',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.8',\n",
" 'netbackOutright': '11.159',\n",
" 'totalRegasificationCost': '1.193',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.317',\n",
" 'entryCapacity': '0.312',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.658',\n",
" 'netbackOutright': '11.517',\n",
" 'totalRegasificationCost': '1.202',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.326',\n",
" 'entryCapacity': '0.312',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.772',\n",
" 'netbackOutright': '11.503',\n",
" 'totalRegasificationCost': '1.202',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.326',\n",
" 'entryCapacity': '0.312',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.841',\n",
" 'netbackOutright': '11.47',\n",
" 'totalRegasificationCost': '1.201',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.325',\n",
" 'entryCapacity': '0.312',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.754',\n",
" 'netbackOutright': '11.571',\n",
" 'totalRegasificationCost': '1.204',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.328',\n",
" 'entryCapacity': '0.312',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.591',\n",
" 'netbackOutright': '11.566',\n",
" 'totalRegasificationCost': '1.203',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.327',\n",
" 'entryCapacity': '0.312',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.739',\n",
" 'netbackOutright': '10.496',\n",
" 'totalRegasificationCost': '1.175',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.299',\n",
" 'entryCapacity': '0.312',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.686',\n",
" 'netbackOutright': '10.302',\n",
" 'totalRegasificationCost': '1.17',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.294',\n",
" 'entryCapacity': '0.312',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.099',\n",
" 'netbackOutright': '10.426',\n",
" 'totalRegasificationCost': '0.725',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.069',\n",
" 'netbackOutright': '10.526',\n",
" 'totalRegasificationCost': '0.725',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.073',\n",
" 'netbackOutright': '10.605',\n",
" 'totalRegasificationCost': '0.725',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.097',\n",
" 'netbackOutright': '10.732',\n",
" 'totalRegasificationCost': '0.725',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.169',\n",
" 'netbackOutright': '10.79',\n",
" 'totalRegasificationCost': '0.725',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.095',\n",
" 'netbackOutright': '11.08',\n",
" 'totalRegasificationCost': '0.725',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.101',\n",
" 'netbackOutright': '11.174',\n",
" 'totalRegasificationCost': '0.725',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.055',\n",
" 'netbackOutright': '11.256',\n",
" 'totalRegasificationCost': '0.725',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.097',\n",
" 'netbackOutright': '11.228',\n",
" 'totalRegasificationCost': '0.725',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.129',\n",
" 'netbackOutright': '11.028',\n",
" 'totalRegasificationCost': '0.725',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-0.828',\n",
" 'netbackOutright': '10.407',\n",
" 'totalRegasificationCost': '0.727',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-0.878',\n",
" 'netbackOutright': '10.11',\n",
" 'totalRegasificationCost': '0.727',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.772',\n",
" 'netbackOutright': '10.753',\n",
" 'totalRegasificationCost': '0.772',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.553',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.107',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.112',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.781',\n",
" 'netbackOutright': '10.814',\n",
" 'totalRegasificationCost': '0.781',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.553',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.116',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.112',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.786',\n",
" 'netbackOutright': '10.892',\n",
" 'totalRegasificationCost': '0.786',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.553',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.121',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.112',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.801',\n",
" 'netbackOutright': '11.028',\n",
" 'totalRegasificationCost': '0.801',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.553',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.136',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.112',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.799',\n",
" 'netbackOutright': '11.16',\n",
" 'totalRegasificationCost': '0.799',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.553',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.134',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.112',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.859',\n",
" 'netbackOutright': '11.316',\n",
" 'totalRegasificationCost': '0.859',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.562',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.185',\n",
" 'entryCapacity': '0.112',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.861',\n",
" 'netbackOutright': '11.414',\n",
" 'totalRegasificationCost': '0.861',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.562',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.187',\n",
" 'entryCapacity': '0.112',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.864',\n",
" 'netbackOutright': '11.447',\n",
" 'totalRegasificationCost': '0.864',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.565',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.187',\n",
" 'entryCapacity': '0.112',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.865',\n",
" 'netbackOutright': '11.46',\n",
" 'totalRegasificationCost': '0.865',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.565',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.188',\n",
" 'entryCapacity': '0.112',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.862',\n",
" 'netbackOutright': '11.295',\n",
" 'totalRegasificationCost': '0.862',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.565',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.185',\n",
" 'entryCapacity': '0.112',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.848',\n",
" 'netbackOutright': '10.387',\n",
" 'totalRegasificationCost': '0.848',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.565',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.171',\n",
" 'entryCapacity': '0.112',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.844',\n",
" 'netbackOutright': '10.144',\n",
" 'totalRegasificationCost': '0.844',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.565',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.167',\n",
" 'entryCapacity': '0.112',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.776',\n",
" 'netbackOutright': '10.749',\n",
" 'totalRegasificationCost': '0.402',\n",
" 'slotUnloadStorageRegas': '0.24',\n",
" 'slotBerth': '0.029',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.746',\n",
" 'netbackOutright': '10.849',\n",
" 'totalRegasificationCost': '0.402',\n",
" 'slotUnloadStorageRegas': '0.24',\n",
" 'slotBerth': '0.029',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.75',\n",
" 'netbackOutright': '10.928',\n",
" 'totalRegasificationCost': '0.402',\n",
" 'slotUnloadStorageRegas': '0.24',\n",
" 'slotBerth': '0.029',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.774',\n",
" 'netbackOutright': '11.055',\n",
" 'totalRegasificationCost': '0.402',\n",
" 'slotUnloadStorageRegas': '0.24',\n",
" 'slotBerth': '0.029',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.847',\n",
" 'netbackOutright': '11.112',\n",
" 'totalRegasificationCost': '0.403',\n",
" 'slotUnloadStorageRegas': '0.24',\n",
" 'slotBerth': '0.029',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.773',\n",
" 'netbackOutright': '11.402',\n",
" 'totalRegasificationCost': '0.403',\n",
" 'slotUnloadStorageRegas': '0.24',\n",
" 'slotBerth': '0.029',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.779',\n",
" 'netbackOutright': '11.496',\n",
" 'totalRegasificationCost': '0.403',\n",
" 'slotUnloadStorageRegas': '0.24',\n",
" 'slotBerth': '0.029',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.733',\n",
" 'netbackOutright': '11.578',\n",
" 'totalRegasificationCost': '0.403',\n",
" 'slotUnloadStorageRegas': '0.24',\n",
" 'slotBerth': '0.029',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.775',\n",
" 'netbackOutright': '11.55',\n",
" 'totalRegasificationCost': '0.403',\n",
" 'slotUnloadStorageRegas': '0.24',\n",
" 'slotBerth': '0.029',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.807',\n",
" 'netbackOutright': '11.35',\n",
" 'totalRegasificationCost': '0.403',\n",
" 'slotUnloadStorageRegas': '0.24',\n",
" 'slotBerth': '0.029',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.505',\n",
" 'netbackOutright': '10.73',\n",
" 'totalRegasificationCost': '0.404',\n",
" 'slotUnloadStorageRegas': '0.24',\n",
" 'slotBerth': '0.029',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.555',\n",
" 'netbackOutright': '10.433',\n",
" 'totalRegasificationCost': '0.404',\n",
" 'slotUnloadStorageRegas': '0.24',\n",
" 'slotBerth': '0.029',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.539',\n",
" 'netbackOutright': '10.986',\n",
" 'totalRegasificationCost': '0.539',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.416',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.111',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.537',\n",
" 'netbackOutright': '11.058',\n",
" 'totalRegasificationCost': '0.537',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.416',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.109',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.531',\n",
" 'netbackOutright': '11.147',\n",
" 'totalRegasificationCost': '0.531',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.416',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.539',\n",
" 'netbackOutright': '11.29',\n",
" 'totalRegasificationCost': '0.539',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.416',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.111',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.56',\n",
" 'netbackOutright': '11.399',\n",
" 'totalRegasificationCost': '0.56',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.416',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.132',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.617',\n",
" 'netbackOutright': '11.558',\n",
" 'totalRegasificationCost': '0.617',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.416',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.189',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.674',\n",
" 'netbackOutright': '11.601',\n",
" 'totalRegasificationCost': '0.674',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.416',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.246',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.725',\n",
" 'netbackOutright': '11.586',\n",
" 'totalRegasificationCost': '0.725',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.416',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.297',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.667',\n",
" 'netbackOutright': '11.658',\n",
" 'totalRegasificationCost': '0.667',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.416',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.239',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.635',\n",
" 'netbackOutright': '11.522',\n",
" 'totalRegasificationCost': '0.635',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.416',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.207',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.577',\n",
" 'netbackOutright': '10.658',\n",
" 'totalRegasificationCost': '0.577',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.416',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.564',\n",
" 'netbackOutright': '10.424',\n",
" 'totalRegasificationCost': '0.564',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.416',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.137',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.633',\n",
" 'netbackOutright': '9.892',\n",
" 'totalRegasificationCost': '1.277',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.268',\n",
" 'gasInKind': '0.169',\n",
" 'entryCapacity': '0.506',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.975',\n",
" 'netbackOutright': '9.62',\n",
" 'totalRegasificationCost': '1.412',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.405',\n",
" 'gasInKind': '0.167',\n",
" 'entryCapacity': '0.506',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.908',\n",
" 'netbackOutright': '9.77',\n",
" 'totalRegasificationCost': '1.418',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.409',\n",
" 'gasInKind': '0.169',\n",
" 'entryCapacity': '0.506',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.611',\n",
" 'netbackOutright': '10.218',\n",
" 'totalRegasificationCost': '1.304',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.29',\n",
" 'gasInKind': '0.174',\n",
" 'entryCapacity': '0.506',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.652',\n",
" 'netbackOutright': '10.307',\n",
" 'totalRegasificationCost': '1.28',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.246',\n",
" 'gasInKind': '0.175',\n",
" 'entryCapacity': '0.474',\n",
" 'commodityCharge': '0.08',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.954',\n",
" 'netbackOutright': '11.221',\n",
" 'totalRegasificationCost': '1.247',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.199',\n",
" 'gasInKind': '0.189',\n",
" 'entryCapacity': '0.474',\n",
" 'commodityCharge': '0.08',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.788',\n",
" 'netbackOutright': '11.487',\n",
" 'totalRegasificationCost': '1.241',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.189',\n",
" 'gasInKind': '0.193',\n",
" 'entryCapacity': '0.474',\n",
" 'commodityCharge': '0.08',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.75',\n",
" 'netbackOutright': '11.561',\n",
" 'totalRegasificationCost': '1.257',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.195',\n",
" 'gasInKind': '0.194',\n",
" 'entryCapacity': '0.474',\n",
" 'commodityCharge': '0.08',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.79',\n",
" 'netbackOutright': '11.535',\n",
" 'totalRegasificationCost': '1.265',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.203',\n",
" 'gasInKind': '0.194',\n",
" 'entryCapacity': '0.474',\n",
" 'commodityCharge': '0.08',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.053',\n",
" 'netbackOutright': '11.104',\n",
" 'totalRegasificationCost': '1.266',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.211',\n",
" 'gasInKind': '0.187',\n",
" 'entryCapacity': '0.474',\n",
" 'commodityCharge': '0.08',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.028',\n",
" 'netbackOutright': '10.207',\n",
" 'totalRegasificationCost': '1.212',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.171',\n",
" 'gasInKind': '0.173',\n",
" 'entryCapacity': '0.474',\n",
" 'commodityCharge': '0.08',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.377',\n",
" 'netbackOutright': '9.611',\n",
" 'totalRegasificationCost': '1.223',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.191',\n",
" 'gasInKind': '0.164',\n",
" 'entryCapacity': '0.474',\n",
" 'commodityCharge': '0.08',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.327',\n",
" 'netbackOutright': '10.198',\n",
" 'totalRegasificationCost': '0.953',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.286',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.299',\n",
" 'netbackOutright': '10.296',\n",
" 'totalRegasificationCost': '0.955',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.288',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.306',\n",
" 'netbackOutright': '10.372',\n",
" 'totalRegasificationCost': '0.958',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.291',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.333',\n",
" 'netbackOutright': '10.496',\n",
" 'totalRegasificationCost': '0.961',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.294',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.406',\n",
" 'netbackOutright': '10.553',\n",
" 'totalRegasificationCost': '0.962',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.295',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.34',\n",
" 'netbackOutright': '10.835',\n",
" 'totalRegasificationCost': '0.97',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.303',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.348',\n",
" 'netbackOutright': '10.927',\n",
" 'totalRegasificationCost': '0.972',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.305',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.304',\n",
" 'netbackOutright': '11.007',\n",
" 'totalRegasificationCost': '0.974',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.307',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.345',\n",
" 'netbackOutright': '10.98',\n",
" 'totalRegasificationCost': '0.973',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.306',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.372',\n",
" 'netbackOutright': '10.785',\n",
" 'totalRegasificationCost': '0.968',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.301',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.055',\n",
" 'netbackOutright': '10.18',\n",
" 'totalRegasificationCost': '0.954',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.285',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.098',\n",
" 'netbackOutright': '9.89',\n",
" 'totalRegasificationCost': '0.947',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.278',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.793',\n",
" 'netbackOutright': '10.732',\n",
" 'totalRegasificationCost': '0.419',\n",
" 'slotUnloadStorageRegas': '0.217',\n",
" 'slotBerth': '0.026',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.017',\n",
" 'gasInKind': '0.056',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.764',\n",
" 'netbackOutright': '10.831',\n",
" 'totalRegasificationCost': '0.42',\n",
" 'slotUnloadStorageRegas': '0.217',\n",
" 'slotBerth': '0.026',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.017',\n",
" 'gasInKind': '0.057',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.768',\n",
" 'netbackOutright': '10.91',\n",
" 'totalRegasificationCost': '0.42',\n",
" 'slotUnloadStorageRegas': '0.217',\n",
" 'slotBerth': '0.026',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.017',\n",
" 'gasInKind': '0.057',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.793',\n",
" 'netbackOutright': '11.036',\n",
" 'totalRegasificationCost': '0.421',\n",
" 'slotUnloadStorageRegas': '0.217',\n",
" 'slotBerth': '0.026',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.017',\n",
" 'gasInKind': '0.058',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.865',\n",
" 'netbackOutright': '11.094',\n",
" 'totalRegasificationCost': '0.421',\n",
" 'slotUnloadStorageRegas': '0.217',\n",
" 'slotBerth': '0.026',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.017',\n",
" 'gasInKind': '0.058',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.792',\n",
" 'netbackOutright': '11.383',\n",
" 'totalRegasificationCost': '0.422',\n",
" 'slotUnloadStorageRegas': '0.217',\n",
" 'slotBerth': '0.026',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.017',\n",
" 'gasInKind': '0.059',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.799',\n",
" 'netbackOutright': '11.476',\n",
" 'totalRegasificationCost': '0.423',\n",
" 'slotUnloadStorageRegas': '0.217',\n",
" 'slotBerth': '0.026',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.017',\n",
" 'gasInKind': '0.06',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.753',\n",
" 'netbackOutright': '11.558',\n",
" 'totalRegasificationCost': '0.423',\n",
" 'slotUnloadStorageRegas': '0.217',\n",
" 'slotBerth': '0.026',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.017',\n",
" 'gasInKind': '0.06',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.795',\n",
" 'netbackOutright': '11.53',\n",
" 'totalRegasificationCost': '0.423',\n",
" 'slotUnloadStorageRegas': '0.217',\n",
" 'slotBerth': '0.026',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.017',\n",
" 'gasInKind': '0.06',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.826',\n",
" 'netbackOutright': '11.331',\n",
" 'totalRegasificationCost': '0.422',\n",
" 'slotUnloadStorageRegas': '0.217',\n",
" 'slotBerth': '0.026',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.017',\n",
" 'gasInKind': '0.059',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.522',\n",
" 'netbackOutright': '10.713',\n",
" 'totalRegasificationCost': '0.421',\n",
" 'slotUnloadStorageRegas': '0.217',\n",
" 'slotBerth': '0.026',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.017',\n",
" 'gasInKind': '0.056',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.57',\n",
" 'netbackOutright': '10.418',\n",
" 'totalRegasificationCost': '0.419',\n",
" 'slotUnloadStorageRegas': '0.217',\n",
" 'slotBerth': '0.026',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.017',\n",
" 'gasInKind': '0.054',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.582',\n",
" 'netbackOutright': '10.943',\n",
" 'totalRegasificationCost': '1.375',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.073',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.053',\n",
" 'gasInKind': '0.091',\n",
" 'entryCapacity': '0.158',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.509',\n",
" 'netbackOutright': '11.086',\n",
" 'totalRegasificationCost': '1.376',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.073',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.053',\n",
" 'gasInKind': '0.092',\n",
" 'entryCapacity': '0.158',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.654',\n",
" 'netbackOutright': '11.024',\n",
" 'totalRegasificationCost': '1.375',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.073',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.053',\n",
" 'gasInKind': '0.091',\n",
" 'entryCapacity': '0.158',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.68',\n",
" 'netbackOutright': '11.149',\n",
" 'totalRegasificationCost': '1.376',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.073',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.053',\n",
" 'gasInKind': '0.092',\n",
" 'entryCapacity': '0.158',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.882',\n",
" 'netbackOutright': '11.077',\n",
" 'totalRegasificationCost': '1.376',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.073',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.053',\n",
" 'gasInKind': '0.092',\n",
" 'entryCapacity': '0.158',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.916',\n",
" 'netbackOutright': '11.259',\n",
" 'totalRegasificationCost': '1.377',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.073',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.053',\n",
" 'gasInKind': '0.093',\n",
" 'entryCapacity': '0.158',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.856',\n",
" 'netbackOutright': '11.419',\n",
" 'totalRegasificationCost': '1.378',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.073',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.053',\n",
" 'gasInKind': '0.094',\n",
" 'entryCapacity': '0.158',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.858',\n",
" 'netbackOutright': '11.453',\n",
" 'totalRegasificationCost': '1.378',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.073',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.053',\n",
" 'gasInKind': '0.094',\n",
" 'entryCapacity': '0.158',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.828',\n",
" 'netbackOutright': '11.497',\n",
" 'totalRegasificationCost': '1.379',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.073',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.053',\n",
" 'gasInKind': '0.095',\n",
" 'entryCapacity': '0.158',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.747',\n",
" 'netbackOutright': '11.41',\n",
" 'totalRegasificationCost': '1.378',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.073',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.053',\n",
" 'gasInKind': '0.094',\n",
" 'entryCapacity': '0.158',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.548',\n",
" 'netbackOutright': '10.687',\n",
" 'totalRegasificationCost': '1.373',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.073',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.053',\n",
" 'gasInKind': '0.089',\n",
" 'entryCapacity': '0.158',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.638',\n",
" 'netbackOutright': '10.35',\n",
" 'totalRegasificationCost': '1.37',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.073',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.053',\n",
" 'gasInKind': '0.086',\n",
" 'entryCapacity': '0.158',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.165',\n",
" 'netbackOutright': '11.36',\n",
" 'totalRegasificationCost': '0.958',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.613',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.048',\n",
" 'gasInKind': '0.137',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.093',\n",
" 'netbackOutright': '11.502',\n",
" 'totalRegasificationCost': '0.96',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.613',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.048',\n",
" 'gasInKind': '0.139',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.238',\n",
" 'netbackOutright': '11.44',\n",
" 'totalRegasificationCost': '0.959',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.613',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.048',\n",
" 'gasInKind': '0.138',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.264',\n",
" 'netbackOutright': '11.565',\n",
" 'totalRegasificationCost': '0.96',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.613',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.048',\n",
" 'gasInKind': '0.139',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.466',\n",
" 'netbackOutright': '11.493',\n",
" 'totalRegasificationCost': '0.96',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.613',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.048',\n",
" 'gasInKind': '0.139',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.501',\n",
" 'netbackOutright': '11.674',\n",
" 'totalRegasificationCost': '0.962',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.613',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.048',\n",
" 'gasInKind': '0.141',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.441',\n",
" 'netbackOutright': '11.834',\n",
" 'totalRegasificationCost': '0.963',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.613',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.048',\n",
" 'gasInKind': '0.142',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.444',\n",
" 'netbackOutright': '11.867',\n",
" 'totalRegasificationCost': '0.964',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.613',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.048',\n",
" 'gasInKind': '0.143',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.413',\n",
" 'netbackOutright': '11.912',\n",
" 'totalRegasificationCost': '0.964',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.613',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.048',\n",
" 'gasInKind': '0.143',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.332',\n",
" 'netbackOutright': '11.825',\n",
" 'totalRegasificationCost': '0.963',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.613',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.048',\n",
" 'gasInKind': '0.142',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.13',\n",
" 'netbackOutright': '11.105',\n",
" 'totalRegasificationCost': '0.955',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.613',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.048',\n",
" 'gasInKind': '0.134',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.219',\n",
" 'netbackOutright': '10.769',\n",
" 'totalRegasificationCost': '0.951',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.613',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.048',\n",
" 'gasInKind': '0.13',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.485',\n",
" 'netbackOutright': '11.04',\n",
" 'totalRegasificationCost': '1.278',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.099',\n",
" 'gasInKind': '0.251',\n",
" 'entryCapacity': '0.115',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.414',\n",
" 'netbackOutright': '11.181',\n",
" 'totalRegasificationCost': '1.281',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.099',\n",
" 'gasInKind': '0.254',\n",
" 'entryCapacity': '0.115',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.559',\n",
" 'netbackOutright': '11.119',\n",
" 'totalRegasificationCost': '1.28',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.099',\n",
" 'gasInKind': '0.253',\n",
" 'entryCapacity': '0.115',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.587',\n",
" 'netbackOutright': '11.242',\n",
" 'totalRegasificationCost': '1.283',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.099',\n",
" 'gasInKind': '0.256',\n",
" 'entryCapacity': '0.115',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.787',\n",
" 'netbackOutright': '11.172',\n",
" 'totalRegasificationCost': '1.281',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.099',\n",
" 'gasInKind': '0.254',\n",
" 'entryCapacity': '0.115',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.824',\n",
" 'netbackOutright': '11.351',\n",
" 'totalRegasificationCost': '1.285',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.099',\n",
" 'gasInKind': '0.258',\n",
" 'entryCapacity': '0.115',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.766',\n",
" 'netbackOutright': '11.509',\n",
" 'totalRegasificationCost': '1.288',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.099',\n",
" 'gasInKind': '0.261',\n",
" 'entryCapacity': '0.115',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.769',\n",
" 'netbackOutright': '11.542',\n",
" 'totalRegasificationCost': '1.289',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.099',\n",
" 'gasInKind': '0.262',\n",
" 'entryCapacity': '0.115',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.739',\n",
" 'netbackOutright': '11.586',\n",
" 'totalRegasificationCost': '1.29',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.099',\n",
" 'gasInKind': '0.263',\n",
" 'entryCapacity': '0.115',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.657',\n",
" 'netbackOutright': '11.5',\n",
" 'totalRegasificationCost': '1.288',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.099',\n",
" 'gasInKind': '0.261',\n",
" 'entryCapacity': '0.115',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.448',\n",
" 'netbackOutright': '10.787',\n",
" 'totalRegasificationCost': '1.273',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.099',\n",
" 'gasInKind': '0.246',\n",
" 'entryCapacity': '0.115',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.534',\n",
" 'netbackOutright': '10.454',\n",
" 'totalRegasificationCost': '1.266',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.099',\n",
" 'gasInKind': '0.239',\n",
" 'entryCapacity': '0.115',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.476',\n",
" 'netbackOutright': '10.049',\n",
" 'totalRegasificationCost': '1.12',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.134',\n",
" 'gasInKind': '0.147',\n",
" 'entryCapacity': '0.506',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.682',\n",
" 'netbackOutright': '9.913',\n",
" 'totalRegasificationCost': '1.119',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.135',\n",
" 'gasInKind': '0.145',\n",
" 'entryCapacity': '0.506',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.612',\n",
" 'netbackOutright': '10.066',\n",
" 'totalRegasificationCost': '1.122',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.136',\n",
" 'gasInKind': '0.147',\n",
" 'entryCapacity': '0.506',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.443',\n",
" 'netbackOutright': '10.386',\n",
" 'totalRegasificationCost': '1.136',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.145',\n",
" 'gasInKind': '0.152',\n",
" 'entryCapacity': '0.506',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.53',\n",
" 'netbackOutright': '10.429',\n",
" 'totalRegasificationCost': '1.158',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.147',\n",
" 'gasInKind': '0.153',\n",
" 'entryCapacity': '0.474',\n",
" 'commodityCharge': '0.08',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.878',\n",
" 'netbackOutright': '11.297',\n",
" 'totalRegasificationCost': '1.171',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.149',\n",
" 'gasInKind': '0.164',\n",
" 'entryCapacity': '0.474',\n",
" 'commodityCharge': '0.08',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.724',\n",
" 'netbackOutright': '11.551',\n",
" 'totalRegasificationCost': '1.177',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.151',\n",
" 'gasInKind': '0.168',\n",
" 'entryCapacity': '0.474',\n",
" 'commodityCharge': '0.08',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.681',\n",
" 'netbackOutright': '11.63',\n",
" 'totalRegasificationCost': '1.188',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.152',\n",
" 'gasInKind': '0.169',\n",
" 'entryCapacity': '0.474',\n",
" 'commodityCharge': '0.08',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.713',\n",
" 'netbackOutright': '11.612',\n",
" 'totalRegasificationCost': '1.188',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.152',\n",
" 'gasInKind': '0.169',\n",
" 'entryCapacity': '0.474',\n",
" 'commodityCharge': '0.08',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.967',\n",
" 'netbackOutright': '11.19',\n",
" 'totalRegasificationCost': '1.18',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.15',\n",
" 'gasInKind': '0.163',\n",
" 'entryCapacity': '0.474',\n",
" 'commodityCharge': '0.08',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.966',\n",
" 'netbackOutright': '10.269',\n",
" 'totalRegasificationCost': '1.15',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.133',\n",
" 'gasInKind': '0.15',\n",
" 'entryCapacity': '0.474',\n",
" 'commodityCharge': '0.08',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.291',\n",
" 'netbackOutright': '9.697',\n",
" 'totalRegasificationCost': '1.137',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.127',\n",
" 'gasInKind': '0.143',\n",
" 'entryCapacity': '0.474',\n",
" 'commodityCharge': '0.08',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.766',\n",
" 'netbackOutright': '10.759',\n",
" 'totalRegasificationCost': '1.002',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.793',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.059',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.743',\n",
" 'netbackOutright': '10.852',\n",
" 'totalRegasificationCost': '1.003',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.793',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.06',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.752',\n",
" 'netbackOutright': '10.926',\n",
" 'totalRegasificationCost': '1.003',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.793',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.06',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.731',\n",
" 'netbackOutright': '11.098',\n",
" 'totalRegasificationCost': '1.004',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.793',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.061',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.842',\n",
" 'netbackOutright': '11.117',\n",
" 'totalRegasificationCost': '1.235',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.807',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.278',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.699',\n",
" 'netbackOutright': '11.476',\n",
" 'totalRegasificationCost': '1.243',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.807',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.286',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.813',\n",
" 'netbackOutright': '11.462',\n",
" 'totalRegasificationCost': '1.243',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.807',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.286',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.882',\n",
" 'netbackOutright': '11.429',\n",
" 'totalRegasificationCost': '1.242',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.807',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.285',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.794',\n",
" 'netbackOutright': '11.531',\n",
" 'totalRegasificationCost': '1.244',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.807',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.287',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.632',\n",
" 'netbackOutright': '11.525',\n",
" 'totalRegasificationCost': '1.244',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.807',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.287',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.784',\n",
" 'netbackOutright': '10.451',\n",
" 'totalRegasificationCost': '1.22',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.807',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.263',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.731',\n",
" 'netbackOutright': '10.257',\n",
" 'totalRegasificationCost': '1.215',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.807',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.258',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.673',\n",
" 'netbackOutright': '10.852',\n",
" 'totalRegasificationCost': '0.254',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.081',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.576',\n",
" 'netbackOutright': '11.019',\n",
" 'totalRegasificationCost': '0.254',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.081',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.499',\n",
" 'netbackOutright': '11.179',\n",
" 'totalRegasificationCost': '0.254',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.081',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.591',\n",
" 'netbackOutright': '11.238',\n",
" 'totalRegasificationCost': '0.254',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.081',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.498',\n",
" 'netbackOutright': '11.461',\n",
" 'totalRegasificationCost': '0.254',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.081',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.498',\n",
" 'netbackOutright': '11.677',\n",
" 'totalRegasificationCost': '0.254',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.081',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.498',\n",
" 'netbackOutright': '11.777',\n",
" 'totalRegasificationCost': '0.254',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.081',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.401',\n",
" 'netbackOutright': '11.91',\n",
" 'totalRegasificationCost': '0.254',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.081',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.401',\n",
" 'netbackOutright': '11.924',\n",
" 'totalRegasificationCost': '0.254',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.081',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.401',\n",
" 'netbackOutright': '11.756',\n",
" 'totalRegasificationCost': '0.254',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.081',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.378',\n",
" 'netbackOutright': '10.857',\n",
" 'totalRegasificationCost': '0.254',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.081',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.378',\n",
" 'netbackOutright': '10.61',\n",
" 'totalRegasificationCost': '0.254',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.081',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.103',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.792',\n",
" 'netbackOutright': '10.733',\n",
" 'totalRegasificationCost': '1.028',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.795',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.083',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.769',\n",
" 'netbackOutright': '10.826',\n",
" 'totalRegasificationCost': '1.029',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.795',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.084',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.778',\n",
" 'netbackOutright': '10.9',\n",
" 'totalRegasificationCost': '1.029',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.795',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.084',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.757',\n",
" 'netbackOutright': '11.072',\n",
" 'totalRegasificationCost': '1.03',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.795',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.085',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.883',\n",
" 'netbackOutright': '11.076',\n",
" 'totalRegasificationCost': '1.276',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.809',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.317',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.741',\n",
" 'netbackOutright': '11.434',\n",
" 'totalRegasificationCost': '1.285',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.809',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.326',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.855',\n",
" 'netbackOutright': '11.42',\n",
" 'totalRegasificationCost': '1.285',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.809',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.326',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.924',\n",
" 'netbackOutright': '11.387',\n",
" 'totalRegasificationCost': '1.284',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.809',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.325',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.837',\n",
" 'netbackOutright': '11.488',\n",
" 'totalRegasificationCost': '1.287',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.809',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.328',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.674',\n",
" 'netbackOutright': '11.483',\n",
" 'totalRegasificationCost': '1.286',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.809',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.327',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.822',\n",
" 'netbackOutright': '10.413',\n",
" 'totalRegasificationCost': '1.258',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.809',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.299',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.769',\n",
" 'netbackOutright': '10.219',\n",
" 'totalRegasificationCost': '1.253',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.809',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.294',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.933',\n",
" 'netbackOutright': '10.592',\n",
" 'totalRegasificationCost': '1.169',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.803',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.216',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.845',\n",
" 'netbackOutright': '10.75',\n",
" 'totalRegasificationCost': '1.105',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.799',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.156',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.855',\n",
" 'netbackOutright': '10.823',\n",
" 'totalRegasificationCost': '1.106',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.799',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.157',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.902',\n",
" 'netbackOutright': '10.927',\n",
" 'totalRegasificationCost': '1.175',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.803',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.222',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.856',\n",
" 'netbackOutright': '11.103',\n",
" 'totalRegasificationCost': '1.249',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.808',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.291',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.713',\n",
" 'netbackOutright': '11.462',\n",
" 'totalRegasificationCost': '1.257',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.808',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.299',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.827',\n",
" 'netbackOutright': '11.448',\n",
" 'totalRegasificationCost': '1.257',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.808',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.299',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.896',\n",
" 'netbackOutright': '11.415',\n",
" 'totalRegasificationCost': '1.256',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.808',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.298',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.809',\n",
" 'netbackOutright': '11.516',\n",
" 'totalRegasificationCost': '1.259',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.808',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.301',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.647',\n",
" 'netbackOutright': '11.51',\n",
" 'totalRegasificationCost': '1.259',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.808',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.301',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.797',\n",
" 'netbackOutright': '10.438',\n",
" 'totalRegasificationCost': '1.233',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.808',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.275',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.744',\n",
" 'netbackOutright': '10.244',\n",
" 'totalRegasificationCost': '1.228',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.808',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.27',\n",
" 'entryCapacity': '0.15',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.546',\n",
" 'netbackOutright': '10.979',\n",
" 'totalRegasificationCost': '0.374',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.183',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.009',\n",
" 'gasInKind': '0.15',\n",
" 'entryCapacity': '0.022',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.435',\n",
" 'netbackOutright': '11.16',\n",
" 'totalRegasificationCost': '0.376',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.183',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.009',\n",
" 'gasInKind': '0.152',\n",
" 'entryCapacity': '0.022',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.616',\n",
" 'netbackOutright': '11.062',\n",
" 'totalRegasificationCost': '0.375',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.183',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.009',\n",
" 'gasInKind': '0.151',\n",
" 'entryCapacity': '0.022',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.624',\n",
" 'netbackOutright': '11.205',\n",
" 'totalRegasificationCost': '0.383',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.183',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.009',\n",
" 'gasInKind': '0.153',\n",
" 'entryCapacity': '0.028',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.39',\n",
" 'netbackOutright': '11.569',\n",
" 'totalRegasificationCost': '0.407',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.183',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.009',\n",
" 'gasInKind': '0.158',\n",
" 'entryCapacity': '0.046',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.409',\n",
" 'netbackOutright': '11.766',\n",
" 'totalRegasificationCost': '0.426',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.184',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.009',\n",
" 'gasInKind': '0.161',\n",
" 'entryCapacity': '0.061',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.419',\n",
" 'netbackOutright': '11.856',\n",
" 'totalRegasificationCost': '0.436',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.184',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.162',\n",
" 'entryCapacity': '0.069',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.417',\n",
" 'netbackOutright': '11.894',\n",
" 'totalRegasificationCost': '0.444',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.184',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.163',\n",
" 'entryCapacity': '0.076',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.408',\n",
" 'netbackOutright': '11.917',\n",
" 'totalRegasificationCost': '0.435',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.184',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.163',\n",
" 'entryCapacity': '0.067',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.394',\n",
" 'netbackOutright': '11.763',\n",
" 'totalRegasificationCost': '0.421',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.184',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.16',\n",
" 'entryCapacity': '0.056',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.491',\n",
" 'netbackOutright': '10.744',\n",
" 'totalRegasificationCost': '0.392',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.184',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.147',\n",
" 'entryCapacity': '0.041',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-12',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.474',\n",
" 'netbackOutright': '10.514',\n",
" 'totalRegasificationCost': '0.375',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.184',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.143',\n",
" 'entryCapacity': '0.028',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.612',\n",
" 'netbackOutright': '10.82',\n",
" 'totalRegasificationCost': '1.417',\n",
" 'slotUnloadStorageRegas': '1.113',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.092',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.601',\n",
" 'netbackOutright': '10.9',\n",
" 'totalRegasificationCost': '1.418',\n",
" 'slotUnloadStorageRegas': '1.113',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.093',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.754',\n",
" 'netbackOutright': '10.833',\n",
" 'totalRegasificationCost': '1.418',\n",
" 'slotUnloadStorageRegas': '1.113',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.093',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.516',\n",
" 'netbackOutright': '11.232',\n",
" 'totalRegasificationCost': '1.421',\n",
" 'slotUnloadStorageRegas': '1.113',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.096',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.918',\n",
" 'netbackOutright': '10.953',\n",
" 'totalRegasificationCost': '1.418',\n",
" 'slotUnloadStorageRegas': '1.113',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.093',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.953',\n",
" 'netbackOutright': '11.136',\n",
" 'totalRegasificationCost': '1.42',\n",
" 'slotUnloadStorageRegas': '1.113',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.095',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.893',\n",
" 'netbackOutright': '11.292',\n",
" 'totalRegasificationCost': '1.421',\n",
" 'slotUnloadStorageRegas': '1.113',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.096',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.964',\n",
" 'netbackOutright': '11.257',\n",
" 'totalRegasificationCost': '1.421',\n",
" 'slotUnloadStorageRegas': '1.113',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.096',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.931',\n",
" 'netbackOutright': '11.296',\n",
" 'totalRegasificationCost': '1.421',\n",
" 'slotUnloadStorageRegas': '1.113',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.096',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.852',\n",
" 'netbackOutright': '11.218',\n",
" 'totalRegasificationCost': '1.421',\n",
" 'slotUnloadStorageRegas': '1.113',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.096',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.648',\n",
" 'netbackOutright': '10.523',\n",
" 'totalRegasificationCost': '1.415',\n",
" 'slotUnloadStorageRegas': '1.113',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.09',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.74',\n",
" 'netbackOutright': '10.188',\n",
" 'totalRegasificationCost': '1.413',\n",
" 'slotUnloadStorageRegas': '1.113',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.088',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.797',\n",
" 'netbackOutright': '10.635',\n",
" 'totalRegasificationCost': '1.04',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.806',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.082',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.767',\n",
" 'netbackOutright': '10.734',\n",
" 'totalRegasificationCost': '1.041',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.806',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.083',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.772',\n",
" 'netbackOutright': '10.815',\n",
" 'totalRegasificationCost': '1.042',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.806',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.084',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.802',\n",
" 'netbackOutright': '10.946',\n",
" 'totalRegasificationCost': '1.043',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.806',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.085',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.665',\n",
" 'netbackOutright': '11.206',\n",
" 'totalRegasificationCost': '1.07',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.807',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.111',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.516',\n",
" 'netbackOutright': '11.573',\n",
" 'totalRegasificationCost': '1.074',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.807',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.115',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.631',\n",
" 'netbackOutright': '11.554',\n",
" 'totalRegasificationCost': '1.074',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.807',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.115',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.691',\n",
" 'netbackOutright': '11.53',\n",
" 'totalRegasificationCost': '1.073',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.807',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.114',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.6',\n",
" 'netbackOutright': '11.627',\n",
" 'totalRegasificationCost': '1.074',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.807',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.115',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.436',\n",
" 'netbackOutright': '11.634',\n",
" 'totalRegasificationCost': '1.074',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.807',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.115',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.619',\n",
" 'netbackOutright': '10.552',\n",
" 'totalRegasificationCost': '1.065',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.807',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.106',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.569',\n",
" 'netbackOutright': '10.359',\n",
" 'totalRegasificationCost': '1.063',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.807',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.104',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.936',\n",
" 'netbackOutright': '10.496',\n",
" 'totalRegasificationCost': '1.179',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.299',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.908',\n",
" 'netbackOutright': '10.593',\n",
" 'totalRegasificationCost': '1.182',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.302',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.914',\n",
" 'netbackOutright': '10.673',\n",
" 'totalRegasificationCost': '1.184',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.304',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.946',\n",
" 'netbackOutright': '10.802',\n",
" 'totalRegasificationCost': '1.187',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.307',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.79',\n",
" 'netbackOutright': '11.081',\n",
" 'totalRegasificationCost': '1.195',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.315',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.646',\n",
" 'netbackOutright': '11.443',\n",
" 'totalRegasificationCost': '1.204',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.324',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.761',\n",
" 'netbackOutright': '11.424',\n",
" 'totalRegasificationCost': '1.204',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.324',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.821',\n",
" 'netbackOutright': '11.4',\n",
" 'totalRegasificationCost': '1.203',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.323',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.732',\n",
" 'netbackOutright': '11.495',\n",
" 'totalRegasificationCost': '1.206',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.326',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.568',\n",
" 'netbackOutright': '11.502',\n",
" 'totalRegasificationCost': '1.206',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.326',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.732',\n",
" 'netbackOutright': '10.439',\n",
" 'totalRegasificationCost': '1.178',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.298',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.679',\n",
" 'netbackOutright': '10.249',\n",
" 'totalRegasificationCost': '1.173',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.293',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.114',\n",
" 'netbackOutright': '10.318',\n",
" 'totalRegasificationCost': '0.735',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.63',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.071',\n",
" 'netbackOutright': '10.43',\n",
" 'totalRegasificationCost': '0.735',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.63',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.083',\n",
" 'netbackOutright': '10.504',\n",
" 'totalRegasificationCost': '0.735',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.63',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.107',\n",
" 'netbackOutright': '10.641',\n",
" 'totalRegasificationCost': '0.735',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.63',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.18',\n",
" 'netbackOutright': '10.691',\n",
" 'totalRegasificationCost': '0.735',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.63',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.104',\n",
" 'netbackOutright': '10.985',\n",
" 'totalRegasificationCost': '0.735',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.63',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.111',\n",
" 'netbackOutright': '11.074',\n",
" 'totalRegasificationCost': '0.735',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.63',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.069',\n",
" 'netbackOutright': '11.152',\n",
" 'totalRegasificationCost': '0.735',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.63',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.112',\n",
" 'netbackOutright': '11.115',\n",
" 'totalRegasificationCost': '0.735',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.63',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.145',\n",
" 'netbackOutright': '10.925',\n",
" 'totalRegasificationCost': '0.735',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.63',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-0.839',\n",
" 'netbackOutright': '10.332',\n",
" 'totalRegasificationCost': '0.737',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.63',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.107',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-0.89',\n",
" 'netbackOutright': '10.038',\n",
" 'totalRegasificationCost': '0.737',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.63',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.107',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.776',\n",
" 'netbackOutright': '10.656',\n",
" 'totalRegasificationCost': '0.776',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.561',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.102',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.785',\n",
" 'netbackOutright': '10.716',\n",
" 'totalRegasificationCost': '0.785',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.561',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.111',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.789',\n",
" 'netbackOutright': '10.798',\n",
" 'totalRegasificationCost': '0.789',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.561',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.115',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.803',\n",
" 'netbackOutright': '10.945',\n",
" 'totalRegasificationCost': '0.803',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.561',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.129',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.801',\n",
" 'netbackOutright': '11.07',\n",
" 'totalRegasificationCost': '0.801',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.561',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.127',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.867',\n",
" 'netbackOutright': '11.222',\n",
" 'totalRegasificationCost': '0.867',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.57',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.184',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.869',\n",
" 'netbackOutright': '11.316',\n",
" 'totalRegasificationCost': '0.869',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.57',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.186',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.872',\n",
" 'netbackOutright': '11.349',\n",
" 'totalRegasificationCost': '0.872',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.573',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.186',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.872',\n",
" 'netbackOutright': '11.355',\n",
" 'totalRegasificationCost': '0.872',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.573',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.186',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.87',\n",
" 'netbackOutright': '11.2',\n",
" 'totalRegasificationCost': '0.87',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.573',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.184',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.856',\n",
" 'netbackOutright': '10.315',\n",
" 'totalRegasificationCost': '0.856',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.573',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.17',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.852',\n",
" 'netbackOutright': '10.076',\n",
" 'totalRegasificationCost': '0.852',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.573',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.166',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.787',\n",
" 'netbackOutright': '10.645',\n",
" 'totalRegasificationCost': '0.408',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.744',\n",
" 'netbackOutright': '10.757',\n",
" 'totalRegasificationCost': '0.408',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.756',\n",
" 'netbackOutright': '10.831',\n",
" 'totalRegasificationCost': '0.408',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.78',\n",
" 'netbackOutright': '10.968',\n",
" 'totalRegasificationCost': '0.408',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.853',\n",
" 'netbackOutright': '11.018',\n",
" 'totalRegasificationCost': '0.408',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.778',\n",
" 'netbackOutright': '11.311',\n",
" 'totalRegasificationCost': '0.409',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.785',\n",
" 'netbackOutright': '11.4',\n",
" 'totalRegasificationCost': '0.409',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.743',\n",
" 'netbackOutright': '11.478',\n",
" 'totalRegasificationCost': '0.409',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.786',\n",
" 'netbackOutright': '11.441',\n",
" 'totalRegasificationCost': '0.409',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.819',\n",
" 'netbackOutright': '11.251',\n",
" 'totalRegasificationCost': '0.409',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.512',\n",
" 'netbackOutright': '10.659',\n",
" 'totalRegasificationCost': '0.41',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.107',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.563',\n",
" 'netbackOutright': '10.365',\n",
" 'totalRegasificationCost': '0.41',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.107',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.545',\n",
" 'netbackOutright': '10.887',\n",
" 'totalRegasificationCost': '0.545',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.421',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.543',\n",
" 'netbackOutright': '10.958',\n",
" 'totalRegasificationCost': '0.543',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.421',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.11',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.538',\n",
" 'netbackOutright': '11.049',\n",
" 'totalRegasificationCost': '0.538',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.421',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.546',\n",
" 'netbackOutright': '11.202',\n",
" 'totalRegasificationCost': '0.546',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.421',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.566',\n",
" 'netbackOutright': '11.305',\n",
" 'totalRegasificationCost': '0.566',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.421',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.133',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.625',\n",
" 'netbackOutright': '11.464',\n",
" 'totalRegasificationCost': '0.625',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.421',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.192',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.683',\n",
" 'netbackOutright': '11.502',\n",
" 'totalRegasificationCost': '0.683',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.421',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.25',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.734',\n",
" 'netbackOutright': '11.487',\n",
" 'totalRegasificationCost': '0.734',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.421',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.301',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.676',\n",
" 'netbackOutright': '11.551',\n",
" 'totalRegasificationCost': '0.676',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.421',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.243',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.643',\n",
" 'netbackOutright': '11.427',\n",
" 'totalRegasificationCost': '0.643',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.421',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.21',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.584',\n",
" 'netbackOutright': '10.587',\n",
" 'totalRegasificationCost': '0.584',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.421',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.571',\n",
" 'netbackOutright': '10.357',\n",
" 'totalRegasificationCost': '0.571',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.421',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.139',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.707',\n",
" 'netbackOutright': '9.725',\n",
" 'totalRegasificationCost': '1.277',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.267',\n",
" 'gasInKind': '0.166',\n",
" 'entryCapacity': '0.51',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-2.013',\n",
" 'netbackOutright': '9.488',\n",
" 'totalRegasificationCost': '1.409',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.4',\n",
" 'gasInKind': '0.165',\n",
" 'entryCapacity': '0.51',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.919',\n",
" 'netbackOutright': '9.668',\n",
" 'totalRegasificationCost': '1.415',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.403',\n",
" 'gasInKind': '0.168',\n",
" 'entryCapacity': '0.51',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.629',\n",
" 'netbackOutright': '10.119',\n",
" 'totalRegasificationCost': '1.306',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.289',\n",
" 'gasInKind': '0.173',\n",
" 'entryCapacity': '0.51',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.651',\n",
" 'netbackOutright': '10.22',\n",
" 'totalRegasificationCost': '1.281',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.244',\n",
" 'gasInKind': '0.174',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.936',\n",
" 'netbackOutright': '11.153',\n",
" 'totalRegasificationCost': '1.248',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.197',\n",
" 'gasInKind': '0.188',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.771',\n",
" 'netbackOutright': '11.414',\n",
" 'totalRegasificationCost': '1.241',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.187',\n",
" 'gasInKind': '0.191',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.744',\n",
" 'netbackOutright': '11.477',\n",
" 'totalRegasificationCost': '1.259',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.194',\n",
" 'gasInKind': '0.193',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.753',\n",
" 'netbackOutright': '11.474',\n",
" 'totalRegasificationCost': '1.266',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.201',\n",
" 'gasInKind': '0.193',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.974',\n",
" 'netbackOutright': '11.096',\n",
" 'totalRegasificationCost': '1.268',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.209',\n",
" 'gasInKind': '0.187',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.029',\n",
" 'netbackOutright': '10.142',\n",
" 'totalRegasificationCost': '1.213',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.169',\n",
" 'gasInKind': '0.172',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.368',\n",
" 'netbackOutright': '9.56',\n",
" 'totalRegasificationCost': '1.224',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.189',\n",
" 'gasInKind': '0.163',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.331',\n",
" 'netbackOutright': '10.101',\n",
" 'totalRegasificationCost': '0.952',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.283',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.291',\n",
" 'netbackOutright': '10.21',\n",
" 'totalRegasificationCost': '0.955',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.286',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.305',\n",
" 'netbackOutright': '10.282',\n",
" 'totalRegasificationCost': '0.957',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.288',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.333',\n",
" 'netbackOutright': '10.415',\n",
" 'totalRegasificationCost': '0.961',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.292',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.407',\n",
" 'netbackOutright': '10.464',\n",
" 'totalRegasificationCost': '0.962',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.293',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.339',\n",
" 'netbackOutright': '10.75',\n",
" 'totalRegasificationCost': '0.97',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.301',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.348',\n",
" 'netbackOutright': '10.837',\n",
" 'totalRegasificationCost': '0.972',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.303',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.308',\n",
" 'netbackOutright': '10.913',\n",
" 'totalRegasificationCost': '0.974',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.305',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.35',\n",
" 'netbackOutright': '10.877',\n",
" 'totalRegasificationCost': '0.973',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.304',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.378',\n",
" 'netbackOutright': '10.692',\n",
" 'totalRegasificationCost': '0.968',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.299',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.057',\n",
" 'netbackOutright': '10.114',\n",
" 'totalRegasificationCost': '0.955',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.284',\n",
" 'entryCapacity': '0.107',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.1',\n",
" 'netbackOutright': '9.828',\n",
" 'totalRegasificationCost': '0.947',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.276',\n",
" 'entryCapacity': '0.107',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.805',\n",
" 'netbackOutright': '10.627',\n",
" 'totalRegasificationCost': '0.426',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.056',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.762',\n",
" 'netbackOutright': '10.739',\n",
" 'totalRegasificationCost': '0.426',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.056',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.774',\n",
" 'netbackOutright': '10.813',\n",
" 'totalRegasificationCost': '0.426',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.056',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.799',\n",
" 'netbackOutright': '10.949',\n",
" 'totalRegasificationCost': '0.427',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.057',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.872',\n",
" 'netbackOutright': '10.999',\n",
" 'totalRegasificationCost': '0.427',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.057',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.798',\n",
" 'netbackOutright': '11.291',\n",
" 'totalRegasificationCost': '0.429',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.059',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.805',\n",
" 'netbackOutright': '11.38',\n",
" 'totalRegasificationCost': '0.429',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.059',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.764',\n",
" 'netbackOutright': '11.457',\n",
" 'totalRegasificationCost': '0.43',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.06',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.807',\n",
" 'netbackOutright': '11.42',\n",
" 'totalRegasificationCost': '0.43',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.06',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.839',\n",
" 'netbackOutright': '11.231',\n",
" 'totalRegasificationCost': '0.429',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.059',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.53',\n",
" 'netbackOutright': '10.641',\n",
" 'totalRegasificationCost': '0.428',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.056',\n",
" 'entryCapacity': '0.107',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.579',\n",
" 'netbackOutright': '10.349',\n",
" 'totalRegasificationCost': '0.426',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.054',\n",
" 'entryCapacity': '0.107',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.587',\n",
" 'netbackOutright': '10.845',\n",
" 'totalRegasificationCost': '1.392',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.088',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.09',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.576',\n",
" 'netbackOutright': '10.925',\n",
" 'totalRegasificationCost': '1.393',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.088',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.091',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.728',\n",
" 'netbackOutright': '10.859',\n",
" 'totalRegasificationCost': '1.392',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.088',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.09',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.49',\n",
" 'netbackOutright': '11.258',\n",
" 'totalRegasificationCost': '1.395',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.088',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.093',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.893',\n",
" 'netbackOutright': '10.978',\n",
" 'totalRegasificationCost': '1.393',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.088',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.091',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.927',\n",
" 'netbackOutright': '11.162',\n",
" 'totalRegasificationCost': '1.394',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.088',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.092',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.867',\n",
" 'netbackOutright': '11.318',\n",
" 'totalRegasificationCost': '1.395',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.088',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.093',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.938',\n",
" 'netbackOutright': '11.283',\n",
" 'totalRegasificationCost': '1.395',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.088',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.093',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.906',\n",
" 'netbackOutright': '11.321',\n",
" 'totalRegasificationCost': '1.396',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.088',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.094',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.826',\n",
" 'netbackOutright': '11.244',\n",
" 'totalRegasificationCost': '1.395',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.088',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.093',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.623',\n",
" 'netbackOutright': '10.548',\n",
" 'totalRegasificationCost': '1.39',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.088',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.088',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.714',\n",
" 'netbackOutright': '10.214',\n",
" 'totalRegasificationCost': '1.387',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.088',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.085',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.163',\n",
" 'netbackOutright': '11.269',\n",
" 'totalRegasificationCost': '0.968',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.621',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.136',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.152',\n",
" 'netbackOutright': '11.349',\n",
" 'totalRegasificationCost': '0.969',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.621',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.137',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.304',\n",
" 'netbackOutright': '11.283',\n",
" 'totalRegasificationCost': '0.968',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.621',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.136',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.068',\n",
" 'netbackOutright': '11.68',\n",
" 'totalRegasificationCost': '0.973',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.621',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.141',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.47',\n",
" 'netbackOutright': '11.401',\n",
" 'totalRegasificationCost': '0.97',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.621',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.138',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.505',\n",
" 'netbackOutright': '11.584',\n",
" 'totalRegasificationCost': '0.972',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.621',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.14',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.445',\n",
" 'netbackOutright': '11.74',\n",
" 'totalRegasificationCost': '0.973',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.621',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.141',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.516',\n",
" 'netbackOutright': '11.705',\n",
" 'totalRegasificationCost': '0.973',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.621',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.141',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.483',\n",
" 'netbackOutright': '11.744',\n",
" 'totalRegasificationCost': '0.973',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.621',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.141',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.404',\n",
" 'netbackOutright': '11.666',\n",
" 'totalRegasificationCost': '0.973',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.621',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.141',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.198',\n",
" 'netbackOutright': '10.973',\n",
" 'totalRegasificationCost': '0.965',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.621',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.133',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.288',\n",
" 'netbackOutright': '10.64',\n",
" 'totalRegasificationCost': '0.961',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.621',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.129',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.486',\n",
" 'netbackOutright': '10.946',\n",
" 'totalRegasificationCost': '1.291',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.25',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.475',\n",
" 'netbackOutright': '11.026',\n",
" 'totalRegasificationCost': '1.292',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.251',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.627',\n",
" 'netbackOutright': '10.96',\n",
" 'totalRegasificationCost': '1.291',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.25',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.394',\n",
" 'netbackOutright': '11.354',\n",
" 'totalRegasificationCost': '1.299',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.258',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.793',\n",
" 'netbackOutright': '11.078',\n",
" 'totalRegasificationCost': '1.293',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.252',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.83',\n",
" 'netbackOutright': '11.259',\n",
" 'totalRegasificationCost': '1.297',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.256',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.772',\n",
" 'netbackOutright': '11.413',\n",
" 'totalRegasificationCost': '1.3',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.259',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.843',\n",
" 'netbackOutright': '11.378',\n",
" 'totalRegasificationCost': '1.3',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.259',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.811',\n",
" 'netbackOutright': '11.416',\n",
" 'totalRegasificationCost': '1.301',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.26',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.73',\n",
" 'netbackOutright': '11.34',\n",
" 'totalRegasificationCost': '1.299',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.258',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.518',\n",
" 'netbackOutright': '10.653',\n",
" 'totalRegasificationCost': '1.285',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.244',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.605',\n",
" 'netbackOutright': '10.323',\n",
" 'totalRegasificationCost': '1.278',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.237',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.551',\n",
" 'netbackOutright': '9.881',\n",
" 'totalRegasificationCost': '1.121',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.133',\n",
" 'gasInKind': '0.145',\n",
" 'entryCapacity': '0.51',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.724',\n",
" 'netbackOutright': '9.777',\n",
" 'totalRegasificationCost': '1.12',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.133',\n",
" 'gasInKind': '0.144',\n",
" 'entryCapacity': '0.51',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.627',\n",
" 'netbackOutright': '9.96',\n",
" 'totalRegasificationCost': '1.123',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.134',\n",
" 'gasInKind': '0.146',\n",
" 'entryCapacity': '0.51',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.46',\n",
" 'netbackOutright': '10.288',\n",
" 'totalRegasificationCost': '1.137',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.144',\n",
" 'gasInKind': '0.15',\n",
" 'entryCapacity': '0.51',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.529',\n",
" 'netbackOutright': '10.342',\n",
" 'totalRegasificationCost': '1.159',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.146',\n",
" 'gasInKind': '0.151',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.861',\n",
" 'netbackOutright': '11.228',\n",
" 'totalRegasificationCost': '1.173',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.148',\n",
" 'gasInKind': '0.163',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.709',\n",
" 'netbackOutright': '11.476',\n",
" 'totalRegasificationCost': '1.179',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.15',\n",
" 'gasInKind': '0.167',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.675',\n",
" 'netbackOutright': '11.546',\n",
" 'totalRegasificationCost': '1.19',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.151',\n",
" 'gasInKind': '0.168',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.677',\n",
" 'netbackOutright': '11.55',\n",
" 'totalRegasificationCost': '1.19',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.151',\n",
" 'gasInKind': '0.168',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.889',\n",
" 'netbackOutright': '11.181',\n",
" 'totalRegasificationCost': '1.183',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.149',\n",
" 'gasInKind': '0.163',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.969',\n",
" 'netbackOutright': '10.202',\n",
" 'totalRegasificationCost': '1.153',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.132',\n",
" 'gasInKind': '0.15',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.283',\n",
" 'netbackOutright': '9.645',\n",
" 'totalRegasificationCost': '1.139',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.126',\n",
" 'gasInKind': '0.142',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.772',\n",
" 'netbackOutright': '10.66',\n",
" 'totalRegasificationCost': '1.015',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.804',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.059',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.741',\n",
" 'netbackOutright': '10.76',\n",
" 'totalRegasificationCost': '1.015',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.804',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.059',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.746',\n",
" 'netbackOutright': '10.841',\n",
" 'totalRegasificationCost': '1.016',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.804',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.06',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.775',\n",
" 'netbackOutright': '10.973',\n",
" 'totalRegasificationCost': '1.016',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.804',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.06',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.841',\n",
" 'netbackOutright': '11.03',\n",
" 'totalRegasificationCost': '1.246',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.818',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.276',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.696',\n",
" 'netbackOutright': '11.393',\n",
" 'totalRegasificationCost': '1.254',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.818',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.284',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.811',\n",
" 'netbackOutright': '11.374',\n",
" 'totalRegasificationCost': '1.254',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.818',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.284',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.872',\n",
" 'netbackOutright': '11.349',\n",
" 'totalRegasificationCost': '1.254',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.818',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.284',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.782',\n",
" 'netbackOutright': '11.445',\n",
" 'totalRegasificationCost': '1.256',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.818',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.286',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.618',\n",
" 'netbackOutright': '11.452',\n",
" 'totalRegasificationCost': '1.256',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.818',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.286',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.785',\n",
" 'netbackOutright': '10.386',\n",
" 'totalRegasificationCost': '1.231',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.818',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.261',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.733',\n",
" 'netbackOutright': '10.195',\n",
" 'totalRegasificationCost': '1.227',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.818',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.257',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.686',\n",
" 'netbackOutright': '10.746',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.571',\n",
" 'netbackOutright': '10.93',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.505',\n",
" 'netbackOutright': '11.082',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.611',\n",
" 'netbackOutright': '11.137',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.504',\n",
" 'netbackOutright': '11.367',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.504',\n",
" 'netbackOutright': '11.585',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.504',\n",
" 'netbackOutright': '11.681',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.406',\n",
" 'netbackOutright': '11.815',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.406',\n",
" 'netbackOutright': '11.821',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.406',\n",
" 'netbackOutright': '11.664',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.383',\n",
" 'netbackOutright': '10.788',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.383',\n",
" 'netbackOutright': '10.545',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.797',\n",
" 'netbackOutright': '10.635',\n",
" 'totalRegasificationCost': '1.04',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.806',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.082',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.767',\n",
" 'netbackOutright': '10.734',\n",
" 'totalRegasificationCost': '1.041',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.806',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.083',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.772',\n",
" 'netbackOutright': '10.815',\n",
" 'totalRegasificationCost': '1.042',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.806',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.084',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.802',\n",
" 'netbackOutright': '10.946',\n",
" 'totalRegasificationCost': '1.043',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.806',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.085',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.883',\n",
" 'netbackOutright': '10.988',\n",
" 'totalRegasificationCost': '1.288',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.821',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.315',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.739',\n",
" 'netbackOutright': '11.35',\n",
" 'totalRegasificationCost': '1.297',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.821',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.324',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.854',\n",
" 'netbackOutright': '11.331',\n",
" 'totalRegasificationCost': '1.297',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.821',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.324',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.914',\n",
" 'netbackOutright': '11.307',\n",
" 'totalRegasificationCost': '1.296',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.821',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.323',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.825',\n",
" 'netbackOutright': '11.402',\n",
" 'totalRegasificationCost': '1.299',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.821',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.326',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.661',\n",
" 'netbackOutright': '11.409',\n",
" 'totalRegasificationCost': '1.299',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.821',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.326',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.825',\n",
" 'netbackOutright': '10.346',\n",
" 'totalRegasificationCost': '1.271',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.821',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.298',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.772',\n",
" 'netbackOutright': '10.156',\n",
" 'totalRegasificationCost': '1.266',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.821',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.293',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.938',\n",
" 'netbackOutright': '10.494',\n",
" 'totalRegasificationCost': '1.181',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.815',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.214',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.844',\n",
" 'netbackOutright': '10.657',\n",
" 'totalRegasificationCost': '1.118',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.811',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.155',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.849',\n",
" 'netbackOutright': '10.738',\n",
" 'totalRegasificationCost': '1.119',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.811',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.156',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.946',\n",
" 'netbackOutright': '10.802',\n",
" 'totalRegasificationCost': '1.187',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.815',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.22',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.855',\n",
" 'netbackOutright': '11.016',\n",
" 'totalRegasificationCost': '1.26',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.819',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.289',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.711',\n",
" 'netbackOutright': '11.378',\n",
" 'totalRegasificationCost': '1.269',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.819',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.298',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.825',\n",
" 'netbackOutright': '11.36',\n",
" 'totalRegasificationCost': '1.268',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.819',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.297',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.886',\n",
" 'netbackOutright': '11.335',\n",
" 'totalRegasificationCost': '1.268',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.819',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.297',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.796',\n",
" 'netbackOutright': '11.431',\n",
" 'totalRegasificationCost': '1.27',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.819',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.299',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.632',\n",
" 'netbackOutright': '11.438',\n",
" 'totalRegasificationCost': '1.27',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.819',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.299',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.798',\n",
" 'netbackOutright': '10.373',\n",
" 'totalRegasificationCost': '1.244',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.819',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.273',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.746',\n",
" 'netbackOutright': '10.182',\n",
" 'totalRegasificationCost': '1.24',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.819',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.269',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.504',\n",
" 'netbackOutright': '10.928',\n",
" 'totalRegasificationCost': '0.376',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.185',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.149',\n",
" 'entryCapacity': '0.022',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.476',\n",
" 'netbackOutright': '11.025',\n",
" 'totalRegasificationCost': '0.378',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.186',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.15',\n",
" 'entryCapacity': '0.022',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.519',\n",
" 'netbackOutright': '11.068',\n",
" 'totalRegasificationCost': '0.379',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.186',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.151',\n",
" 'entryCapacity': '0.022',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.528',\n",
" 'netbackOutright': '11.22',\n",
" 'totalRegasificationCost': '0.388',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.186',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.153',\n",
" 'entryCapacity': '0.029',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.433',\n",
" 'netbackOutright': '11.438',\n",
" 'totalRegasificationCost': '0.408',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.186',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.156',\n",
" 'entryCapacity': '0.046',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.453',\n",
" 'netbackOutright': '11.636',\n",
" 'totalRegasificationCost': '0.428',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.186',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.159',\n",
" 'entryCapacity': '0.062',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.462',\n",
" 'netbackOutright': '11.723',\n",
" 'totalRegasificationCost': '0.437',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.186',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.16',\n",
" 'entryCapacity': '0.07',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.446',\n",
" 'netbackOutright': '11.775',\n",
" 'totalRegasificationCost': '0.445',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.186',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.161',\n",
" 'entryCapacity': '0.077',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.437',\n",
" 'netbackOutright': '11.79',\n",
" 'totalRegasificationCost': '0.436',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.186',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.161',\n",
" 'entryCapacity': '0.068',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.425',\n",
" 'netbackOutright': '11.645',\n",
" 'totalRegasificationCost': '0.424',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.187',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.159',\n",
" 'entryCapacity': '0.057',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.464',\n",
" 'netbackOutright': '10.707',\n",
" 'totalRegasificationCost': '0.395',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.187',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.146',\n",
" 'entryCapacity': '0.042',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-09',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.448',\n",
" 'netbackOutright': '10.48',\n",
" 'totalRegasificationCost': '0.379',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.187',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.143',\n",
" 'entryCapacity': '0.029',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.615',\n",
" 'netbackOutright': '11.066',\n",
" 'totalRegasificationCost': '1.42',\n",
" 'slotUnloadStorageRegas': '1.114',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.094',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.603',\n",
" 'netbackOutright': '11.151',\n",
" 'totalRegasificationCost': '1.421',\n",
" 'slotUnloadStorageRegas': '1.114',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.095',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.755',\n",
" 'netbackOutright': '11.081',\n",
" 'totalRegasificationCost': '1.42',\n",
" 'slotUnloadStorageRegas': '1.114',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.094',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.516',\n",
" 'netbackOutright': '11.479',\n",
" 'totalRegasificationCost': '1.423',\n",
" 'slotUnloadStorageRegas': '1.114',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.097',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.92',\n",
" 'netbackOutright': '11.2',\n",
" 'totalRegasificationCost': '1.421',\n",
" 'slotUnloadStorageRegas': '1.114',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.095',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.955',\n",
" 'netbackOutright': '11.36',\n",
" 'totalRegasificationCost': '1.423',\n",
" 'slotUnloadStorageRegas': '1.114',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.097',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.894',\n",
" 'netbackOutright': '11.494',\n",
" 'totalRegasificationCost': '1.424',\n",
" 'slotUnloadStorageRegas': '1.114',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.098',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.965',\n",
" 'netbackOutright': '11.45',\n",
" 'totalRegasificationCost': '1.423',\n",
" 'slotUnloadStorageRegas': '1.114',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.097',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.933',\n",
" 'netbackOutright': '11.491',\n",
" 'totalRegasificationCost': '1.424',\n",
" 'slotUnloadStorageRegas': '1.114',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.098',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.852',\n",
" 'netbackOutright': '11.402',\n",
" 'totalRegasificationCost': '1.423',\n",
" 'slotUnloadStorageRegas': '1.114',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.097',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.648',\n",
" 'netbackOutright': '10.635',\n",
" 'totalRegasificationCost': '1.417',\n",
" 'slotUnloadStorageRegas': '1.114',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.091',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.739',\n",
" 'netbackOutright': '10.295',\n",
" 'totalRegasificationCost': '1.414',\n",
" 'slotUnloadStorageRegas': '1.114',\n",
" 'slotBerth': '0.057',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.031',\n",
" 'gasInKind': '0.088',\n",
" 'entryCapacity': '0.124',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.798',\n",
" 'netbackOutright': '10.883',\n",
" 'totalRegasificationCost': '1.042',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.806',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.084',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.776',\n",
" 'netbackOutright': '10.978',\n",
" 'totalRegasificationCost': '1.043',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.806',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.085',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.781',\n",
" 'netbackOutright': '11.055',\n",
" 'totalRegasificationCost': '1.043',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.806',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.085',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.769',\n",
" 'netbackOutright': '11.226',\n",
" 'totalRegasificationCost': '1.045',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.806',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.087',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.668',\n",
" 'netbackOutright': '11.452',\n",
" 'totalRegasificationCost': '1.074',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.808',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.114',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.518',\n",
" 'netbackOutright': '11.797',\n",
" 'totalRegasificationCost': '1.077',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.808',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.117',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.632',\n",
" 'netbackOutright': '11.756',\n",
" 'totalRegasificationCost': '1.077',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.808',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.117',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.681',\n",
" 'netbackOutright': '11.734',\n",
" 'totalRegasificationCost': '1.076',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.808',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.116',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.59',\n",
" 'netbackOutright': '11.834',\n",
" 'totalRegasificationCost': '1.077',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.808',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.117',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.425',\n",
" 'netbackOutright': '11.829',\n",
" 'totalRegasificationCost': '1.077',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.808',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.117',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.615',\n",
" 'netbackOutright': '10.668',\n",
" 'totalRegasificationCost': '1.067',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.808',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.107',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.564',\n",
" 'netbackOutright': '10.47',\n",
" 'totalRegasificationCost': '1.065',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.808',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.105',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.942',\n",
" 'netbackOutright': '10.739',\n",
" 'totalRegasificationCost': '1.186',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.306',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.921',\n",
" 'netbackOutright': '10.833',\n",
" 'totalRegasificationCost': '1.188',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.308',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.928',\n",
" 'netbackOutright': '10.908',\n",
" 'totalRegasificationCost': '1.19',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.31',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.919',\n",
" 'netbackOutright': '11.076',\n",
" 'totalRegasificationCost': '1.195',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.315',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.795',\n",
" 'netbackOutright': '11.325',\n",
" 'totalRegasificationCost': '1.201',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.321',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.651',\n",
" 'netbackOutright': '11.664',\n",
" 'totalRegasificationCost': '1.21',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.33',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.764',\n",
" 'netbackOutright': '11.624',\n",
" 'totalRegasificationCost': '1.209',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.329',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.813',\n",
" 'netbackOutright': '11.602',\n",
" 'totalRegasificationCost': '1.208',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.328',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.724',\n",
" 'netbackOutright': '11.7',\n",
" 'totalRegasificationCost': '1.211',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.331',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.559',\n",
" 'netbackOutright': '11.695',\n",
" 'totalRegasificationCost': '1.211',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.331',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.729',\n",
" 'netbackOutright': '10.554',\n",
" 'totalRegasificationCost': '1.181',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.301',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.675',\n",
" 'netbackOutright': '10.359',\n",
" 'totalRegasificationCost': '1.176',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.296',\n",
" 'entryCapacity': '0.316',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.12',\n",
" 'netbackOutright': '10.561',\n",
" 'totalRegasificationCost': '0.736',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.631',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.066',\n",
" 'netbackOutright': '10.688',\n",
" 'totalRegasificationCost': '0.736',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.631',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.076',\n",
" 'netbackOutright': '10.76',\n",
" 'totalRegasificationCost': '0.736',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.631',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.1',\n",
" 'netbackOutright': '10.895',\n",
" 'totalRegasificationCost': '0.736',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.631',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.175',\n",
" 'netbackOutright': '10.945',\n",
" 'totalRegasificationCost': '0.736',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.631',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.099',\n",
" 'netbackOutright': '11.216',\n",
" 'totalRegasificationCost': '0.736',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.631',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.106',\n",
" 'netbackOutright': '11.282',\n",
" 'totalRegasificationCost': '0.736',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.631',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.064',\n",
" 'netbackOutright': '11.351',\n",
" 'totalRegasificationCost': '0.736',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.631',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.107',\n",
" 'netbackOutright': '11.317',\n",
" 'totalRegasificationCost': '0.736',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.631',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.139',\n",
" 'netbackOutright': '11.115',\n",
" 'totalRegasificationCost': '0.736',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.631',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-0.824',\n",
" 'netbackOutright': '10.459',\n",
" 'totalRegasificationCost': '0.738',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.631',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.107',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-0.875',\n",
" 'netbackOutright': '10.159',\n",
" 'totalRegasificationCost': '0.738',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.631',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.107',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.781',\n",
" 'netbackOutright': '10.9',\n",
" 'totalRegasificationCost': '0.781',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.562',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.106',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.787',\n",
" 'netbackOutright': '10.967',\n",
" 'totalRegasificationCost': '0.787',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.562',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.112',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.792',\n",
" 'netbackOutright': '11.044',\n",
" 'totalRegasificationCost': '0.792',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.562',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.117',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.806',\n",
" 'netbackOutright': '11.189',\n",
" 'totalRegasificationCost': '0.806',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.562',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.131',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.804',\n",
" 'netbackOutright': '11.316',\n",
" 'totalRegasificationCost': '0.804',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.562',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.129',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.871',\n",
" 'netbackOutright': '11.444',\n",
" 'totalRegasificationCost': '0.871',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.57',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.188',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.872',\n",
" 'netbackOutright': '11.516',\n",
" 'totalRegasificationCost': '0.872',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.57',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.189',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.876',\n",
" 'netbackOutright': '11.539',\n",
" 'totalRegasificationCost': '0.876',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.574',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.189',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.876',\n",
" 'netbackOutright': '11.548',\n",
" 'totalRegasificationCost': '0.876',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.574',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.189',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.874',\n",
" 'netbackOutright': '11.38',\n",
" 'totalRegasificationCost': '0.874',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.574',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.187',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.859',\n",
" 'netbackOutright': '10.424',\n",
" 'totalRegasificationCost': '0.859',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.574',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.172',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.855',\n",
" 'netbackOutright': '10.179',\n",
" 'totalRegasificationCost': '0.855',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.574',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.168',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.792',\n",
" 'netbackOutright': '10.889',\n",
" 'totalRegasificationCost': '0.408',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.738',\n",
" 'netbackOutright': '11.016',\n",
" 'totalRegasificationCost': '0.408',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.749',\n",
" 'netbackOutright': '11.087',\n",
" 'totalRegasificationCost': '0.409',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.773',\n",
" 'netbackOutright': '11.222',\n",
" 'totalRegasificationCost': '0.409',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.848',\n",
" 'netbackOutright': '11.272',\n",
" 'totalRegasificationCost': '0.409',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.772',\n",
" 'netbackOutright': '11.543',\n",
" 'totalRegasificationCost': '0.409',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.779',\n",
" 'netbackOutright': '11.609',\n",
" 'totalRegasificationCost': '0.409',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.737',\n",
" 'netbackOutright': '11.678',\n",
" 'totalRegasificationCost': '0.409',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.78',\n",
" 'netbackOutright': '11.644',\n",
" 'totalRegasificationCost': '0.409',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.812',\n",
" 'netbackOutright': '11.442',\n",
" 'totalRegasificationCost': '0.409',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.496',\n",
" 'netbackOutright': '10.787',\n",
" 'totalRegasificationCost': '0.41',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.107',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.547',\n",
" 'netbackOutright': '10.487',\n",
" 'totalRegasificationCost': '0.41',\n",
" 'slotUnloadStorageRegas': '0.243',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.107',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.547',\n",
" 'netbackOutright': '11.134',\n",
" 'totalRegasificationCost': '0.547',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.422',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.544',\n",
" 'netbackOutright': '11.21',\n",
" 'totalRegasificationCost': '0.544',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.422',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.11',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.539',\n",
" 'netbackOutright': '11.297',\n",
" 'totalRegasificationCost': '0.539',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.422',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.547',\n",
" 'netbackOutright': '11.448',\n",
" 'totalRegasificationCost': '0.547',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.422',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.568',\n",
" 'netbackOutright': '11.552',\n",
" 'totalRegasificationCost': '0.568',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.422',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.134',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.626',\n",
" 'netbackOutright': '11.689',\n",
" 'totalRegasificationCost': '0.626',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.422',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.192',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.684',\n",
" 'netbackOutright': '11.704',\n",
" 'totalRegasificationCost': '0.684',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.422',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.25',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.735',\n",
" 'netbackOutright': '11.68',\n",
" 'totalRegasificationCost': '0.735',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.422',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.301',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.677',\n",
" 'netbackOutright': '11.747',\n",
" 'totalRegasificationCost': '0.677',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.422',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.243',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.644',\n",
" 'netbackOutright': '11.61',\n",
" 'totalRegasificationCost': '0.644',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.422',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.21',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.585',\n",
" 'netbackOutright': '10.698',\n",
" 'totalRegasificationCost': '0.585',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.422',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.572',\n",
" 'netbackOutright': '10.462',\n",
" 'totalRegasificationCost': '0.572',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.422',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.139',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.682',\n",
" 'netbackOutright': '9.999',\n",
" 'totalRegasificationCost': '1.287',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.272',\n",
" 'gasInKind': '0.171',\n",
" 'entryCapacity': '0.51',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.966',\n",
" 'netbackOutright': '9.788',\n",
" 'totalRegasificationCost': '1.422',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.408',\n",
" 'gasInKind': '0.17',\n",
" 'entryCapacity': '0.51',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.901',\n",
" 'netbackOutright': '9.935',\n",
" 'totalRegasificationCost': '1.43',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.414',\n",
" 'gasInKind': '0.172',\n",
" 'entryCapacity': '0.51',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.615',\n",
" 'netbackOutright': '10.38',\n",
" 'totalRegasificationCost': '1.317',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.296',\n",
" 'gasInKind': '0.177',\n",
" 'entryCapacity': '0.51',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.659',\n",
" 'netbackOutright': '10.461',\n",
" 'totalRegasificationCost': '1.289',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.248',\n",
" 'gasInKind': '0.178',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.951',\n",
" 'netbackOutright': '11.364',\n",
" 'totalRegasificationCost': '1.254',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.2',\n",
" 'gasInKind': '0.191',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.802',\n",
" 'netbackOutright': '11.586',\n",
" 'totalRegasificationCost': '1.247',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.19',\n",
" 'gasInKind': '0.194',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.778',\n",
" 'netbackOutright': '11.637',\n",
" 'totalRegasificationCost': '1.264',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.197',\n",
" 'gasInKind': '0.195',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.784',\n",
" 'netbackOutright': '11.64',\n",
" 'totalRegasificationCost': '1.271',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.204',\n",
" 'gasInKind': '0.195',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.987',\n",
" 'netbackOutright': '11.267',\n",
" 'totalRegasificationCost': '1.274',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.212',\n",
" 'gasInKind': '0.19',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.032',\n",
" 'netbackOutright': '10.251',\n",
" 'totalRegasificationCost': '1.215',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.17',\n",
" 'gasInKind': '0.173',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.367',\n",
" 'netbackOutright': '9.667',\n",
" 'totalRegasificationCost': '1.229',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.192',\n",
" 'gasInKind': '0.165',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.343',\n",
" 'netbackOutright': '10.338',\n",
" 'totalRegasificationCost': '0.959',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.29',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.292',\n",
" 'netbackOutright': '10.462',\n",
" 'totalRegasificationCost': '0.962',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.293',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.304',\n",
" 'netbackOutright': '10.532',\n",
" 'totalRegasificationCost': '0.964',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.295',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.331',\n",
" 'netbackOutright': '10.664',\n",
" 'totalRegasificationCost': '0.967',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.298',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.408',\n",
" 'netbackOutright': '10.712',\n",
" 'totalRegasificationCost': '0.969',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.3',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.338',\n",
" 'netbackOutright': '10.977',\n",
" 'totalRegasificationCost': '0.975',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.306',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.347',\n",
" 'netbackOutright': '11.041',\n",
" 'totalRegasificationCost': '0.977',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.308',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.307',\n",
" 'netbackOutright': '11.108',\n",
" 'totalRegasificationCost': '0.979',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.31',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.349',\n",
" 'netbackOutright': '11.075',\n",
" 'totalRegasificationCost': '0.978',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.309',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.376',\n",
" 'netbackOutright': '10.878',\n",
" 'totalRegasificationCost': '0.973',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.304',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.044',\n",
" 'netbackOutright': '10.239',\n",
" 'totalRegasificationCost': '0.958',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.287',\n",
" 'entryCapacity': '0.107',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.087',\n",
" 'netbackOutright': '9.947',\n",
" 'totalRegasificationCost': '0.95',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.279',\n",
" 'entryCapacity': '0.107',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.811',\n",
" 'netbackOutright': '10.87',\n",
" 'totalRegasificationCost': '0.427',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.057',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.757',\n",
" 'netbackOutright': '10.997',\n",
" 'totalRegasificationCost': '0.427',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.057',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.768',\n",
" 'netbackOutright': '11.068',\n",
" 'totalRegasificationCost': '0.428',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.058',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.792',\n",
" 'netbackOutright': '11.203',\n",
" 'totalRegasificationCost': '0.428',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.058',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.868',\n",
" 'netbackOutright': '11.252',\n",
" 'totalRegasificationCost': '0.429',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.059',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.793',\n",
" 'netbackOutright': '11.522',\n",
" 'totalRegasificationCost': '0.43',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.06',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.8',\n",
" 'netbackOutright': '11.588',\n",
" 'totalRegasificationCost': '0.43',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.06',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.759',\n",
" 'netbackOutright': '11.656',\n",
" 'totalRegasificationCost': '0.431',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.061',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.802',\n",
" 'netbackOutright': '11.622',\n",
" 'totalRegasificationCost': '0.431',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.061',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.833',\n",
" 'netbackOutright': '11.421',\n",
" 'totalRegasificationCost': '0.43',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.06',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.514',\n",
" 'netbackOutright': '10.769',\n",
" 'totalRegasificationCost': '0.428',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.056',\n",
" 'entryCapacity': '0.107',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.564',\n",
" 'netbackOutright': '10.47',\n",
" 'totalRegasificationCost': '0.427',\n",
" 'slotUnloadStorageRegas': '0.22',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.055',\n",
" 'entryCapacity': '0.107',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.59',\n",
" 'netbackOutright': '11.091',\n",
" 'totalRegasificationCost': '1.395',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.089',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.092',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.577',\n",
" 'netbackOutright': '11.177',\n",
" 'totalRegasificationCost': '1.395',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.089',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.092',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.73',\n",
" 'netbackOutright': '11.106',\n",
" 'totalRegasificationCost': '1.395',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.089',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.092',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.491',\n",
" 'netbackOutright': '11.504',\n",
" 'totalRegasificationCost': '1.398',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.089',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.095',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.895',\n",
" 'netbackOutright': '11.225',\n",
" 'totalRegasificationCost': '1.396',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.089',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.093',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.929',\n",
" 'netbackOutright': '11.386',\n",
" 'totalRegasificationCost': '1.397',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.089',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.094',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.868',\n",
" 'netbackOutright': '11.52',\n",
" 'totalRegasificationCost': '1.398',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.089',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.095',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.94',\n",
" 'netbackOutright': '11.475',\n",
" 'totalRegasificationCost': '1.398',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.089',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.095',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.907',\n",
" 'netbackOutright': '11.517',\n",
" 'totalRegasificationCost': '1.398',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.089',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.095',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.826',\n",
" 'netbackOutright': '11.428',\n",
" 'totalRegasificationCost': '1.397',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.089',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.094',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.623',\n",
" 'netbackOutright': '10.66',\n",
" 'totalRegasificationCost': '1.392',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.089',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.089',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.714',\n",
" 'netbackOutright': '10.32',\n",
" 'totalRegasificationCost': '1.389',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.089',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.054',\n",
" 'gasInKind': '0.086',\n",
" 'entryCapacity': '0.16',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.167',\n",
" 'netbackOutright': '11.514',\n",
" 'totalRegasificationCost': '0.972',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.139',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.155',\n",
" 'netbackOutright': '11.599',\n",
" 'totalRegasificationCost': '0.973',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.14',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.307',\n",
" 'netbackOutright': '11.529',\n",
" 'totalRegasificationCost': '0.972',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.139',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.07',\n",
" 'netbackOutright': '11.925',\n",
" 'totalRegasificationCost': '0.977',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.144',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.472',\n",
" 'netbackOutright': '11.648',\n",
" 'totalRegasificationCost': '0.973',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.14',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.507',\n",
" 'netbackOutright': '11.808',\n",
" 'totalRegasificationCost': '0.975',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.142',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.447',\n",
" 'netbackOutright': '11.941',\n",
" 'totalRegasificationCost': '0.977',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.144',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.518',\n",
" 'netbackOutright': '11.897',\n",
" 'totalRegasificationCost': '0.976',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.143',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.486',\n",
" 'netbackOutright': '11.938',\n",
" 'totalRegasificationCost': '0.977',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.144',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.405',\n",
" 'netbackOutright': '11.849',\n",
" 'totalRegasificationCost': '0.976',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.143',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.198',\n",
" 'netbackOutright': '11.085',\n",
" 'totalRegasificationCost': '0.967',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.134',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.288',\n",
" 'netbackOutright': '10.746',\n",
" 'totalRegasificationCost': '0.963',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.622',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.13',\n",
" 'entryCapacity': '0.162',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.491',\n",
" 'netbackOutright': '11.19',\n",
" 'totalRegasificationCost': '1.296',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.255',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.48',\n",
" 'netbackOutright': '11.274',\n",
" 'totalRegasificationCost': '1.298',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.257',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.631',\n",
" 'netbackOutright': '11.205',\n",
" 'totalRegasificationCost': '1.296',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.255',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.397',\n",
" 'netbackOutright': '11.598',\n",
" 'totalRegasificationCost': '1.304',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.263',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.798',\n",
" 'netbackOutright': '11.322',\n",
" 'totalRegasificationCost': '1.299',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.258',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.834',\n",
" 'netbackOutright': '11.481',\n",
" 'totalRegasificationCost': '1.302',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.261',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.775',\n",
" 'netbackOutright': '11.613',\n",
" 'totalRegasificationCost': '1.305',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.264',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.846',\n",
" 'netbackOutright': '11.569',\n",
" 'totalRegasificationCost': '1.304',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.263',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.814',\n",
" 'netbackOutright': '11.61',\n",
" 'totalRegasificationCost': '1.305',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.264',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.732',\n",
" 'netbackOutright': '11.522',\n",
" 'totalRegasificationCost': '1.303',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.262',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.518',\n",
" 'netbackOutright': '10.765',\n",
" 'totalRegasificationCost': '1.287',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.246',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.605',\n",
" 'netbackOutright': '10.429',\n",
" 'totalRegasificationCost': '1.28',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.1',\n",
" 'gasInKind': '0.239',\n",
" 'entryCapacity': '0.116',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.523',\n",
" 'netbackOutright': '10.158',\n",
" 'totalRegasificationCost': '1.128',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.136',\n",
" 'gasInKind': '0.149',\n",
" 'entryCapacity': '0.51',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.671',\n",
" 'netbackOutright': '10.083',\n",
" 'totalRegasificationCost': '1.127',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.136',\n",
" 'gasInKind': '0.148',\n",
" 'entryCapacity': '0.51',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.602',\n",
" 'netbackOutright': '10.234',\n",
" 'totalRegasificationCost': '1.131',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.138',\n",
" 'gasInKind': '0.15',\n",
" 'entryCapacity': '0.51',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.443',\n",
" 'netbackOutright': '10.552',\n",
" 'totalRegasificationCost': '1.145',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.148',\n",
" 'gasInKind': '0.154',\n",
" 'entryCapacity': '0.51',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.536',\n",
" 'netbackOutright': '10.584',\n",
" 'totalRegasificationCost': '1.166',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.149',\n",
" 'gasInKind': '0.155',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.875',\n",
" 'netbackOutright': '11.44',\n",
" 'totalRegasificationCost': '1.178',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.15',\n",
" 'gasInKind': '0.166',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.738',\n",
" 'netbackOutright': '11.65',\n",
" 'totalRegasificationCost': '1.183',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.152',\n",
" 'gasInKind': '0.169',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.708',\n",
" 'netbackOutright': '11.707',\n",
" 'totalRegasificationCost': '1.194',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.153',\n",
" 'gasInKind': '0.17',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.707',\n",
" 'netbackOutright': '11.717',\n",
" 'totalRegasificationCost': '1.194',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.153',\n",
" 'gasInKind': '0.17',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.9',\n",
" 'netbackOutright': '11.354',\n",
" 'totalRegasificationCost': '1.187',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.151',\n",
" 'gasInKind': '0.165',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.971',\n",
" 'netbackOutright': '10.312',\n",
" 'totalRegasificationCost': '1.154',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.132',\n",
" 'gasInKind': '0.151',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.281',\n",
" 'netbackOutright': '9.753',\n",
" 'totalRegasificationCost': '1.143',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.128',\n",
" 'gasInKind': '0.144',\n",
" 'entryCapacity': '0.477',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.773',\n",
" 'netbackOutright': '10.908',\n",
" 'totalRegasificationCost': '1.017',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.805',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.06',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.75',\n",
" 'netbackOutright': '11.004',\n",
" 'totalRegasificationCost': '1.017',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.805',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.06',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.756',\n",
" 'netbackOutright': '11.08',\n",
" 'totalRegasificationCost': '1.018',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.805',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.061',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.743',\n",
" 'netbackOutright': '11.252',\n",
" 'totalRegasificationCost': '1.019',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.805',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.062',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.847',\n",
" 'netbackOutright': '11.273',\n",
" 'totalRegasificationCost': '1.253',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.819',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.282',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.702',\n",
" 'netbackOutright': '11.613',\n",
" 'totalRegasificationCost': '1.261',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.819',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.29',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.815',\n",
" 'netbackOutright': '11.573',\n",
" 'totalRegasificationCost': '1.26',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.819',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.289',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.864',\n",
" 'netbackOutright': '11.551',\n",
" 'totalRegasificationCost': '1.259',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.819',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.288',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.774',\n",
" 'netbackOutright': '11.65',\n",
" 'totalRegasificationCost': '1.261',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.819',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.29',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.609',\n",
" 'netbackOutright': '11.645',\n",
" 'totalRegasificationCost': '1.261',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.819',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.29',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.783',\n",
" 'netbackOutright': '10.5',\n",
" 'totalRegasificationCost': '1.235',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.819',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.264',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.729',\n",
" 'netbackOutright': '10.305',\n",
" 'totalRegasificationCost': '1.23',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.819',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.259',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.699',\n",
" 'netbackOutright': '10.982',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.571',\n",
" 'netbackOutright': '11.183',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.538',\n",
" 'netbackOutright': '11.298',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.604',\n",
" 'netbackOutright': '11.391',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.539',\n",
" 'netbackOutright': '11.581',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.539',\n",
" 'netbackOutright': '11.776',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.539',\n",
" 'netbackOutright': '11.849',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.536',\n",
" 'netbackOutright': '11.879',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.536',\n",
" 'netbackOutright': '11.888',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.536',\n",
" 'netbackOutright': '11.718',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.447',\n",
" 'netbackOutright': '10.836',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.447',\n",
" 'netbackOutright': '10.587',\n",
" 'totalRegasificationCost': '0.257',\n",
" 'slotUnloadStorageRegas': '0.023',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.082',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.045',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.798',\n",
" 'netbackOutright': '10.883',\n",
" 'totalRegasificationCost': '1.042',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.806',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.084',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.776',\n",
" 'netbackOutright': '10.978',\n",
" 'totalRegasificationCost': '1.043',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.806',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.085',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.781',\n",
" 'netbackOutright': '11.055',\n",
" 'totalRegasificationCost': '1.043',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.806',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.085',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.769',\n",
" 'netbackOutright': '11.226',\n",
" 'totalRegasificationCost': '1.045',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.806',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.087',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.888',\n",
" 'netbackOutright': '11.232',\n",
" 'totalRegasificationCost': '1.294',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.821',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.321',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.744',\n",
" 'netbackOutright': '11.571',\n",
" 'totalRegasificationCost': '1.303',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.821',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.33',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.857',\n",
" 'netbackOutright': '11.531',\n",
" 'totalRegasificationCost': '1.302',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.821',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.329',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.906',\n",
" 'netbackOutright': '11.509',\n",
" 'totalRegasificationCost': '1.301',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.821',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.328',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.817',\n",
" 'netbackOutright': '11.607',\n",
" 'totalRegasificationCost': '1.304',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.821',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.331',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.652',\n",
" 'netbackOutright': '11.602',\n",
" 'totalRegasificationCost': '1.304',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.821',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.331',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.822',\n",
" 'netbackOutright': '10.461',\n",
" 'totalRegasificationCost': '1.274',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.821',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.301',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.768',\n",
" 'netbackOutright': '10.266',\n",
" 'totalRegasificationCost': '1.269',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.821',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.296',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.942',\n",
" 'netbackOutright': '10.739',\n",
" 'totalRegasificationCost': '1.186',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.815',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.219',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.854',\n",
" 'netbackOutright': '10.9',\n",
" 'totalRegasificationCost': '1.121',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.811',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.158',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.86',\n",
" 'netbackOutright': '10.976',\n",
" 'totalRegasificationCost': '1.122',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.811',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.159',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.916',\n",
" 'netbackOutright': '11.079',\n",
" 'totalRegasificationCost': '1.192',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.815',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.225',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.861',\n",
" 'netbackOutright': '11.259',\n",
" 'totalRegasificationCost': '1.267',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.82',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.295',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.716',\n",
" 'netbackOutright': '11.599',\n",
" 'totalRegasificationCost': '1.275',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.82',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.303',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.829',\n",
" 'netbackOutright': '11.559',\n",
" 'totalRegasificationCost': '1.274',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.82',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.302',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.879',\n",
" 'netbackOutright': '11.536',\n",
" 'totalRegasificationCost': '1.274',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.82',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.302',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.789',\n",
" 'netbackOutright': '11.635',\n",
" 'totalRegasificationCost': '1.276',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.82',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.304',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.624',\n",
" 'netbackOutright': '11.63',\n",
" 'totalRegasificationCost': '1.276',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.82',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.304',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.796',\n",
" 'netbackOutright': '10.487',\n",
" 'totalRegasificationCost': '1.248',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.82',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.276',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.743',\n",
" 'netbackOutright': '10.291',\n",
" 'totalRegasificationCost': '1.244',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.82',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.272',\n",
" 'entryCapacity': '0.152',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.577',\n",
" 'netbackOutright': '11.104',\n",
" 'totalRegasificationCost': '0.379',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.186',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.151',\n",
" 'entryCapacity': '0.022',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.546',\n",
" 'netbackOutright': '11.208',\n",
" 'totalRegasificationCost': '0.381',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.186',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.153',\n",
" 'entryCapacity': '0.022',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.637',\n",
" 'netbackOutright': '11.199',\n",
" 'totalRegasificationCost': '0.381',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.186',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.153',\n",
" 'entryCapacity': '0.022',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.646',\n",
" 'netbackOutright': '11.349',\n",
" 'totalRegasificationCost': '0.39',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.186',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.155',\n",
" 'entryCapacity': '0.029',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.49',\n",
" 'netbackOutright': '11.63',\n",
" 'totalRegasificationCost': '0.412',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.186',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.159',\n",
" 'entryCapacity': '0.046',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.508',\n",
" 'netbackOutright': '11.807',\n",
" 'totalRegasificationCost': '0.43',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.186',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.161',\n",
" 'entryCapacity': '0.062',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.517',\n",
" 'netbackOutright': '11.871',\n",
" 'totalRegasificationCost': '0.439',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.186',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.162',\n",
" 'entryCapacity': '0.07',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.479',\n",
" 'netbackOutright': '11.936',\n",
" 'totalRegasificationCost': '0.447',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.186',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.163',\n",
" 'entryCapacity': '0.077',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.471',\n",
" 'netbackOutright': '11.953',\n",
" 'totalRegasificationCost': '0.439',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.187',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.163',\n",
" 'entryCapacity': '0.068',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.458',\n",
" 'netbackOutright': '11.796',\n",
" 'totalRegasificationCost': '0.426',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.187',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.161',\n",
" 'entryCapacity': '0.057',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.473',\n",
" 'netbackOutright': '10.81',\n",
" 'totalRegasificationCost': '0.397',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.187',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.148',\n",
" 'entryCapacity': '0.042',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-08',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.456',\n",
" 'netbackOutright': '10.578',\n",
" 'totalRegasificationCost': '0.38',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.187',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.144',\n",
" 'entryCapacity': '0.029',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.619',\n",
" 'netbackOutright': '10.885',\n",
" 'totalRegasificationCost': '1.431',\n",
" 'slotUnloadStorageRegas': '1.123',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.093',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.563',\n",
" 'netbackOutright': '11.003',\n",
" 'totalRegasificationCost': '1.432',\n",
" 'slotUnloadStorageRegas': '1.123',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.094',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.761',\n",
" 'netbackOutright': '10.897',\n",
" 'totalRegasificationCost': '1.431',\n",
" 'slotUnloadStorageRegas': '1.123',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.093',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.355',\n",
" 'netbackOutright': '11.479',\n",
" 'totalRegasificationCost': '1.436',\n",
" 'slotUnloadStorageRegas': '1.123',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.098',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.927',\n",
" 'netbackOutright': '11.024',\n",
" 'totalRegasificationCost': '1.432',\n",
" 'slotUnloadStorageRegas': '1.123',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.094',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.962',\n",
" 'netbackOutright': '11.185',\n",
" 'totalRegasificationCost': '1.433',\n",
" 'slotUnloadStorageRegas': '1.123',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.095',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.9',\n",
" 'netbackOutright': '11.319',\n",
" 'totalRegasificationCost': '1.434',\n",
" 'slotUnloadStorageRegas': '1.123',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.096',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.972',\n",
" 'netbackOutright': '11.28',\n",
" 'totalRegasificationCost': '1.434',\n",
" 'slotUnloadStorageRegas': '1.123',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.096',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.94',\n",
" 'netbackOutright': '11.329',\n",
" 'totalRegasificationCost': '1.434',\n",
" 'slotUnloadStorageRegas': '1.123',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.096',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.86',\n",
" 'netbackOutright': '11.243',\n",
" 'totalRegasificationCost': '1.434',\n",
" 'slotUnloadStorageRegas': '1.123',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.096',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.655',\n",
" 'netbackOutright': '10.553',\n",
" 'totalRegasificationCost': '1.429',\n",
" 'slotUnloadStorageRegas': '1.123',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.091',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.747',\n",
" 'netbackOutright': '10.241',\n",
" 'totalRegasificationCost': '1.426',\n",
" 'slotUnloadStorageRegas': '1.123',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.088',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.785',\n",
" 'netbackOutright': '10.719',\n",
" 'totalRegasificationCost': '1.049',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.083',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.779',\n",
" 'netbackOutright': '10.787',\n",
" 'totalRegasificationCost': '1.049',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.083',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.764',\n",
" 'netbackOutright': '10.894',\n",
" 'totalRegasificationCost': '1.05',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.084',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.801',\n",
" 'netbackOutright': '11.033',\n",
" 'totalRegasificationCost': '1.051',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.085',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.695',\n",
" 'netbackOutright': '11.256',\n",
" 'totalRegasificationCost': '1.079',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.814',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.112',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.512',\n",
" 'netbackOutright': '11.635',\n",
" 'totalRegasificationCost': '1.083',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.814',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.116',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.626',\n",
" 'netbackOutright': '11.593',\n",
" 'totalRegasificationCost': '1.082',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.814',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.115',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.676',\n",
" 'netbackOutright': '11.576',\n",
" 'totalRegasificationCost': '1.082',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.814',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.115',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.585',\n",
" 'netbackOutright': '11.684',\n",
" 'totalRegasificationCost': '1.083',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.814',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.116',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.419',\n",
" 'netbackOutright': '11.684',\n",
" 'totalRegasificationCost': '1.083',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.814',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.116',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.61',\n",
" 'netbackOutright': '10.598',\n",
" 'totalRegasificationCost': '1.073',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.814',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.106',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.559',\n",
" 'netbackOutright': '10.429',\n",
" 'totalRegasificationCost': '1.071',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.814',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.104',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.921',\n",
" 'netbackOutright': '10.583',\n",
" 'totalRegasificationCost': '1.185',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.302',\n",
" 'entryCapacity': '0.319',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.916',\n",
" 'netbackOutright': '10.65',\n",
" 'totalRegasificationCost': '1.186',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.303',\n",
" 'entryCapacity': '0.319',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.903',\n",
" 'netbackOutright': '10.755',\n",
" 'totalRegasificationCost': '1.189',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.306',\n",
" 'entryCapacity': '0.319',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.943',\n",
" 'netbackOutright': '10.891',\n",
" 'totalRegasificationCost': '1.193',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.31',\n",
" 'entryCapacity': '0.319',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.815',\n",
" 'netbackOutright': '11.136',\n",
" 'totalRegasificationCost': '1.199',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.316',\n",
" 'entryCapacity': '0.319',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.638',\n",
" 'netbackOutright': '11.509',\n",
" 'totalRegasificationCost': '1.209',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.326',\n",
" 'entryCapacity': '0.319',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.752',\n",
" 'netbackOutright': '11.467',\n",
" 'totalRegasificationCost': '1.208',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.325',\n",
" 'entryCapacity': '0.319',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.802',\n",
" 'netbackOutright': '11.45',\n",
" 'totalRegasificationCost': '1.208',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.325',\n",
" 'entryCapacity': '0.319',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.712',\n",
" 'netbackOutright': '11.557',\n",
" 'totalRegasificationCost': '1.21',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.327',\n",
" 'entryCapacity': '0.319',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.546',\n",
" 'netbackOutright': '11.557',\n",
" 'totalRegasificationCost': '1.21',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.327',\n",
" 'entryCapacity': '0.319',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.719',\n",
" 'netbackOutright': '10.489',\n",
" 'totalRegasificationCost': '1.182',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.299',\n",
" 'entryCapacity': '0.319',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.666',\n",
" 'netbackOutright': '10.322',\n",
" 'totalRegasificationCost': '1.178',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.295',\n",
" 'entryCapacity': '0.319',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.128',\n",
" 'netbackOutright': '10.376',\n",
" 'totalRegasificationCost': '0.741',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.636',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.084',\n",
" 'netbackOutright': '10.482',\n",
" 'totalRegasificationCost': '0.741',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.636',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.091',\n",
" 'netbackOutright': '10.567',\n",
" 'totalRegasificationCost': '0.741',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.636',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.115',\n",
" 'netbackOutright': '10.719',\n",
" 'totalRegasificationCost': '0.741',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.636',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.19',\n",
" 'netbackOutright': '10.761',\n",
" 'totalRegasificationCost': '0.741',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.636',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.115',\n",
" 'netbackOutright': '11.032',\n",
" 'totalRegasificationCost': '0.741',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.636',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.121',\n",
" 'netbackOutright': '11.098',\n",
" 'totalRegasificationCost': '0.741',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.636',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.078',\n",
" 'netbackOutright': '11.174',\n",
" 'totalRegasificationCost': '0.741',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.636',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.121',\n",
" 'netbackOutright': '11.148',\n",
" 'totalRegasificationCost': '0.741',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.636',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.154',\n",
" 'netbackOutright': '10.949',\n",
" 'totalRegasificationCost': '0.741',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.636',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-0.804',\n",
" 'netbackOutright': '10.404',\n",
" 'totalRegasificationCost': '0.744',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.636',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.108',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-0.856',\n",
" 'netbackOutright': '10.132',\n",
" 'totalRegasificationCost': '0.744',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.636',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.108',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.787',\n",
" 'netbackOutright': '10.717',\n",
" 'totalRegasificationCost': '0.787',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.566',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.107',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.792',\n",
" 'netbackOutright': '10.774',\n",
" 'totalRegasificationCost': '0.792',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.566',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.112',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.796',\n",
" 'netbackOutright': '10.862',\n",
" 'totalRegasificationCost': '0.796',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.566',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.116',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.811',\n",
" 'netbackOutright': '11.023',\n",
" 'totalRegasificationCost': '0.811',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.566',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.131',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.809',\n",
" 'netbackOutright': '11.142',\n",
" 'totalRegasificationCost': '0.809',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.566',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.129',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.874',\n",
" 'netbackOutright': '11.273',\n",
" 'totalRegasificationCost': '0.874',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.575',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.185',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.875',\n",
" 'netbackOutright': '11.344',\n",
" 'totalRegasificationCost': '0.875',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.575',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.186',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.879',\n",
" 'netbackOutright': '11.373',\n",
" 'totalRegasificationCost': '0.879',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.578',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.187',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.879',\n",
" 'netbackOutright': '11.39',\n",
" 'totalRegasificationCost': '0.879',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.578',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.187',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.876',\n",
" 'netbackOutright': '11.227',\n",
" 'totalRegasificationCost': '0.876',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.578',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.184',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.863',\n",
" 'netbackOutright': '10.345',\n",
" 'totalRegasificationCost': '0.863',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.578',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.171',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.859',\n",
" 'netbackOutright': '10.129',\n",
" 'totalRegasificationCost': '0.859',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.578',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.167',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.797',\n",
" 'netbackOutright': '10.707',\n",
" 'totalRegasificationCost': '0.41',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.753',\n",
" 'netbackOutright': '10.813',\n",
" 'totalRegasificationCost': '0.41',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.76',\n",
" 'netbackOutright': '10.898',\n",
" 'totalRegasificationCost': '0.41',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.784',\n",
" 'netbackOutright': '11.05',\n",
" 'totalRegasificationCost': '0.41',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.86',\n",
" 'netbackOutright': '11.091',\n",
" 'totalRegasificationCost': '0.411',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.785',\n",
" 'netbackOutright': '11.362',\n",
" 'totalRegasificationCost': '0.411',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.791',\n",
" 'netbackOutright': '11.428',\n",
" 'totalRegasificationCost': '0.411',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.748',\n",
" 'netbackOutright': '11.504',\n",
" 'totalRegasificationCost': '0.411',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.791',\n",
" 'netbackOutright': '11.478',\n",
" 'totalRegasificationCost': '0.411',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.824',\n",
" 'netbackOutright': '11.279',\n",
" 'totalRegasificationCost': '0.411',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.473',\n",
" 'netbackOutright': '10.735',\n",
" 'totalRegasificationCost': '0.413',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.108',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.525',\n",
" 'netbackOutright': '10.463',\n",
" 'totalRegasificationCost': '0.413',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.108',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.551',\n",
" 'netbackOutright': '10.953',\n",
" 'totalRegasificationCost': '0.551',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.425',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.548',\n",
" 'netbackOutright': '11.018',\n",
" 'totalRegasificationCost': '0.548',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.425',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.111',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.543',\n",
" 'netbackOutright': '11.115',\n",
" 'totalRegasificationCost': '0.543',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.425',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.106',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.55',\n",
" 'netbackOutright': '11.284',\n",
" 'totalRegasificationCost': '0.55',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.425',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.572',\n",
" 'netbackOutright': '11.379',\n",
" 'totalRegasificationCost': '0.572',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.425',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.135',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.63',\n",
" 'netbackOutright': '11.517',\n",
" 'totalRegasificationCost': '0.63',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.425',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.193',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.689',\n",
" 'netbackOutright': '11.53',\n",
" 'totalRegasificationCost': '0.689',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.425',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.252',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.74',\n",
" 'netbackOutright': '11.512',\n",
" 'totalRegasificationCost': '0.74',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.425',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.303',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.682',\n",
" 'netbackOutright': '11.587',\n",
" 'totalRegasificationCost': '0.682',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.425',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.245',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.649',\n",
" 'netbackOutright': '11.454',\n",
" 'totalRegasificationCost': '0.649',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.425',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.212',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.589',\n",
" 'netbackOutright': '10.619',\n",
" 'totalRegasificationCost': '0.589',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.425',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.576',\n",
" 'netbackOutright': '10.412',\n",
" 'totalRegasificationCost': '0.576',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.425',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.14',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.684',\n",
" 'netbackOutright': '9.82',\n",
" 'totalRegasificationCost': '1.284',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.27',\n",
" 'gasInKind': '0.168',\n",
" 'entryCapacity': '0.512',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.966',\n",
" 'netbackOutright': '9.6',\n",
" 'totalRegasificationCost': '1.415',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.402',\n",
" 'gasInKind': '0.167',\n",
" 'entryCapacity': '0.512',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.895',\n",
" 'netbackOutright': '9.763',\n",
" 'totalRegasificationCost': '1.421',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.406',\n",
" 'gasInKind': '0.169',\n",
" 'entryCapacity': '0.512',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.638',\n",
" 'netbackOutright': '10.196',\n",
" 'totalRegasificationCost': '1.312',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.292',\n",
" 'gasInKind': '0.174',\n",
" 'entryCapacity': '0.512',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.668',\n",
" 'netbackOutright': '10.283',\n",
" 'totalRegasificationCost': '1.286',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.246',\n",
" 'gasInKind': '0.175',\n",
" 'entryCapacity': '0.479',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.921',\n",
" 'netbackOutright': '11.226',\n",
" 'totalRegasificationCost': '1.255',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.201',\n",
" 'gasInKind': '0.189',\n",
" 'entryCapacity': '0.479',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.731',\n",
" 'netbackOutright': '11.488',\n",
" 'totalRegasificationCost': '1.249',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.191',\n",
" 'gasInKind': '0.193',\n",
" 'entryCapacity': '0.479',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.717',\n",
" 'netbackOutright': '11.535',\n",
" 'totalRegasificationCost': '1.263',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.195',\n",
" 'gasInKind': '0.194',\n",
" 'entryCapacity': '0.479',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.747',\n",
" 'netbackOutright': '11.522',\n",
" 'totalRegasificationCost': '1.269',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.202',\n",
" 'gasInKind': '0.193',\n",
" 'entryCapacity': '0.479',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.957',\n",
" 'netbackOutright': '11.146',\n",
" 'totalRegasificationCost': '1.272',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.21',\n",
" 'gasInKind': '0.188',\n",
" 'entryCapacity': '0.479',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-0.984',\n",
" 'netbackOutright': '10.224',\n",
" 'totalRegasificationCost': '1.218',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.171',\n",
" 'gasInKind': '0.173',\n",
" 'entryCapacity': '0.479',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.347',\n",
" 'netbackOutright': '9.641',\n",
" 'totalRegasificationCost': '1.23',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.314',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.192',\n",
" 'gasInKind': '0.164',\n",
" 'entryCapacity': '0.479',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.341',\n",
" 'netbackOutright': '10.163',\n",
" 'totalRegasificationCost': '0.954',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.285',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.3',\n",
" 'netbackOutright': '10.266',\n",
" 'totalRegasificationCost': '0.957',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.288',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.309',\n",
" 'netbackOutright': '10.349',\n",
" 'totalRegasificationCost': '0.959',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.29',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.337',\n",
" 'netbackOutright': '10.497',\n",
" 'totalRegasificationCost': '0.963',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.294',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.413',\n",
" 'netbackOutright': '10.538',\n",
" 'totalRegasificationCost': '0.964',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.295',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.345',\n",
" 'netbackOutright': '10.802',\n",
" 'totalRegasificationCost': '0.971',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.302',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.353',\n",
" 'netbackOutright': '10.866',\n",
" 'totalRegasificationCost': '0.973',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.304',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.312',\n",
" 'netbackOutright': '10.94',\n",
" 'totalRegasificationCost': '0.975',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.306',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.354',\n",
" 'netbackOutright': '10.915',\n",
" 'totalRegasificationCost': '0.974',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.305',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.382',\n",
" 'netbackOutright': '10.721',\n",
" 'totalRegasificationCost': '0.969',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.3',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.018',\n",
" 'netbackOutright': '10.19',\n",
" 'totalRegasificationCost': '0.958',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.286',\n",
" 'entryCapacity': '0.108',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n",
" 'netbackTtfBasis': '-1.063',\n",
" 'netbackOutright': '9.925',\n",
" 'totalRegasificationCost': '0.951',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.279',\n",
" 'entryCapacity': '0.108',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.815',\n",
" 'netbackOutright': '10.689',\n",
" 'totalRegasificationCost': '0.428',\n",
" 'slotUnloadStorageRegas': '0.222',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.056',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.771',\n",
" 'netbackOutright': '10.795',\n",
" 'totalRegasificationCost': '0.428',\n",
" 'slotUnloadStorageRegas': '0.222',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.056',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.779',\n",
" 'netbackOutright': '10.879',\n",
" 'totalRegasificationCost': '0.429',\n",
" 'slotUnloadStorageRegas': '0.222',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.057',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.804',\n",
" 'netbackOutright': '11.03',\n",
" 'totalRegasificationCost': '0.43',\n",
" 'slotUnloadStorageRegas': '0.222',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.058',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.879',\n",
" 'netbackOutright': '11.072',\n",
" 'totalRegasificationCost': '0.43',\n",
" 'slotUnloadStorageRegas': '0.222',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.058',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.805',\n",
" 'netbackOutright': '11.342',\n",
" 'totalRegasificationCost': '0.431',\n",
" 'slotUnloadStorageRegas': '0.222',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.059',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.811',\n",
" 'netbackOutright': '11.408',\n",
" 'totalRegasificationCost': '0.431',\n",
" 'slotUnloadStorageRegas': '0.222',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.059',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.769',\n",
" 'netbackOutright': '11.483',\n",
" 'totalRegasificationCost': '0.432',\n",
" 'slotUnloadStorageRegas': '0.222',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.06',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.812',\n",
" 'netbackOutright': '11.457',\n",
" 'totalRegasificationCost': '0.432',\n",
" 'slotUnloadStorageRegas': '0.222',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.06',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.844',\n",
" 'netbackOutright': '11.259',\n",
" 'totalRegasificationCost': '0.431',\n",
" 'slotUnloadStorageRegas': '0.222',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.059',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.491',\n",
" 'netbackOutright': '10.717',\n",
" 'totalRegasificationCost': '0.431',\n",
" 'slotUnloadStorageRegas': '0.222',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.056',\n",
" 'entryCapacity': '0.108',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n",
" 'netbackTtfBasis': '-0.542',\n",
" 'netbackOutright': '10.446',\n",
" 'totalRegasificationCost': '0.43',\n",
" 'slotUnloadStorageRegas': '0.222',\n",
" 'slotBerth': '0.027',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.018',\n",
" 'gasInKind': '0.055',\n",
" 'entryCapacity': '0.108',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.592',\n",
" 'netbackOutright': '10.912',\n",
" 'totalRegasificationCost': '1.404',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.097',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.055',\n",
" 'gasInKind': '0.091',\n",
" 'entryCapacity': '0.161',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.535',\n",
" 'netbackOutright': '11.031',\n",
" 'totalRegasificationCost': '1.404',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.097',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.055',\n",
" 'gasInKind': '0.091',\n",
" 'entryCapacity': '0.161',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.734',\n",
" 'netbackOutright': '10.924',\n",
" 'totalRegasificationCost': '1.404',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.097',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.055',\n",
" 'gasInKind': '0.091',\n",
" 'entryCapacity': '0.161',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.327',\n",
" 'netbackOutright': '11.507',\n",
" 'totalRegasificationCost': '1.408',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.097',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.055',\n",
" 'gasInKind': '0.095',\n",
" 'entryCapacity': '0.161',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.9',\n",
" 'netbackOutright': '11.051',\n",
" 'totalRegasificationCost': '1.405',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.097',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.055',\n",
" 'gasInKind': '0.092',\n",
" 'entryCapacity': '0.161',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.935',\n",
" 'netbackOutright': '11.212',\n",
" 'totalRegasificationCost': '1.406',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.097',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.055',\n",
" 'gasInKind': '0.093',\n",
" 'entryCapacity': '0.161',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.873',\n",
" 'netbackOutright': '11.346',\n",
" 'totalRegasificationCost': '1.407',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.097',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.055',\n",
" 'gasInKind': '0.094',\n",
" 'entryCapacity': '0.161',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.944',\n",
" 'netbackOutright': '11.308',\n",
" 'totalRegasificationCost': '1.406',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.097',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.055',\n",
" 'gasInKind': '0.093',\n",
" 'entryCapacity': '0.161',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.913',\n",
" 'netbackOutright': '11.356',\n",
" 'totalRegasificationCost': '1.407',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.097',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.055',\n",
" 'gasInKind': '0.094',\n",
" 'entryCapacity': '0.161',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.832',\n",
" 'netbackOutright': '11.271',\n",
" 'totalRegasificationCost': '1.406',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.097',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.055',\n",
" 'gasInKind': '0.093',\n",
" 'entryCapacity': '0.161',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.627',\n",
" 'netbackOutright': '10.581',\n",
" 'totalRegasificationCost': '1.401',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.097',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.055',\n",
" 'gasInKind': '0.088',\n",
" 'entryCapacity': '0.161',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n",
" 'netbackTtfBasis': '-0.72',\n",
" 'netbackOutright': '10.268',\n",
" 'totalRegasificationCost': '1.399',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '1.097',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.055',\n",
" 'gasInKind': '0.086',\n",
" 'entryCapacity': '0.161',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.165',\n",
" 'netbackOutright': '11.339',\n",
" 'totalRegasificationCost': '0.977',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.627',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.137',\n",
" 'entryCapacity': '0.164',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.109',\n",
" 'netbackOutright': '11.457',\n",
" 'totalRegasificationCost': '0.978',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.627',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.138',\n",
" 'entryCapacity': '0.164',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.307',\n",
" 'netbackOutright': '11.351',\n",
" 'totalRegasificationCost': '0.977',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.627',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.137',\n",
" 'entryCapacity': '0.164',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '0.097',\n",
" 'netbackOutright': '11.931',\n",
" 'totalRegasificationCost': '0.984',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.627',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.144',\n",
" 'entryCapacity': '0.164',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.474',\n",
" 'netbackOutright': '11.477',\n",
" 'totalRegasificationCost': '0.979',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.627',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.139',\n",
" 'entryCapacity': '0.164',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.509',\n",
" 'netbackOutright': '11.638',\n",
" 'totalRegasificationCost': '0.98',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.627',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.14',\n",
" 'entryCapacity': '0.164',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.448',\n",
" 'netbackOutright': '11.771',\n",
" 'totalRegasificationCost': '0.982',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.627',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.142',\n",
" 'entryCapacity': '0.164',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.519',\n",
" 'netbackOutright': '11.733',\n",
" 'totalRegasificationCost': '0.981',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.627',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.141',\n",
" 'entryCapacity': '0.164',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.488',\n",
" 'netbackOutright': '11.781',\n",
" 'totalRegasificationCost': '0.982',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.627',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.142',\n",
" 'entryCapacity': '0.164',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.407',\n",
" 'netbackOutright': '11.696',\n",
" 'totalRegasificationCost': '0.981',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.627',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.141',\n",
" 'entryCapacity': '0.164',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.199',\n",
" 'netbackOutright': '11.009',\n",
" 'totalRegasificationCost': '0.973',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.627',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.133',\n",
" 'entryCapacity': '0.164',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n",
" 'netbackTtfBasis': '-0.291',\n",
" 'netbackOutright': '10.697',\n",
" 'totalRegasificationCost': '0.97',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.627',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.049',\n",
" 'gasInKind': '0.13',\n",
" 'entryCapacity': '0.164',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.489',\n",
" 'netbackOutright': '11.015',\n",
" 'totalRegasificationCost': '1.301',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.832',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.101',\n",
" 'gasInKind': '0.251',\n",
" 'entryCapacity': '0.117',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.435',\n",
" 'netbackOutright': '11.131',\n",
" 'totalRegasificationCost': '1.304',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.832',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.101',\n",
" 'gasInKind': '0.254',\n",
" 'entryCapacity': '0.117',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.632',\n",
" 'netbackOutright': '11.026',\n",
" 'totalRegasificationCost': '1.302',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.832',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.101',\n",
" 'gasInKind': '0.252',\n",
" 'entryCapacity': '0.117',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.233',\n",
" 'netbackOutright': '11.601',\n",
" 'totalRegasificationCost': '1.314',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.832',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.101',\n",
" 'gasInKind': '0.264',\n",
" 'entryCapacity': '0.117',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.799',\n",
" 'netbackOutright': '11.152',\n",
" 'totalRegasificationCost': '1.304',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.832',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.101',\n",
" 'gasInKind': '0.254',\n",
" 'entryCapacity': '0.117',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.837',\n",
" 'netbackOutright': '11.31',\n",
" 'totalRegasificationCost': '1.308',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.832',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.101',\n",
" 'gasInKind': '0.258',\n",
" 'entryCapacity': '0.117',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.776',\n",
" 'netbackOutright': '11.443',\n",
" 'totalRegasificationCost': '1.31',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.832',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.101',\n",
" 'gasInKind': '0.26',\n",
" 'entryCapacity': '0.117',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.847',\n",
" 'netbackOutright': '11.405',\n",
" 'totalRegasificationCost': '1.309',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.832',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.101',\n",
" 'gasInKind': '0.259',\n",
" 'entryCapacity': '0.117',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.816',\n",
" 'netbackOutright': '11.453',\n",
" 'totalRegasificationCost': '1.31',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.832',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.101',\n",
" 'gasInKind': '0.26',\n",
" 'entryCapacity': '0.117',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.735',\n",
" 'netbackOutright': '11.368',\n",
" 'totalRegasificationCost': '1.309',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.832',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.101',\n",
" 'gasInKind': '0.259',\n",
" 'entryCapacity': '0.117',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.521',\n",
" 'netbackOutright': '10.687',\n",
" 'totalRegasificationCost': '1.295',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.832',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.101',\n",
" 'gasInKind': '0.245',\n",
" 'entryCapacity': '0.117',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n",
" 'netbackTtfBasis': '-0.609',\n",
" 'netbackOutright': '10.379',\n",
" 'totalRegasificationCost': '1.288',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.832',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.101',\n",
" 'gasInKind': '0.238',\n",
" 'entryCapacity': '0.117',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.526',\n",
" 'netbackOutright': '9.978',\n",
" 'totalRegasificationCost': '1.126',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.135',\n",
" 'gasInKind': '0.146',\n",
" 'entryCapacity': '0.512',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.675',\n",
" 'netbackOutright': '9.891',\n",
" 'totalRegasificationCost': '1.124',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.134',\n",
" 'gasInKind': '0.145',\n",
" 'entryCapacity': '0.512',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.601',\n",
" 'netbackOutright': '10.057',\n",
" 'totalRegasificationCost': '1.127',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.135',\n",
" 'gasInKind': '0.147',\n",
" 'entryCapacity': '0.512',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.469',\n",
" 'netbackOutright': '10.365',\n",
" 'totalRegasificationCost': '1.143',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.146',\n",
" 'gasInKind': '0.152',\n",
" 'entryCapacity': '0.512',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.545',\n",
" 'netbackOutright': '10.406',\n",
" 'totalRegasificationCost': '1.163',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.147',\n",
" 'gasInKind': '0.152',\n",
" 'entryCapacity': '0.479',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.845',\n",
" 'netbackOutright': '11.302',\n",
" 'totalRegasificationCost': '1.179',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.151',\n",
" 'gasInKind': '0.164',\n",
" 'entryCapacity': '0.479',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.667',\n",
" 'netbackOutright': '11.552',\n",
" 'totalRegasificationCost': '1.185',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.304',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.153',\n",
" 'gasInKind': '0.168',\n",
" 'entryCapacity': '0.479',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.648',\n",
" 'netbackOutright': '11.604',\n",
" 'totalRegasificationCost': '1.194',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.152',\n",
" 'gasInKind': '0.169',\n",
" 'entryCapacity': '0.479',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.671',\n",
" 'netbackOutright': '11.598',\n",
" 'totalRegasificationCost': '1.193',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.152',\n",
" 'gasInKind': '0.168',\n",
" 'entryCapacity': '0.479',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.872',\n",
" 'netbackOutright': '11.231',\n",
" 'totalRegasificationCost': '1.187',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.15',\n",
" 'gasInKind': '0.164',\n",
" 'entryCapacity': '0.479',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-0.922',\n",
" 'netbackOutright': '10.286',\n",
" 'totalRegasificationCost': '1.156',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.132',\n",
" 'gasInKind': '0.151',\n",
" 'entryCapacity': '0.479',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n",
" 'netbackTtfBasis': '-1.261',\n",
" 'netbackOutright': '9.727',\n",
" 'totalRegasificationCost': '1.144',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.313',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.128',\n",
" 'gasInKind': '0.143',\n",
" 'entryCapacity': '0.479',\n",
" 'commodityCharge': '0.081',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.759',\n",
" 'netbackOutright': '10.745',\n",
" 'totalRegasificationCost': '1.023',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.811',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.059',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.753',\n",
" 'netbackOutright': '10.813',\n",
" 'totalRegasificationCost': '1.023',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.811',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.059',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.738',\n",
" 'netbackOutright': '10.92',\n",
" 'totalRegasificationCost': '1.024',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.811',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.06',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.775',\n",
" 'netbackOutright': '11.059',\n",
" 'totalRegasificationCost': '1.025',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.811',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.061',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.871',\n",
" 'netbackOutright': '11.08',\n",
" 'totalRegasificationCost': '1.255',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.277',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.693',\n",
" 'netbackOutright': '11.454',\n",
" 'totalRegasificationCost': '1.264',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.286',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.807',\n",
" 'netbackOutright': '11.412',\n",
" 'totalRegasificationCost': '1.263',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.285',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.857',\n",
" 'netbackOutright': '11.395',\n",
" 'totalRegasificationCost': '1.263',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.285',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.767',\n",
" 'netbackOutright': '11.502',\n",
" 'totalRegasificationCost': '1.265',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.287',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.601',\n",
" 'netbackOutright': '11.502',\n",
" 'totalRegasificationCost': '1.265',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.287',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.778',\n",
" 'netbackOutright': '10.43',\n",
" 'totalRegasificationCost': '1.241',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.263',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003b319e-b29e-4853-b4ee-85794d5bacba',\n",
" 'netbackTtfBasis': '-0.725',\n",
" 'netbackOutright': '10.263',\n",
" 'totalRegasificationCost': '1.237',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.825',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.259',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.676',\n",
" 'netbackOutright': '10.828',\n",
" 'totalRegasificationCost': '0.26',\n",
" 'slotUnloadStorageRegas': '0.024',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.083',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.046',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.576',\n",
" 'netbackOutright': '10.99',\n",
" 'totalRegasificationCost': '0.26',\n",
" 'slotUnloadStorageRegas': '0.024',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.083',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.046',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.57',\n",
" 'netbackOutright': '11.088',\n",
" 'totalRegasificationCost': '0.26',\n",
" 'slotUnloadStorageRegas': '0.024',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.083',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.046',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.533',\n",
" 'netbackOutright': '11.301',\n",
" 'totalRegasificationCost': '0.26',\n",
" 'slotUnloadStorageRegas': '0.024',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.083',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.046',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.564',\n",
" 'netbackOutright': '11.387',\n",
" 'totalRegasificationCost': '0.26',\n",
" 'slotUnloadStorageRegas': '0.024',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.083',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.046',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.564',\n",
" 'netbackOutright': '11.583',\n",
" 'totalRegasificationCost': '0.26',\n",
" 'slotUnloadStorageRegas': '0.024',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.083',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.046',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.564',\n",
" 'netbackOutright': '11.655',\n",
" 'totalRegasificationCost': '0.26',\n",
" 'slotUnloadStorageRegas': '0.024',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.083',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.046',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.565',\n",
" 'netbackOutright': '11.687',\n",
" 'totalRegasificationCost': '0.26',\n",
" 'slotUnloadStorageRegas': '0.024',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.083',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.046',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.565',\n",
" 'netbackOutright': '11.704',\n",
" 'totalRegasificationCost': '0.26',\n",
" 'slotUnloadStorageRegas': '0.024',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.083',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.046',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.565',\n",
" 'netbackOutright': '11.538',\n",
" 'totalRegasificationCost': '0.26',\n",
" 'slotUnloadStorageRegas': '0.024',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.083',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.046',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.471',\n",
" 'netbackOutright': '10.737',\n",
" 'totalRegasificationCost': '0.26',\n",
" 'slotUnloadStorageRegas': '0.024',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.083',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.046',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n",
" 'netbackTtfBasis': '-0.471',\n",
" 'netbackOutright': '10.517',\n",
" 'totalRegasificationCost': '0.26',\n",
" 'slotUnloadStorageRegas': '0.024',\n",
" 'slotBerth': '0.002',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.083',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.046',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.785',\n",
" 'netbackOutright': '10.719',\n",
" 'totalRegasificationCost': '1.049',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.083',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.779',\n",
" 'netbackOutright': '10.787',\n",
" 'totalRegasificationCost': '1.049',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.083',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.764',\n",
" 'netbackOutright': '10.894',\n",
" 'totalRegasificationCost': '1.05',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.084',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.801',\n",
" 'netbackOutright': '11.033',\n",
" 'totalRegasificationCost': '1.051',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.085',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.913',\n",
" 'netbackOutright': '11.038',\n",
" 'totalRegasificationCost': '1.297',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.828',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.316',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.736',\n",
" 'netbackOutright': '11.411',\n",
" 'totalRegasificationCost': '1.307',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.828',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.326',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.85',\n",
" 'netbackOutright': '11.369',\n",
" 'totalRegasificationCost': '1.306',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.828',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.325',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.9',\n",
" 'netbackOutright': '11.352',\n",
" 'totalRegasificationCost': '1.306',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.828',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.325',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.81',\n",
" 'netbackOutright': '11.459',\n",
" 'totalRegasificationCost': '1.308',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.828',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.327',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.644',\n",
" 'netbackOutright': '11.459',\n",
" 'totalRegasificationCost': '1.308',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.828',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.327',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.817',\n",
" 'netbackOutright': '10.391',\n",
" 'totalRegasificationCost': '1.28',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.828',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.299',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n",
" 'netbackTtfBasis': '-0.764',\n",
" 'netbackOutright': '10.224',\n",
" 'totalRegasificationCost': '1.276',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.828',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.295',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.927',\n",
" 'netbackOutright': '10.577',\n",
" 'totalRegasificationCost': '1.191',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.822',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.216',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.857',\n",
" 'netbackOutright': '10.709',\n",
" 'totalRegasificationCost': '1.127',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.818',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.156',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.842',\n",
" 'netbackOutright': '10.816',\n",
" 'totalRegasificationCost': '1.128',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.818',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.157',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.946',\n",
" 'netbackOutright': '10.888',\n",
" 'totalRegasificationCost': '1.196',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.822',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.221',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.885',\n",
" 'netbackOutright': '11.066',\n",
" 'totalRegasificationCost': '1.269',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.826',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.29',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.707',\n",
" 'netbackOutright': '11.44',\n",
" 'totalRegasificationCost': '1.278',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.826',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.299',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.821',\n",
" 'netbackOutright': '11.398',\n",
" 'totalRegasificationCost': '1.277',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.826',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.298',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.871',\n",
" 'netbackOutright': '11.381',\n",
" 'totalRegasificationCost': '1.277',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.826',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.298',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.782',\n",
" 'netbackOutright': '11.487',\n",
" 'totalRegasificationCost': '1.28',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.826',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.301',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.616',\n",
" 'netbackOutright': '11.487',\n",
" 'totalRegasificationCost': '1.28',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.826',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.301',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.791',\n",
" 'netbackOutright': '10.417',\n",
" 'totalRegasificationCost': '1.254',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.826',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.275',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n",
" 'netbackTtfBasis': '-0.738',\n",
" 'netbackOutright': '10.25',\n",
" 'totalRegasificationCost': '1.25',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.826',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.271',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.485',\n",
" 'netbackOutright': '11.019',\n",
" 'totalRegasificationCost': '0.379',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.187',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.15',\n",
" 'entryCapacity': '0.022',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.471',\n",
" 'netbackOutright': '11.095',\n",
" 'totalRegasificationCost': '0.38',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.187',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.151',\n",
" 'entryCapacity': '0.022',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.518',\n",
" 'netbackOutright': '11.14',\n",
" 'totalRegasificationCost': '0.381',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.187',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.152',\n",
" 'entryCapacity': '0.022',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.527',\n",
" 'netbackOutright': '11.307',\n",
" 'totalRegasificationCost': '0.39',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.187',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.154',\n",
" 'entryCapacity': '0.029',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.423',\n",
" 'netbackOutright': '11.528',\n",
" 'totalRegasificationCost': '0.413',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.188',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.157',\n",
" 'entryCapacity': '0.047',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.441',\n",
" 'netbackOutright': '11.706',\n",
" 'totalRegasificationCost': '0.431',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.188',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.16',\n",
" 'entryCapacity': '0.062',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.451',\n",
" 'netbackOutright': '11.768',\n",
" 'totalRegasificationCost': '0.441',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.188',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.161',\n",
" 'entryCapacity': '0.071',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.411',\n",
" 'netbackOutright': '11.841',\n",
" 'totalRegasificationCost': '0.449',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.188',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.162',\n",
" 'entryCapacity': '0.078',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.402',\n",
" 'netbackOutright': '11.867',\n",
" 'totalRegasificationCost': '0.44',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.188',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.162',\n",
" 'entryCapacity': '0.069',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.389',\n",
" 'netbackOutright': '11.714',\n",
" 'totalRegasificationCost': '0.427',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.188',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.16',\n",
" 'entryCapacity': '0.058',\n",
" 'commodityCharge': '0.01',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.426',\n",
" 'netbackOutright': '10.782',\n",
" 'totalRegasificationCost': '0.397',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.188',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.147',\n",
" 'entryCapacity': '0.042',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-07',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n",
" 'netbackTtfBasis': '-0.41',\n",
" 'netbackOutright': '10.578',\n",
" 'totalRegasificationCost': '0.381',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.188',\n",
" 'additionalStorage': '0.001',\n",
" 'additionalSendout': '0.01',\n",
" 'gasInKind': '0.144',\n",
" 'entryCapacity': '0.029',\n",
" 'commodityCharge': '0.009',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.619',\n",
" 'netbackOutright': '10.93',\n",
" 'totalRegasificationCost': '1.429',\n",
" 'slotUnloadStorageRegas': '1.121',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.093',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.563',\n",
" 'netbackOutright': '11.047',\n",
" 'totalRegasificationCost': '1.43',\n",
" 'slotUnloadStorageRegas': '1.121',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.094',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.76',\n",
" 'netbackOutright': '10.939',\n",
" 'totalRegasificationCost': '1.429',\n",
" 'slotUnloadStorageRegas': '1.121',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.093',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.355',\n",
" 'netbackOutright': '11.514',\n",
" 'totalRegasificationCost': '1.434',\n",
" 'slotUnloadStorageRegas': '1.121',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.098',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.926',\n",
" 'netbackOutright': '11.065',\n",
" 'totalRegasificationCost': '1.43',\n",
" 'slotUnloadStorageRegas': '1.121',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.094',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.962',\n",
" 'netbackOutright': '11.227',\n",
" 'totalRegasificationCost': '1.432',\n",
" 'slotUnloadStorageRegas': '1.121',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.096',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.901',\n",
" 'netbackOutright': '11.357',\n",
" 'totalRegasificationCost': '1.433',\n",
" 'slotUnloadStorageRegas': '1.121',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.097',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.971',\n",
" 'netbackOutright': '11.299',\n",
" 'totalRegasificationCost': '1.432',\n",
" 'slotUnloadStorageRegas': '1.121',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.096',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.939',\n",
" 'netbackOutright': '11.332',\n",
" 'totalRegasificationCost': '1.432',\n",
" 'slotUnloadStorageRegas': '1.121',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.096',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.859',\n",
" 'netbackOutright': '11.226',\n",
" 'totalRegasificationCost': '1.432',\n",
" 'slotUnloadStorageRegas': '1.121',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.096',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.654',\n",
" 'netbackOutright': '10.511',\n",
" 'totalRegasificationCost': '1.426',\n",
" 'slotUnloadStorageRegas': '1.121',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.09',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n",
" 'netbackTtfBasis': '-0.746',\n",
" 'netbackOutright': '10.189',\n",
" 'totalRegasificationCost': '1.424',\n",
" 'slotUnloadStorageRegas': '1.121',\n",
" 'slotBerth': '0.058',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.032',\n",
" 'gasInKind': '0.088',\n",
" 'entryCapacity': '0.125',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.788',\n",
" 'netbackOutright': '10.761',\n",
" 'totalRegasificationCost': '1.047',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.811',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.083',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.783',\n",
" 'netbackOutright': '10.827',\n",
" 'totalRegasificationCost': '1.048',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.811',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.084',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.793',\n",
" 'netbackOutright': '10.906',\n",
" 'totalRegasificationCost': '1.048',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.811',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.084',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.81',\n",
" 'netbackOutright': '11.059',\n",
" 'totalRegasificationCost': '1.049',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.811',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.085',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.695',\n",
" 'netbackOutright': '11.296',\n",
" 'totalRegasificationCost': '1.078',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.112',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.513',\n",
" 'netbackOutright': '11.676',\n",
" 'totalRegasificationCost': '1.082',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.116',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.627',\n",
" 'netbackOutright': '11.631',\n",
" 'totalRegasificationCost': '1.081',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.115',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.686',\n",
" 'netbackOutright': '11.584',\n",
" 'totalRegasificationCost': '1.081',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.115',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.595',\n",
" 'netbackOutright': '11.676',\n",
" 'totalRegasificationCost': '1.082',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.116',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.43',\n",
" 'netbackOutright': '11.655',\n",
" 'totalRegasificationCost': '1.082',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.116',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.61',\n",
" 'netbackOutright': '10.555',\n",
" 'totalRegasificationCost': '1.072',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.106',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n",
" 'netbackTtfBasis': '-0.558',\n",
" 'netbackOutright': '10.377',\n",
" 'totalRegasificationCost': '1.07',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.813',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.104',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.926',\n",
" 'netbackOutright': '10.623',\n",
" 'totalRegasificationCost': '1.185',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.303',\n",
" 'entryCapacity': '0.318',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.921',\n",
" 'netbackOutright': '10.689',\n",
" 'totalRegasificationCost': '1.186',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.304',\n",
" 'entryCapacity': '0.318',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.934',\n",
" 'netbackOutright': '10.765',\n",
" 'totalRegasificationCost': '1.189',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.307',\n",
" 'entryCapacity': '0.318',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.953',\n",
" 'netbackOutright': '10.916',\n",
" 'totalRegasificationCost': '1.192',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.31',\n",
" 'entryCapacity': '0.318',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.816',\n",
" 'netbackOutright': '11.175',\n",
" 'totalRegasificationCost': '1.199',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.317',\n",
" 'entryCapacity': '0.318',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.64',\n",
" 'netbackOutright': '11.549',\n",
" 'totalRegasificationCost': '1.209',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.327',\n",
" 'entryCapacity': '0.318',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.754',\n",
" 'netbackOutright': '11.504',\n",
" 'totalRegasificationCost': '1.208',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.326',\n",
" 'entryCapacity': '0.318',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.812',\n",
" 'netbackOutright': '11.458',\n",
" 'totalRegasificationCost': '1.207',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.325',\n",
" 'entryCapacity': '0.318',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.722',\n",
" 'netbackOutright': '11.549',\n",
" 'totalRegasificationCost': '1.209',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.327',\n",
" 'entryCapacity': '0.318',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.557',\n",
" 'netbackOutright': '11.528',\n",
" 'totalRegasificationCost': '1.209',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.327',\n",
" 'entryCapacity': '0.318',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.718',\n",
" 'netbackOutright': '10.447',\n",
" 'totalRegasificationCost': '1.18',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.298',\n",
" 'entryCapacity': '0.318',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n",
" 'netbackTtfBasis': '-0.664',\n",
" 'netbackOutright': '10.271',\n",
" 'totalRegasificationCost': '1.176',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.564',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.294',\n",
" 'entryCapacity': '0.318',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.121',\n",
" 'netbackOutright': '10.428',\n",
" 'totalRegasificationCost': '0.74',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.635',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.052',\n",
" 'netbackOutright': '10.558',\n",
" 'totalRegasificationCost': '0.74',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.635',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.059',\n",
" 'netbackOutright': '10.64',\n",
" 'totalRegasificationCost': '0.74',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.635',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.083',\n",
" 'netbackOutright': '10.786',\n",
" 'totalRegasificationCost': '0.74',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.635',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.183',\n",
" 'netbackOutright': '10.808',\n",
" 'totalRegasificationCost': '0.74',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.635',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.108',\n",
" 'netbackOutright': '11.081',\n",
" 'totalRegasificationCost': '0.74',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.635',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.114',\n",
" 'netbackOutright': '11.144',\n",
" 'totalRegasificationCost': '0.74',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.635',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.042',\n",
" 'netbackOutright': '11.228',\n",
" 'totalRegasificationCost': '0.74',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.635',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.087',\n",
" 'netbackOutright': '11.184',\n",
" 'totalRegasificationCost': '0.74',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.635',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-1.118',\n",
" 'netbackOutright': '10.967',\n",
" 'totalRegasificationCost': '0.74',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.635',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-0.77',\n",
" 'netbackOutright': '10.395',\n",
" 'totalRegasificationCost': '0.743',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.635',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.108',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n",
" 'netbackTtfBasis': '-0.821',\n",
" 'netbackOutright': '10.114',\n",
" 'totalRegasificationCost': '0.743',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.635',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.108',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.785',\n",
" 'netbackOutright': '10.764',\n",
" 'totalRegasificationCost': '0.785',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.565',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.106',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.789',\n",
" 'netbackOutright': '10.821',\n",
" 'totalRegasificationCost': '0.789',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.565',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.11',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.792',\n",
" 'netbackOutright': '10.907',\n",
" 'totalRegasificationCost': '0.792',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.565',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.113',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.807',\n",
" 'netbackOutright': '11.062',\n",
" 'totalRegasificationCost': '0.807',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.565',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.128',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.805',\n",
" 'netbackOutright': '11.186',\n",
" 'totalRegasificationCost': '0.805',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.565',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.126',\n",
" 'gasInKind': '0.0',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.873',\n",
" 'netbackOutright': '11.316',\n",
" 'totalRegasificationCost': '0.873',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.573',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.186',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.874',\n",
" 'netbackOutright': '11.384',\n",
" 'totalRegasificationCost': '0.874',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.573',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.187',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.878',\n",
" 'netbackOutright': '11.392',\n",
" 'totalRegasificationCost': '0.878',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.577',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.187',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.878',\n",
" 'netbackOutright': '11.393',\n",
" 'totalRegasificationCost': '0.878',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.577',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.187',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.875',\n",
" 'netbackOutright': '11.21',\n",
" 'totalRegasificationCost': '0.875',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.577',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.184',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.861',\n",
" 'netbackOutright': '10.304',\n",
" 'totalRegasificationCost': '0.861',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.577',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.17',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n",
" 'netbackTtfBasis': '-0.858',\n",
" 'netbackOutright': '10.077',\n",
" 'totalRegasificationCost': '0.858',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.577',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.167',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.791',\n",
" 'netbackOutright': '10.758',\n",
" 'totalRegasificationCost': '0.41',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.722',\n",
" 'netbackOutright': '10.888',\n",
" 'totalRegasificationCost': '0.41',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.729',\n",
" 'netbackOutright': '10.97',\n",
" 'totalRegasificationCost': '0.41',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.754',\n",
" 'netbackOutright': '11.115',\n",
" 'totalRegasificationCost': '0.411',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.854',\n",
" 'netbackOutright': '11.137',\n",
" 'totalRegasificationCost': '0.411',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.779',\n",
" 'netbackOutright': '11.41',\n",
" 'totalRegasificationCost': '0.411',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.785',\n",
" 'netbackOutright': '11.473',\n",
" 'totalRegasificationCost': '0.411',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.713',\n",
" 'netbackOutright': '11.557',\n",
" 'totalRegasificationCost': '0.411',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.758',\n",
" 'netbackOutright': '11.513',\n",
" 'totalRegasificationCost': '0.411',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.789',\n",
" 'netbackOutright': '11.296',\n",
" 'totalRegasificationCost': '0.411',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.44',\n",
" 'netbackOutright': '10.725',\n",
" 'totalRegasificationCost': '0.413',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.108',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n",
" 'netbackTtfBasis': '-0.491',\n",
" 'netbackOutright': '10.444',\n",
" 'totalRegasificationCost': '0.413',\n",
" 'slotUnloadStorageRegas': '0.245',\n",
" 'slotBerth': '0.03',\n",
" 'slotBerthUnloadStorageRegas': '0.0',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.019',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.108',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.55',\n",
" 'netbackOutright': '10.999',\n",
" 'totalRegasificationCost': '0.55',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.424',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.114',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.547',\n",
" 'netbackOutright': '11.063',\n",
" 'totalRegasificationCost': '0.547',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.424',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.111',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.541',\n",
" 'netbackOutright': '11.158',\n",
" 'totalRegasificationCost': '0.541',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.424',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.105',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.549',\n",
" 'netbackOutright': '11.32',\n",
" 'totalRegasificationCost': '0.549',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.424',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.113',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-10-01',\n",
" 'monthIndex': 'M+5',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.57',\n",
" 'netbackOutright': '11.421',\n",
" 'totalRegasificationCost': '0.57',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.424',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.134',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-11-01',\n",
" 'monthIndex': 'M+6',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.629',\n",
" 'netbackOutright': '11.56',\n",
" 'totalRegasificationCost': '0.629',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.424',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.193',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-12-01',\n",
" 'monthIndex': 'M+7',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.687',\n",
" 'netbackOutright': '11.571',\n",
" 'totalRegasificationCost': '0.687',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.424',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.251',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-01-01',\n",
" 'monthIndex': 'M+8',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.739',\n",
" 'netbackOutright': '11.531',\n",
" 'totalRegasificationCost': '0.739',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.424',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.303',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-02-01',\n",
" 'monthIndex': 'M+9',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.68',\n",
" 'netbackOutright': '11.591',\n",
" 'totalRegasificationCost': '0.68',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.424',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.244',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-03-01',\n",
" 'monthIndex': 'M+10',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.648',\n",
" 'netbackOutright': '11.437',\n",
" 'totalRegasificationCost': '0.648',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.424',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.012',\n",
" 'entryCapacity': '0.212',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-04-01',\n",
" 'monthIndex': 'M+11',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.588',\n",
" 'netbackOutright': '10.577',\n",
" 'totalRegasificationCost': '0.588',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.424',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.153',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2026-05-01',\n",
" 'monthIndex': 'M+12',\n",
" 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n",
" 'netbackTtfBasis': '-0.575',\n",
" 'netbackOutright': '10.36',\n",
" 'totalRegasificationCost': '0.575',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.424',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.0',\n",
" 'gasInKind': '0.011',\n",
" 'entryCapacity': '0.14',\n",
" 'commodityCharge': '0.0',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-06-01',\n",
" 'monthIndex': 'M+1',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.634',\n",
" 'netbackOutright': '9.915',\n",
" 'totalRegasificationCost': '1.288',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.272',\n",
" 'gasInKind': '0.169',\n",
" 'entryCapacity': '0.513',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-07-01',\n",
" 'monthIndex': 'M+2',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.935',\n",
" 'netbackOutright': '9.675',\n",
" 'totalRegasificationCost': '1.421',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.406',\n",
" 'gasInKind': '0.168',\n",
" 'entryCapacity': '0.513',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-08-01',\n",
" 'monthIndex': 'M+3',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.873',\n",
" 'netbackOutright': '9.826',\n",
" 'totalRegasificationCost': '1.422',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.405',\n",
" 'gasInKind': '0.17',\n",
" 'entryCapacity': '0.513',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" {'releaseDate': '2025-05-06',\n",
" 'deliveryMonth': '2025-09-01',\n",
" 'monthIndex': 'M+4',\n",
" 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n",
" 'netbackTtfBasis': '-1.629',\n",
" 'netbackOutright': '10.24',\n",
" 'totalRegasificationCost': '1.314',\n",
" 'slotUnloadStorageRegas': '0.0',\n",
" 'slotBerth': '0.0',\n",
" 'slotBerthUnloadStorageRegas': '0.305',\n",
" 'additionalStorage': '0.0',\n",
" 'additionalSendout': '0.292',\n",
" 'gasInKind': '0.175',\n",
" 'entryCapacity': '0.513',\n",
" 'commodityCharge': '0.029',\n",
" 'otherCosts': None},\n",
" ...],\n",
" 'metaData': {'unit': 'usd-per-mmbtu',\n",
" 'limit': 30,\n",
" 'terminals': {'0038a35c-253f-44f5-a4e5-d5240d98039a': 'adriatic',\n",
" '003497c6-ed32-412f-95ef-c3b1f962464e': 'brunsbuttel',\n",
" '003e3e70-3626-4124-8ee9-d3ec39678e8c': 'deutsche-ostsee',\n",
" '00338f3f-8875-435d-87a9-f83d9a5c5241': 'dunkerque',\n",
" '0037d9e4-cf09-4f26-8934-f1e038e185ea': 'eems-energy-terminal',\n",
" '003b1adb-f810-443c-a971-c2a6b28cb5dc': 'fos-cavaou',\n",
" '003f577c-7058-4b50-9c94-c499c07ca080': 'gate',\n",
" '00317185-978a-4df5-970c-2c28d3ab893c': 'grain-lng',\n",
" '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f': 'le-havre',\n",
" '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f': 'montoir',\n",
" '00355021-dc45-4aaa-8178-a6dc360c07b9': 'olt-toscana',\n",
" '003660ee-567d-4d23-9e43-2891509b7bfb': 'piombino',\n",
" '0030d930-6574-4049-a739-327a16620429': 'ravenna',\n",
" '003bf9ab-2829-40a1-a83d-c32b764f21fd': 'south-hook',\n",
" '003b319e-b29e-4853-b4ee-85794d5bacba': 'stade',\n",
" '0032d353-d0d8-4454-9b6c-a6c5db12e49d': 'tvb',\n",
" '003b1d36-d72b-4331-888f-22b3f84c1cce': 'wilhelmshaven',\n",
" '00378624-8afa-4cce-987e-e76cebe077ab': 'wilhelmshaven-2',\n",
" '0031994e-f370-4927-ba88-a4e7a78c42db': 'zeebrugge'}}}"
]
},
"execution_count": 127,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# Showing the raw JSON output\n",
"historical"
]
},
{
"cell_type": "code",
"execution_count": 128,
"id": "d490f453",
"metadata": {},
"outputs": [],
"source": [
"# Sorting the JSON into a Pandas DataFrame\n",
"\n",
"def organise_dataframe(data):\n",
" \"\"\"\n",
" This function sorts the API content into a dataframe. The columns available are Release Date, Terminal, Month, Vessel Size, $/MMBtu and €/MWh. \n",
" Essentially, this function parses the Access database using the Month, Terminal and Vessel size columns as reference.\n",
" \"\"\"\n",
" # create columns\n",
" data_dict = {\n",
" 'Release Date':[],\n",
" 'Terminal':[],\n",
" 'Month Index':[],\n",
" 'Delivery Month':[],\n",
" 'DES Hub Netback - TTF Basis':[],\n",
" 'DES Hub Netback - Outright':[],\n",
" 'Total Regas':[],\n",
" 'Basic Slot (Berth)':[],\n",
" 'Basic Slot (Unload/Stor/Regas)':[],\n",
" 'Basic Slot (B/U/S/R)':[],\n",
" 'Additional Storage':[],\n",
" 'Additional Sendout':[],\n",
" 'Gas in Kind': [],\n",
" 'Entry Capacity':[],\n",
" 'Commodity Charge':[]\n",
" }\n",
"\n",
" # loop for each Terminal\n",
" for l in data['data']:\n",
" \n",
" # assigning values to each column\n",
" data_dict['Release Date'].append(l[\"releaseDate\"])\n",
" data_dict['Terminal'].append(data['metaData']['terminals'][l['terminalUuid']])\n",
" data_dict['Month Index'].append(l['monthIndex'])\n",
" data_dict['Delivery Month'].append(l['deliveryMonth'])\n",
"\n",
" data_dict['DES Hub Netback - TTF Basis'].append(float(l['netbackTtfBasis']))\n",
" data_dict['DES Hub Netback - Outright'].append(float(l['netbackOutright']))\n",
" data_dict['Total Regas'].append(float(l['totalRegasificationCost']))\n",
" data_dict['Basic Slot (Berth)'].append(float(l['slotBerth']))\n",
" data_dict['Basic Slot (Unload/Stor/Regas)'].append(float(l['slotUnloadStorageRegas']))\n",
" data_dict['Basic Slot (B/U/S/R)'].append(float(l['slotBerthUnloadStorageRegas']))\n",
" data_dict['Additional Storage'].append(float(l['additionalStorage']))\n",
" data_dict['Additional Sendout'].append(float(l['additionalSendout']))\n",
" data_dict['Gas in Kind'].append(float(l['gasInKind']))\n",
" data_dict['Entry Capacity'].append(float(l['entryCapacity']))\n",
" data_dict['Commodity Charge'].append(float(l['commodityCharge']))\n",
" \n",
" \n",
" # convert into dataframe\n",
" df = pd.DataFrame(data_dict)\n",
" \n",
" df['Delivery Month'] = pd.to_datetime(df['Delivery Month'])\n",
" df['Release Date'] = pd.to_datetime(df['Release Date'])\n",
" \n",
" return df\n"
]
},
{
"cell_type": "markdown",
"id": "ce646a00",
"metadata": {},
"source": [
"### Storing as a DataFrame\n",
"We can use the 'organise_dataframe' function to parse the content into a dataframe"
]
},
{
"cell_type": "code",
"execution_count": 129,
"id": "9710fbae",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"
\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" Release Date | \n",
" Terminal | \n",
" Month Index | \n",
" Delivery Month | \n",
" DES Hub Netback - TTF Basis | \n",
" DES Hub Netback - Outright | \n",
" Total Regas | \n",
" Basic Slot (Berth) | \n",
" Basic Slot (Unload/Stor/Regas) | \n",
" Basic Slot (B/U/S/R) | \n",
" Additional Storage | \n",
" Additional Sendout | \n",
" Gas in Kind | \n",
" Entry Capacity | \n",
" Commodity Charge | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
" 2025-05-12 | \n",
" adriatic | \n",
" M+1 | \n",
" 2025-06-01 | \n",
" -0.608 | \n",
" 10.917 | \n",
" 1.401 | \n",
" 0.057 | \n",
" 1.098 | \n",
" 0.0 | \n",
" 0.0 | \n",
" 0.031 | \n",
" 0.093 | \n",
" 0.122 | \n",
" 0.0 | \n",
"
\n",
" \n",
" 1 | \n",
" 2025-05-12 | \n",
" adriatic | \n",
" M+2 | \n",
" 2025-07-01 | \n",
" -0.535 | \n",
" 11.060 | \n",
" 1.402 | \n",
" 0.057 | \n",
" 1.098 | \n",
" 0.0 | \n",
" 0.0 | \n",
" 0.031 | \n",
" 0.094 | \n",
" 0.122 | \n",
" 0.0 | \n",
"
\n",
" \n",
" 2 | \n",
" 2025-05-12 | \n",
" adriatic | \n",
" M+3 | \n",
" 2025-08-01 | \n",
" -0.681 | \n",
" 10.997 | \n",
" 1.402 | \n",
" 0.057 | \n",
" 1.098 | \n",
" 0.0 | \n",
" 0.0 | \n",
" 0.031 | \n",
" 0.094 | \n",
" 0.122 | \n",
" 0.0 | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" Release Date Terminal Month Index Delivery Month \\\n",
"0 2025-05-12 adriatic M+1 2025-06-01 \n",
"1 2025-05-12 adriatic M+2 2025-07-01 \n",
"2 2025-05-12 adriatic M+3 2025-08-01 \n",
"\n",
" DES Hub Netback - TTF Basis DES Hub Netback - Outright Total Regas \\\n",
"0 -0.608 10.917 1.401 \n",
"1 -0.535 11.060 1.402 \n",
"2 -0.681 10.997 1.402 \n",
"\n",
" Basic Slot (Berth) Basic Slot (Unload/Stor/Regas) Basic Slot (B/U/S/R) \\\n",
"0 0.057 1.098 0.0 \n",
"1 0.057 1.098 0.0 \n",
"2 0.057 1.098 0.0 \n",
"\n",
" Additional Storage Additional Sendout Gas in Kind Entry Capacity \\\n",
"0 0.0 0.031 0.093 0.122 \n",
"1 0.0 0.031 0.094 0.122 \n",
"2 0.0 0.031 0.094 0.122 \n",
"\n",
" Commodity Charge \n",
"0 0.0 \n",
"1 0.0 \n",
"2 0.0 "
]
},
"execution_count": 129,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# Storing the \"historical\" JSON as a Pandas Dataframe using the organise_dataframe function\n",
"hist_df = organise_dataframe(historical)\n",
"hist_df.head(3)"
]
},
{
"cell_type": "markdown",
"id": "581b81a1",
"metadata": {},
"source": [
"## Calling Data for a specific terminal\n",
"\n",
"The DES Hub Netbacks endpoint also provides the option to call data for a specific terminal. This is done using the \"terminal\" optional parameter - input any terminal name into this parameter and the endpoint will retrieve the relevant data.\n",
"\n",
"For a list of available terminal names, refer to the metadata section of the JSON output called above. Example shown below, with the left column showing Terminal UUIDs, and the right column showing Terminal codes:"
]
},
{
"cell_type": "code",
"execution_count": 130,
"id": "a3410ad9",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{'0038a35c-253f-44f5-a4e5-d5240d98039a': 'adriatic',\n",
" '003497c6-ed32-412f-95ef-c3b1f962464e': 'brunsbuttel',\n",
" '003e3e70-3626-4124-8ee9-d3ec39678e8c': 'deutsche-ostsee',\n",
" '00338f3f-8875-435d-87a9-f83d9a5c5241': 'dunkerque',\n",
" '0037d9e4-cf09-4f26-8934-f1e038e185ea': 'eems-energy-terminal',\n",
" '003b1adb-f810-443c-a971-c2a6b28cb5dc': 'fos-cavaou',\n",
" '003f577c-7058-4b50-9c94-c499c07ca080': 'gate',\n",
" '00317185-978a-4df5-970c-2c28d3ab893c': 'grain-lng',\n",
" '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f': 'le-havre',\n",
" '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f': 'montoir',\n",
" '00355021-dc45-4aaa-8178-a6dc360c07b9': 'olt-toscana',\n",
" '003660ee-567d-4d23-9e43-2891509b7bfb': 'piombino',\n",
" '0030d930-6574-4049-a739-327a16620429': 'ravenna',\n",
" '003bf9ab-2829-40a1-a83d-c32b764f21fd': 'south-hook',\n",
" '003b319e-b29e-4853-b4ee-85794d5bacba': 'stade',\n",
" '0032d353-d0d8-4454-9b6c-a6c5db12e49d': 'tvb',\n",
" '003b1d36-d72b-4331-888f-22b3f84c1cce': 'wilhelmshaven',\n",
" '00378624-8afa-4cce-987e-e76cebe077ab': 'wilhelmshaven-2',\n",
" '0031994e-f370-4927-ba88-a4e7a78c42db': 'zeebrugge'}"
]
},
"execution_count": 130,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# List of available terminal names\n",
"historical['metaData']['terminals']"
]
},
{
"cell_type": "code",
"execution_count": 131,
"id": "7f1bc37c",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Fetching https://api.sparkcommodities.com/beta/access/des-hub-netbacks/?unit=usd-per-mmbtu&terminal=dunkerque\n"
]
},
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" Release Date | \n",
" Terminal | \n",
" Month Index | \n",
" Delivery Month | \n",
" DES Hub Netback - TTF Basis | \n",
" DES Hub Netback - Outright | \n",
" Total Regas | \n",
" Basic Slot (Berth) | \n",
" Basic Slot (Unload/Stor/Regas) | \n",
" Basic Slot (B/U/S/R) | \n",
" Additional Storage | \n",
" Additional Sendout | \n",
" Gas in Kind | \n",
" Entry Capacity | \n",
" Commodity Charge | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
" 2025-05-12 | \n",
" dunkerque | \n",
" M+1 | \n",
" 2025-06-01 | \n",
" -1.099 | \n",
" 10.426 | \n",
" 0.725 | \n",
" 0.0 | \n",
" 0.0 | \n",
" 0.622 | \n",
" 0.0 | \n",
" 0.0 | \n",
" 0.0 | \n",
" 0.103 | \n",
" 0.0 | \n",
"
\n",
" \n",
" 1 | \n",
" 2025-05-12 | \n",
" dunkerque | \n",
" M+2 | \n",
" 2025-07-01 | \n",
" -1.069 | \n",
" 10.526 | \n",
" 0.725 | \n",
" 0.0 | \n",
" 0.0 | \n",
" 0.622 | \n",
" 0.0 | \n",
" 0.0 | \n",
" 0.0 | \n",
" 0.103 | \n",
" 0.0 | \n",
"
\n",
" \n",
" 2 | \n",
" 2025-05-12 | \n",
" dunkerque | \n",
" M+3 | \n",
" 2025-08-01 | \n",
" -1.073 | \n",
" 10.605 | \n",
" 0.725 | \n",
" 0.0 | \n",
" 0.0 | \n",
" 0.622 | \n",
" 0.0 | \n",
" 0.0 | \n",
" 0.0 | \n",
" 0.103 | \n",
" 0.0 | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" Release Date Terminal Month Index Delivery Month \\\n",
"0 2025-05-12 dunkerque M+1 2025-06-01 \n",
"1 2025-05-12 dunkerque M+2 2025-07-01 \n",
"2 2025-05-12 dunkerque M+3 2025-08-01 \n",
"\n",
" DES Hub Netback - TTF Basis DES Hub Netback - Outright Total Regas \\\n",
"0 -1.099 10.426 0.725 \n",
"1 -1.069 10.526 0.725 \n",
"2 -1.073 10.605 0.725 \n",
"\n",
" Basic Slot (Berth) Basic Slot (Unload/Stor/Regas) Basic Slot (B/U/S/R) \\\n",
"0 0.0 0.0 0.622 \n",
"1 0.0 0.0 0.622 \n",
"2 0.0 0.0 0.622 \n",
"\n",
" Additional Storage Additional Sendout Gas in Kind Entry Capacity \\\n",
"0 0.0 0.0 0.0 0.103 \n",
"1 0.0 0.0 0.0 0.103 \n",
"2 0.0 0.0 0.0 0.103 \n",
"\n",
" Commodity Charge \n",
"0 0.0 \n",
"1 0.0 \n",
"2 0.0 "
]
},
"execution_count": 131,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# calling historical data for 1 specific terminal (in this case Dunkerque)\n",
"\n",
"historical_term = fetch_price_releases(access_token, unit='usd-per-mmbtu', terminal='dunkerque')\n",
"term_df = organise_dataframe(historical_term)\n",
"term_df.head(3)"
]
},
{
"cell_type": "markdown",
"id": "4aa81e2c",
"metadata": {},
"source": [
"## N.B. Historical Data Limits\n",
"\n",
"Currently, a maximum of 30 historical datasets can be called at one time due to the size of the data file. \n",
"\n",
"If more data points are required, the below code can be used. It calls 30 historical datasets at a time, but utilises the 'offset' parameter to call datasets further back in the historical database. To call more history, increase the 'n_offset' parameter in the first line of the code. The 'n_offset' parameter describes the number of historical data requests to be executed."
]
},
{
"cell_type": "code",
"execution_count": 132,
"id": "9fae6c01",
"metadata": {},
"outputs": [],
"source": [
"def loop_historical_data(token,n_offset):\n",
" # initalise first set of historical data and initialising dataframe\n",
" historical = fetch_price_releases(access_token, unit='usd-per-mmbtu', limit=30)\n",
" hist_df = organise_dataframe(historical)\n",
"\n",
" # Looping through earlier historical data and adding to the historical dataframe\n",
" for i in range(1,n_offset+1):\n",
" historical = fetch_price_releases(access_token, unit='usd-per-mmbtu', limit=30, offset=i*30)\n",
" hist_df = pd.concat([hist_df,organise_dataframe(historical)])\n",
"\n",
" return hist_df"
]
},
{
"cell_type": "code",
"execution_count": 133,
"id": "8fcf6066",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Fetching https://api.sparkcommodities.com/beta/access/des-hub-netbacks/?unit=usd-per-mmbtu&limit=30\n",
"Fetching https://api.sparkcommodities.com/beta/access/des-hub-netbacks/?unit=usd-per-mmbtu&limit=30&offset=30\n",
"Fetching https://api.sparkcommodities.com/beta/access/des-hub-netbacks/?unit=usd-per-mmbtu&limit=30&offset=60\n"
]
},
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" Release Date | \n",
" Terminal | \n",
" Month Index | \n",
" Delivery Month | \n",
" DES Hub Netback - TTF Basis | \n",
" DES Hub Netback - Outright | \n",
" Total Regas | \n",
" Basic Slot (Berth) | \n",
" Basic Slot (Unload/Stor/Regas) | \n",
" Basic Slot (B/U/S/R) | \n",
" Additional Storage | \n",
" Additional Sendout | \n",
" Gas in Kind | \n",
" Entry Capacity | \n",
" Commodity Charge | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
" 2025-05-12 | \n",
" adriatic | \n",
" M+1 | \n",
" 2025-06-01 | \n",
" -0.608 | \n",
" 10.917 | \n",
" 1.401 | \n",
" 0.057 | \n",
" 1.098 | \n",
" 0.0 | \n",
" 0.0 | \n",
" 0.031 | \n",
" 0.093 | \n",
" 0.122 | \n",
" 0.0 | \n",
"
\n",
" \n",
" 1 | \n",
" 2025-05-12 | \n",
" adriatic | \n",
" M+2 | \n",
" 2025-07-01 | \n",
" -0.535 | \n",
" 11.060 | \n",
" 1.402 | \n",
" 0.057 | \n",
" 1.098 | \n",
" 0.0 | \n",
" 0.0 | \n",
" 0.031 | \n",
" 0.094 | \n",
" 0.122 | \n",
" 0.0 | \n",
"
\n",
" \n",
" 2 | \n",
" 2025-05-12 | \n",
" adriatic | \n",
" M+3 | \n",
" 2025-08-01 | \n",
" -0.681 | \n",
" 10.997 | \n",
" 1.402 | \n",
" 0.057 | \n",
" 1.098 | \n",
" 0.0 | \n",
" 0.0 | \n",
" 0.031 | \n",
" 0.094 | \n",
" 0.122 | \n",
" 0.0 | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" Release Date Terminal Month Index Delivery Month \\\n",
"0 2025-05-12 adriatic M+1 2025-06-01 \n",
"1 2025-05-12 adriatic M+2 2025-07-01 \n",
"2 2025-05-12 adriatic M+3 2025-08-01 \n",
"\n",
" DES Hub Netback - TTF Basis DES Hub Netback - Outright Total Regas \\\n",
"0 -0.608 10.917 1.401 \n",
"1 -0.535 11.060 1.402 \n",
"2 -0.681 10.997 1.402 \n",
"\n",
" Basic Slot (Berth) Basic Slot (Unload/Stor/Regas) Basic Slot (B/U/S/R) \\\n",
"0 0.057 1.098 0.0 \n",
"1 0.057 1.098 0.0 \n",
"2 0.057 1.098 0.0 \n",
"\n",
" Additional Storage Additional Sendout Gas in Kind Entry Capacity \\\n",
"0 0.0 0.031 0.093 0.122 \n",
"1 0.0 0.031 0.094 0.122 \n",
"2 0.0 0.031 0.094 0.122 \n",
"\n",
" Commodity Charge \n",
"0 0.0 \n",
"1 0.0 \n",
"2 0.0 "
]
},
"execution_count": 133,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"hdf = loop_historical_data(access_token,2)\n",
"hdf.head(3)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "base",
"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.11.5"
}
},
"nbformat": 4,
"nbformat_minor": 5
}