{
"cells": [
{
"cell_type": "markdown",
"id": "92475c69",
"metadata": {},
"source": [
"# Python API Example - Intraday Arbs\n",
"\n",
"Here we import Live, Historical and Revised prices from the Spark Intraday Arbs Python API. \n",
"\n",
"This guide is designed to provide an example of how to access the Spark API:\n",
"- The path to your client credentials is the only input needed to run this script (just before Section 2)\n",
"- This script has been designed to display the raw outputs of requests from the API, and then shows you how to format those outputs to enable easy reading and analysis\n",
"- This script can be copied and pasted by customers for quick use of the API\n",
"\n",
"__N.B. This guide is just for Intraday Arbs data. If you're looking for other API data products (such as Freight routes or Netbacks), please refer to their according code example files.__ "
]
},
{
"cell_type": "markdown",
"id": "c5716130",
"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": 37,
"id": "33fb0640",
"metadata": {},
"outputs": [],
"source": [
"import json\n",
"import os\n",
"import sys\n",
"import pandas as pd\n",
"import numpy as np\n",
"from base64 import b64encode\n",
"from pprint import pprint\n",
"from urllib.parse import urljoin\n",
"import datetime\n",
"\n",
"\n",
"try:\n",
" from urllib import request, parse\n",
" from urllib.error import HTTPError\n",
"except ImportError:\n",
" raise RuntimeError(\"Python 3 required\")\n",
"\n",
"\n",
"API_BASE_URL = \"https://api.sparkcommodities.com\"\n",
"\n",
"\n",
"def retrieve_credentials(file_path=None):\n",
" \"\"\"\n",
" Find credentials either by reading the client_credentials file or reading\n",
" environment variables\n",
" \"\"\"\n",
" if file_path is None:\n",
" client_id = os.getenv(\"SPARK_CLIENT_ID\")\n",
" client_secret = os.getenv(\"SPARK_CLIENT_SECRET\")\n",
" if not client_id or not client_secret:\n",
" raise RuntimeError(\n",
" \"SPARK_CLIENT_ID and SPARK_CLIENT_SECRET environment vars required\"\n",
" )\n",
" else:\n",
" # Parse the file\n",
" if not os.path.isfile(file_path):\n",
" raise RuntimeError(\"The file {} doesn't exist\".format(file_path))\n",
"\n",
" with open(file_path) as fp:\n",
" lines = [l.replace(\"\\n\", \"\") for l in fp.readlines()]\n",
"\n",
" if lines[0] in (\"clientId,clientSecret\", \"client_id,client_secret\"):\n",
" client_id, client_secret = lines[1].split(\",\")\n",
" else:\n",
" print(\"First line read: '{}'\".format(lines[0]))\n",
" raise RuntimeError(\n",
" \"The specified file {} doesn't look like to be a Spark API client \"\n",
" \"credentials file\".format(file_path)\n",
" )\n",
"\n",
" print(\">>>> Found credentials!\")\n",
" print(\n",
" \">>>> Client_id={}, client_secret={}****\".format(client_id, client_secret[:5])\n",
" )\n",
"\n",
" return client_id, client_secret\n",
"\n",
"\n",
"def do_api_post_query(uri, body, headers):\n",
" 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, format='json'):\n",
" \"\"\"\n",
" After receiving an Access Token, we can request information from the API.\n",
" \"\"\"\n",
" url = urljoin(API_BASE_URL, uri)\n",
"\n",
" if format == 'json':\n",
" headers = {\n",
" \"Authorization\": \"Bearer {}\".format(access_token),\n",
" \"Accept\": \"application/json\",\n",
" }\n",
" elif format == 'csv':\n",
" headers = {\n",
" \"Authorization\": \"Bearer {}\".format(access_token),\n",
" \"Accept\": \"text/csv\"\n",
" }\n",
"\n",
" # HTTP POST request\n",
" req = request.Request(url, headers=headers)\n",
" try:\n",
" response = request.urlopen(req)\n",
" except HTTPError as e:\n",
" print(\"HTTP Error: \", e.code)\n",
" print(e.read())\n",
" sys.exit(1)\n",
"\n",
" resp_content = response.read()\n",
"\n",
" # The server must return HTTP 201. Raise an error if this is not the case\n",
" assert response.status == 200, resp_content\n",
"\n",
" # Storing response based on requested format\n",
" if format == 'json':\n",
" content = json.loads(resp_content)\n",
" elif format == 'csv':\n",
" content = 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:intraday\",\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\"]\n",
"\n",
"\n"
]
},
{
"cell_type": "markdown",
"id": "fd3171a8",
"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": 38,
"id": "fd7e89bf",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
">>>> Found credentials!\n",
">>>> Client_id=01c23590-ef6c-4a36-8237-c89c3f1a3b2a, client_secret=80763****\n",
">>>> Successfully fetched an access token eyJhb****, valid 604799 seconds.\n",
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIwMWMyMzU5MC1lZjZjLTRhMzYtODIzNy1jODljM2YxYTNiMmEiLCJzdWJfdHlwZSI6Im9hdXRoLWNsaWVudCIsImV4cCI6MTc2MzIzMTAwMCwidHlwZSI6ImFjY2Vzc1Rva2VuIiwiaGFzaGVkX3NlY3JldCI6InBia2RmMl9zaGEyNTYkNjAwMDAwJGhNdEw0OWsxRlRpVXNMTjY2OWpzak8kdUJJc3FyaXlvU0dXMlNLUC9odUs0eHd5Nnh3dUM3TTVpR0ZGbjc3aXhLVT0iLCJvcmdfdXVpZCI6IjQ5MzhiMGJiLTVmMjctNDE2NC04OTM4LTUyNTdmYmQzNTNmZiIsImNsaWVudF90eXBlIjoib2F1dGgtY2xpZW50In0.q0O2K5Oa40B6EcsJKQpz9lG2AiggersEGfT04wm7x_Y\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)\n",
"print(access_token)"
]
},
{
"cell_type": "markdown",
"id": "10bafcf1",
"metadata": {},
"source": [
"# 2. Reference Data\n",
"\n",
"The Reference Data endpoint returns the UUID codes associated with each FoB Port available on the Arbs endpoint. \n",
"\n",
"If there are two arbs available for a single FoB Port, e.g. \"Sabine Pass via COGH\" or \"Sabine Pass via Panama\", these are included as separate entries in the Reference Data response. The FoB Port UUID remains the same between these two entries. "
]
},
{
"cell_type": "code",
"execution_count": 39,
"id": "4d211cdb",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"/beta/intraday/arbs/reference-data/\n"
]
},
{
"data": {
"text/html": [
"
\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" fobPortUuid | \n",
" fobPortName | \n",
" viaPoint | \n",
"
\n",
" \n",
" \n",
" \n",
" | 0 | \n",
" 003f92ce-86d5-4d03-9761-311036c47812 | \n",
" Hammerfest | \n",
" cogh | \n",
"
\n",
" \n",
" | 1 | \n",
" 003afd77-2b63-41e4-8b7a-6d6294236d78 | \n",
" Bethioua | \n",
" cogh | \n",
"
\n",
" \n",
" | 2 | \n",
" 003dec0a-ce8f-41db-8c24-4d7ef6addf70 | \n",
" Sabine Pass | \n",
" cogh | \n",
"
\n",
" \n",
" | 3 | \n",
" 003dec0a-ce8f-41db-8c24-4d7ef6addf70 | \n",
" Sabine Pass | \n",
" panama | \n",
"
\n",
" \n",
" | 4 | \n",
" 0034fc9c-bb57-42b6-a91b-6f08c3795a25 | \n",
" Bonny LNG | \n",
" cogh | \n",
"
\n",
" \n",
" | 5 | \n",
" 003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df | \n",
" Ras Laffan | \n",
" cogh | \n",
"
\n",
" \n",
" | 6 | \n",
" 003342b7-ba5b-4f0e-b6df-4d95837a5691 | \n",
" Bintulu | \n",
" None | \n",
"
\n",
" \n",
" | 7 | \n",
" 00381c87-4180-4430-80f1-bf828099124f | \n",
" NWS | \n",
" cogh | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" fobPortUuid fobPortName viaPoint\n",
"0 003f92ce-86d5-4d03-9761-311036c47812 Hammerfest cogh\n",
"1 003afd77-2b63-41e4-8b7a-6d6294236d78 Bethioua cogh\n",
"2 003dec0a-ce8f-41db-8c24-4d7ef6addf70 Sabine Pass cogh\n",
"3 003dec0a-ce8f-41db-8c24-4d7ef6addf70 Sabine Pass panama\n",
"4 0034fc9c-bb57-42b6-a91b-6f08c3795a25 Bonny LNG cogh\n",
"5 003f9d1b-b4ad-4de9-8c8d-bd7fbcacd3df Ras Laffan cogh\n",
"6 003342b7-ba5b-4f0e-b6df-4d95837a5691 Bintulu None\n",
"7 00381c87-4180-4430-80f1-bf828099124f NWS cogh"
]
},
"execution_count": 39,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# define reference data function\n",
"\n",
"def fetch_reference_data(access_token):\n",
"\n",
" uri=\"/beta/intraday/arbs/reference-data/\"\n",
" print(uri)\n",
" \n",
" content = do_api_get_query(\n",
" uri, access_token=access_token\n",
" )\n",
"\n",
" return content\n",
"\n",
"# call data\n",
"reference_raw = fetch_reference_data(access_token)\n",
"\n",
"# convert into Pandas DataFrame\n",
"ref_df = pd.json_normalize(reference_raw['data'])\n",
"ref_df"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "1389e400",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"003dec0a-ce8f-41db-8c24-4d7ef6addf70\n"
]
}
],
"source": [
"# Save your chosen FoB Port UUID as a variable\n",
"my_fobport = ref_df[ref_df['fobPortName'] == 'Sabine Pass']['fobPortUuid'].iloc[0]\n",
"\n",
"print(my_fobport)"
]
},
{
"cell_type": "markdown",
"id": "7138d5ee",
"metadata": {},
"source": [
"# 3. Live Feed\n",
"\n",
"Here we define the function used to call the 'intraday/arbs/live' endpoint. This endpoint retrieves the latest published curves from the Intraday platform, and takes 2 required parameters:\n",
"\n",
"- \"fob-port\": which FoB port you'd like to see Arb data for. UUIDs can be found in the reference data called above\n",
"- \"via-point\": the corresponding via point for the chosen FoB port, used in either the NWE or NEA netback calculation (only if applicable)\n",
"- \"unit\": which unit you'd like the prices to be in ('usd-per-mmbtu')\n",
"- \"percent-hire\": whether you'd like to include freight hire costs in the arb calculations (\"100\") or consider them as sunk costs (\"0\"). \"0\" and \"100\" are the only accepted values - any custom % value needs to be locally interpolated\n",
"\n",
"__N.B__ This function will only run once and retrieve the latest forward curve. For a continuous feed of prices, you need to repeatedly call this function every 10 minutes for each new price release"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "b4186220",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"/beta/intraday/arbs/live/?fob-port=003dec0a-ce8f-41db-8c24-4d7ef6addf70&via-point=cogh&unit=usd-per-mmbtu&percent-hire=100\n"
]
},
{
"data": {
"text/plain": [
"{'errors': [],\n",
" 'data': [{'asOf': '2025-11-07T17:00:00Z',\n",
" 'periodType': 'month',\n",
" 'periodFrom': '2026-01-01',\n",
" 'periodName': 'Jan26',\n",
" 'percentHire': 100,\n",
" 'value': '-0.151',\n",
" 'revision': 0},\n",
" {'asOf': '2025-11-07T17:00:00Z',\n",
" 'periodType': 'month',\n",
" 'periodFrom': '2026-02-01',\n",
" 'periodName': 'Feb26',\n",
" 'percentHire': 100,\n",
" 'value': '-0.436',\n",
" 'revision': 0},\n",
" {'asOf': '2025-11-07T17:00:00Z',\n",
" 'periodType': 'month',\n",
" 'periodFrom': '2026-03-01',\n",
" 'periodName': 'Mar26',\n",
" 'percentHire': 100,\n",
" 'value': '-0.405',\n",
" 'revision': 0},\n",
" {'asOf': '2025-11-07T17:00:00Z',\n",
" 'periodType': 'month',\n",
" 'periodFrom': '2026-04-01',\n",
" 'periodName': 'Apr26',\n",
" 'percentHire': 100,\n",
" 'value': '-0.137',\n",
" 'revision': 0},\n",
" {'asOf': '2025-11-07T17:00:00Z',\n",
" 'periodType': 'month',\n",
" 'periodFrom': '2026-05-01',\n",
" 'periodName': 'May26',\n",
" 'percentHire': 100,\n",
" 'value': '-0.024',\n",
" 'revision': 0},\n",
" {'asOf': '2025-11-07T17:00:00Z',\n",
" 'periodType': 'month',\n",
" 'periodFrom': '2026-06-01',\n",
" 'periodName': 'Jun26',\n",
" 'percentHire': 100,\n",
" 'value': '0.035',\n",
" 'revision': 0},\n",
" {'asOf': '2025-11-07T17:00:00Z',\n",
" 'periodType': 'month',\n",
" 'periodFrom': '2026-07-01',\n",
" 'periodName': 'Jul26',\n",
" 'percentHire': 100,\n",
" 'value': '0.061',\n",
" 'revision': 0},\n",
" {'asOf': '2025-11-07T17:00:00Z',\n",
" 'periodType': 'month',\n",
" 'periodFrom': '2026-08-01',\n",
" 'periodName': 'Aug26',\n",
" 'percentHire': 100,\n",
" 'value': '-0.02',\n",
" 'revision': 0},\n",
" {'asOf': '2025-11-07T17:00:00Z',\n",
" 'periodType': 'month',\n",
" 'periodFrom': '2026-09-01',\n",
" 'periodName': 'Sep26',\n",
" 'percentHire': 100,\n",
" 'value': '-0.059',\n",
" 'revision': 0},\n",
" {'asOf': '2025-11-07T17:00:00Z',\n",
" 'periodType': 'month',\n",
" 'periodFrom': '2026-10-01',\n",
" 'periodName': 'Oct26',\n",
" 'percentHire': 100,\n",
" 'value': '-0.068',\n",
" 'revision': 0}],\n",
" 'metaData': {'Unit': 'usd-per-mmbtu',\n",
" 'FobPortUUID': '003dec0a-ce8f-41db-8c24-4d7ef6addf70',\n",
" 'ViaPoint': 'cogh',\n",
" 'PercentHire': '100'},\n",
" 'revisions': []}"
]
},
"execution_count": 41,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"## Defining the function\n",
"\n",
"\n",
"def fetch_live_releases(access_token, ticker, via, unit='usd-per-mmbtu', percent_hire=100, format='json'):\n",
" query_params = \"?fob-port={}\".format(ticker)\n",
" query_params += \"&via-point={}\".format(via)\n",
" query_params += \"&unit={}\".format(unit)\n",
" query_params += \"&percent-hire={}\".format(percent_hire)\n",
"\n",
" my_uri=\"/beta/intraday/arbs/live/{}\".format(query_params)\n",
" print(my_uri)\n",
" \n",
" content = do_api_get_query(\n",
" uri=my_uri, access_token=access_token, format=format\n",
" )\n",
" \n",
"\n",
" return content\n",
"\n",
"# calling the function to fetch the latest curves\n",
"live = fetch_live_releases(access_token, ticker='003dec0a-ce8f-41db-8c24-4d7ef6addf70', via='cogh', unit='usd-per-mmbtu', percent_hire=100)\n",
"live"
]
},
{
"cell_type": "code",
"execution_count": 42,
"id": "c08606c8",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" asOf | \n",
" periodType | \n",
" periodFrom | \n",
" periodName | \n",
" percentHire | \n",
" value | \n",
" revision | \n",
"
\n",
" \n",
" \n",
" \n",
" | 0 | \n",
" 2025-11-07 17:00:00 | \n",
" month | \n",
" 2026-01-01 | \n",
" Jan26 | \n",
" 100 | \n",
" -0.151 | \n",
" 0 | \n",
"
\n",
" \n",
" | 1 | \n",
" 2025-11-07 17:00:00 | \n",
" month | \n",
" 2026-02-01 | \n",
" Feb26 | \n",
" 100 | \n",
" -0.436 | \n",
" 0 | \n",
"
\n",
" \n",
" | 2 | \n",
" 2025-11-07 17:00:00 | \n",
" month | \n",
" 2026-03-01 | \n",
" Mar26 | \n",
" 100 | \n",
" -0.405 | \n",
" 0 | \n",
"
\n",
" \n",
" | 3 | \n",
" 2025-11-07 17:00:00 | \n",
" month | \n",
" 2026-04-01 | \n",
" Apr26 | \n",
" 100 | \n",
" -0.137 | \n",
" 0 | \n",
"
\n",
" \n",
" | 4 | \n",
" 2025-11-07 17:00:00 | \n",
" month | \n",
" 2026-05-01 | \n",
" May26 | \n",
" 100 | \n",
" -0.024 | \n",
" 0 | \n",
"
\n",
" \n",
" | 5 | \n",
" 2025-11-07 17:00:00 | \n",
" month | \n",
" 2026-06-01 | \n",
" Jun26 | \n",
" 100 | \n",
" 0.035 | \n",
" 0 | \n",
"
\n",
" \n",
" | 6 | \n",
" 2025-11-07 17:00:00 | \n",
" month | \n",
" 2026-07-01 | \n",
" Jul26 | \n",
" 100 | \n",
" 0.061 | \n",
" 0 | \n",
"
\n",
" \n",
" | 7 | \n",
" 2025-11-07 17:00:00 | \n",
" month | \n",
" 2026-08-01 | \n",
" Aug26 | \n",
" 100 | \n",
" -0.02 | \n",
" 0 | \n",
"
\n",
" \n",
" | 8 | \n",
" 2025-11-07 17:00:00 | \n",
" month | \n",
" 2026-09-01 | \n",
" Sep26 | \n",
" 100 | \n",
" -0.059 | \n",
" 0 | \n",
"
\n",
" \n",
" | 9 | \n",
" 2025-11-07 17:00:00 | \n",
" month | \n",
" 2026-10-01 | \n",
" Oct26 | \n",
" 100 | \n",
" -0.068 | \n",
" 0 | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" asOf periodType periodFrom periodName percentHire value \\\n",
"0 2025-11-07 17:00:00 month 2026-01-01 Jan26 100 -0.151 \n",
"1 2025-11-07 17:00:00 month 2026-02-01 Feb26 100 -0.436 \n",
"2 2025-11-07 17:00:00 month 2026-03-01 Mar26 100 -0.405 \n",
"3 2025-11-07 17:00:00 month 2026-04-01 Apr26 100 -0.137 \n",
"4 2025-11-07 17:00:00 month 2026-05-01 May26 100 -0.024 \n",
"5 2025-11-07 17:00:00 month 2026-06-01 Jun26 100 0.035 \n",
"6 2025-11-07 17:00:00 month 2026-07-01 Jul26 100 0.061 \n",
"7 2025-11-07 17:00:00 month 2026-08-01 Aug26 100 -0.02 \n",
"8 2025-11-07 17:00:00 month 2026-09-01 Sep26 100 -0.059 \n",
"9 2025-11-07 17:00:00 month 2026-10-01 Oct26 100 -0.068 \n",
"\n",
" revision \n",
"0 0 \n",
"1 0 \n",
"2 0 \n",
"3 0 \n",
"4 0 \n",
"5 0 \n",
"6 0 \n",
"7 0 \n",
"8 0 \n",
"9 0 "
]
},
"execution_count": 42,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# convert JSON to DataFrame\n",
"live_df = pd.json_normalize(live['data'])\n",
"live_df['asOf'] = pd.to_datetime(live_df['asOf'], utc=True).dt.tz_localize(None)\n",
"live_df\n"
]
},
{
"cell_type": "markdown",
"id": "f0798174",
"metadata": {},
"source": [
"### Data included\n",
"\n",
"The JSON includes 4 fields:\n",
"- 'errors': will be empty if the API call is successful, otherwise returns relevant error code\n",
"- 'data': contains the full forward curve of the requested contract\n",
"- 'revisions': contains any revisions made since the last price release - this can be for a revision for any historical price\n",
"- 'metaData': provides details on the fetched data and time of API call"
]
},
{
"cell_type": "code",
"execution_count": 43,
"id": "690b953b",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"dict_keys(['errors', 'data', 'metaData', 'revisions'])\n",
"{'Unit': 'usd-per-mmbtu', 'FobPortUUID': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'ViaPoint': 'cogh', 'PercentHire': '100'}\n"
]
}
],
"source": [
"print(live.keys())\n",
"print(live['metaData'])"
]
},
{
"cell_type": "markdown",
"id": "e27e05fb",
"metadata": {},
"source": [
"# 4. Historical Data\n",
"\n",
"Here we define the function used to call the 'intraday/arbs/historical' endpoint. This endpoint retrieves the historical published curves from the Intraday platform, and takes 4 required parameters:\n",
"\n",
"- \"fob-port\": which FoB port Arbs you'd like to pull\n",
"- \"unit\": which unit you'd like the prices to be in ('usd-per-mmbtu')\n",
"- \"start\": which date you'd like the data to start from\n",
"- \"end\": which date you'd like the data to run up until\n",
"- \"percent-hire\": whether you'd like to include freight hire costs in the arb calculations (\"100\") or consider them as sunk costs (\"0\"). \"0\" and \"100\" are the only accepted values - any custom % value needs to be locally interpolated"
]
},
{
"cell_type": "code",
"execution_count": 44,
"id": "24adff55",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"/beta/intraday/arbs/historical/?fob-port=003dec0a-ce8f-41db-8c24-4d7ef6addf70&via-point=cogh&unit=usd-per-mmbtu&percent-hire=100&start=2025-10-01&end=2025-10-31\n"
]
}
],
"source": [
"## Defining the function\n",
"\n",
"\n",
"def fetch_historical_releases(access_token, ticker, via, start, end, unit='usd-per-mmbtu', percent_hire=100, format='json'):\n",
" query_params = \"?fob-port={}\".format(ticker)\n",
" query_params += \"&via-point={}\".format(via)\n",
" query_params += \"&unit={}\".format(unit)\n",
" query_params += \"&percent-hire={}\".format(percent_hire)\n",
"\n",
" query_params += \"&start={}\".format(start)\n",
" query_params += \"&end={}\".format(end)\n",
"\n",
" uri=\"/beta/intraday/arbs/historical/{}\".format(query_params)\n",
" print(uri)\n",
" \n",
" content = do_api_get_query(\n",
" uri=uri, access_token=access_token, format=format\n",
" )\n",
"\n",
" return content\n",
"\n",
"# call function to fetch historical data\n",
"\n",
"historical = fetch_historical_releases(access_token, ticker='003dec0a-ce8f-41db-8c24-4d7ef6addf70', via='cogh', start='2025-10-01', end='2025-10-31', unit='usd-per-mmbtu', percent_hire=100)"
]
},
{
"cell_type": "markdown",
"id": "a2af8dff",
"metadata": {},
"source": [
"### Data included\n",
"\n",
"The JSON includes 4 fields:\n",
"- 'errors': will be empty if the API call is successful, otherwise returns relevant error code\n",
"- 'data': contains the historical dataset of the requested contract\n",
"- 'metaData': provides details on the fetched data and time of API call\n",
"\n",
"__N.B.__ for historical revisions, please refer to the \"Intraday Revisions\" code sample"
]
},
{
"cell_type": "code",
"execution_count": 45,
"id": "24eb1a58",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"dict_keys(['errors', 'data', 'metaData'])\n",
"{'unit': 'usd-per-mmbtu', 'fobPortUuid': '003dec0a-ce8f-41db-8c24-4d7ef6addf70', 'viaPoint': 'cogh', 'percentHire': '100', 'start': '2025-10-01T00:00:00+01:00', 'end': '2025-10-31T00:00:00+00:00', 'visibility': 'complete'}\n"
]
}
],
"source": [
"print(historical.keys())\n",
"print(historical['metaData'])"
]
},
{
"cell_type": "markdown",
"id": "09efaf31",
"metadata": {},
"source": [
"### Historical Data: DataFrame Conversion & Indexing"
]
},
{
"cell_type": "code",
"execution_count": 46,
"id": "2df46e36",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" asOf | \n",
" periodType | \n",
" periodFrom | \n",
" periodName | \n",
" monthIndex | \n",
" value | \n",
" revision | \n",
"
\n",
" \n",
" \n",
" \n",
" | 0 | \n",
" 2025-10-01 06:00:00 | \n",
" month | \n",
" 2025-12-01 | \n",
" Dec25 | \n",
" 2 | \n",
" -0.137 | \n",
" 0 | \n",
"
\n",
" \n",
" | 1 | \n",
" 2025-10-01 06:00:00 | \n",
" month | \n",
" 2026-01-01 | \n",
" Jan26 | \n",
" 3 | \n",
" -0.303 | \n",
" 0 | \n",
"
\n",
" \n",
" | 2 | \n",
" 2025-10-01 06:00:00 | \n",
" month | \n",
" 2026-02-01 | \n",
" Feb26 | \n",
" 4 | \n",
" -0.506 | \n",
" 0 | \n",
"
\n",
" \n",
" | 3 | \n",
" 2025-10-01 06:00:00 | \n",
" month | \n",
" 2026-03-01 | \n",
" Mar26 | \n",
" 5 | \n",
" -0.465 | \n",
" 0 | \n",
"
\n",
" \n",
" | 4 | \n",
" 2025-10-01 06:00:00 | \n",
" month | \n",
" 2026-04-01 | \n",
" Apr26 | \n",
" 6 | \n",
" -0.246 | \n",
" 0 | \n",
"
\n",
" \n",
" | 5 | \n",
" 2025-10-01 06:00:00 | \n",
" month | \n",
" 2026-05-01 | \n",
" May26 | \n",
" 7 | \n",
" -0.11 | \n",
" 0 | \n",
"
\n",
" \n",
" | 6 | \n",
" 2025-10-01 06:00:00 | \n",
" month | \n",
" 2026-06-01 | \n",
" Jun26 | \n",
" 8 | \n",
" -0.033 | \n",
" 0 | \n",
"
\n",
" \n",
" | 7 | \n",
" 2025-10-01 06:00:00 | \n",
" month | \n",
" 2026-07-01 | \n",
" Jul26 | \n",
" 9 | \n",
" -0.02 | \n",
" 0 | \n",
"
\n",
" \n",
" | 8 | \n",
" 2025-10-01 06:00:00 | \n",
" month | \n",
" 2026-08-01 | \n",
" Aug26 | \n",
" 10 | \n",
" -0.065 | \n",
" 0 | \n",
"
\n",
" \n",
" | 9 | \n",
" 2025-10-01 06:10:00 | \n",
" month | \n",
" 2025-12-01 | \n",
" Dec25 | \n",
" 2 | \n",
" -0.147 | \n",
" 0 | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" asOf periodType periodFrom periodName monthIndex value \\\n",
"0 2025-10-01 06:00:00 month 2025-12-01 Dec25 2 -0.137 \n",
"1 2025-10-01 06:00:00 month 2026-01-01 Jan26 3 -0.303 \n",
"2 2025-10-01 06:00:00 month 2026-02-01 Feb26 4 -0.506 \n",
"3 2025-10-01 06:00:00 month 2026-03-01 Mar26 5 -0.465 \n",
"4 2025-10-01 06:00:00 month 2026-04-01 Apr26 6 -0.246 \n",
"5 2025-10-01 06:00:00 month 2026-05-01 May26 7 -0.11 \n",
"6 2025-10-01 06:00:00 month 2026-06-01 Jun26 8 -0.033 \n",
"7 2025-10-01 06:00:00 month 2026-07-01 Jul26 9 -0.02 \n",
"8 2025-10-01 06:00:00 month 2026-08-01 Aug26 10 -0.065 \n",
"9 2025-10-01 06:10:00 month 2025-12-01 Dec25 2 -0.147 \n",
"\n",
" revision \n",
"0 0 \n",
"1 0 \n",
"2 0 \n",
"3 0 \n",
"4 0 \n",
"5 0 \n",
"6 0 \n",
"7 0 \n",
"8 0 \n",
"9 0 "
]
},
"execution_count": 46,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# converting to Pandas DataFrame\n",
"hist_df = pd.json_normalize(historical['data'])\n",
"hist_df['asOf'] = pd.to_datetime(hist_df['asOf'], utc=True).dt.tz_localize(None)\n",
"hist_df.head(10)"
]
},
{
"cell_type": "code",
"execution_count": 47,
"id": "22f3ae40",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"['Apr26', 'Aug26', 'Dec25', 'Feb26', 'Jan26', 'Jul26', 'Jun26', 'Mar26', 'May26', 'Sep26']\n"
]
},
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" asOf | \n",
" periodType | \n",
" periodFrom | \n",
" periodName | \n",
" monthIndex | \n",
" value | \n",
" revision | \n",
"
\n",
" \n",
" \n",
" \n",
" | 4 | \n",
" 2025-10-01 06:00:00 | \n",
" month | \n",
" 2026-04-01 | \n",
" Apr26 | \n",
" 6 | \n",
" -0.246 | \n",
" 0 | \n",
"
\n",
" \n",
" | 13 | \n",
" 2025-10-01 06:10:00 | \n",
" month | \n",
" 2026-04-01 | \n",
" Apr26 | \n",
" 6 | \n",
" -0.242 | \n",
" 0 | \n",
"
\n",
" \n",
" | 22 | \n",
" 2025-10-01 06:20:00 | \n",
" month | \n",
" 2026-04-01 | \n",
" Apr26 | \n",
" 6 | \n",
" -0.246 | \n",
" 0 | \n",
"
\n",
" \n",
" | 31 | \n",
" 2025-10-01 06:30:00 | \n",
" month | \n",
" 2026-04-01 | \n",
" Apr26 | \n",
" 6 | \n",
" -0.247 | \n",
" 0 | \n",
"
\n",
" \n",
" | 40 | \n",
" 2025-10-01 06:40:00 | \n",
" month | \n",
" 2026-04-01 | \n",
" Apr26 | \n",
" 6 | \n",
" -0.243 | \n",
" 0 | \n",
"
\n",
" \n",
" | 49 | \n",
" 2025-10-01 06:50:00 | \n",
" month | \n",
" 2026-04-01 | \n",
" Apr26 | \n",
" 6 | \n",
" -0.246 | \n",
" 0 | \n",
"
\n",
" \n",
" | 58 | \n",
" 2025-10-01 07:00:00 | \n",
" month | \n",
" 2026-04-01 | \n",
" Apr26 | \n",
" 6 | \n",
" -0.246 | \n",
" 0 | \n",
"
\n",
" \n",
" | 67 | \n",
" 2025-10-01 07:10:00 | \n",
" month | \n",
" 2026-04-01 | \n",
" Apr26 | \n",
" 6 | \n",
" -0.246 | \n",
" 0 | \n",
"
\n",
" \n",
" | 76 | \n",
" 2025-10-01 07:20:00 | \n",
" month | \n",
" 2026-04-01 | \n",
" Apr26 | \n",
" 6 | \n",
" -0.244 | \n",
" 0 | \n",
"
\n",
" \n",
" | 85 | \n",
" 2025-10-01 07:30:00 | \n",
" month | \n",
" 2026-04-01 | \n",
" Apr26 | \n",
" 6 | \n",
" -0.244 | \n",
" 0 | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" asOf periodType periodFrom periodName monthIndex value \\\n",
"4 2025-10-01 06:00:00 month 2026-04-01 Apr26 6 -0.246 \n",
"13 2025-10-01 06:10:00 month 2026-04-01 Apr26 6 -0.242 \n",
"22 2025-10-01 06:20:00 month 2026-04-01 Apr26 6 -0.246 \n",
"31 2025-10-01 06:30:00 month 2026-04-01 Apr26 6 -0.247 \n",
"40 2025-10-01 06:40:00 month 2026-04-01 Apr26 6 -0.243 \n",
"49 2025-10-01 06:50:00 month 2026-04-01 Apr26 6 -0.246 \n",
"58 2025-10-01 07:00:00 month 2026-04-01 Apr26 6 -0.246 \n",
"67 2025-10-01 07:10:00 month 2026-04-01 Apr26 6 -0.246 \n",
"76 2025-10-01 07:20:00 month 2026-04-01 Apr26 6 -0.244 \n",
"85 2025-10-01 07:30:00 month 2026-04-01 Apr26 6 -0.244 \n",
"\n",
" revision \n",
"4 0 \n",
"13 0 \n",
"22 0 \n",
"31 0 \n",
"40 0 \n",
"49 0 \n",
"58 0 \n",
"67 0 \n",
"76 0 \n",
"85 0 "
]
},
"execution_count": 47,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# Group dataframe by \"Contract\" field\n",
"contract_groups = hist_df.groupby('periodName')\n",
"\n",
"# list available contracts (not listed chronologically)\n",
"contract_keys = list(contract_groups.groups.keys())\n",
"print(contract_keys)\n",
"\n",
"# Fetch historical prices for a specific contract\n",
"cdf = contract_groups.get_group(contract_keys[0])\n",
"cdf.head(10)"
]
},
{
"cell_type": "markdown",
"id": "b3fa015e",
"metadata": {},
"source": [
"## N.B. Historical Data Limits\n",
"\n",
"Currently, a maximum of 30 historical days 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 days at a time. To call more history, increase the 'loops' parameter in the first line of the code. The 'loops' parameter describes the number of historical data requests to be executed."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "129599ed",
"metadata": {},
"outputs": [],
"source": [
"def loop_historical_data(token, hist_fob, hist_via, hist_unit, hist_start, hist_end, hist_percent_hire=100):\n",
" \n",
" # calculating the amount of days to retrieve data for\n",
" hist_diff = (datetime.datetime.strptime(hist_end, '%Y-%m-%d') - datetime.datetime.strptime(hist_start, '%Y-%m-%d')).days\n",
" t = 0\n",
"\n",
" starts = []\n",
" ends = []\n",
" \n",
" # iterating through the historical data, 20 days at a time\n",
" while t < hist_diff:\n",
" if t == 0:\n",
" diff_end = datetime.datetime.strftime(datetime.datetime.strptime(hist_start, '%Y-%m-%d') + pd.Timedelta(20, unit='days'), '%Y-%m-%d')\n",
" historical = fetch_historical_releases(access_token, ticker=hist_fob, via=hist_via, unit=hist_unit, start=hist_start, end=diff_end, percent_hire=hist_percent_hire)\n",
" hist_df = pd.json_normalize(historical['data'])\n",
"\n",
" starts.append(hist_start)\n",
" ends.append(diff_end)\n",
"\n",
" else:\n",
" if t < hist_diff-20:\n",
" diff_start = datetime.datetime.strftime(datetime.datetime.strptime(hist_start, '%Y-%m-%d') + pd.Timedelta(t, unit='days'), '%Y-%m-%d')\n",
" diff_end = datetime.datetime.strftime(datetime.datetime.strptime(diff_start, '%Y-%m-%d') + pd.Timedelta(20, unit='days'), '%Y-%m-%d')\n",
" historical = fetch_historical_releases(access_token, ticker=hist_fob, via=hist_via, unit=hist_unit, start=diff_start, end=diff_end, percent_hire=hist_percent_hire)\n",
" hist_df = pd.concat([hist_df,pd.json_normalize(historical['data'])])\n",
" starts.append(hist_start)\n",
" ends.append(diff_end)\n",
" else:\n",
" diff_start = datetime.datetime.strftime(datetime.datetime.strptime(hist_start, '%Y-%m-%d') + pd.Timedelta(t, unit='days'), '%Y-%m-%d')\n",
" diff_end = datetime.datetime.strftime(datetime.datetime.strptime(diff_start, '%Y-%m-%d') + pd.Timedelta(hist_diff-t, unit='days'), '%Y-%m-%d')\n",
" historical = fetch_historical_releases(access_token, ticker=hist_fob, via=hist_via, unit=hist_unit, start=diff_start, end=diff_end, percent_hire=hist_percent_hire)\n",
" hist_df = pd.concat([hist_df,pd.json_normalize(historical['data'])])\n",
" starts.append(hist_start)\n",
" ends.append(diff_end)\n",
" \n",
" t += 20\n",
"\n",
" hist_df['value'] = pd.to_numeric(hist_df['value'])\n",
" hist_df['asOf'] = pd.to_datetime(hist_df['asOf'], utc=True).dt.tz_localize(None)\n",
"\n",
" return hist_df"
]
},
{
"cell_type": "code",
"execution_count": 49,
"id": "a3ac2ad6",
"metadata": {},
"outputs": [],
"source": [
"# Calling the extended historical data function\n",
"\n",
"#hdf = loop_historical_data(access_token, hist_fob='003dec0a-ce8f-41db-8c24-4d7ef6addf70', hist_via='cogh', \n",
"# hist_unit='usd-per-mmbtu', hist_start='2025-08-01', hist_end='2025-10-28', hist_percent_hire=100)\n",
"#hdf"
]
},
{
"cell_type": "markdown",
"id": "922a757e",
"metadata": {},
"source": [
"# 5. Revisions\n",
"\n",
"Here we define the function used to call the 'intraday/arbs/revisions' endpoint. This endpoint retrieves the historical price revisions from the Intraday platform, and takes 2 required parameters:\n",
"\n",
"- \"fob-port\": which FoB port you'd like to see Arbs data for. UUIDs can be found in the reference data called above\n",
"- \"via-point\": the corresponding via point for the chosen FoB port, used in either the NWE or NEA netback calculation (only if applicable)\n",
"- \"unit\": which unit you'd like the prices to be in ('usd-per-mmbtu')\n",
"- \"percent-hire\": whether you'd like to include freight hire costs in the arb breakeven calculations (\"100\") or consider them as sunk costs (\"0\"). \"0\" and \"100\" are the only accepted values - any custom % value needs to be locally interpolated"
]
},
{
"cell_type": "code",
"execution_count": 50,
"id": "054ccebe",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"/beta/intraday/arbs/revisions/?fob-port=003dec0a-ce8f-41db-8c24-4d7ef6addf70&via-point=cogh&unit=usd-per-mmbtu&percent-hire=100\n"
]
}
],
"source": [
"def fetch_historical_revisions(access_token, ticker, via, unit='usd-per-mmbtu', percent_hire=100, format='json'):\n",
" query_params = \"?fob-port={}\".format(ticker)\n",
" query_params += \"&via-point={}\".format(via)\n",
" query_params += \"&unit={}\".format(unit)\n",
" query_params += \"&percent-hire={}\".format(percent_hire)\n",
"\n",
" uri=\"/beta/intraday/arbs/revisions/{}\".format(query_params)\n",
" print(uri)\n",
" \n",
" content = do_api_get_query(\n",
" uri, access_token=access_token, format=format\n",
" )\n",
"\n",
" return content\n",
"\n",
"revs = fetch_historical_revisions(access_token, ticker=my_fobport, via='cogh', unit='usd-per-mmbtu', percent_hire=100)"
]
},
{
"cell_type": "markdown",
"id": "45988eac",
"metadata": {},
"source": [
"__N.B.__\n",
"\n",
"Revisions are only stored in this endpoint for all revisions published since the start of the previous business day. If you'd like to check for any price revisions published earlier than this, we recommend downloading our historical datasets as these will have the most up-to-date prices (including revised prices)."
]
},
{
"cell_type": "code",
"execution_count": 51,
"id": "c19aff5b",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{'errors': [],\n",
" 'data': [{'as_of': '2025-11-05T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.1',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.095',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.393',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.748',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.688',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.303',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.138',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.005',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.037',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.161',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.219',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.038',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.012',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.362',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.711',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.61',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.372',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.316',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.082',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.105',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.09',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.276',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.053',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.068',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.304',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.655',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.732',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.39',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.182',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.049',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.05',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.117',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.252',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.035',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.03',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.465',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.731',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.644',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.243',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.115',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.024',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.069',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.176',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.198',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.063',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.054',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.393',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.734',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.671',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.289',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.136',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.001',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.032',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.158',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.216',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.02',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.034',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.517',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.778',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.61',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.185',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.089',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.052',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.116',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.198',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.175',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.064',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.077',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.575',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.798',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.585',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.141',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.068',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.074',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.151',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.215',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.157',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.029',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.017',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.457',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.758',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.644',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.234',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.106',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.03',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.079',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.182',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.194',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.02',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.033',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.518',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.778',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.614',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.184',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.083',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.054',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.117',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.199',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.175',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.074',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.086',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.595',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.805',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.576',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.117',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.052',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.089',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.174',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.224',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.139',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.012',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.002',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.493',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.774',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.628',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.204',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.091',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.045',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.103',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.19',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.175',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.028',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.039',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.537',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.787',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.606',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.167',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.074',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.064',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.133',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.204',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.16',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.086',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.606',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.807',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.567',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.102',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.044',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.096',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.186',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.23',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.136',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.009',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.006',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.49',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.77',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.623',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.194',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.086',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.048',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.109',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.194',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.176',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.042',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.044',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.542',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.784',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.601',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.159',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.071',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.068',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.141',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.208',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.157',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.088',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.093',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.601',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.803',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.573',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.11',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.049',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.094',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.182',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.227',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.135',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.004',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.002',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.487',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.766',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.628',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.204',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.047',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.107',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.192',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.176',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.04',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.046',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.545',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.785',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.599',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.156',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.07',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.071',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.145',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.21',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.155',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.073',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.077',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.585',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.797',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.579',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.122',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.054',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.087',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.172',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.222',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.139',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.09',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.382',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.73',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.673',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.281',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.127',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.006',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.04',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.161',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.209',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.09',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.088',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.383',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.731',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.673',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.282',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.127',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.006',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.041',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.162',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.21',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.097',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.093',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.374',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.729',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.68',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.293',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.132',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.001',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.031',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.158',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.215',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.097',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.093',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.376',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.729',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.679',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.292',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.131',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.001',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.033',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.158',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.215',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.097',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.376',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.73',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.681',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.294',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.132',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.002',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.033',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.158',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.215',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.097',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.091',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.376',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.73',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.681',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.294',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.132',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.0',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.03',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.158',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.218',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.097',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.093',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.379',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.767',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.719',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.27',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.105',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.003',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.034',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.16',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.216',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.097',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.377',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.765',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.718',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.27',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.105',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.002',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.033',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.159',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.219',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.097',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.091',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.376',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.765',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.721',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.272',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.105',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.002',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.033',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.159',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.216',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.093',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.088',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.381',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.767',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.719',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.269',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.104',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.006',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.04',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.161',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.215',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.089',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.086',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.38',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.765',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.716',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.264',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.101',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.006',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.04',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.16',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T11:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.213',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.09',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.09',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.381',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.766',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.715',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.263',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.101',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.009',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.044',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.162',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.211',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.088',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.088',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.381',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.763',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.71',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.255',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.097',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.011',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.047',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.164',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.211',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.096',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.091',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.374',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.761',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.713',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.26',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.099',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.006',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.041',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.161',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.214',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.098',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.093',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.374',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.761',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.713',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.26',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.1',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.007',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.042',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.162',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.212',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.098',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.375',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.763',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.716',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.264',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.101',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.006',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.04',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.16',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.215',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.096',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.376',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.764',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.718',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.267',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.103',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.005',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.038',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.16',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T12:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.218',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.097',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.093',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.377',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.766',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.72',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.27',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.104',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.004',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.035',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.159',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.219',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.097',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.093',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.372',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.763',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.72',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.27',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.104',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.003',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.035',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.159',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.217',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.097',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.091',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.373',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.762',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.717',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.266',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.102',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.005',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.037',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.159',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.216',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.099',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.37',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.762',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.721',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.273',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.106',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.002',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.034',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.159',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.221',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.102',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.094',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.372',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.763',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.721',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.272',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.105',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.003',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.034',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.16',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.223',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.101',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.095',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.371',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.761',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.719',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.27',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.104',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.004',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.036',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.16',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T13:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.22',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.1',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.094',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.371',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.761',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.718',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.273',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.107',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.001',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.032',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.159',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.223',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.101',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.094',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.371',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.76',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.717',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.273',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.107',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.001',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.031',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.157',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.221',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.098',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.373',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.761',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.716',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.27',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.106',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.002',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.034',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.159',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.22',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.099',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.371',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.761',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.718',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.273',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.106',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.002',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.028',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.155',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.22',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.094',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.377',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.763',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.716',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.269',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.105',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.002',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.033',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.157',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.215',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.095',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.091',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.376',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.763',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.715',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.269',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.105',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.002',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.033',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.157',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T14:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.217',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.093',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.372',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.76',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.712',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.265',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.103',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.002',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.034',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.158',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.219',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.374',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.761',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.712',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.264',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.103',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.003',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.035',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.16',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.221',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.375',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.76',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.71',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.26',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.102',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.008',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.043',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.162',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.214',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.093',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.375',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.76',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.707',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.257',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.101',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.008',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.044',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.162',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.209',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.091',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.091',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.375',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.759',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.707',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.255',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.098',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.008',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.044',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.162',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.211',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.093',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.093',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.374',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.76',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.703',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.256',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.104',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.004',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.037',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.159',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T15:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.216',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.094',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.093',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.374',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.762',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.706',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.261',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.107',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.004',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.037',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.16',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.216',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.094',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.093',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.379',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.763',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.703',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.258',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.106',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.004',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.038',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.16',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.215',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.375',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.763',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.706',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.262',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.107',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.003',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.035',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.159',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.22',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.092',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.091',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.378',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.764',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.705',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.258',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.105',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.005',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.039',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.161',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.216',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.091',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.09',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.374',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.762',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.704',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.26',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.106',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.001',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.037',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.162',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T16:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.213',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T17:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.093',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T17:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.093',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T17:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.379',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T17:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.761',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T17:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.703',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T17:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.258',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T17:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.105',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T17:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.0',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T17:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.039',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T17:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.162',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T17:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.211',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T17:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-01-01',\n",
" 'period_name': 'Jan26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.184',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T17:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-04-01',\n",
" 'period_name': 'Apr26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.159',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T17:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-05-01',\n",
" 'period_name': 'May26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.032',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T17:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-06-01',\n",
" 'period_name': 'Jun26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.017',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T17:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-07-01',\n",
" 'period_name': 'Jul26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.012',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-05T17:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-08-01',\n",
" 'period_name': 'Aug26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.059',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:25:26.643484Z'},\n",
" {'as_of': '2025-11-06T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.093',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.095',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.37',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.749',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.713',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.281',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.104',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.005',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.04',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.16',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.212',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-04-01',\n",
" 'period_name': 'Apr26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.16',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-05-01',\n",
" 'period_name': 'May26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.045',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-07-01',\n",
" 'period_name': 'Jul26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.01',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T07:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-08-01',\n",
" 'period_name': 'Aug26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.061',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.047',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.013',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.365',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.728',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.625',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.329',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.271',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.083',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.083',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.1',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.263',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-04-01',\n",
" 'period_name': 'Apr26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.154',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-05-01',\n",
" 'period_name': 'May26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.048',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-07-01',\n",
" 'period_name': 'Jul26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.023',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T07:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-08-01',\n",
" 'period_name': 'Aug26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.086',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.058',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.082',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.284',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.665',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.757',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.368',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.151',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.057',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.042',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.118',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.238',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-07-01',\n",
" 'period_name': 'Jul26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.021',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T07:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-08-01',\n",
" 'period_name': 'Aug26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.064',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.097',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.111',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.295',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.693',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.741',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.341',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.138',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.043',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.02',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.128',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.227',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-07-01',\n",
" 'period_name': 'Jul26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.022',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T07:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-08-01',\n",
" 'period_name': 'Aug26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.054',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.098',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.102',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.342',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.732',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.714',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.296',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.117',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.02',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.018',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.147',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.21',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-07-01',\n",
" 'period_name': 'Jul26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.021',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T07:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-08-01',\n",
" 'period_name': 'Aug26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.055',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.096',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.098',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.367',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.749',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.7',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.271',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.107',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.008',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.037',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.156',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.2',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-07-01',\n",
" 'period_name': 'Jul26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.019',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T07:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-08-01',\n",
" 'period_name': 'Aug26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.057',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.097',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.098',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.362',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.748',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.702',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.276',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.109',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.009',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.035',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.156',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.205',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-07-01',\n",
" 'period_name': 'Jul26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.019',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T08:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-08-01',\n",
" 'period_name': 'Aug26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.056',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.098',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.098',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.364',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.749',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.702',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.275',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.108',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.009',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.036',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.157',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.207',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-07-01',\n",
" 'period_name': 'Jul26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.02',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T08:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-08-01',\n",
" 'period_name': 'Aug26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.056',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.096',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.096',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.361',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.747',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.701',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.274',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.107',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.011',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.032',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.156',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.208',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-07-01',\n",
" 'period_name': 'Jul26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.021',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T08:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-08-01',\n",
" 'period_name': 'Aug26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.055',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.105',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.102',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.357',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.75',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.712',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.288',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.113',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.015',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.027',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.152',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.208',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-07-01',\n",
" 'period_name': 'Jul26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.018',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T08:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-08-01',\n",
" 'period_name': 'Aug26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.055',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.102',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.101',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.357',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.748',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.709',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.283',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.111',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.012',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.03',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.154',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.207',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-07-01',\n",
" 'period_name': 'Jul26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.018',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T08:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-08-01',\n",
" 'period_name': 'Aug26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.054',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.103',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.101',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.364',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.748',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.7',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.27',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.107',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.004',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.043',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.161',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.203',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-07-01',\n",
" 'period_name': 'Jul26',\n",
" 'percent_hire': 100,\n",
" 'value': '0.018',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T08:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-08-01',\n",
" 'period_name': 'Aug26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.054',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T18:26:56.165040Z'},\n",
" {'as_of': '2025-11-06T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.101',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.101',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.362',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.749',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.703',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.274',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.107',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.009',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.036',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.157',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.205',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.101',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.1',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.362',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.751',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.705',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.279',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.11',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.01',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.035',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.157',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.208',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.102',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.1',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.361',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.751',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.709',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.284',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.113',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.012',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.03',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.154',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.208',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.1',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.1',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.366',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.752',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.706',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.28',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.112',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.007',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.038',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.158',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.203',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.1',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.099',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.368',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.754',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.706',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.281',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.111',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.011',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.032',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.155',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.207',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.099',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.099',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.359',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.75',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.709',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.286',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.113',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.014',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.027',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.153',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T09:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.211',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.102',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.102',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.355',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.748',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.714',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.292',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.117',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.015',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.026',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.152',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.211',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.099',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.101',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.358',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.749',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.712',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.29',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.116',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.014',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.027',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.154',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.214',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.099',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.101',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.359',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.749',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.713',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.291',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.116',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.014',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.026',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.154',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.211',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.101',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.1',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.358',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.749',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.712',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.29',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.115',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.016',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.024',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.155',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.214',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.1',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.1',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.359',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.75',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.716',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.296',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.117',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.019',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.019',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.152',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:40:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.214',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.102',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.1',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.36',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.751',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.714',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.292',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.117',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.014',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.019',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.148',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T10:50:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.22',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.102',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.1',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.358',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.751',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.716',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.295',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.118',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.016',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.016',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.147',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:00:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.221',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.101',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.1',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.363',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.752',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.713',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.291',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.116',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.015',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.017',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.149',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:10:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.224',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.1',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.101',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.362',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.75',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.71',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.286',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.115',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.01',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.025',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-08-01',\n",
" 'period_name': 'Aug27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.152',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:20:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-09-01',\n",
" 'period_name': 'Sep27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.218',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-10-01',\n",
" 'period_name': 'Oct26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.097',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2026-11-01',\n",
" 'period_name': 'Nov26',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.097',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-01-01',\n",
" 'period_name': 'Jan27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.357',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-02-01',\n",
" 'period_name': 'Feb27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.747',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-03-01',\n",
" 'period_name': 'Mar27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.711',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-04-01',\n",
" 'period_name': 'Apr27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.287',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-05-01',\n",
" 'period_name': 'May27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.114',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-06-01',\n",
" 'period_name': 'Jun27',\n",
" 'percent_hire': 100,\n",
" 'value': '0.011',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" {'as_of': '2025-11-06T11:30:00Z',\n",
" 'period_type': 'month',\n",
" 'period_from': '2027-07-01',\n",
" 'period_name': 'Jul27',\n",
" 'percent_hire': 100,\n",
" 'value': '-0.023',\n",
" 'revision': 1,\n",
" 'revision_dt': '2025-11-06T17:55:50.396005Z'},\n",
" ...],\n",
" 'metaData': {'fobPort': '003dec0a-ce8f-41db-8c24-4d7ef6addf70',\n",
" 'viaPoint': 'cogh',\n",
" 'percentHire': 100,\n",
" 'unit': 'usd-per-mmbtu'}}"
]
},
"execution_count": 51,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"revs"
]
}
],
"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
}