{ "cells": [ { "cell_type": "markdown", "id": "93db67d4", "metadata": {}, "source": [ "## yfinance\n", "\n", "

\n", "\n", " \n", "yfinance is a Python api to the Yahoo! finance site.\n", " \n", "This file resides at /c/cs458/www/lectures/yfinance.ipynb" ] }, { "cell_type": "markdown", "id": "dddccf83", "metadata": {}, "source": [ "## Everything you need to know about (y)finance\n", "\n", "The fundamental law of finance is:\n", "\n", "> Buy low, sell high.\n", "\n", "But what do you buy? When they think of finance and investing, most people\n", "think about the Dow Jones Industrial Average, which comprises 30 large cap US stocks, traded on the New York Stock Exchange (NYSE) and the NASDAQ exchange. (A large cap stock has a market capitalization greater than $10 billion.\n", "The market cap is simply the price of a share of stock times the number of shares\n", "outstanding.)\n", "\n", "By owning a share of stock, you become an owner of the company. You have an equity stake in running the company. Major decisions by the company are ratified by a shareholder vote. If you own more than 50% of the stock in a company, you control the company. Stock is also known as equity which is just one asset class\n", "in which you might choose to invest. Others include bonds (aka, fixed income or debt), \n", "real estate, commodities (e.g., wheat, oil, gold), foreign exchance (currency, like dollars, euros, and yen), derivatives (such as mortgage back securities), and infrastructure (such as roads and airports).\n", "\n", "We are going to focus on equity, that is, stocks. The yfinance Python module provides a\n", "boatload of information about US stocks and other securities.\n", "\n" ] }, { "cell_type": "markdown", "id": "2b4aa50a", "metadata": {}, "source": [ "## Risk Management\n", "\n", "As we learned from Tversky and Kahnemann and behavioral economists, people are risk\n", "averse. They don't like losing money. In 1952, Harry Markowitz came up with \n", "Modern Portfolio Theory which, among other things, \n", "showed how you can construct a collection or portfolio of stocks to reduce or even\n", "minimize the risk of the overall investment. One of Markowitz's insights was that \n", "the volatility of a stock's price was a suitable measure of the risk of the investment. You can reduce the overall volatility of a portfolio \n", "by investing stocks that are not correlated with each other. Thus, one stock may\n", "go up with inflation and another might go down. These movements can offset each other\n", "and reduce the portfolio's volatility or risk.\n", "\n", "You can fully diversify your portfolio by holding 30 or so stocks - assuming that they\n", "are not correlated. One hundred years ago, investors thought they were diversified if they owned 20 different railroad stocks. Go figure.\n", "\n", "These days we measure volatility of the entire stock market with the volatility index or VIX. It is also\n", "known as the fear index or fear gauge. The higher the VIX, the riskier the market. A rule of thumb is if the VIX is below 14, the market is not risky.\n", "\n" ] }, { "cell_type": "markdown", "id": "fc239b01", "metadata": {}, "source": [ "## Portfolio Management: Growth and Value\n", "\n", "\n", "We assume that everyone wants to avoid losing money. However, there are many different\n", "ways to make money. Many stocks pay dividends (usually quarterly) which can provide \n", "income to the investor. Usually companies that pay dividends are older and more stable\n", "and established, such as banks and utilities. These stocks are often called value stocks.\n", "\n", "Many stocks do not pay dividends. Instead they reinvest that money in the company to \n", "help it grow and expand. These stocks are often called growth stocks.\n", "\n", "Usually, growth stocks are more volatile than value stocks, which is to say that they are more risky.\n", "\n", "These categories are not always clear cut.\n", "\n", "Another metric that relates to MPT, is beta, a measure of a stock's volatility relative to the market as a whole. A beta of 1 means that the stock has the same volatility \n", "as the entire market (usually the S and P 500). A stable stock will have a beta below 1. A\n", "risky stock will have a beta over 1." ] }, { "cell_type": "markdown", "id": "096203ac", "metadata": {}, "source": [ "## Portfolio Management: Sector\n", "\n", "To diversify the risk in a portfolio, you need to buy stocks with different volatility patterns. One common way to do this is by investing in different sectors or\n", "industries.\n", "\n", "Different sectors respond differently to market conditions. In recent years, technology has outperformed sectors like materials or real estate. However, there is no \n", "clear pattern over time.\n" ] }, { "cell_type": "markdown", "id": "d2639468", "metadata": {}, "source": [ "## Security Analysis\n", "\n", "Many Wall Street firms, like Morgan Stanley, Goldman Sachs, and Merrill Lynch, \n", "employ finance professionals who advise investors which stocks to buy and sell. For \n", "example, see a recent Merrill Lynch report on Apple (AAPL). An analysis will usually assign a recommendation of buy, sell, or hold, as\n", "well as a price target or price objective - their prediction of the price within \n", "the next 12 months. Merrill Lynch assigns Apple a BUY rating and a price objective of 215 from the current price of 172. This is pretty bullish. Note that Merrill Lynch also reports an ESGMeter score of high for Apple. ESG stands for Environmant, Social, and Governance which measures a company's commitment to climate change, diversity and related initiatives. The hope is that a company can do well by doing good.\n", "According to Merrill Lynch, Apple is one of the good guys.\n", "\n", "One focus of a security analyst is to predict future earnings. This figure becomes\n", "part of price/earnings ratio or simply p/e ratio. A low PE suggest that the stock is cheap. A high PE suggests that the stock is expensive. \n", "However, the PE ratio varies considerably across industries.\n", "\n", "Also, there are quantitative models that can value a stock based on future earnings or \n", "discounted cash\n", " flows (DCF). This approach can be used on other assets in addition to stock. A security analyst can project company earnings and then plug those numbers into a DCF model to get a valuation for the company. Using earnings per share, the valuation \n", " is the estimated current price of the company. If that price is higher than the market price, then the stock is a BUY. If the valuation price is lower than the market price, the stock is a SELL.\n", "\n", "In the homework, you are to write some code that could replace a security analyst." ] }, { "cell_type": "markdown", "id": "177c3287", "metadata": {}, "source": [ "## Model Portfolios\n", "\n", "In addition to analyzing companies, Merrill Lynch also provides sample model portfolios, namely:\n", "\n", "- Large Cap Defensive\n", "- Income\n", "- Income and Growth\n", "- Growth\n", "- Mid-Cap\n", "- International\n", "\n", "Each of these portfolios comprise 30 or so individual stocks across a dozen\n", "industrial sectors. The portfolio specifies the weightings of each holding.\n", "Every few weeks or months, Merrill Lynch will publish changes to weightings or\n", "holdings to recalibrate the portfolio. See the Research Portfolio Holdings February 16, 2022.\n", "\n", "Merrill Lynch publishes a primer which explains the investment philosophy and \n", "process used to construct these portfolios. The basic premise is that \n", "each portfolio has its own risk profile, with Large Cap Defensive being safer\n", "than Income, and so forth.\n", "Here is last month's\n", "Research Portfolio Primer\n", "\n", "As a machine learning exercise, you could use the holdings of these portfolios \n", "as training data to learn the properties of an income stock versus a growth stock." ] }, { "cell_type": "markdown", "id": "d1f42ae2", "metadata": {}, "source": [ "## Let's go to Python already\n", "\n", "\n", "We get started by loading yfinance and some other useful modules. These are available on the zoo. If you do not have them on you personal machine, you can probably install them with\n", "\n", "> pip install\n" ] }, { "cell_type": "code", "execution_count": 1, "id": "434fdce3", "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "import yfinance as yf" ] }, { "cell_type": "code", "execution_count": 2, "id": "f06d5333", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'1.22.0'" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import numpy\n", "numpy.version.version" ] }, { "cell_type": "code", "execution_count": 3, "id": "b62866a3", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'0.2.9'" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "yf.version.version" ] }, { "cell_type": "code", "execution_count": 4, "id": "4dc7e2eb", "metadata": { "scrolled": true }, "outputs": [], "source": [ "from yahoofinancials import YahooFinancials" ] }, { "cell_type": "markdown", "id": "a36a7f9c", "metadata": {}, "source": [ "### load Apple stock prices for the past few years as a data frame" ] }, { "cell_type": "code", "execution_count": 5, "id": "0ecc4b7f", "metadata": {}, "outputs": [ { "data": { "text/html": [ "

\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
OpenHighLowCloseAdj CloseVolume
Date
2019-01-02 00:00:00-05:0038.72250039.71250238.55749939.48000038.105148148158800
2019-01-03 00:00:00-05:0035.99499936.43000035.50000035.54750134.309597365248800
2019-01-04 00:00:00-05:0036.13250037.13750135.95000137.06499935.774239234428400
2019-01-07 00:00:00-05:0037.17499937.20750036.47499836.98249835.694614219111200
2019-01-08 00:00:00-05:0037.38999937.95500237.13000137.68750036.375065164101200
\n", "
" ], "text/plain": [ " Open High Low Close \\\n", "Date \n", "2019-01-02 00:00:00-05:00 38.722500 39.712502 38.557499 39.480000 \n", "2019-01-03 00:00:00-05:00 35.994999 36.430000 35.500000 35.547501 \n", "2019-01-04 00:00:00-05:00 36.132500 37.137501 35.950001 37.064999 \n", "2019-01-07 00:00:00-05:00 37.174999 37.207500 36.474998 36.982498 \n", "2019-01-08 00:00:00-05:00 37.389999 37.955002 37.130001 37.687500 \n", "\n", " Adj Close Volume \n", "Date \n", "2019-01-02 00:00:00-05:00 38.105148 148158800 \n", "2019-01-03 00:00:00-05:00 34.309597 365248800 \n", "2019-01-04 00:00:00-05:00 35.774239 234428400 \n", "2019-01-07 00:00:00-05:00 35.694614 219111200 \n", "2019-01-08 00:00:00-05:00 36.375065 164101200 " ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "aapl_df = yf.download('AAPL', \n", " start='2019-01-01', \n", " end='2023-02-03', \n", " progress=False,\n", ")\n", "aapl_df.head()" ] }, { "cell_type": "code", "execution_count": 6, "id": "db607821", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
OpenHighLowCloseAdj CloseVolume
Date
2023-01-27 00:00:00-05:00143.160004147.229996143.080002145.929993145.92999370492800
2023-01-30 00:00:00-05:00144.960007145.550003142.850006143.000000143.00000064015300
2023-01-31 00:00:00-05:00142.699997144.339996142.279999144.289993144.28999365874500
2023-02-01 00:00:00-05:00143.970001146.610001141.320007145.429993145.42999377663600
2023-02-02 00:00:00-05:00148.899994151.179993148.169998150.820007150.820007118339000
\n", "
" ], "text/plain": [ " Open High Low Close \\\n", "Date \n", "2023-01-27 00:00:00-05:00 143.160004 147.229996 143.080002 145.929993 \n", "2023-01-30 00:00:00-05:00 144.960007 145.550003 142.850006 143.000000 \n", "2023-01-31 00:00:00-05:00 142.699997 144.339996 142.279999 144.289993 \n", "2023-02-01 00:00:00-05:00 143.970001 146.610001 141.320007 145.429993 \n", "2023-02-02 00:00:00-05:00 148.899994 151.179993 148.169998 150.820007 \n", "\n", " Adj Close Volume \n", "Date \n", "2023-01-27 00:00:00-05:00 145.929993 70492800 \n", "2023-01-30 00:00:00-05:00 143.000000 64015300 \n", "2023-01-31 00:00:00-05:00 144.289993 65874500 \n", "2023-02-01 00:00:00-05:00 145.429993 77663600 \n", "2023-02-02 00:00:00-05:00 150.820007 118339000 " ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "aapl_df.tail()" ] }, { "cell_type": "markdown", "id": "af828fdd", "metadata": {}, "source": [ "### load current Apple data " ] }, { "cell_type": "code", "execution_count": 7, "id": "e327bf12", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[*********************100%***********************] 1 of 1 completed\n" ] } ], "source": [ "aapl_df = yf.download('AAPL')" ] }, { "cell_type": "markdown", "id": "0757b18b", "metadata": {}, "source": [ "### plot Apple stock price for the past 5 years" ] }, { "cell_type": "code", "execution_count": 8, "id": "6151cc6f", "metadata": {}, "outputs": [], "source": [ "import matplotlib" ] }, { "cell_type": "code", "execution_count": 9, "id": "cb830b5c", "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" }, { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXcAAAEMCAYAAAA/Jfb8AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjYuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8o6BhiAAAACXBIWXMAAAsTAAALEwEAmpwYAABAhklEQVR4nO3dd3gc1dXA4d9RtSQXuci9gXvBNljYphibYjDVkAChBQMJkIQWIIWSAIEQCCGQED5C6JCEGggmmG56McbGxt3GDVuucldve74/ZnY1u1pJK2lX0q7O+zx+tDszO3uvLZ+9e+bOuaKqGGOMSSxJLd0AY4wx0WfB3RhjEpAFd2OMSUAW3I0xJgFZcDfGmARkwd0YYxKQBXdjmomIbBCR42J07vNF5J1YnNvEJwvuJipE5EMR2SMi6SHbnxKRchEpFJHdIvKuiAx3990mIhXuvr0i8rmIHObuu0hEPq3jvUrd1/n//M/dN1VEPoxiv2ptR2uiqv9W1eNbuh2m9bDgbppMRAYCkwEFTgtzyD2q2h7oC+wAnvLse8HdlwN8CrwiIhLB216pqu09f05tSh/imYiktHQbTOtjwd1Ew4XAXJygPbO2g1S1GHgWGB1mXwXwNNAT6BqNRonjfhHZISL7RGSxiNR4b/fYi0RknYgUiMh6N80xAngYOMz/7cI9tpOIPCMi+SLynYj8RkSSPOe6VERWuOdaLiKHhHm/4e77nFNLe1RErnbbtFNE/uR/D7etn7l92w3cFvoNQ0RGud+SdovIdhG5yd2eJCI3iMhaEdklIi+KSJfG/y2b1sqCu4mGC4F/u39OEJEe4Q4SkfbA+cDCMPvSgYuAPFXd2diGqOqHqjrVfXo8cBQwFMgGfgDsCvPeWcADwImq2gE4HFikqiuAnwBfuN8Ost2X/A3oBBwITMHp/8Xuuc4CbnO3dcT5JhP0nm6wfwe4SlWfr6M7ZwC5wCHADOASz76JwDqgO3BnyPk7AO8BbwG9gcHAHHf31cDpbrt7A3uA/6ujDSZOWXA3TSIiRwIDgBdVdQGwFjgv5LBfuKPeNUB7nCDud7a7bxMwHifwROIBN0/v/3NHmGMqgA7AcEBUdYWqbq3lfD5gtIhkqOpWVV0W7iARScb5kLhRVQtUdQPwZ+CH7iE/xklDfaWONar6necUk4HXgJmq+no9ffyjqu5W1Y3AX4BzPfu2qOrfVLVSVUtCXncKsE1V/6yqpW47v3T3XQ7crKp5qlqG80F0pqV2Eo8Fd9NUM4F3PKPtZ6mZmrlXVbNVtaeqnqaqaz37XnT3dVfVY9wPiEhc7b7O/+e3oQeo6vvAgzgj0+0i8oiIdAxzXBFOwP4JsFVEZvsv+obRDUgDvAH7O6CP+7gfzgdcbX4CfK6qH9TTP3A+8Lzv0buWfaHqasMA4L/+D0VgBVAFhP22ZeKXBXfTaCKSAZwNTBGRbSKyDbgWGCsiY1u2dQ5VfUBVxwOjcNIzv6zluLdVdRrQC1gJPOrfFXLoTpxvBAM82/oDm93Hm4BBdTTpJ0B/Ebk/gub3C3mPLd4m1/G6utqwCSf95P1gbKeqm2s53sQpC+6mKU7HGfWNBMa5f0YAn+DknJtKRKSd908DX3yoiEwUkVSgCCh12xt6XA8ROc3NvZcBhZ7jtgN9RSQNQFWrgBeBO0Wkg4gMAK4D/uUe/xhOGmq8e0F3sHuMXwEwHThKRO6upwu/FJHOItIPuAZ4IcKuvw70FJGfi0i6286J7r6H3bYPcPueIyIzIjyviSMW3E1TzASeVNWNqrrN/wcnFXJ+FPK4hwMl3j+ecz4owfPcw6VzOuKMwPfgpDV2AfeGOS4JuB5nZLwb52Ljz9x97wPLgG0i4k89XYXzYbEOZ/rms8ATAKr6Es4FzmdxAvmrQNBsFFXdC0wDTqzlWoHfLGABsAiYDTxex7He8xe45z8V2AZ8Cxzt7v4rTs7/HREpwJnlNDHceUx8E1usw5jWR0QUGKKqa1q6LSY+2cjdGGMSkAV3Y4xJQJaWMcaYBGQjd2OMSUAW3I0xJgG1iluOu3XrpgMHDmzpZhhjTFxZsGDBTlXNCbevVQT3gQMHMn/+/JZuhjHGxBUR+a62fZaWMcaYBGTB3RhjEpAFd2OMSUAW3I0xJgHVG9xF5Al3mbKlnm3jRGSuiCwSkfkiMsGz70YRWSMiq0TkhFg13BhjTO0iGbk/hVOi1Ose4HeqOg64xX2OiIwEzsGpnT0deMhducYYYwDw+ZRV2wpauhkJr97grqof45RBDdqMU04VnLUk/YsIzACeV9UyVV2Ps6zaBIwxxvXgB2s44S8fs2Lr/pZuSkJr7Dz3nwNvi8i9OB8Qh7vb++DUh/bLo3r5MWNMG1daUcVLC5wVAncWlrVwaxJbYy+o/hS4VlX74Syr5l9EQMIcG7YymYhc5ubr5+fn5zeyGcaY1k5VyS9wAvmVzy5k0+4Sd3tLtirxNTa4zwRecR+/RHXqJY/gdR/7ErzuY4CqPqKquaqam5MT9u5ZY0wC+PeXGzn0zvcYeMNs3luxPbC9sKyyQefZU1TOMfd+yFtLt2HVbOvX2OC+BWcpMoBjcJbxAmf5rnPcdRsPAIYA85rWRGNMPFvw3Z7A4+4d0gOPSytqLGdbp0/X7GTdziJ+8q8FvDQ/L2rtS1T15txF5DlgKtBNRPKAW4FLgb+661mWApcBqOoyEXkRWA5UAle4CwobY9qoLllpgccFpdWj9dIKX4PO0zEjNfB4uV2MrVe9wV1Vz61l1/hajr8TZ4FgY4wJCu4lFVWM7tORpZv31xi5V1T5uP/d1Vw+ZRCdPIE8sL+y+sOgQ7tWUfOwVbM7VI0xMZUkwfMsfjZ1MOCkWdbmFwKwalsBQ25+k4c+XMu9b68Kex5vjr59evSDe1llFcXlDbsO0JpZcDfGxNT9764Oej6yl3OLzPsrdzDjwc8AOOmBTwL7K33hL5b+75vquRkVVQ1L6UTiwsfnMfKWt6N+3pZiwd0YE1PlIYG4vSel4h+NV3kCelpyzRnVVT7l0zU7A89LGngxNhJfrnfu1fTV8uESbyy4G2NiauIBXYKeZ6XVnVJ5b8WOGvn4ovJKyip9XHvcUACKy6Mb3L13yxYlSGrGgrsxJqZ8IXPS26UGh52ikPnum/eWcPN/lwZtKy5zgnn3js5Uyhe+2hTVNr6zrPHz71srC+7GmJgqqwxOy4hIUIBftb2ApJBMTGjdGf9oOjPNqUMY7ZH7vpKKwOO9xRV1HBk/LLgbY2KqvNJHn+yMoG3vXTeFFy6bBMCX63bjU7jm2CGB/VUheW//6L59egrTR/UE4HNPDr6pvDn8a55fSGUMLtg2NwvuxpiYKq/0MbZfp6BtfTtnkjuwC2kpSXyxbhcAQ3t0COyv9AUH1yI3LZOZlsLAblkAnPfYl1Fr43PzNgYer95eyNx1oYVw44/dCWCMiamySh/tUpM5eUwvSj3plOQkoW/nDDbsLAIgLaV6rBk6HdI//zwrPZlu7dOItZQwM3bijQV3Y0xMlVX6SE9J4r6zx9XY16FdKt/tcoJ7chIcNTSHj1fn0619etBxReXVI/fuHdvFpJ3tUpMCJRHSU+I/qRH/PTDGtGrllVWkp4RfkK19enLgYmaSCM9cMoGjh+VQHnIRtriseuSe4wn8l/9zflTa2LFdCucc2j/wPBGmultwN8bEVHmVLyjl4pWVlhKo657sTpnplZ3Bxt3FPPbJOn7+/EKgenpiZloKOZ7Kkm8v287e4nI27S5udBng+95Zxf7SStJTk3j0wlwAu6BqjDF1Ka2ooqzSR1py+FDjvVs12a1BM6JXR/aVVPD72St4ddEWfD4NTH3MSksOCu7gzFGffM8HPN+Iue+lFVU88P4aAFKTkgIFy2orgRBPLLgbY2KiyqcM/+1bqNa8ccnPWwDMP3L3157xK62sYsOuIjpnppKS7ATgoT3aB/Yv27IPgIUb99BQ3ho1Q3q0D1xIDS2ZEI8suBtjYqKssnpmTG0XQcMF9+E9OwQdU1RWxUer8jlqaPWKbW9ecxSXH3UgAB+udpbplLCrfNatosoZof/m5BHMGNcn8A2jvNLHjoJS7py9PG5TNBbcjTEx4b0o2jfkJiY/7wIcSW5wzwop5/vMFxvYVVQeNKJPThKmDHOC/Xe7igGQRsxeXO9Ow8xw73zt7bZz465ifv2fxTz6yXrmrY/POe/1BncReUJEdojI0pDtV4nIKhFZJiL3eLbfKCJr3H0nxKLRxpjWz1t2oHctwd27KEdyLdH5b25O3F96wC90uqI0Irp//++fA5Dqjti7ZKXRo2M6K7buZ3dROQDt0sLP9GntIpnn/hTwIPCMf4OIHA3MAMaoapmIdHe3jwTOAUYBvYH3RGSoLbVnTNtSUl7FxD/MCTzv2Sl8WsabgkkOLTATIiOkmmS71OCg25iRu98eN5A7berI6h0FgYu47WqZxtna1TtyV9WPgdDvJT8F7lbVMveYHe72GcDzqlqmquuBNcCEKLbXGBMHXllYvYD1tJE9agRiv4P7dw48Dl2xKVRGyDlG9Q4uaVDPZ0Odtu8vCzzu1j6dPUUVFLrrvYZWtYwXjc25DwUmi8iXIvKRiBzqbu8DeOcj5bnbahCRy0RkvojMz8/Pb2QzjDGt0eOfrg88/t7BYUNADfWN3Dtn1VxX1fua+j4c6nJQ3+p8fseMFPaVVASKlcXrtMjGBvcUoDMwCfgl8KI4Ca9wf7th/2ZU9RFVzVXV3JycnHCHGGPilH/UC9SYlx7KX2rAWwny9auO5JNfHR10XK9ONfP23vnz9X04hJOeksSMcb05fVz1B1CnjFQKyyoDJQ9CK1TGi8bWlskDXlHnlrB5IuIDurnb+3mO6wtsCfN6Y0wC85bQ7dM5/MVUv1lXHsHDH65liGfu+ug+nWocF5qWAafYmP+9vBdnI1VR5aN/l8ygi7H5BWVBx8RrcG/syP1V4BgAERkKpAE7gdeAc0QkXUQOAIYA86LQTmNMHPEuk9e9Q92FvvpkZ3DH6aMDM1ZqE66Yl3fbg+6smoa00ac1zxuaY//Nq0v4ZtPeBp27NYhkKuRzwBfAMBHJE5EfAU8AB7rTI58HZqpjGfAisBx4C7jCZsoYE/8+WLmDXYVl9R+IMxr23xwEjUuX+F159ODA43D1abwpn4bmxtflO3Pc/fXh/a6bNizo+erthZwfpnb81n0lgXnyrVEks2XOVdVeqpqqqn1V9XFVLVfVC1R1tKoeoqrve46/U1UHqeowVX0zts03xsTazsIyLn7qK37+wqKIjveP2o8b0YOHLxjfpPf23pUabuT+8AXjuXTyASQJHBgSpOtSUeXjD2+sAGreNNUlq2a9+HAfT0f+8QOOvvfDiN8zlKqyt7i8/gMbye5QNcbUaclmp3ZL3p6SiI7358CnDMth+uieTXpvb0BPCZO26dclk5tPHsmJB/Vi3c6iiBe3fm/5dj51l+lLDzmvfxERr6Qw3z78uXhvCqohXvtmC+NufzdQGyfaLLgbY+q0NM8JPuFGtOGUljt3poa7ANpQ3qqRdfnMDdT3vbM6ouO9F1DDpXteveKIoOd19WVtfmFE7xlqqfuhOWfFjnqObBwL7saYWqlqYI3TkvLIRqj+kXttlSAbokeEqy6luCNr/3J89fHOgAkX3Lu1T2f9XScFnmv4Gd2AU4emMfp1yQRg5bb9jXp9fSy4G2Nq9cJXm/h8rRPc6yqDu3VfCR+sdEag/tRI+/Smr+IZ6Tn8hb9KIkyRFHnSN7XdgOod3W/fXxaUPvGWF/b399vtBQ1aMKTSvegc6QdYQ1lwN8bU6t9fbgw8Dl36zuv7D33OxU99xcpt+wPBrkOEKZVouH3GaADG9csGnFoxf5vzLb5aZtAUeUb4kS6GffIDnwYer95eUH2uskq+WLuLafd/zAE3vsG2faURnc9fWO3X04dHdHxD2QLZxpgaZi3azJ6ickb06sCSzfsY1y+7zqC1xd03/S+fBLaFzkKJpdFunRn/RdebX13CG0u2MX5gZw4f1K3G8R+sckqePHFRbo0aNV45HdJr3NQE4P0Ss6+kkgser54quXDjHk48qFe9bfbXu69tlaqmsuBujKnhmucXAU5dmD7ZGYzu05GNuxuWW+4ZpXTDr6cPZ089Uwb9ATJvTzHrdxbxxpJtQPh6M1+u28XH7gIfRw/rXud5379+Cqu3F/D9v38RVMGyypN+efLz9UE5/EhXcSqr9JGaLGFn4kSDpWWMaeNCVxryXjh9ZeFm0lOTKK/0sbuonNcX16wm8sJXG2tsA8jOjGx2TX1+OnUQN500os5jUlOcAPmPj9YFzT2ftWhzjWP3e+re1FcDvkO7VMYP6MLJB/UKuklqp2c0v7e4Iug1v3l1aUTTG8srfaTHsJywBXdj2rD1O4sYfPOb3PXGCk786yes2VHAXHd2jN+uwvLAVMArn10YtM/nU3798pIa571+2tDYNTqM2koXPDdvE/tKgoNvY2rFpCZL0Hqra+qY/lhQWslP/rWg3nOWVVaFvTErWiy4G9OG+VMt//h4HSu27mfJ5n1sDcmtl1f6uO746lvyvcFxf2l14DxvYn9+NnUQUH+xsGhLqSO1kR80yi7nL+9FNhfeKzXZ+fbinw2zZnvN4L7sd9ULz23aXVLvzU1lFT4L7saY2AiNide+8A03/Td4JP7z44bQKSOVcyc4BV+vf3ERO906M/tLnBTHvWeN5Q9nHMQ1xw3h4QvGc+rY3rFvvEdd6RXviPuO11ewcpsz0+X0cZG3MTUlia37SpnwhzmoatCHGjgfLlnpKUGrQX393Z6g9/aav2E3Ly3IIz0KN3rVxoK7MW1YfTcm/fWccVw+xRmNj+mbDcCri7bw1GcbANhR4Izys91yu+kpyUwf3bPeCo/NyTuFs7Syur/3njU24nP4L9jmF5Sxo6Csxqjcf1G0i+c6w3mPfcnt/1se9nz+2TWR3hjWGK3nX8AY0+y+3VF77vj+H4zl1DHVo1tv+YGvNjgrby74zrmZZ0y/2qcTtjTv6LlzZnXN93C1amqT6pkLv7+kgtKK4BG5f3Hv0BIN763YHvZ8/msYkd5R2xgW3I1po3YUlPKnt1fV2H7/D8byxtWTOePgvkHT9Pq7t8sD7HYXlF64cS8Du2bWW7O9uYnA85dNAkJG7m5Qfv2qIxt0Pu83kaVb9lFSUUW/Lhl0cOfy+8sah9641b2W6aD+mUSRTptsDJvnbkwbdf2L3wQ9v2PGKI4e3p2+nTPDHt/PE9xLKqpYta2ALftKwi5/19JUq2vGeANoSUUVg3Kywq70VBdvcL/2Befv7bSxvXl/ZT4rtu4PXLsITUf1qGWJQX8d+Gkjm1Y1sy6RLNbxhIjscBfmCN33CxFREenm2XajiKwRkVUickLoa4wxtauo8jHfTXnEWnFIvndM3+xaAzsE13nJ21PCCX/5mMV5+wJ1XVobf57cP8uluLyS/SUVdGjX8OX4whUXu37aMNLcdI1/5B56XLjrvN6pmX86c0yD2xKpSNIyTwHTQzeKSD9gGrDRs20kcA4wyn3NQyLSOv/ljWmFbpm1lDMf/qJZVviZPMQZk53mzmyJZMWkB849uMa2LXsjq/Meax/9cmrQc3+grahSbnh5CSNveZtPvt1Jj451L9gdTriplklJEhip+//uQj8cvStS+fn/vs6b2J92LTlbRlU/BsINJe4HfgVBtTBnAM+rapmqrgfWABOi0VBj2oIv1zv/1Tbsin1w37i7mK5Zadxz5hgevuCQiFIVp43tzWVHHRi0rb7SAM1lQNfglZgCI/eqKj5yyw0ADOnegYaqrWiaP7j7yxzccspI7j1rLD+cNAAg7FTIze6iJ2fn9mtwOxqiURdUReQ0YLOqfhOyqw+wyfM8z90W7hyXich8EZmfn58f7hBj2hx/KdqiCFcUaixV5dNvd3LYoK60S01m+uj6C135hZYCuHTygbUc2XIO6JZFqn/kXqlBtWDG9G34zJ49ISUG/PzvscO9USojLZkzx/fljtNHc+jAzoGyvl5b9jnBvXd2bC9CN/iCqohkAjcDx4fbHWZb2Ht9VfUR4BGA3Nzcht8PbEwC8s9Cqau8bjSs31nEjoIyjhxcs2JiQyy6ZVrUashE01MXHxoYuZdV+YJK//rLAjfE3pLw3072l4QP+uCM6sOO3PeWkJacRLeshqeHGqIxI/dBwAHANyKyAegLfC0iPXFG6t7vGn2BmpWGjDFh+XO0sQ7uOwudYFXXBdS6zHDv7uyU0fCLk80hOzMtENwrKn34PCP32qYn1qVvtjMj6LgRThVJ//WKH08+oNbXpCQn1ZJzL6VXdruYVYMMvH9DX6CqS4BAnUw3wOeq6k4ReQ14VkTuA3oDQ4B5UWqrMQnNe9djLOc/Q3XaJyu9cRf07j1rLLfPGF1vVcWW0rFdSmBOe3mVr1HFwryuPGYIkwZ15bADu7I2v4gDujn5/VPG9K5RTM0vNUmo9NX8d9xbXN4s33YimQr5HPAFMExE8kTkR7Udq6rLgBeB5cBbwBWqGrv7a41JIN7gvuC7PTGdMeOfjtfYpfBSk5Na5aj96UsmcM+ZYxAR0lOSEIHiskqaGNtJS0ni8EHdEBEGd28f0cyitJQkyipqllP+5NudMf9mBpHNljlXVXupaqqq9lXVx0P2D1TVnZ7nd6rqIFUdpqpvxqLRxiSCyioff/9wbWAU7b2lfdaiLRx974cxm/O+ZPM+0lOSgm5MSgRThuYEZqEkJQmdMlJ54P01FJZV0ikjlbd/flSztaVTRirf7ijk8LvmBLY99OEaAFZsjc2i2F5WfsCYFjJ7yVb++NZKHpjzLRB+ceeXv6652EQ0bNpdzICumTGdZ90aeBfSmDosh2E9Gz4Nsj7+FE2oTm4dmy2eEsrvLHNqzTzyw/FRb0coKz9gTAvZ486MKQiM3GsG9+fmbeTWU0fWGYRVlQ9X5bN08z4Gd2/P9NE9682Fb9pTQr9GXkyNV785eWRMzvvOtUcFXbD1G9AlOOhXVPlYtb2Aiw4fyPGjYld2wM+CuzENsGVvCVlpKYFRWVMUubf/p7r523Ajd4CvN+4Ju8iz37mPzmXuuur0zbM/nsjhdUxxvPGVJazYup+jh+U0ptlxq1v72FzErK288ajeHYOe+1MxzfVtydIyxjTA4Xe/z9F//jAq5/Lfhl5QGn7kPnVYDkkCc9fuqvFaP1UNCuwAH6zaUef7PjfPqRgy8cCuDW5zPGvumT3eFFBRWSWF7je0KUOb50PVgrsxDeS/0aip/ME9z70dPTS4P3ZhLgfmtGd1mCXd/Oatr3nB9dFP1rPJXT4vVIFnBaFJB3ZpcJvjzaEDO7fYe7dLTeb+HzgLgnzybT7FZc6/b2OnnzaUBXdjWkBhWSUfrHLKbszbsJuBN8xm467ggJySnETXrDR211G7pbb58B+uDl/S46Db3gHgvrPHkp6S2BdTAR46P/YXLuty6pjedMpI5Y9vrWKz+2GendE8d/RacDemBXz6bc3ge5u7JNvNJ43g1SuOAJyVfer6puAt2zvriiM4bkQPAHZ6FoX2886tzh2Q+KN2gI4ZzmXF4TGYJROJlOQk9pVUsH5nEbe+toxBOVn069I89e8tuBvTAjq6NcUPC5P3njGud6D+iQis2VFIZS0jdP8c+f9deSRj+2Vz22nOjJC/zvm2xl2Zby3bFnjcXAGmpaWnJPPERbn8+8cTW7opAHx/fN9my/1bcDcmQr6m3uboUeaOomcePqDGvnTPbAp/6mTltoKw5/Hfadq3c0bQ8QDb95cGHVvirtf5+9Nbb9mAWDhmeA+6to9tka5INWcqzIK7MREqi9It4xVVPi5+6isABoa5ASbDE9wvPMwJ/pv3loS9Zd0f3Du6pQC8KwGFXlTdvLeUJIl9HXFTu/QwKzrFigV3YyK0s7BmHrsxPvHk2zuHKSCVmlw9qvavT3r5Pxcw/Lc1q3nsK6mgQ3pKoNaJ94PhB4/MZeANs/nvwjxUlQfmfItPwy8ZZ5rH3mZc2MT+lY2J0OYoLSe3q7D6P3iPkPKzEw7oEpQy6dY+LbD4cris0L7iisCoHZzA/cbVk4OOufaFb4JWIjLN6//OOyTweEUt6bVYsOBuTITOeWRuVM7jr/H9vYOdRcqmjezB0B7t+dePJvKvHwVf+EtJTgr6AFBVZi3aHEjR5BeW0SUrePQ/MuTOSICLnnTSQI1ZP9Q0zcljenHKGGelqxnuerXNwcoPGBOBt5ZWzzTxpk0aw786z29OcWa2PHphbp3HTx2Ww3PznNUr31uxg2ueX8SaYwq5btpQlmzexwkjI69T8vkNxzay1aYpHjzvEO7/ga/WUgWxYCN3YyLgTWvUVsf8uXkb603dfLhqB7e+tgyAlAg/JLwjd/8MmE27i9mwq5i9xRUc3D+71teeGjJSjKQOuYmN5gzsENliHU+IyA4RWerZ9icRWSkii0XkvyKS7dl3o4isEZFVInJCjNptTLPa5i5qnNMhvdbc942vLGHmE7UvPFZR5QukR4DAMnD18QaFDe4CHq8u2sJri5wVLMfVEdz/du7BLPztNAAumNQ/ovcziSGS366ngOkh294FRqvqGGA1cCOAiIwEzgFGua95SEQS/x5nk/AqqpTxAzpz0uieYZdsK3LnkO+qY0bNHa8vD3oe6UjOu8jy4rx9gcf3v7eatJQkhnSveffl4O7t8V+X7ZyVxvzfHMdtp46K6P1MYqg3566qH4vIwJBt73iezgXOdB/PAJ5X1TJgvYisASbgLNNnTNwqr/KRmiwkJyWFvZnJX/EvOan2gP3qwuCFNyJNkXhXaJoXsjJTapKEPc9b10wO+obRrZXcxGOaTzSSQJcA/gm4fYBNnn157rYaROQyEZkvIvPz822almndKqqci2GKBhbX8PKX7a1rLvyIXs4slrTkJM44OOx/i7A611E7vqg8fA34lOQkm8/exjXpX19EbgYqgX/7N4U5LOw926r6iKrmqmpuTk7bWjTAxJ/KKiU1OYlCN4h/tyt48WpvKV31rMqzaXcx0//yMWt2FFBaUcXUYTmsvvNE7v/BuIjf+5wJ/ZutBrhJHI0O7iIyEzgFOF+rf5vzAO+9zX2BLY1vnjGtQ4WbljnxIGfa4a6QSo2FntG8v1LjvuIKJt/zASu3FfDmkm2UVFTRrhG1RTplpPLERYcGnv906iAmHNCFcf2yuefMMY3pjmkDGjXPXUSmA78Gpqiqt4DFa8CzInIf0BsYAtQ+fcCYOFHupmWy3XIB/poufv4RPTipmfSUJMbeXn1p6s/vrqZb+3TG9m3crSXevPpPpw4KVJU0pjaRTIV8DueC6DARyRORHwEPAh2Ad0VkkYg8DKCqy4AXgeXAW8AVqho+KWhMHCmv9JGWnES2O8d9d2HwyL3AE9y/WLsr7HqoOwvLGNKjfZPbEukUStO2RTJb5twwmx+v4/g7gTub0ihjWpuiskrat0sJ3MB0/Uvf8P3xfQGYv2E3CzftCRx7wytLOKhvp7DnGdKj6YtGNGdlQRO/7LfEmHqoKoVllWSlpwTdnepfQOPMh7/gjSXbgl5z8gOfBh5767mMClP3JVIz3fK/bakWu2k8C+7G1OP9lTuoqFK6ZKaR4kmJnPCXj4NuMApHBH51wvDA8+4d2tVxdN1uO20U6+86qdGvN22LBXdj6lBaUcWPnp4PQO7AzkH71uYX8bv/LQva9sEvpgY9//v54xnrLpnX1IJjImKjdhMxC+7G1KK4vJIfu4E9p0M6Y/pm1zhm7rrgO0YP6JZF+/TqS1npqUn0znZG6/7Fq41pDlby15hazFq0hU/X7ATghunDw97mn5lWPW998pBuAHRtnxaY994uJZnMtBTeu+4o+nbObIZWG+Ow4G5MLbzBPMszGp8yNCdQAnhx3j76ZGfww8MGcMEk54Jnsid1kp7qfDkeHKa4lzGxZGkZY2rhzZF7px/+/YJDyPKM2DtnpfKTKYMC6Zh0zzqmNm3RtBT7zTOmFt6SvN7rmJlpKTziWT0pMzX4C/CfPCUB0htRbsCYaLDgbkwtdnvqxySFzFLxpmlCV1Tq16U6t94xwzKfpmVYcDemFv6FMXp1aldjtSNvWiZ0dqI3FdMlM3jxamOaiw0rjKnFmh2FHD6oK89eOqnGvkzPyD10VN8uNZnbZ4yivNIXdNOTMc3JgrsxYagqa3YU8v1Dwi+q4R25e9MwfhceNjBWTTMmIhbcjQlj2/5SCssqGVxLoa8O7VLp2bEdWenJ3HTSiGZunTH1s+BuTBg79jvL5fXqGL4WTHKSMPemY5uzScY0iCUEjQmj0l1dOnQmjDHxIpLFOp4QkR0istSzrYuIvCsi37o/O3v23Sgia0RklYicEKuGGxNLPnflyJQkG/+Y+BTJb+5TwPSQbTcAc1R1CDDHfY6IjATOAUa5r3lIROwuDhN3Kquc4G6x3cSren91VfVjYHfI5hnA0+7jp4HTPdufV9UyVV0PrAEmRKepxjQfG7mbeNfY39weqroVwP3Z3d3eB9jkOS7P3WZMXPHn3G2auolX0f7VDXf1ScMeKHKZiMwXkfn5+flRboYxTeMLBHeL7iY+NfY3d7uI9AJwf+5wt+cB/TzH9QW2hDuBqj6iqrmqmpuTk9PIZhgTG4GRu618ZOJUY4P7a8BM9/FMYJZn+zkiki4iBwBDgHlNa6IxzWtvcXlgbdRwC3QYEw/qvYlJRJ4DpgLdRCQPuBW4G3hRRH4EbATOAlDVZSLyIrAcqASuUNWqGLXdmKj7Yu0uzn10LgO6OiUFbJ67iVf1BndVPbeWXWFvz1PVO4E7m9IoY1rKuY/OBeC7XcVAzaJgxsQLu1pkjCu/oKzGthRLy5g4ZcHdGNfx939UY1tGmt2DZ+KTBXdjgP2lFewprgBg8pBuge1dsmyxDROfLLgbA+wqdJbUu+f7Y+jhqQSZancxmThlv7nGAE9+th5w5rdvdC+mGhPPLLibNq3Kp5RWVAUWw/7eIX2YOty5qe6piw9tyaYZ0yS2WIdp0657cRGzFjk3UR8/sgftUpP52dTB/CC3H13bp7dw64xpPBu5mzbNH9gBjhhcfSHVAruJdxbcjXHNPHxgSzfBmKix4G7atM6ZqS3dBGNiwnLupk06+x9fMG999Ro0Z+f2bcHWGBN9FtxNm+QN7D8/bghXHTOkBVtjTPRZWsa0aekpSVx1zBAr7WsSjgV306addFAvC+wmIVlwN23a1GG2CphJTBbcTZujWr2s77SRPVqwJcbETpOCu4hcKyLLRGSpiDwnIu1EpIuIvCsi37o/O0erscZEw+drdwFO9cfMNJtTYBJTo4O7iPQBrgZyVXU0kAycA9wAzFHVIcAc97kxTeJza8BEw3srtpOaLPzjh+Ojcj5jWqOmpmVSgAwRSQEygS3ADOBpd//TwOlNfA/Thvl8SlFZJZf9cwHDf/sWhWWVTT7nk59toKJKbdRuElqjg7uqbgbuxVkgeyuwT1XfAXqo6lb3mK1A93CvF5HLRGS+iMzPz89vbDNMgjvvsbmMuvVt3luxHYDRt77Nlr0ljT7fd7uKotU0Y1q1Rg9d3Fz6DOAAYC/wkohcEOnrVfUR4BGA3Nxcredw08Ys3byP+Rt2M3fd7hr7vtm0l97ZGQ063+a9JRxx9/uB5/ecOabJbTSmNWvK99LjgPWqmg8gIq8AhwPbRaSXqm4VkV7Ajii007Qh7y7fzqXPzK+x/eD+2SzcuJei8obl3v+zII9fvPRN4Pnp43pzdm6/JrfTmNasKTn3jcAkEckUEQGOBVYArwEz3WNmArOa1kTT1oQL7DMPG8DTl0wAYI+7sEYkKqt8QYH92Usn8pdzDm56I41p5Ro9clfVL0XkP8DXQCWwECfN0h54UUR+hPMBcFY0GmrahipfdYbuwJws1uU7OfKs9BQ6pKfQLjWJ7ftLIz7fsi37g54fPqhbLUcak1iaNF1AVW8Fbg3ZXIYzijemwfwXS8+f2J+LjxjIcfd9DMCBOe0REXp3ymDrvsiD+8bd1euh3vN9y7ObtsPmgplW5Tt3cepTx/ZmcPcObLj7ZCqqfKS49V96Zbdj894SLn1mPhcdPjBo9aRw8vY4HxZLf3cC7dPt1920HVZ+wLQai/P2csHjXwIwsGtWYHtqchLOZR3o2TGDRZv28u7y7cx8Yl6958zbU0znzFQL7KbNseBuWo0/vrUy8Lh7h/BrmPboWL290lf3DNrKKh8rtxXQt3NmdBpoTByx4G5ajeyMNADm3XQsSbWU4a3SyG+J+NV/FrPguz30aeCceGMSgQV30yq8v3I7s5ds5YyD+9C9Y7taj3tzybZ6z7W/tAKAVxZuBmBc/+yotNGYeGLB3bQKLy9wAvHNJ4+o87gLDxsQ9Hz9zuByAqu2FTDmtncYdctbjOjVEYCZhw2MXkONiRMW3E2LKyit4N3l2zl5TC+6tQ+fa/ebPrpn0PPzHp0b9HybOwe+qLyKFVudOe4ZaclRbK0x8cGmEJgWVVRWyUG3vQPABRMH1HM0pKUEj0dC57xrA3LyxiQyG7mbFuXPiw/v2YFJB3ap9/j0lLpH4aE13+/+3kGNb5wxccyCu2kxVT7lzSVbGdqjPW9eMzkwl70u7VJr/sqWV/oCj3eF1J05Z0L/pjfUmDhkwd00K1XF51PW7yxi8h/f5/O1uxjbNzuiwA7OyP3ZH0/kgknVQbvEUyXy5QV5dGjnZBv9P41pi+y33zSb1dsLOOeRuewOGV2HXiStz+GDu7FlXyn/mrsRgKLySjplprJpdzFfb9zLjScO578LN3PdtKFRa7sx8cZG7qZZ+HzK8fd/XCOwD+nenqOHhV2sq05nHNwn8Li43Fl675kvNgAwrl82b/38KI4f1bAPDWMSiY3cTbP4x8frwm7/xQnDar0btS7Jntds3F3M7MXbePST9YBTHtiYts7+F5iYm7d+N398ayWHDuzMi5cfhoiwaXcxf3v/W6YMzWny+X/+/CL2l1YvnD2qd8cmn9OYeNektIyIZIvIf0RkpYisEJHDRKSLiLwrIt+6PztHq7EmPv3fB2sAuObYoYELp/26ZHLPmWNpl9r0G4y8gf3QgZ0jvjhrTCJras79r8BbqjocGIuzzN4NwBxVHQLMcZ+bNqqwrJKPVudz3IgeHDkk9qsgdWyXGvP3MCYeNDq4i0hH4CjgcQBVLVfVvcAM4Gn3sKeB05vWRBPPvvfQZ0D1Rc9oOnVs7xrbfHaHqjFA00buBwL5wJMislBEHhORLKCHqm4FcH+GnQohIpeJyHwRmZ+fn9+EZpjWqqisktXbCwFIT4n+xKzbTxtVY9sHq+x3yRhoWnBPAQ4B/q6qBwNFNCAFo6qPqGququbm5DT9opppffyLbyQJXHXskKifPzuzZgrmt6eMjPr7GBOPmhLc84A8Vf3Sff4fnGC/XUR6Abg/dzStiSbelFZU8bv/LeOZL74DYPnt0zmkf/Svq4sIN544HICD+2ez/q6T+NGRB0T9fYyJR40O7qq6DdgkIsPcTccCy4HXgJnutpnArCa10MSdbzbt5cnPNgDw8AXjozIjpjb+cr4+xWbJGOPR1HnuVwH/FpE0YB1wMc4Hxosi8iNgI3BWE98jblVU+Vict5fxA+qvdphI8gvLALjllJGcMKpHTN/L/8FRFlIN0pi2rknBXVUXAblhdh3blPPGo9KKKtbsKGRU746BEeSds1fw1OcbmHP9FAbltG/hFjaPT77N58pnFwLwg0P7xXw0fVCfTgCs3FYQ0/cxJt7YHapRcs4jc1m0aS+njOnF5CHdmDGuD099vgGAY//8ESvvmB7T9ERL2VlYxsVPfkWXrDR+cfwwfvj4vMC+5igDMLxnB3p0TOfs3H4xfy9j4okF9yjYU1TOok17AXh98VZeX7yVFVuDR5LXvrCI4T07MunALpRX+Zg8JDFmCK3cWsCSzfsA+Gh19TTE96+f0izvLyJ8edNxzfJexsQTC+5NVFxeGQjsXv5R+4xxvZm1aAtvLt3Gm0u3BfZvuPvkZmphbO0qKqux7fBBXTmwjaShjGmtLLg3wZodhRx330cAZKYl8/vTR3Pdi98E9n//kL6cnduXWYu21Hitz6eNqobYEqp8ynPzNnLm+L60S01mzortbNhVzBkH9+GO11eQlpzEO9cexfzv9jB9dE/aW1VGY1qc/S9sgsV5ewOP7zt7LNNH9+LYET3YsreEbftKOXp4d7aFLODsV1pZRWZa8/315xeUceid7/HwBYcwfXSviF9XVFbJL176hjeXbmNnYRmdM9O49bVlAMxevIWdhWX88oRhDOyWxcBuWbFqvjGmgaQ1rBafm5ur8+fPb+lmRKzKp/x34WbunL2c/aWVzL/5ODpnpdV6/Lr8QnpnZ1DlU0bd+jYAw3p04H9XHUlaDG7LD/XBqh385J8LKHPXGo00JbSzsIwz//45G3YVA843kZe/zqtx3KJbppGdWXv/jTGxISILVDXcjEUbuTfG72cvD9ykc82xQ+oM7EBQ/vnPZ43l+pe+YdX2AlZs3c/YftkxbCks3byPi5/8KmhbcXllrd8aVJXzH/uSz9fuqrEvXGCfMjTHArsxrZAts9cIS/Kc2SFXHTOYaxu4TmfuwOrb8NfsKIxqu7wqqnyc+8hcTvnbpzX2vbeiZkUIn0957JN1jLjlrRqB/ZlLJjCmb6egbaN6d2TWFUfw9CUTottwY0xU2Mi9EfaVVHDCqB5cf/yw+g8OMaBrFgO7ZrJhVzFr8mMX3P899zu+WOcE6bNz+zJ1WHdmL97K7CVbWbxpL6d5yuX6fMrzX23i97NXBLZNPKALp43rzXkT+iMigQU3xvXL5oXLJ5Geknhz9o1JJDZyD1HfNYiNu4rZWVhGdkbjUxEf/vJoBndvz9tLt1EaxdvmN+4qZuANs/n0253c9+5q0lKSeODcg7n5pJGcdFAv/u/8QxjTtxOrQ74x/P2jtdz03yWB5784figvXH4Y508cELjDNDXZ+VW5dtpQC+zGxAEL7h6L8/Yy+ta3Oe3BTykorQhsV1WWbdnHLbOWctSfPmBPcQWdwpSbbYi+nTNYt7OIX7+8uKnNDpjrjtQvePxL9pdW8o8fjue0sb2D2tq7UwYfr87nX3Odio17isr509urAPjp1EGsuH06Vx5Tszzv72aM4pQxvZh4QNuqk2NMvGrTaZnZi7fy0eodHDU0h+92FQeC3OK8fUz8wxzm/+Y40lOSmXrvB2zaXRL02nC1xBsi2R0Rz1q0hb+ec3CTzgVOauW3s5YGnh86sDOTB9dc1q7IXRHpN68uZfyAzux0i3z9+8cTOSLM8X6Dctrz4HmHNLmdxpjm0WZH7lU+5Ypnv+bF+Xlc+ezCQGD/7SkjSUtJori8ipG3vM2gm94IBPbRfTry9CUTuOjwgXzv4L5Nev9jR1RXS9xfWsF1Lywiv6Dm3Z6R+nTNzsBUx8Hd2/O3cw8hJbnmP+/MwwYGHp/0wCeBaY42R92YxJKQI/fSiir2FJfTq1NGrcfc+44TzDPTkklJEm4+eQRFZVWcM6EfMw8bwOCb3ww6/vWrjmS0W4FwytCm14U5d0I/1uYX8vin6xlz2zsADO7Rnp9NHdyo881ZsZ12qUksuuX4OguUHTeyB1//dhqH3PEumanJvLZoMx3SU+jdqV2j3tcY0zolVHD/fO1OOrZL5dJn5rN1Xylf3HhMUIAvrahiV1E5fbIzmLd+N4cO7MxLPzk87Lm+ufV4zvz75xwzvDtnHNKH4T07RrWtIkK/zsEfPh3aNTzV4/MpCzft5ZWvN3Pk4G4RVZ7skpXG1ccO4YE53/LVhj0M69HBFrowJsE0ObiLSDIwH9isqqeISBfgBWAgsAE4W1X3NPV96rNtXynnPfpl0LZLn5nPf392RGCmx69fXsysRVtY8JvjWLOjkMlDas8xd8pI5d3rYlvZsE/nzKDnCzbs5oeTBtT5msV5e5m1aAs3nDic91fu4PJ/Lgjs86Z66nPtcUPYU1TOP90Lq8aYxBKNkfs1wArAP7S9AZijqneLyA3u819H4X1q9fKCPK5/6ZugbSeP6cXsxVs5+t4PuWPGaC5+qvouzUWb9rKvpIIRvaI7Gm+oY4d3Dzwe27cTry7awoCuWXXeGHXDy0tYvnU/j3+6vub5RnQP84rwRITbThtFp4xUDhmQ3aB2G2NavyYFdxHpC5wM3Alc526eAUx1Hz8NfEiMg/sf31oJQEZqMp/dcAwCpKcmMXvxVvL2lAQFdoBV251a6/27ZIaeqlklJQmv/Oxwumal8dgn6/kmbx9/nfMt507oT88wOfCS8iqWb90feC4CT150KJOH5FBR5WvwYiDJScIvTmj4jVjGmNavqbNl/gL8CvB5tvVQ1a0A7s/Ih5ONlJqcxOQh3fjwl1PpkpVG56y0sLVTfn/6aAAefN+527J7h/RYN61eh/TvzICuWVx21IGBbZPumhP22Ke/2AA45QDW33US6+86manDupOcJAm5ypMxpvEaHdxF5BRgh6ouqPfg8K+/TETmi8j8/Pz8+l8QxpodhZz7yFw27y1h0oFd6dExeLQ7wb3h5sjB3Zhz/RTOObQfXbLSKC537god1rNDo943Fvp1yWTZ706o85gte0ton57CUUNz7AKoMaZOTUnLHAGcJiInAe2AjiLyL2C7iPRS1a0i0guoWaUKUNVHgEfAKfnbuCZooH5KuIujL1w2CVWCFsV44+rJTLprDr+aPqzVVTPMSk/h+mlD+fO7qzn1b59SVlnFoxfm4lN44atNPPOFXfw0xkSm0cFdVW8EbgQQkanAL1T1AhH5EzATuNv9OavpzQyvnydnPrp3pxr7RYTQAW7PTu1a9RJ3vbKd6ZH+dUl/+dJi5m3Y3ZJNMsbEoVjMc78beFFEfgRsBM6KwXsAkJ6STIf0FA49oEvcLFlXn14hF1JDA/uTFx3anM0xxsSpqAR3Vf0QZ1YMqroLODYa543EwlumJVT+eWQt0zNnX30k/btkNupGJ2NM2xP3d6iGq58SzzpnpXHdtKFs3VfCc/M2AbDuDyclzDcTY0zziPvgnoiuPnYIpRVVPDdvE2eN72uB3RjTYBbcW6l2qcnMvfFYurZvXTN6jDHxwYJ7KxbuLlVjjIlEYiWsjTHGABbcjTEmIVlwN8aYBGTB3RhjEpAFd2OMSUAW3I0xJgGJaiMLMkazESL5QCQlD7sBO2PcnNakrfUXrM9thfU5Ogaoak64Ha0iuEdKROaram5Lt6O5tLX+gvW5rbA+x56lZYwxJgFZcDfGmAQUb8H9kZZuQDNra/0F63NbYX2OsbjKuRtjjIlMvI3cjTHGRMCCuzHGJCAL7i1MEmmNwAi1xT63RW3x37k19blVBXcR6eR53Gr+kmKsLdbUb5MLwYpIcku3oZm1qvjSTFrN73ar+MsXkYkiMgt4TEQuEZF0TfArvSIySUT+DdwuIkPawn98ETlMRF4C7hWRkW2oz7cDqGpVS7enOYjIBBH5F3CXiBwkIq0izsSSiOS6v9t/EpEjW8Pvdov/pYvIGOD/gP8ALwHHAINbtFExJiKjgb8BrwPbgcuAC919CfmNRUS6Aw8Cb+Dcgn0NcIm7L1H7PBN4GviNiJztbkvYb2oikiQitwKPAW/ifCu9Ahjbog2LIXHcDTxM9f/nK4H+LdowWkFwB8YDa1T1n8C7QDtgo39ngv7HnwSsVNXngEeBYuB8ERmoqpqgfR4LrFbVJ4E/A68AM0RkaAL3eTPOYGU6Tp9R1coE7Suq6gPygItU9d/AncAAoMVHsbHiZhg+Aaap6tPAk4AC+S3aMFoguIvIFBGZ6Nk0GzhDRO4ElgB9gQdE5NcQ+MuLa2H6/BXQT0QGqWoR4AP2AZdCwvT5dBG5SUROdjctAnI9ff4KmA9cDgnX51PcTR8A21X1HeA7EbnD3Z4wo/cw/87PAd+4qdVdQAHQq+VaGH2h/86qOltV94jIZGAuMBD4vYhMa8l2NltwF5EOIvIK8F/gchHpDKCqO3BGdSnATao6CXgKOFJEDmuu9sVCmD53cXetBeYBT4rIq0AuTkoqRUTielVsEclx+3QdsBunj2eqaj7wMnCVe+he4D0gU0Ti+j9/mD4/ISJnuDl2/yj9cuBqEemhqhUt1NSoqeXf+QxVLVbVKlUtE5FUnMHaqpZsa7TU9u/sOWQ3zreWw4BvgPNEZHjzt9TRnCP3cuB94AJgC3CWf4eqrgSGA5vcTQuAHUBZM7YvFsL2WVULVfVXOLm5p1T1VGANMEZVS1uqsVEyCPhMVY9S1YeB64Fr3X3PAcNF5Fj3K/wuoA/Ot5Z4Fq7PvwRQ1XIRSVbVZTgf4HcDiMiJLdba6Ki1zx4jcL65rHYHOhOavZXRVWefVXWZqn7gPv0IyAYKm72VrpgGdxG50E1JZKtqGc6FlveA1Thf0Yd6Dn8HuM3NR54DjML5zx9X6unzeG+fVXWxqr7qPj0GmBuP+Vi3z1NFJBPng/kZd3sysNz9A07a7XngryIyGDgWZ2Sb1vytbpoI+rzEfS44OVhU9cfATBHZA4yNt1kkDeizP+3UBSgWkYuAz4GD4u33O9I+h3E8TnwtaJaGhhH13J/7j9cTeBYnl7wWuExErlHVne4xXwBDgR8A/jzkEzgXGt/CuQBziapGsoBHi2tgn88Gfu957Xici21VwGXxknuupc+XAteo6nZ3tFolIiOAThC44PaUODNnbsD5tnapqu5tiT40VAP77E87KqAiMgC4H+fi2xWqurRFOtFAjexzpfvyE4Bzcb6Bn6+qi5u9A43QmD67r0sDjgL+iHMx/Veq2nLfSlU1an+AZPfnUOBf7uMUnGl/L4ccewbwEDAEyPQc2zOabYr1n0b2eTCQ4W7rCkxp6X5Esc+vhBzzDHC2+7in5xxpLd2PZupzjvszG5jQ0v1opj73cH8eAfygpfvRTH3u5v4cA5zS0v1Q1eiM3N2vYbcDySLyBtARZySKOlO/rga2iMgUVf3I3f5f95PvTaC9iBytqiuAbdFoU6w1sc9v4fT5GFVdjpOfa/Ua02ecnON6cW7k+Z6ITFfVPFUtb4k+NFSU+nySqm7EuYje6kWpzyeq6mct0f7GiGKfFwOt4htKk3N+IjIFJxfVGeei4B1ABXC0/wKKOh9ptwO3eV53FnAzznSxMW5gjwtR7PNy4kRj+uzmJS/BuUGtI3C0quY1e+MbKYp93ljj5K1UFPu8qcbJW6mE7XMUvsZMBn7oef4Q8FPgImCBuy0JJ4f1InCA53WTW/qri/U5Zn0egDO74C/AIS3dfuuz9bmt9TkafzGZQDrVeajzgbvcx4uAq9zHucBzLd3hKP0yWJ/r7vPzLd1e67P1ua33uclpGXVuWijT6qJI06i+9fZiYISIvI4zx/nrpr5fa2B9Buru8wKI/9IR1mfA+hy3fY7aVEg3B6VAD+A1d3MBcBMwGlivqpuj9X6tgfW57j6rO9yJd9Zn6zNx2Odo3kThw6llvBMY437S/RbwqeqniRbkXNZn67P1OXEkVJ+jukC2iEzCuRPtc+BJVX08aidvpazP1udEZX2O7z5HO7j3BX4I3KfOrfcJz/psfU5U1uf47nNUg7sxxpjWIa4KFxljjImMBXdjjElAFtyNMSYBWXA3xpgEZMHdtEkiUiUii0RkmYh8IyLXST2LZ4jIQBE5r7naaExTWHA3bVWJqo5T1VE4t5ufBNxaz2sGAhbcTVywqZCmTRKRQlVt73l+IPAV0A2n6t8/gSx395Wq+rmIzMVZF3Q98DTwAM6aqFNxCk/9n6r+o9k6YUwdLLibNik0uLvb9uAs/VeAc8t5qYgMwansmSsiU4FfqOop7vGXAd1V9fcikg58Bpylquubsy/GhBP1NVSNiWP+Sn+pwIMiMg5nNZ6htRx/PE4NkjPd551wlo204G5anAV3YwikZaqAHTi59+3AWJzrUqW1vQyn1vfbzdJIYxrALqiaNk9EcoCHgQfdUq6dgK2q6sOpM5LsHloAdPC89G3gpyKS6p5nqIhkYUwrYCN301ZliMginBRMJc4F1PvcfQ8BL7tr3n4AFLnbFwOVIvIN8BTwV5wZNF+7izfkA6c3T/ONqZtdUDXGmARkaRljjElAFtyNMSYBWXA3xpgEZMHdGGMSkAV3Y4xJQBbcjTEmAVlwN8aYBGTB3RhjEtD/A0QzFl8xQKBWAAAAAElFTkSuQmCC\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "ticker = yf.Ticker('AAPL')\n", "aapl_df = ticker.history(period=\"5y\")\n", "aapl_df['Close'].plot(title=\"APPLE's stock price\")" ] }, { "cell_type": "markdown", "id": "e478efec", "metadata": {}, "source": [ "### list the properties available for Apple" ] }, { "cell_type": "code", "execution_count": 10, "id": "9148d17b", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "['__class__',\n", " '__delattr__',\n", " '__dict__',\n", " '__dir__',\n", " '__doc__',\n", " '__eq__',\n", " '__format__',\n", " '__ge__',\n", " '__getattribute__',\n", " '__getstate__',\n", " '__gt__',\n", " '__hash__',\n", " '__init__',\n", " '__init_subclass__',\n", " '__le__',\n", " '__lt__',\n", " '__module__',\n", " '__ne__',\n", " '__new__',\n", " '__reduce__',\n", " '__reduce_ex__',\n", " '__repr__',\n", " '__setattr__',\n", " '__sizeof__',\n", " '__str__',\n", " '__subclasshook__',\n", " '__weakref__',\n", " '_analysis',\n", " '_base_url',\n", " '_data',\n", " '_download_options',\n", " '_earnings',\n", " '_earnings_dates',\n", " '_expirations',\n", " '_fast_info',\n", " '_fetch_ticker_tz',\n", " '_financials',\n", " '_fix_unit_mixups',\n", " '_fix_zeroes',\n", " '_fundamentals',\n", " '_get_ticker_tz',\n", " '_history',\n", " '_history_metadata',\n", " '_holders',\n", " '_isin',\n", " '_news',\n", " '_options2df',\n", " '_quote',\n", " '_reconstruct_intervals_batch',\n", " '_scrape_url',\n", " '_shares',\n", " '_tz',\n", " 'actions',\n", " 'analyst_price_target',\n", " 'balance_sheet',\n", " 'balancesheet',\n", " 'basic_info',\n", " 'calendar',\n", " 'capital_gains',\n", " 'cash_flow',\n", " 'cashflow',\n", " 'dividends',\n", " 'earnings',\n", " 'earnings_dates',\n", " 'earnings_forecasts',\n", " 'earnings_trend',\n", " 'fast_info',\n", " 'financials',\n", " 'get_actions',\n", " 'get_analyst_price_target',\n", " 'get_balance_sheet',\n", " 'get_balancesheet',\n", " 'get_calendar',\n", " 'get_capital_gains',\n", " 'get_cash_flow',\n", " 'get_cashflow',\n", " 'get_dividends',\n", " 'get_earnings',\n", " 'get_earnings_dates',\n", " 'get_earnings_forecast',\n", " 'get_earnings_trend',\n", " 'get_financials',\n", " 'get_history_metadata',\n", " 'get_income_stmt',\n", " 'get_incomestmt',\n", " 'get_info',\n", " 'get_institutional_holders',\n", " 'get_isin',\n", " 'get_major_holders',\n", " 'get_mutualfund_holders',\n", " 'get_news',\n", " 'get_recommendations',\n", " 'get_recommendations_summary',\n", " 'get_rev_forecast',\n", " 'get_shares',\n", " 'get_shares_full',\n", " 'get_splits',\n", " 'get_sustainability',\n", " 'get_trend_details',\n", " 'history',\n", " 'history_metadata',\n", " 'income_stmt',\n", " 'incomestmt',\n", " 'info',\n", " 'institutional_holders',\n", " 'isin',\n", " 'major_holders',\n", " 'market_cap',\n", " 'mutualfund_holders',\n", " 'news',\n", " 'option_chain',\n", " 'options',\n", " 'quarterly_balance_sheet',\n", " 'quarterly_balancesheet',\n", " 'quarterly_cash_flow',\n", " 'quarterly_cashflow',\n", " 'quarterly_earnings',\n", " 'quarterly_financials',\n", " 'quarterly_income_stmt',\n", " 'quarterly_incomestmt',\n", " 'recommendations',\n", " 'recommendations_summary',\n", " 'revenue_forecasts',\n", " 'session',\n", " 'shares',\n", " 'splits',\n", " 'stats',\n", " 'sustainability',\n", " 'ticker']" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "dir(ticker)" ] }, { "cell_type": "markdown", "id": "31fc3db4", "metadata": {}, "source": [ "### Print the values for each property from ticker.info" ] }, { "cell_type": "code", "execution_count": 11, "id": "d7124548", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "zip \t 95014 \n", "\n", "sector \t Technology \n", "\n", "fullTimeEmployees \t 164000 \n", "\n", "longBusinessSummary \t Apple Inc. designs, manufactures, and markets smartphones, personal computers, tablets, wearables, and accessories worldwide. It also sells various related services. In addition, the company offers iPhone, a line of smartphones; Mac, a line of personal computers; iPad, a line of multi-purpose tablets; and wearables, home, and accessories comprising AirPods, Apple TV, Apple Watch, Beats products, and HomePod. Further, it provides AppleCare support and cloud services store services; and operates various platforms, including the App Store that allow customers to discover and download applications and digital content, such as books, music, video, games, and podcasts. Additionally, the company offers various services, such as Apple Arcade, a game subscription service; Apple Fitness+, a personalized fitness service; Apple Music, which offers users a curated listening experience with on-demand radio stations; Apple News+, a subscription news and magazine service; Apple TV+, which offers exclusive original content; Apple Card, a co-branded credit card; and Apple Pay, a cashless payment service, as well as licenses its intellectual property. The company serves consumers, and small and mid-sized businesses; and the education, enterprise, and government markets. It distributes third-party applications for its products through the App Store. The company also sells its products through its retail and online stores, and direct sales force; and third-party cellular network carriers, wholesalers, retailers, and resellers. Apple Inc. was incorporated in 1977 and is headquartered in Cupertino, California. \n", "\n", "city \t Cupertino \n", "\n", "phone \t 408 996 1010 \n", "\n", "state \t CA \n", "\n", "country \t United States \n", "\n", "companyOfficers \t [] \n", "\n", "website \t https://www.apple.com \n", "\n", "maxAge \t 1 \n", "\n", "address1 \t One Apple Park Way \n", "\n", "industry \t Consumer Electronics \n", "\n", "ebitdaMargins \t 0.32329 \n", "\n", "profitMargins \t 0.24558 \n", "\n", "grossMargins \t 0.43058997 \n", "\n", "operatingCashflow \t 109189996544 \n", "\n", "revenueGrowth \t -0.055 \n", "\n", "operatingMargins \t 0.29408002 \n", "\n", "ebitda \t 125287997440 \n", "\n", "targetLowPrice \t 118 \n", "\n", "recommendationKey \t buy \n", "\n", "grossProfits \t 170782000000 \n", "\n", "freeCashflow \t 84729126912 \n", "\n", "targetMedianPrice \t 171.5 \n", "\n", "earningsGrowth \t -0.105 \n", "\n", "currentRatio \t 0.938 \n", "\n", "returnOnAssets \t 0.19569999 \n", "\n", "numberOfAnalystOpinions \t 38 \n", "\n", "targetMeanPrice \t 168.9 \n", "\n", "debtToEquity \t 195.868 \n", "\n", "returnOnEquity \t 1.47943 \n", "\n", "targetHighPrice \t 210 \n", "\n", "totalCash \t 51355000832 \n", "\n", "totalDebt \t 111109996544 \n", "\n", "totalRevenue \t 387537010688 \n", "\n", "totalCashPerShare \t 3.246 \n", "\n", "financialCurrency \t USD \n", "\n", "revenuePerShare \t 24.084 \n", "\n", "quickRatio \t 0.769 \n", "\n", "recommendationMean \t 2 \n", "\n", "shortName \t Apple Inc. \n", "\n", "longName \t Apple Inc. \n", "\n", "isEsgPopulated \t False \n", "\n", "gmtOffSetMilliseconds \t -18000000 \n", "\n", "quoteType \t EQUITY \n", "\n", "messageBoardId \t finmb_24937 \n", "\n", "market \t us_market \n", "\n", "annualHoldingsTurnover \t None \n", "\n", "enterpriseToRevenue \t 6.462 \n", "\n", "beta3Year \t None \n", "\n", "enterpriseToEbitda \t 19.988 \n", "\n", "52WeekChange \t -0.099965036 \n", "\n", "morningStarRiskRating \t None \n", "\n", "forwardEps \t 6.61 \n", "\n", "revenueQuarterlyGrowth \t None \n", "\n", "sharesOutstanding \t 15821899776 \n", "\n", "fundInceptionDate \t None \n", "\n", "annualReportExpenseRatio \t None \n", "\n", "totalAssets \t None \n", "\n", "bookValue \t 3.581 \n", "\n", "sharesShort \t 121868919 \n", "\n", "sharesPercentSharesOut \t 0.0077 \n", "\n", "fundFamily \t None \n", "\n", "lastFiscalYearEnd \t 1663977600 \n", "\n", "heldPercentInstitutions \t 0.61239 \n", "\n", "netIncomeToCommon \t 95171002368 \n", "\n", "trailingEps \t 5.89 \n", "\n", "lastDividendValue \t 0.23 \n", "\n", "SandP52WeekChange \t -0.07747549 \n", "\n", "priceToBook \t 42.58587 \n", "\n", "heldPercentInsiders \t 0.00072999997 \n", "\n", "nextFiscalYearEnd \t 1695513600 \n", "\n", "yield \t None \n", "\n", "mostRecentQuarter \t 1672444800 \n", "\n", "shortRatio \t 1.47 \n", "\n", "sharesShortPreviousMonthDate \t 1671062400 \n", "\n", "floatShares \t 15805174737 \n", "\n", "beta \t 1.277894 \n", "\n", "enterpriseValue \t 2504245641216 \n", "\n", "priceHint \t 2 \n", "\n", "threeYearAverageReturn \t None \n", "\n", "lastSplitDate \t 1598832000 \n", "\n", "lastSplitFactor \t 4:1 \n", "\n", "legalType \t None \n", "\n", "lastDividendDate \t 1667520000 \n", "\n", "morningStarOverallRating \t None \n", "\n", "earningsQuarterlyGrowth \t -0.134 \n", "\n", "priceToSalesTrailing12Months \t 6.2260885 \n", "\n", "dateShortInterest \t 1673568000 \n", "\n", "pegRatio \t 3.15 \n", "\n", "ytdReturn \t None \n", "\n", "forwardPE \t 23.071104 \n", "\n", "lastCapGain \t None \n", "\n", "shortPercentOfFloat \t 0.0077 \n", "\n", "sharesShortPriorMonth \t 121757434 \n", "\n", "impliedSharesOutstanding \t 0 \n", "\n", "category \t None \n", "\n", "fiveYearAverageReturn \t None \n", "\n", "trailingAnnualDividendYield \t 0.005889968 \n", "\n", "payoutRatio \t 0.1545 \n", "\n", "volume24Hr \t None \n", "\n", "navPrice \t None \n", "\n", "trailingAnnualDividendRate \t 0.91 \n", "\n", "toCurrency \t None \n", "\n", "expireDate \t None \n", "\n", "algorithm \t None \n", "\n", "dividendRate \t 0.92 \n", "\n", "exDividendDate \t 1675987200 \n", "\n", "circulatingSupply \t None \n", "\n", "startDate \t None \n", "\n", "trailingPE \t 25.891342 \n", "\n", "lastMarket \t None \n", "\n", "maxSupply \t None \n", "\n", "openInterest \t None \n", "\n", "volumeAllCurrencies \t None \n", "\n", "strikePrice \t None \n", "\n", "ask \t 152.17 \n", "\n", "askSize \t 2200 \n", "\n", "fromCurrency \t None \n", "\n", "fiveYearAvgDividendYield \t 0.96 \n", "\n", "bid \t 152.2 \n", "\n", "tradeable \t False \n", "\n", "dividendYield \t 0.006 \n", "\n", "bidSize \t 3000 \n", "\n", "coinMarketCapLink \t None \n", "\n", "preMarketPrice \t 152.5 \n", "\n", "logo_url \t https://logo.clearbit.com/apple.com \n", "\n", "trailingPegRatio \t None \n", "\n" ] } ], "source": [ "for k,v in ticker.info.items():\n", " print (k, '\\t', v, '\\n')" ] }, { "cell_type": "markdown", "id": "95cb50d5", "metadata": {}, "source": [ "### See the analyst recommendations\n", "\n", "We see Buy and Neutral, which is like Hold. There is also Outperform, which means\n", "that it should do better than its peers, and Overweight, which means that you should \n", "hold more Apple as a percentage in your portfolio than Apple's percentage weight\n", "in the relevant index. \n", "\n", "This brings up an interesting point. If you are a portfolio manager, how are you \n", "evaluated? The obvious answer is \"How much money did I make for my clients?\" However,\n", "that is incorrect. Finance professionals know that they will have good years and bad years. They are happy to be rewarded for the good years, but they don't want to \n", "be punished for the bad ones. Years ago, a smart portfolio manager proposed that he \n", "be measured relative to an index or benchmark, such as the S&P 500.\n", "Thus, if his fund made 15% last year and the S&P made 10%, then the manager outperformed \n", "by 5% or 500 basis points. (A basis point is 1/100th of a percentage point.)\n", "\n", "If the fund lost10% last year but the S&P lost 15%, the manager still outperformed by 5% or 500 basis points. So the rating \"Overweight\" is relative to\n", "the appropriate benchmark index.\n", "\n", "That's how they keep score in asset management world." ] }, { "cell_type": "code", "execution_count": 12, "id": "a9cbaa18", "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
FirmTo GradeFrom GradeAction
Date
2012-02-09 08:17:00Canaccord GenuityBuymain
2012-03-08 07:33:00FBN SecuritiesOutperformmain
2012-03-13 06:08:00JefferiesBuymain
2012-03-14 06:13:00Morgan StanleyOverweightmain
2012-03-14 08:21:00Canaccord GenuityBuymain
...............
2023-02-03 12:42:30Cowen & Co.Outperformmain
2023-02-03 13:28:56WedbushOutperformmain
2023-02-03 13:30:22RosenblattBuymain
2023-02-03 14:31:06DA DavidsonBuymain
2023-02-06 10:31:59Evercore ISI GroupOutperformreit
\n", "

889 rows × 4 columns

\n", "
" ], "text/plain": [ " Firm To Grade From Grade Action\n", "Date \n", "2012-02-09 08:17:00 Canaccord Genuity Buy main\n", "2012-03-08 07:33:00 FBN Securities Outperform main\n", "2012-03-13 06:08:00 Jefferies Buy main\n", "2012-03-14 06:13:00 Morgan Stanley Overweight main\n", "2012-03-14 08:21:00 Canaccord Genuity Buy main\n", "... ... ... ... ...\n", "2023-02-03 12:42:30 Cowen & Co. Outperform main\n", "2023-02-03 13:28:56 Wedbush Outperform main\n", "2023-02-03 13:30:22 Rosenblatt Buy main\n", "2023-02-03 14:31:06 DA Davidson Buy main\n", "2023-02-06 10:31:59 Evercore ISI Group Outperform reit\n", "\n", "[889 rows x 4 columns]" ] }, "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ticker.recommendations" ] }, { "cell_type": "markdown", "id": "6fa202a2", "metadata": {}, "source": [ "You could evaluate a stock by looking at the analyst recommendations. For example, instead of merely looking for a BUY or SELL recommendation, you could look for a change in recommendation. A move from a SELL to a BUY or HOLD would be a BUY signal. A move\n", "from a BUY to a HOLD or SELL would be a SELL signal.\n", "\n", "The author had a friend and colleague decades ago who wanted to start a business based on precisely this premise. He had an MBA from Columbia. He would have done the marketing and sales. I would have implemented the strategy.\n", "\n", "I dismissed the idea as being too simple. I was wrong. My colleague is now the President of a major Private Wealth Management firm." ] }, { "cell_type": "markdown", "id": "07374850", "metadata": {}, "source": [ "### ESG and Sustainability\n", "\n", "There are lots of data here." ] }, { "cell_type": "code", "execution_count": 13, "id": "20e50ae2", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Value
2022-8
palmOilFalse
controversialWeaponsFalse
gamblingFalse
socialScore6.86
nuclearFalse
furLeatherFalse
alcoholicFalse
gmoFalse
catholicFalse
socialPercentileNone
peerCount55
governanceScore9.18
environmentPercentileNone
animalTestingFalse
tobaccoFalse
totalEsg16.68
highestControversy3
esgPerformanceUNDER_PERF
coalFalse
pesticidesFalse
adultFalse
percentile14.68
peerGroupTechnology Hardware
smallArmsFalse
environmentScore0.65
governancePercentileNone
militaryContractFalse
\n", "
" ], "text/plain": [ " Value\n", "2022-8 \n", "palmOil False\n", "controversialWeapons False\n", "gambling False\n", "socialScore 6.86\n", "nuclear False\n", "furLeather False\n", "alcoholic False\n", "gmo False\n", "catholic False\n", "socialPercentile None\n", "peerCount 55\n", "governanceScore 9.18\n", "environmentPercentile None\n", "animalTesting False\n", "tobacco False\n", "totalEsg 16.68\n", "highestControversy 3\n", "esgPerformance UNDER_PERF\n", "coal False\n", "pesticides False\n", "adult False\n", "percentile 14.68\n", "peerGroup Technology Hardware\n", "smallArms False\n", "environmentScore 0.65\n", "governancePercentile None\n", "militaryContract False" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ticker.sustainability" ] }, { "cell_type": "markdown", "id": "17e214ab", "metadata": {}, "source": [ "### Dividends\n", "\n", "We can see the recent history of dividend payments." ] }, { "cell_type": "code", "execution_count": 14, "id": "1193bb35", "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DividendsStock Splits
Date
2018-02-09 00:00:00-05:000.15750.0
2018-05-11 00:00:00-04:000.18250.0
2018-08-10 00:00:00-04:000.18250.0
2018-11-08 00:00:00-05:000.18250.0
2019-02-08 00:00:00-05:000.18250.0
2019-05-10 00:00:00-04:000.19250.0
2019-08-09 00:00:00-04:000.19250.0
2019-11-07 00:00:00-05:000.19250.0
2020-02-07 00:00:00-05:000.19250.0
2020-05-08 00:00:00-04:000.20500.0
2020-08-07 00:00:00-04:000.20500.0
2020-08-31 00:00:00-04:000.00004.0
2020-11-06 00:00:00-05:000.20500.0
2021-02-05 00:00:00-05:000.20500.0
2021-05-07 00:00:00-04:000.22000.0
2021-08-06 00:00:00-04:000.22000.0
2021-11-05 00:00:00-04:000.22000.0
2022-02-04 00:00:00-05:000.22000.0
2022-05-06 00:00:00-04:000.23000.0
2022-08-05 00:00:00-04:000.23000.0
2022-11-04 00:00:00-04:000.23000.0
\n", "
" ], "text/plain": [ " Dividends Stock Splits\n", "Date \n", "2018-02-09 00:00:00-05:00 0.1575 0.0\n", "2018-05-11 00:00:00-04:00 0.1825 0.0\n", "2018-08-10 00:00:00-04:00 0.1825 0.0\n", "2018-11-08 00:00:00-05:00 0.1825 0.0\n", "2019-02-08 00:00:00-05:00 0.1825 0.0\n", "2019-05-10 00:00:00-04:00 0.1925 0.0\n", "2019-08-09 00:00:00-04:00 0.1925 0.0\n", "2019-11-07 00:00:00-05:00 0.1925 0.0\n", "2020-02-07 00:00:00-05:00 0.1925 0.0\n", "2020-05-08 00:00:00-04:00 0.2050 0.0\n", "2020-08-07 00:00:00-04:00 0.2050 0.0\n", "2020-08-31 00:00:00-04:00 0.0000 4.0\n", "2020-11-06 00:00:00-05:00 0.2050 0.0\n", "2021-02-05 00:00:00-05:00 0.2050 0.0\n", "2021-05-07 00:00:00-04:00 0.2200 0.0\n", "2021-08-06 00:00:00-04:00 0.2200 0.0\n", "2021-11-05 00:00:00-04:00 0.2200 0.0\n", "2022-02-04 00:00:00-05:00 0.2200 0.0\n", "2022-05-06 00:00:00-04:00 0.2300 0.0\n", "2022-08-05 00:00:00-04:00 0.2300 0.0\n", "2022-11-04 00:00:00-04:00 0.2300 0.0" ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ticker.actions" ] }, { "cell_type": "code", "execution_count": 15, "id": "8bbfda57", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Date\n", "2018-02-09 00:00:00-05:00 0.1575\n", "2018-05-11 00:00:00-04:00 0.1825\n", "2018-08-10 00:00:00-04:00 0.1825\n", "2018-11-08 00:00:00-05:00 0.1825\n", "2019-02-08 00:00:00-05:00 0.1825\n", "2019-05-10 00:00:00-04:00 0.1925\n", "2019-08-09 00:00:00-04:00 0.1925\n", "2019-11-07 00:00:00-05:00 0.1925\n", "2020-02-07 00:00:00-05:00 0.1925\n", "2020-05-08 00:00:00-04:00 0.2050\n", "2020-08-07 00:00:00-04:00 0.2050\n", "2020-11-06 00:00:00-05:00 0.2050\n", "2021-02-05 00:00:00-05:00 0.2050\n", "2021-05-07 00:00:00-04:00 0.2200\n", "2021-08-06 00:00:00-04:00 0.2200\n", "2021-11-05 00:00:00-04:00 0.2200\n", "2022-02-04 00:00:00-05:00 0.2200\n", "2022-05-06 00:00:00-04:00 0.2300\n", "2022-08-05 00:00:00-04:00 0.2300\n", "2022-11-04 00:00:00-04:00 0.2300\n", "Name: Dividends, dtype: float64" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ticker.dividends" ] }, { "cell_type": "markdown", "id": "922fb2ca", "metadata": {}, "source": [ "### ticker.info\n", "\n", "There is lots of information the ticker.info dictionary.\n", "\n", "The dividend yield\n", "is the dividend per share divided by the price per share." ] }, { "cell_type": "code", "execution_count": 16, "id": "83c1763b", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'zip': '95014', 'sector': 'Technology', 'fullTimeEmployees': 164000, 'longBusinessSummary': 'Apple Inc. designs, manufactures, and markets smartphones, personal computers, tablets, wearables, and accessories worldwide. It also sells various related services. In addition, the company offers iPhone, a line of smartphones; Mac, a line of personal computers; iPad, a line of multi-purpose tablets; and wearables, home, and accessories comprising AirPods, Apple TV, Apple Watch, Beats products, and HomePod. Further, it provides AppleCare support and cloud services store services; and operates various platforms, including the App Store that allow customers to discover and download applications and digital content, such as books, music, video, games, and podcasts. Additionally, the company offers various services, such as Apple Arcade, a game subscription service; Apple Fitness+, a personalized fitness service; Apple Music, which offers users a curated listening experience with on-demand radio stations; Apple News+, a subscription news and magazine service; Apple TV+, which offers exclusive original content; Apple Card, a co-branded credit card; and Apple Pay, a cashless payment service, as well as licenses its intellectual property. The company serves consumers, and small and mid-sized businesses; and the education, enterprise, and government markets. It distributes third-party applications for its products through the App Store. The company also sells its products through its retail and online stores, and direct sales force; and third-party cellular network carriers, wholesalers, retailers, and resellers. Apple Inc. was incorporated in 1977 and is headquartered in Cupertino, California.', 'city': 'Cupertino', 'phone': '408 996 1010', 'state': 'CA', 'country': 'United States', 'companyOfficers': [], 'website': 'https://www.apple.com', 'maxAge': 1, 'address1': 'One Apple Park Way', 'industry': 'Consumer Electronics', 'ebitdaMargins': 0.32329, 'profitMargins': 0.24558, 'grossMargins': 0.43058997, 'operatingCashflow': 109189996544, 'revenueGrowth': -0.055, 'operatingMargins': 0.29408002, 'ebitda': 125287997440, 'targetLowPrice': 118, 'recommendationKey': 'buy', 'grossProfits': 170782000000, 'freeCashflow': 84729126912, 'targetMedianPrice': 171.5, 'earningsGrowth': -0.105, 'currentRatio': 0.938, 'returnOnAssets': 0.19569999, 'numberOfAnalystOpinions': 38, 'targetMeanPrice': 168.9, 'debtToEquity': 195.868, 'returnOnEquity': 1.47943, 'targetHighPrice': 210, 'totalCash': 51355000832, 'totalDebt': 111109996544, 'totalRevenue': 387537010688, 'totalCashPerShare': 3.246, 'financialCurrency': 'USD', 'revenuePerShare': 24.084, 'quickRatio': 0.769, 'recommendationMean': 2, 'shortName': 'Apple Inc.', 'longName': 'Apple Inc.', 'isEsgPopulated': False, 'gmtOffSetMilliseconds': '-18000000', 'quoteType': 'EQUITY', 'messageBoardId': 'finmb_24937', 'market': 'us_market', 'annualHoldingsTurnover': None, 'enterpriseToRevenue': 6.462, 'beta3Year': None, 'enterpriseToEbitda': 19.988, '52WeekChange': -0.099965036, 'morningStarRiskRating': None, 'forwardEps': 6.61, 'revenueQuarterlyGrowth': None, 'sharesOutstanding': 15821899776, 'fundInceptionDate': None, 'annualReportExpenseRatio': None, 'totalAssets': None, 'bookValue': 3.581, 'sharesShort': 121868919, 'sharesPercentSharesOut': 0.0077, 'fundFamily': None, 'lastFiscalYearEnd': 1663977600, 'heldPercentInstitutions': 0.61239, 'netIncomeToCommon': 95171002368, 'trailingEps': 5.89, 'lastDividendValue': 0.23, 'SandP52WeekChange': -0.07747549, 'priceToBook': 42.58587, 'heldPercentInsiders': 0.00072999997, 'nextFiscalYearEnd': 1695513600, 'yield': None, 'mostRecentQuarter': 1672444800, 'shortRatio': 1.47, 'sharesShortPreviousMonthDate': 1671062400, 'floatShares': 15805174737, 'beta': 1.277894, 'enterpriseValue': 2504245641216, 'priceHint': 2, 'threeYearAverageReturn': None, 'lastSplitDate': 1598832000, 'lastSplitFactor': '4:1', 'legalType': None, 'lastDividendDate': 1667520000, 'morningStarOverallRating': None, 'earningsQuarterlyGrowth': -0.134, 'priceToSalesTrailing12Months': 6.2260885, 'dateShortInterest': 1673568000, 'pegRatio': 3.15, 'ytdReturn': None, 'forwardPE': 23.071104, 'lastCapGain': None, 'shortPercentOfFloat': 0.0077, 'sharesShortPriorMonth': 121757434, 'impliedSharesOutstanding': 0, 'category': None, 'fiveYearAverageReturn': None, 'trailingAnnualDividendYield': 0.005889968, 'payoutRatio': 0.1545, 'volume24Hr': None, 'navPrice': None, 'trailingAnnualDividendRate': 0.91, 'toCurrency': None, 'expireDate': None, 'algorithm': None, 'dividendRate': 0.92, 'exDividendDate': 1675987200, 'circulatingSupply': None, 'startDate': None, 'trailingPE': 25.891342, 'lastMarket': None, 'maxSupply': None, 'openInterest': None, 'volumeAllCurrencies': None, 'strikePrice': None, 'ask': 152.17, 'askSize': 2200, 'fromCurrency': None, 'fiveYearAvgDividendYield': 0.96, 'bid': 152.2, 'tradeable': False, 'dividendYield': 0.006, 'bidSize': 3000, 'coinMarketCapLink': None, 'preMarketPrice': 152.5, 'logo_url': 'https://logo.clearbit.com/apple.com', 'trailingPegRatio': None}" ] }, "execution_count": 16, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ticker.info" ] }, { "cell_type": "code", "execution_count": 17, "id": "45442491", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "0.006" ] }, "execution_count": 17, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ticker.info['dividendYield']" ] }, { "cell_type": "markdown", "id": "ee219dd1", "metadata": {}, "source": [ "beta is a measure of the stock's volatility relative to the market. Apple is slightly more volatile." ] }, { "cell_type": "code", "execution_count": 18, "id": "3c4047d0", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "1.277894" ] }, "execution_count": 18, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ticker.info['beta']" ] }, { "cell_type": "markdown", "id": "e1631a06", "metadata": {}, "source": [ "yfinance has a couple target price data points" ] }, { "cell_type": "code", "execution_count": 19, "id": "c4b004de", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[118, 168.9, 171.5, 210]" ] }, "execution_count": 19, "metadata": {}, "output_type": "execute_result" } ], "source": [ "list(map(lambda x: ticker.info[x], \n", " ['targetLowPrice', 'targetMeanPrice','targetMedianPrice','targetHighPrice']))" ] }, { "cell_type": "markdown", "id": "078c0d8e", "metadata": {}, "source": [ "We can get the sector." ] }, { "cell_type": "code", "execution_count": 20, "id": "55f173f7", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'Consumer Electronics'" ] }, "execution_count": 20, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ticker.info['industry']" ] }, { "cell_type": "markdown", "id": "b703b01f", "metadata": {}, "source": [ "We can find out who owns Apple." ] }, { "cell_type": "code", "execution_count": 21, "id": "8383c022", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01
00.07%% of Shares Held by All Insider
161.24%% of Shares Held by Institutions
261.28%% of Float Held by Institutions
35546Number of Institutions Holding Shares
\n", "
" ], "text/plain": [ " 0 1\n", "0 0.07% % of Shares Held by All Insider\n", "1 61.24% % of Shares Held by Institutions\n", "2 61.28% % of Float Held by Institutions\n", "3 5546 Number of Institutions Holding Shares" ] }, "execution_count": 21, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ticker.major_holders" ] }, { "cell_type": "code", "execution_count": 22, "id": "1293fb7e", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
HolderSharesDate Reported% OutValue
0Vanguard Group, Inc. (The)12723789012022-09-290.0803193859650132
1Blackrock Inc.10202451852022-09-290.0644155444557009
2Berkshire Hathaway, Inc8948023192022-09-290.0565136332081868
3State Street Corporation5915438742022-09-290.037490127625003
4FMR, LLC3509001162022-09-290.022253463141887
5Geode Capital Management, LLC2797585182022-09-290.017742624007973
6Price (T.Rowe) Associates Inc2248635412022-09-290.014234260209244
7Morgan Stanley1827287712022-09-290.011527840555661
8Northern Trust Corporation1760848622022-09-290.011126828289681
9Bank of America Corporation1422605912022-09-290.009021674823731
\n", "
" ], "text/plain": [ " Holder Shares Date Reported % Out \\\n", "0 Vanguard Group, Inc. (The) 1272378901 2022-09-29 0.0803 \n", "1 Blackrock Inc. 1020245185 2022-09-29 0.0644 \n", "2 Berkshire Hathaway, Inc 894802319 2022-09-29 0.0565 \n", "3 State Street Corporation 591543874 2022-09-29 0.0374 \n", "4 FMR, LLC 350900116 2022-09-29 0.0222 \n", "5 Geode Capital Management, LLC 279758518 2022-09-29 0.0177 \n", "6 Price (T.Rowe) Associates Inc 224863541 2022-09-29 0.0142 \n", "7 Morgan Stanley 182728771 2022-09-29 0.0115 \n", "8 Northern Trust Corporation 176084862 2022-09-29 0.0111 \n", "9 Bank of America Corporation 142260591 2022-09-29 0.0090 \n", "\n", " Value \n", "0 193859650132 \n", "1 155444557009 \n", "2 136332081868 \n", "3 90127625003 \n", "4 53463141887 \n", "5 42624007973 \n", "6 34260209244 \n", "7 27840555661 \n", "8 26828289681 \n", "9 21674823731 " ] }, "execution_count": 22, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ticker.institutional_holders" ] }, { "cell_type": "code", "execution_count": 23, "id": "dbc1b19b", "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01
Earnings Date2023-04-26 10:59:002023-05-01 12:00:00
Earnings Average1.431.43
Earnings Low1.371.37
Earnings High1.561.56
Revenue Average9319280000093192800000
Revenue Low9180590000091805900000
Revenue High9883600000098836000000
\n", "
" ], "text/plain": [ " 0 1\n", "Earnings Date 2023-04-26 10:59:00 2023-05-01 12:00:00\n", "Earnings Average 1.43 1.43\n", "Earnings Low 1.37 1.37\n", "Earnings High 1.56 1.56\n", "Revenue Average 93192800000 93192800000\n", "Revenue Low 91805900000 91805900000\n", "Revenue High 98836000000 98836000000" ] }, "execution_count": 23, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ticker.calendar" ] }, { "cell_type": "markdown", "id": "62ff4426", "metadata": {}, "source": [ "## YahooFinancials - Apple\n", "\n" ] }, { "cell_type": "code", "execution_count": 25, "id": "81d2bf4d", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
highlowopenclosevolumeadjclose
formatted_date
2019-01-0139.71250235.50000038.72250036.98249896694720035.694614
2019-01-0838.63250037.13000137.38999937.50000072547000036.194099
2019-01-1539.47000137.51250137.56750139.20500249141120037.839710
2019-01-2239.53250137.92499939.10250139.07500155477480037.714241
2019-01-2942.91500138.52750039.06250042.81250083040080041.321583
\n", "
" ], "text/plain": [ " high low open close volume \\\n", "formatted_date \n", "2019-01-01 39.712502 35.500000 38.722500 36.982498 966947200 \n", "2019-01-08 38.632500 37.130001 37.389999 37.500000 725470000 \n", "2019-01-15 39.470001 37.512501 37.567501 39.205002 491411200 \n", "2019-01-22 39.532501 37.924999 39.102501 39.075001 554774800 \n", "2019-01-29 42.915001 38.527500 39.062500 42.812500 830400800 \n", "\n", " adjclose \n", "formatted_date \n", "2019-01-01 35.694614 \n", "2019-01-08 36.194099 \n", "2019-01-15 37.839710 \n", "2019-01-22 37.714241 \n", "2019-01-29 41.321583 " ] }, "execution_count": 25, "metadata": {}, "output_type": "execute_result" } ], "source": [ "yahoo_financials = YahooFinancials('AAPL')\n", "data = yahoo_financials.get_historical_price_data(start_date='2019-01-01', \n", " end_date='2019-12-31', \n", " time_interval='weekly')\n", "aapl_df = pd.DataFrame(data['AAPL']['prices'])\n", "aapl_df = aapl_df.drop('date', axis=1).set_index('formatted_date')\n", "aapl_df.head()" ] }, { "cell_type": "code", "execution_count": 36, "id": "f436506d", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "['YAHOO_FINANCIAL_TYPES',\n", " '_BASE_YAHOO_URL',\n", " '_INTERVAL_DICT',\n", " '_MIN_INTERVAL',\n", " '__class__',\n", " '__delattr__',\n", " '__dict__',\n", " '__dir__',\n", " '__doc__',\n", " '__eq__',\n", " '__format__',\n", " '__ge__',\n", " '__getattribute__',\n", " '__gt__',\n", " '__hash__',\n", " '__init__',\n", " '__init_subclass__',\n", " '__le__',\n", " '__lt__',\n", " '__module__',\n", " '__ne__',\n", " '__new__',\n", " '__reduce__',\n", " '__reduce_ex__',\n", " '__repr__',\n", " '__setattr__',\n", " '__sizeof__',\n", " '__str__',\n", " '__subclasshook__',\n", " '__weakref__',\n", " '_build_api_url',\n", " '_build_historical_url',\n", " '_cache',\n", " '_clean_api_data',\n", " '_clean_earnings_data',\n", " '_clean_historical_data',\n", " '_clean_reports',\n", " '_convert_to_utc',\n", " '_create_dict_ent',\n", " '_determine_numeric_value',\n", " '_encode_ticker',\n", " '_financial_statement_data',\n", " '_format_time',\n", " '_get_api_data',\n", " '_get_cleaned_sub_dict_ent',\n", " '_get_stmt_id',\n", " '_get_sub_dict_ent',\n", " '_handle_api_dividend_request',\n", " '_recursive_api_request',\n", " '_reformat_stmt_data_process',\n", " '_run_financial_stmt',\n", " '_scrape_data',\n", " '_stock_price_data',\n", " '_stock_summary_data',\n", " 'format_date',\n", " 'get_200day_moving_avg',\n", " 'get_50day_moving_avg',\n", " 'get_annual_avg_div_rate',\n", " 'get_annual_avg_div_yield',\n", " 'get_beta',\n", " 'get_book_value',\n", " 'get_clean_data',\n", " 'get_cost_of_revenue',\n", " 'get_currency',\n", " 'get_current_change',\n", " 'get_current_percent_change',\n", " 'get_current_price',\n", " 'get_current_volume',\n", " 'get_daily_dividend_data',\n", " 'get_daily_high',\n", " 'get_daily_low',\n", " 'get_dividend_rate',\n", " 'get_dividend_yield',\n", " 'get_earnings_per_share',\n", " 'get_ebit',\n", " 'get_exdividend_date',\n", " 'get_financial_stmts',\n", " 'get_five_yr_avg_div_yield',\n", " 'get_gross_profit',\n", " 'get_historical_price_data',\n", " 'get_income_before_tax',\n", " 'get_income_tax_expense',\n", " 'get_interest_expense',\n", " 'get_key_statistics_data',\n", " 'get_market_cap',\n", " 'get_net_income',\n", " 'get_net_income_from_continuing_ops',\n", " 'get_num_shares_outstanding',\n", " 'get_open_price',\n", " 'get_operating_income',\n", " 'get_payout_ratio',\n", " 'get_pe_ratio',\n", " 'get_prev_close_price',\n", " 'get_price_to_sales',\n", " 'get_reformatted_stmt_data',\n", " 'get_report_type',\n", " 'get_research_and_development',\n", " 'get_stock_data',\n", " 'get_stock_dividend_data',\n", " 'get_stock_earnings_data',\n", " 'get_stock_exchange',\n", " 'get_stock_price_data',\n", " 'get_stock_quote_type_data',\n", " 'get_stock_summary_url',\n", " 'get_stock_tech_data',\n", " 'get_summary_data',\n", " 'get_ten_day_avg_daily_volume',\n", " 'get_three_month_avg_daily_volume',\n", " 'get_time_code',\n", " 'get_total_operating_expense',\n", " 'get_total_revenue',\n", " 'get_yearly_high',\n", " 'get_yearly_low',\n", " 'ticker']" ] }, "execution_count": 36, "metadata": {}, "output_type": "execute_result" } ], "source": [ "dir(yahoo_financials)" ] }, { "cell_type": "code", "execution_count": 26, "id": "8cc48359", "metadata": { "scrolled": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "get_200day_moving_avg \t 147.80174\n", "get_50day_moving_avg \t 138.8904\n", "get_annual_avg_div_rate \t 0.91\n", "get_annual_avg_div_yield \t 0.005889968\n", "get_beta \t 1.277894\n", "get_book_value \t 56727000000\n" ] }, { "ename": "TypeError", "evalue": "YahooFinanceETL.get_clean_data() missing 2 required positional arguments: 'raw_report_data' and 'report_type'", "output_type": "error", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)", "Cell \u001b[0;32mIn [26], line 4\u001b[0m\n\u001b[1;32m 2\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mhasattr\u001b[39m(\u001b[38;5;28mgetattr\u001b[39m(yahoo_financials,p), \u001b[38;5;124m'\u001b[39m\u001b[38;5;124m__call__\u001b[39m\u001b[38;5;124m'\u001b[39m):\n\u001b[1;32m 3\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m p\u001b[38;5;241m.\u001b[39mstartswith(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mget\u001b[39m\u001b[38;5;124m'\u001b[39m):\n\u001b[0;32m----> 4\u001b[0m x \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mgetattr\u001b[39m(yahoo_financials, p)()\n\u001b[1;32m 5\u001b[0m \u001b[38;5;28mprint\u001b[39m (p, \u001b[38;5;124m'\u001b[39m\u001b[38;5;130;01m\\t\u001b[39;00m\u001b[38;5;124m'\u001b[39m, x)\n", "\u001b[0;31mTypeError\u001b[0m: YahooFinanceETL.get_clean_data() missing 2 required positional arguments: 'raw_report_data' and 'report_type'" ] } ], "source": [ "for p in dir(yahoo_financials):\n", " if hasattr(getattr(yahoo_financials,p), '__call__'):\n", " if p.startswith('get'):\n", " x = getattr(yahoo_financials, p)()\n", " print (p, '\\t', x)\n", " " ] }, { "cell_type": "code", "execution_count": null, "id": "45bc62ee", "metadata": {}, "outputs": [], "source": [ "dir(yahoo_financials.get_clean_data.__func__)" ] }, { "cell_type": "code", "execution_count": null, "id": "c808abf1", "metadata": {}, "outputs": [], "source": [ "hasattr(yahoo_financials.get_beta, '__call__')" ] }, { "cell_type": "code", "execution_count": 27, "id": "aa424d7d", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "YAHOO_FINANCIAL_TYPES \t {'income': ['financials', 'incomeStatementHistory', 'incomeStatementHistoryQuarterly'], 'balance': ['balance-sheet', 'balanceSheetHistory', 'balanceSheetHistoryQuarterly', 'balanceSheetStatements'], 'cash': ['cash-flow', 'cashflowStatementHistory', 'cashflowStatementHistoryQuarterly', 'cashflowStatements'], 'keystats': ['key-statistics'], 'history': ['history'], 'profile': ['profile']} \n", "\n", "_BASE_YAHOO_URL \t https://finance.yahoo.com/quote/ \n", "\n", "_INTERVAL_DICT \t {'daily': '1d', 'weekly': '1wk', 'monthly': '1mo'} \n", "\n", "_MIN_INTERVAL \t 7 \n", "\n", "__class__ \t \n", "\n", "__delattr__ \t \n", "\n", "__dict__ \t {'ticker': 'AAPL', 'country': 'US', 'concurrent': False, 'max_workers': 8, 'timeout': 30, 'proxies': None, '_cache': {'https://finance.yahoo.com/quote/AAPL/financials?p=AAPL&lang=en-US®ion=US': {'PageStore': {'currentPageName': 'quote', 'currentEvent': {'eventName': 'NEW_PAGE_SUCCESS'}, 'currentRenderTargetId': 'default', 'pagesConfigRaw': {'base': {'quote': {'layout': {'bundleName': 'yahoodotcom-layout.TwoColumnLayout', 'name': 'TwoColumnLayout', 'config': {'enableHeaderCollapse': True, 'additionalBodyWrapperClasses': 'Bgc($layoutBgColor)!', 'contentWrapperClasses': 'Bgc($lv2BgColor)!', 'Header': {'isFixed': True, 'uhContainerClasses': 'Bgi($uhGrayGradient) D(n)--print', 'navContainerClasses': 'Bgi($navrailGrayGradient) Bxsh($navrailShadow) Pos(r) hasScrolled_Bxsh(headerShadow) Panel-open_Bxsh(headerShadow)', 'navTransitionClasses': 'HideNavrail_Translate3d(0,-46px,0) Panel-open_Translate3d(0,-46px,0)', 'secondaryNavContainerClasses': 'hasScrolled_Bdbw(0px) Bgc($lv3BgColor) Bxsh($navrailShadow) D(n)--print', 'height': 135}, 'fetchNewAttribution': True, 'Col1': {'containerClasses': 'Z(1)'}}, 'meta': {'property': {'twitter:site': '@YahooFinance'}}}, 'meta': {'property': {'twitter:site': '@YahooFinance', 'fb:pages': '458584288257241', 'og:image': 'https://s.yimg.com/cv/apiv2/social/images/yahoo_default_logo.png'}}, 'enablePremium': True, 'isHighValueUser': False, 'enableTrading': True, 'cryptoUser': False, 'videoOverrides': {'enableOathPlayer': True}, 'regions': {'UH': [{'bundleName': 'tdv2-wafer-header.finance', 'name': 'HeaderDesktop', 'perfLabel': 'WaferHeaderDesktop', 'critical': True, 'config': {'logo': {'brandName': 'YAHOO_FINANCE', 'enableHeading': False, 'link': 'https://finance.yahoo.com', 'imageUri': 'https://s.yimg.com/rz/p/yahoo_finance_en-US_s_f_pw_351X40_finance_2x.png', 'theme': {'heading': 'Fz(0) Pstart(15px) Pos(a) Miw(190px)', 'link': 'Bgp(0) Bgr(nr) Bgz(702px) D(b) H(35px) W(92px) Bgz(702px)!--sm1024 Cur(p) Mx(a)', 'linkLabel': 'Hidden'}}, 'mailMenu': {'i13n': {'sec': 'uh', 'subsec': 'mail', 't1': None, 't2': None, 'slk': 'mail', 'elm': 'btn', 'itc': '0'}, 'mailLink': '', 'signInUrl': 'https://login.yahoo.com/config/login?.src=finance&.intl=us&.lang=en-US&.done=https://finance.yahoo.com&activity=uh-mail', 'xhrPathPrefix': '/_finance_doubledown', 'theme': {'button': 'C(#4d00ae) D(b) H(22px) Lh(22px) Py(7px) Pos(r) Td(n)', 'buttonLabel': 'D(ib) Fz(14px) Fw(b) Lh(24px) Pstart(38px)', 'icon': 'Pos(a) T(4px)', 'loadingImage': 'D(b) M(a) P(20px)', 'menuElement': 'D(ib) H(46px) Mstart(14px) Mt(7px) O(n) Va(t)', 'menuPanel': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) P(0) Pos(a) End(0) Trs($fastMenuTransition) V(h) W(382px) active_Mah(478px) active_Op(1) active_V(v)', 'menuPanelSignIn': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) P(0) Pos(a) End(0) Trs($menuTransition) V(h) W(382px) active_Mah(614px) active_Op(1) active_V(v)', 'menuPanelSignedOut': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Bxz(bb) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) Px(24px) Py(20px) Pos(a) End(0) Ta(c) Trs($menuTransition) V(h) W(382px) active_Mah(60px) active_Op(1) active_V(v)', 'menuPanelPromoSignedOut': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Bxz(bb) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) Px(24px) Py(20px) Pos(a) End(0) Ta(c) Trs($menuTransition) V(h) W(382px) active_Mah(172px) active_Op(1) active_V(v)', 'signInLink': 'C(#0078ff) Fw(b) Td(n)', 'promoContainer': 'D(f) Ta(start) Ai(c) Pt(20px) Pb(10px) Pos(r)', 'promoImg': 'W(53px) H(59px) Mend(14px)', 'promoHeader': 'Fz(13px) Fw(b) Mb(0) C($c-fuji-inkwell)', 'promoContent': 'Fz(13px) C(#59636d) Mt(5px) Mb(5px)', 'promoLink': 'Fz(13px) C($c-fuji-smurfette) Fw(b) Td(n)', '_iconColor': '#6001d2', '_iconHeight': '30', '_iconWidth': '30'}}, 'mrt': {'cache': False, 'static': True, 'enableStaticI13nTracking': False}, 'navigationBar': {'enabled': False}, 'notificationMenu': {'enabled': True, 'badge': {'data-wf-state-text': '[state.financeNotification.unreadCount]', 'data-wf-toggle-class': 'stateChange:toggle:D(n)', 'data-wf-state-key': '[state.financeNotification.hideBadge]'}, 'menuPanel': {'data-wf-trigger': 'onLoad', 'data-wf-url': '/_finance_doubledown/remote?m_id=react-finance.rmp&ctrl=NotificationAlert&includeAssets=0&m_mode=json&config=%7B%22mrt%22%3A%7B%22static%22%3Atrue%7D%7D'}, 'theme': {'button': 'Bgc(t) Bd(0) Cur(p) P(10px) H(36px) Pos(r) W(30px)', 'buttonLabel': 'D(ib) Fz(1orpx) Fw(b) Lh(37px) Mstart(6px) Va(t)', 'countWrapper': 'Pos(r) Z(1)', 'count': 'Bg($fujiGradient) Bgc($c-fuji-red-2-b) Bdrs(24px) C(#fff) D(n) Fz(14px) Fw(b) H(17px) Op(.9) Pb(4px) Pt(3px) Pos(a) Start(16px) Ta(c) T(-8px) W(24px) Ff($yahooSansFinanceFont)! wafer-text wafer-toggle', 'icon': 'Pos(a) Start(2px) T(4px)', 'loadingImage': 'D(b) M(a) P(20px)', 'menuElement': 'D(ib) Mx(8px) Va(t) Mt(7px) O(n):f', 'menuPanel': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) Ov(a) P(0) Pos(a) End(0) Trs($fastMenuTransition) V(h) W(382px) active_Mah(478px) active_Op(1) active_V(v) wafer-fetch', 'messageList': 'Fz(13px) List(n) My(0) P(0) W(100%)', 'messageLink': 'C(#000) D(b) Px(24px) Py(16px) Pos(r) Td(n) Bgc(#c2deff):h', 'newMessageIndicator': 'Bgc(#0078ff) Bdrs(10px) H(6px) Pos(a) Start(9px) T(21px) W(6px)', 'messageTimestamp': 'C(#b2b2b2) Fl(end) Fz(12px)', 'messageSender': 'Ell Fw(b)', 'messageSenderRead': 'Ell Fw(n)', 'messageSubject': 'Cl(b) Ell Pt(4px)', 'panelFooterWrapper': 'Bgc(#f9f9f9) Bdrs(6px) Bdtc(#f2f2f2) Bdts(s) Bdtw(1px) Px(24px) Py(20px)', 'composeLink': 'C(#000) Fl(end) Td(n) C(#0078ff):h', 'composeLinkLabel': 'Va(t)', 'inboxLink': 'C(#000) Ta(start) Td(n) C(#0078ff):h', 'errorMessage': 'Px(20px) Py(20px) Ta(c)', '_iconColor': '#6001d2', '_iconHeight': '26'}}, 'profileMenu': {'accountSwitch': {'enabled': True, 'profileLink': 'https://login.yahoo.com/d?.intl=us&.lang=en-US&.src=finance&login=${ALIAS}&as=1', 'i13n': {'sec': 'uh', 'slk': 'acctswitch', 'subsec': 'profile', 'itc': '0'}}, 'i13nSignInBtn': {'sec': 'uh', 'slk': 'acct-info', 'subsec': 'profile', 'itc': '0'}, 'items': [{'id': 'profile-settings-link', 'i13n': {'sec': 'uh', 'slk': 'acct-info', 'subsec': 'profile', 'itc': '0'}, 'label': 'ACCOUNT_INFO', 'link': 'https://login.yahoo.com/account/personalinfo/?.intl=us&.lang=en-US&.src=finance&.done={PAGE_URL}&activity=uh-acctinfo&pspid={PAGE_SPACEID}', 'theme': {'accordionMenu': 'Bgc(t) Bdw(0) C($c-fuji-grey-l)! D(b) Ell Fz(14px) P(0) Pos(r) O(n) Td(n) W(100%) accordionBtn wafer-toggle', 'icon': 'H(45px) Fl(start) Mstart(2px) Ta(c) panelIcon', 'listItem': ' Cl(b) Cur(p) List(n) Pstart(42px) Fz(13px) Pb(5px) Pt(25px) Mt(-40px)', 'listItemButton': 'Bgc(t) Bdw(0) C($c-fuji-grey-l) Cur(p) D(b) Ell Fz(14px) P(0) W(100%)', 'listItemLink': 'C($c-fuji-grey-l) D(b) Ell Td(n) C($c-fuji-blue-1-c):h', 'listItemLabel': 'Fl(start) Pstart(30px) My(15px) panelIcon+Pstart(10px) panelIcon+Mb(0)', '_iconColor': '#6001d2', '_iconHeight': '18'}, 'type': 'SimplePanelItem'}, {'type': 'AccountSwitch'}, {'icon': 'PlusIcon', 'i13n': {'sec': 'uh', 'slk': 'add-acct', 'subsec': 'profile', 'itc': '0'}, 'id': 'profile-accounts-link', 'label': 'ADD_MANAGE_ACCOUNTS', 'link': 'https://login.yahoo.com/manage_account?.intl=us&.lang=en-US&.src=finance&.done={PAGE_URL}&activity=uh-addacct&pspid={PAGE_SPACEID}', 'type': 'SimplePanelItem'}, {'id': 'profile-signout-link', 'icon': 'LogOut', 'i13n': {'sec': 'uh', 'slk': 'usersigno', 'subsec': 'profile', 'itc': '0'}, 'label': 'SIGN_OUT_ALL', 'link': 'https://login.yahoo.com/config/login/?.intl=us&.lang=en-US&.src=finance&logout_all=1&.direct=1&.done=https://www.yahoo.com', 'signedInOnly': True, 'type': 'SimplePanelItem'}], 'signInUrl': 'https://login.yahoo.com/config/login?.src=finance&.intl=us&.lang=en-US&.done={PAGE_URL}&activity=uh-signin', 'simpleSignOut': {'enabled': False}, 'theme': {'accountSwitchItem': 'Bdtc($c-fuji-grey-c) Bdts(s) Bdtw(1px) Cl(b) Cur(p) Bgc(#c2deff):h', 'accountSwitchLink': 'C($c-fuji-grey-l)! D(b) Ell Mstart(18px) Mih(50px) Pb(5px) Pt(15px) Td(n)', 'alias': 'C($c-fuji-grey-8) Ell Fz(13px) Mend(40px) Mstart(54px)', 'downCaret': 'D(b) Fl(end) H(50px) Mend(40px) accordionOpen_D(n)!', 'firstName': 'Ell Fz(15px) Lh(1.4) Mend(40px) Mstart(54px)', 'icon': '', 'listItem': 'Bdtc($c-fuji-grey-c) Bdts(s) Bdtw(1px) Cl(b) Cur(p) Bgc(#c2deff):h', 'listItemLabel': 'Fl(start) Mstart(10px) Mt(15px)', 'menuElement': 'D(ib) H(46px) Mx(14px) O(n) Va(t)', 'menuPanel': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Fz(14px) List(n) Mt(10px) Mih(200px) Op(0) P(0) Pos(a) End(0) Trs($fastMenuTransition) V(h) W(382px) active_Op(1) active_V(v)', 'notifAccordionList': 'D(n) P(0) header-notification-panel accordionOpen_D(b)!', 'profileText': 'D(ib) H(30px) Mstart(55px) Pt(10px) Ta(c)', 'signInButton': 'Bgc(#fff) Bdc($c-fuji-grape-jelly) Bdrs(3px) Bds(s) Bdw(2px) C(#4d00ae) D(ib) Ell Fz(13px) Fw(b) H(19px) Lh(19px) Mend(5px) Mt(10px) Miw(66px) Px(6px) Py(2px) Ta(c) Td(n) active_Bgc($c-fuji-grape-jelly) active_C(#fff)', 'signInLink': 'C($c-fuji-grey-l)! D(b) Ell Mstart(18px) Mih(50px) Pb(0px) Pt(20px) Td(n)', 'signInText': 'Fz(18px) Mend(40px) Mstart(54px) Pt(10px)', 'signOutLink': 'C($c-fuji-grey-l) D(b) Ell My(15px) Mstart(45px) Td(n)', 'simpleSignOutLink': 'Miw(a)', 'upCaret': 'D(n) Fl(end) H(50px) Mend(40px) accordionOpen_D(b)!', 'userAvatar': 'Bgz(cv) Bgr(nr) Bdrs(45%) H(40px) Pos(a) W(40px)', 'button': 'Bgc(t) Bd(0) Cur(p) H(36px) Mend(5px) Mt(5px) Miw(28px) P(0) Pos(r) Z(1)', 'buttonFirstName': 'C(#4d00ae) Ell Fz(14px) Fw(b) Lh(36px) Mstart(42px) Maw(100px)', 'buttonUserAvatar': 'Bgr(nr) Bgz(34px) Bdrs(45%) H(34px) Pos(a) Start(1px) T(2px) W(34px)', 'signInIcon': 'Pos(a)', 'signOutIcon': 'Pos(a) Start(1px) T(4px)', '_iconColor': '#4d00ae', '_iconHeight': '28', '_signInIconColor': '#C0C0C0', '_signInIconDimension': '40'}}, 'skipLinks': {'enabled': True, 'items': [{'label': 'SKIP_TO_NAVIGATION', 'link': 'Nav-0-DesktopNav'}, {'label': 'SKIP_TO_MAIN_CONTENT', 'link': 'market-summary'}, {'label': 'SKIP_TO_RELATED_CONTENT', 'link': 'Aside'}]}, 'topBar': {'enabled': True, 'flexHeight': True, 'i13n': {'sec': 'uh', 't1': None, 't2': None, 't3': None}}, 'webNotifications': {'enabled': False}, 'searchAssist': {'enabled': False}, 'searchBox': {'addFormAttrs': {'data-finsrch': 'researchReports'}, 'i13nForm': {'tar': 'finance.yahoo.com'}, 'i13nSubmitBtn': {'tar': 'finance.yahoo.com'}, 'inputId': 'yfin-usr-qry', 'formAction': '/quote/', 'placeholder': 'UH_SEARCH_WEB', 'searchQueryParam': 'yfin-usr-qry', 'searchExtraQueryParams': [{'name': 'fr', 'value': 'uh3_finance_vert'}, {'name': 'fr2', 'value': 'p:finvsrp,m:sb'}], 'theme': {'form': 'D(tb) H(35px) Pos(r) Va(m) W(100%) finsrch-enable-perf', 'innerWrapper': 'D(tb) W(100%)', 'input': 'Bgc(t) Bd Bdrsbstart(2px)! Bdc(#b0b0b0) Bdendw(0) Bdrs(0) Bdrststart(2px)! Bxsh(n) Bxz(bb) D(b) Fz(15px) H(inh) M(0) O(0) Px(10px) W(100%) Bdc($c-fuji-blue-1-c):f Bdc(#949494):h finsrch-inpt', 'inputLabel': 'Hidden', 'splitLogo': 'Va(m) D(tbc) W(120px)', 'splitLogoLink': 'Mstart(10px) D(ib) H(32px) W(110px) Bgz(221px) Bgr(nr)', 'submitButton': 'Bgc($c-fuji-blue-1-b) Bd(n) Bdrsbend(2px) Bdrstend(2px) D(b) H(100%) M(0) P(0) rapid-noclick-resp W(100%) Bgc($actionBlueHover):h submit-btn finsrch-btn', 'submitButtonWrapper': 'D(tbc) H(100%) Ta(c) Va(t) W(90px)', 'voiceButton': 'Bgc(t) Bd(n) Cur(p) P(0) D(n) O(n)', 'voiceButtonWrapper': 'Pos(a) T(13px) End(92px) Z(2)', 'wrapper': 'H(35px) Mend(396px) Mstart(255px) Maw(647px) Pos(r) Mstart(200px)--sm1024 Va(t)', '_submitIconColor': '#fff'}}, 'theme': {'fixedHeight': 'fixed-space H(127px) modal-open_H(90px) modal-open_Mb($bottomBarHideMargin)', 'flexHeight': 'fixed-space H(85px) modal-open_H(85px) modal-open_Mb($bottomBarHideMargin)', 'innerWrapper': 'Bgc(t) M(a) Maw(1301px) Miw(1000px) Pb(12px) Pt(15px) Pos(r) TranslateZ(0) Z(6)', 'logoWrapper': 'D(tbc) Va(m)', 'menuList': 'End(48px) List(n) Mt(0) Pos(a) T(10px) header-menu', 'profileButtonWrapper': 'D(tbc) Pstart(12px) Va(m)', 'searchButtonWrapper': 'D(tbc) Pstart(14px) Va(m) W(100%)', 'searchScreen': 'Bgc(#fff) D(n) H(100%) Ov(s) Pos(f) Start(0) T(0) W(100%) Z(2) search-open_D(b)', 'wrapper': 'Bgc(t) Bdbc(t) Bdbs(s) Bdbw(1px) D(tb) Pos(f) Tbl(f) W(100%) Z(10) has-scrolled_Bdc($c-fuji-grey-d) Scrolling_Bdc($c-fuji-grey-d) has-scrolled_Bxsh($headerShadow) Scrolling_Bxsh($headerShadow) Bxz(bb) Mx(a) Miw(1007px) Start(0) wafer-rapid-module'}}, 'props': {'key': 'UH-0-HeaderDesktop', 'id': 'UH-0-HeaderDesktop'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'WaferHeaderHelper', 'config': {'inlineFinSearchInit': True, 'mrt': {'static': True, 'enableStaticI13nTracking': False}, 'finSearchConfig': {'researchReportsCount': 2, 'newsCount': 2}}, 'props': {'key': 'UH-1-WaferHeaderHelper', 'id': 'UH-1-WaferHeaderHelper'}, 'isPageComposite': True}], 'Nav': [{'bundleName': 'react-finance', 'name': 'DesktopNav', 'perfLabel': 'NavLite', 'config': {'ui': {'navCache': True, 'remoteAdapter': True, 'makeSticky': False, 'isNavLink': True, 'relativeLinks': True, 'navFont': 'Ff($yahooSansFinanceFont)!', 'headerTitle': 'finance', 'highlightPropertyHome': False, 'dividerClasses': 'H(0)!', 'offsetHack': 'Pt(2px) Bgc(t)!', 'navMainLeftClasses': 'Mend(80px)', 'leftNavClasses': 'Pstart(10px) Mstart(-10px) nr-applet-main-nav-right_Ov(inh)!', 'navTitleClasses': 'Pstart(10px) Mstart(-10px)!', 'linkItemClasses': 'Bgc($linkColor):h W(230px)!', 'subnavLinkClasses': 'Tt(n)! C($primaryColor) C(white)!:h Maw(200px)!', 'darkTheme': False, 'selectColor': 'C($finNavBlueText)! Bdbw(0px) H(42px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'subnavClasses': 'Bgc($lv3BgColor)!', 'hoverColor': 'C($finNavBlueText):h', 'overrideColor': 'C($finNavBlueText)', 'propertyHomeSelectColor': 'Bdbc($linkColor) Bdbs(s)! Bdbw(4px) H(38px)', 'propertyHomeClasses': 'Tt(c)! Bdbc($linkColor):h Bdbs(s):h Bdbw(4px):h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkClasses': 'Tt(n)!', 'navLinkClassesOnHover': 'Bdbc($linkColor)!:h Bdbs(s)!:h Bdbw(4px)!:h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkNonHoverClasses': 'C($topNavLinkGray) Bdbs(n)', 'highlightTriangleColor': 'transparent transparent #fff', 'navMainRightClasses': 'Bdc(t) Bdrs(1.5px) Bdbs(s):h Px(10px)!'}, 'featureSwitches': {'useNavSelectLogic': True, 'disableDivider': True, 'followButtons': False, 'navLogoAlign': False, 'navrailCollapse': False, 'enableHighlightTriangle': True, 'useSubnavTitleSlk': True}, 'i13n': {'itc': 0, 'sec': 'navrail'}, 'site': 'finance', 'mrt': {'static': False}, 'renderSecondaryNav': True, 'defaultRowNum': 10, 'components': {'finance': {'linkWidth': 230, 'linksRight': ['feature_promo']}}, 'linkMeta': {'feature_promo': {'bundles': {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'isPremium': True, 'autoStart': True, 'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'checkStoreBeforeCall': True, 'placement': 'finance-eyebrow-index'}}}}, 'navItems': [{'name': 'Personal Finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}]}]}, 'props': {'key': 'Nav-0-DesktopNav', 'id': 'Nav-0-DesktopNav'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'NavHelper', 'config': {'navItems': [{'name': 'Yahoo Finance Plus', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}, 'requiresPremiumExperience': True}, {'name': 'Screeners', 'children': [{'name': 'Saved Screeners', 'url': 'https://finance.yahoo.com/screener'}, {'name': 'Equity Screener', 'url': 'https://finance.yahoo.com/screener/new'}, {'name': 'Mutual Fund Screener', 'url': 'https://finance.yahoo.com/screener/mutualfund/new'}, {'name': 'ETF Screener', 'url': 'https://finance.yahoo.com/screener/etf/new'}, {'name': 'Futures Screener', 'url': 'https://finance.yahoo.com/screener/future/new'}, {'name': 'Index Screener', 'url': 'https://finance.yahoo.com/screener/index/new'}, {'name': 'Analyst Rating Screener', 'url': 'https://finance.yahoo.com/screener/analyst_ratings/new?ncid=dcm_320339942_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Technical Events Screener', 'url': 'https://finance.yahoo.com/screener/tradingcentral_event/new?ncid=dcm_320544712_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Smart Money Screener', 'url': 'https://finance.yahoo.com/screener/institutional_interest/new?ncid=dcm_320344326_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Top Holdings Screener', 'url': 'https://finance.yahoo.com/screener/institutional_holdings/new?ncid=dcm_320545006_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}], 'requiresPremiumExperience': True}]}, 'props': {'key': 'Nav-1-NavHelper', 'id': 'Nav-1-NavHelper'}, 'isPageComposite': True}], 'SecondaryNav': [{'bundleName': 'react-finance', 'name': 'SecondaryNav', 'config': {'ui': {'enableRelativeUrl': True}}, 'props': {'key': 'SecondaryNav-0-SecondaryNav', 'id': 'SecondaryNav-0-SecondaryNav'}, 'isPageComposite': True}], 'Overlay': [{'bundleName': 'react-lightbox', 'name': 'Lightbox', 'props': {'key': 'Overlay-0-Lightbox', 'id': 'Overlay-0-Lightbox'}, 'isPageComposite': True}, {'bundleName': 'tdv2-applet-swisschamp', 'name': 'Empty', 'props': {'key': 'Overlay-1-Empty', 'id': 'Overlay-1-Empty'}, 'isPageComposite': True}], 'Lead': [{'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'LDRB', 'className': 'D(n)--print', 'style': {'marginBottom': '8px', 'paddingTop': '0px', 'marginLeft': 'auto', 'marginRight': 'auto', 'textAlign': 'center', 'lineHeight': '0px', 'position': 'relative', 'zIndex': '5'}, 'key': 'Lead-0-Ad', 'id': 'Lead-0-Ad'}, 'isPageComposite': True}, {'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'MAST', 'style': {'marginBottom': '8px', 'paddingTop': '10px', 'marginLeft': '20px', 'marginRight': '20px', 'textAlign': 'center', 'position': 'relative', 'zIndex': '5'}, 'key': 'Lead-1-Ad', 'id': 'Lead-1-Ad'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'FinanceHeader', 'props': {'className': 'Bgc($lv2BgColor) Bxz(bb) Ovx(a) Pos(r) Maw($newGridWidth) Miw($minGridWidth) Miw(a)!--tab768 Miw(a)!--tab1024 Mstart(a) Mend(a) Px(20px) Py(10px) D(n)--print', 'showAds': True, 'adsConfig': {'positions': ['FB2A', 'FB2B', 'FB2C', 'FB2D']}, 'key': 'Lead-2-FinanceHeader', 'id': 'Lead-2-FinanceHeader'}, 'isPageComposite': True}, {'bundleName': 'tdv2-applet-featurebar', 'name': 'FeatureBar', 'props': {'useWrapper': True, 'key': 'Lead-3-FeatureBar', 'id': 'Lead-3-FeatureBar'}, 'config': {'ui': {'wrapper_classnames': 'Bgc(white) Pos(r) Bxz(bb) Maw($newGridWidth) Miw($minGridWidth) Miw(a)!--tab768 Miw(a)!--tab1024 Mstart(a) Mend(a) Px(20px) Pb(10px) D(n)--print', 'container_classnames': 'W(100%) Bxz(bb) Bdrs(2px) Maw($maxModuleWidth) Mx(a) D(n)--print', 'prerender': {'enabled': False, 'renderTargetId': 'modal'}, 'link_component': 'WaferLink'}, 'site': 'finance', 'useNCP': True}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'DcmPixelIFrame', 'props': {'src': 'https://s.yimg.com/jk/gtm/gtm_ns.html?id=GTM-K85MQ6N&cat=wlistclk&u1={u1}', 'hashStr': 'AON9sUIjs65VG3Q0JA40l601TPeUJ097', 'iFrameId': 'quote-dcm-pixel-iframe', 'key': 'Lead-4-DcmPixelIFrame', 'id': 'Lead-4-DcmPixelIFrame'}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteHeader', 'props': {'key': 'Lead-5-QuoteHeader', 'id': 'Lead-5-QuoteHeader'}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteNav', 'props': {'key': 'Lead-6-QuoteNav', 'id': 'Lead-6-QuoteNav'}, 'isPageComposite': True}, {'bundleName': 'tdv2-applet-rmp', 'name': 'Rmp', 'config': {'serviceId': 'nel_ms', 'assets': {'name': 'SmartAdDynamicData', 'm_id': 'smart-ad-dynamic-data', 'ctrl': 'SmartAdDynamicData'}, 'endpoint': {'method': 'POST', 'path': '/_rcv/remote', 'query': {'ctrl': 'SmartAdDynamicData', 'm_id': 'smart-ad-dynamic-data'}, 'body': {'m_id': 'smart-ad-dynamic-data', 'ctrl': 'SmartAdDynamicData', 'm_mode': 'json', 'site': 'finance', 'config': {'apiVersion': '2', 'adPositions': ['FB2A', 'FB2B', 'FB2C', 'FB2D', 'LDRB', 'LREC', 'MON', 'LREC2', 'MON2', 'LREC3']}}}, 'enableNonIstioFallback': False, 'httpOptions': {'perfLabel': 'read_smart_dynamic_data_rmp', 'timeout': 1000, 'cacheTTL': 60000, 'fallbackTTL': 3600000, 'fallbackTimeout': 4000, 'cacheEnabled': False}, 'pathParamsToForward': ['symbol']}, 'props': {'key': 'Lead-7-Rmp', 'id': 'Lead-7-Rmp'}, 'isPageComposite': True}], 'Col1': [{'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'LDRB2', 'style': {'marginBottom': '8px', 'marginTop': '8px', 'marginLeft': 'auto', 'marginRight': 'auto', 'textAlign': 'center', 'lineHeight': '0px', 'position': 'relative', 'zIndex': '4'}, 'key': 'Col1-0-Ad', 'id': 'Col1-0-Ad'}, 'isPageComposite': True}, {'bundleName': 'Quote.financials', 'name': 'Financials', 'props': {'key': 'Col1-1-Financials', 'id': 'Col1-1-Financials'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'AdUnitWithTdAds', 'props': {'className': 'ad-foot', 'positions': ['FOOT'], 'key': 'Col1-2-AdUnitWithTdAds', 'id': 'Col1-2-AdUnitWithTdAds'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'AdUnitWithTdAds', 'props': {'className': 'ad-fsrvy', 'positions': ['FSRVY'], 'key': 'Col1-3-AdUnitWithTdAds', 'id': 'Col1-3-AdUnitWithTdAds'}, 'isPageComposite': True}], 'Col2': [{'bundleName': 'td-ads', 'name': 'ComboAd', 'props': {'adparseStyle': {'marginBottom': '20px'}, 'finishedStyle': {'marginBottom': '20px'}, 'children': [{'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'LREC', 'id': 'cmbLREC', 'key': 'cmbLREC'}}, {'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'MON', 'id': 'cmbMON', 'key': 'cmbMON'}}], 'serverHeight': True, 'key': 'Col2-0-ComboAd', 'id': 'Col2-0-ComboAd'}, 'isPageComposite': True}, {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'type': 'eventPromo', 'key': 'Col2-1-MonalixaComponent', 'id': 'Col2-1-MonalixaComponent'}, 'config': {'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'placement': 'finance-desktop-web-qsp-rightrail'}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteModule', 'props': {'type': 'similarCompanies', 'key': 'Col2-2-QuoteModule', 'id': 'Col2-2-QuoteModule'}, 'initMode': {'deferRender': True}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteModule', 'props': {'type': 'earningsChart', 'key': 'Col2-3-QuoteModule', 'id': 'Col2-3-QuoteModule'}, 'initMode': {'deferRender': True}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteModule', 'props': {'type': 'financialsChart', 'key': 'Col2-4-QuoteModule', 'id': 'Col2-4-QuoteModule'}, 'initMode': {'deferRender': True}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'AdUnitWithTdAds', 'props': {'className': 'ad-lrec2', 'positions': ['LREC2'], 'key': 'Col2-5-AdUnitWithTdAds', 'id': 'Col2-5-AdUnitWithTdAds'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'Footer', 'props': {'className': 'Pb(15px)', 'isNewCCPAEnabled': True, 'isCCPAEnabled': True, 'key': 'Col2-6-Footer', 'id': 'Col2-6-Footer'}, 'isPageComposite': True}]}, 'spaceid': 95993639, 'enableRmpAssets': True, 'ads': {'events': {'adFetch': {'ps': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,LREC2,FOOT,FSRVY,TRADENOW', 'firstRender': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,TRADENOW', 'sponsoredAds': '', 'sponsoredAdsClass': ''}, 'AUTO': {'autoDDG': 0, 'groups': {'LREC3': 'LREC3', 'LREC4': None, 'MON2': 'LREC3'}, 'ps': {'MON2': {'autoRT': 10000}}}}, 'deferRender': True, 'positions': {'MAST': {'fclose': 2, 'fdb': {'on': '1', 'where': 'inside'}}, 'MAST-9': {'fclose': 2, 'fdb': {'on': '1', 'where': 'inside'}}}, 'removeFSRVY': True, 'enableAdboost': True, 'adBoostGroupConf': {'LREC3': None, 'LREC4': None, 'MON2': {'extrapositions': ['LREC3']}}}, 'initializeAction': 'initQuotePage', 'enableNewResearchInsights': True, 'enableTemplates': True, 'featureid': 'HF', 'regionOrder': ['UH', 'Nav', 'SecondaryNav', 'Overlay', 'Lead', 'Col1', 'Col2'], '_context': {'pageType': 'quote', 'subscribed': '0', 'enablePremium': '1', 'eventName': '', 'topicName': '', 'category': 'financials', 'quoteType': 'EQUITY', 'calendarType': '', 'screenerType': '', 'inTrial': '0', 'cryptoUser': '', 'enableTrading': '1'}}}, 'headerOverride': {}, 'queryOverride': {}}, 'compositeConfig': {'Nav-0-DesktopNav': {'name': 'Nav-0-DesktopNav', 'components': [{'bundleName': 'tdv2-applet-navrail', 'name': 'DesktopNav', 'config': {'enablePremiumNav': True, 'navItems': [{'name': 'Personal Finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}]}], 'ui': {'navCache': True, 'remoteAdapter': True, 'makeSticky': False, 'isNavLink': True, 'relativeLinks': True, 'navFont': 'Ff($yahooSansFinanceFont)!', 'headerTitle': 'finance', 'highlightPropertyHome': False, 'dividerClasses': 'H(0)!', 'offsetHack': 'Pt(2px) Bgc(t)!', 'navMainLeftClasses': 'Mend(80px)', 'leftNavClasses': 'Pstart(10px) Mstart(-10px) nr-applet-main-nav-right_Ov(inh)!', 'navTitleClasses': 'Pstart(10px) Mstart(-10px)!', 'linkItemClasses': 'Bgc($linkColor):h W(230px)!', 'subnavLinkClasses': 'Tt(n)! C($primaryColor) C(white)!:h Maw(200px)!', 'darkTheme': False, 'selectColor': 'C($finNavBlueText)! Bdbw(0px) H(42px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'subnavClasses': 'Bgc($lv3BgColor)!', 'hoverColor': 'C($finNavBlueText):h', 'overrideColor': 'C($finNavBlueText)', 'propertyHomeSelectColor': 'Bdbc($linkColor) Bdbs(s)! Bdbw(4px) H(38px)', 'propertyHomeClasses': 'Tt(c)! Bdbc($linkColor):h Bdbs(s):h Bdbw(4px):h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkClasses': 'Tt(n)!', 'navLinkClassesOnHover': 'Bdbc($linkColor)!:h Bdbs(s)!:h Bdbw(4px)!:h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkNonHoverClasses': 'C($topNavLinkGray) Bdbs(n)', 'highlightTriangleColor': 'transparent transparent #fff', 'navMainRightClasses': 'Bdc(t) Bdrs(1.5px) Bdbs(s):h Px(10px)!'}, 'featureSwitches': {'useNavSelectLogic': True, 'disableDivider': True, 'followButtons': False, 'navLogoAlign': False, 'navrailCollapse': False, 'enableHighlightTriangle': True, 'useSubnavTitleSlk': True}, 'i13n': {'itc': 0, 'sec': 'navrail'}, 'site': 'finance', 'mrt': {'static': False}, 'renderSecondaryNav': True, 'defaultRowNum': 10, 'components': {'finance': {'linkWidth': 230, 'linksRight': ['feature_promo']}}, 'linkMeta': {'feature_promo': {'bundles': {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'isPremium': True, 'autoStart': True, 'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'checkStoreBeforeCall': True, 'placement': 'finance-eyebrow-index'}}}}}, 'props': {'key': 'Nav-0-DesktopNav-0-DesktopNav', 'id': 'Nav-0-DesktopNav-0-DesktopNav'}}]}, 'Nav-0-DesktopNav-0-DesktopNav-acct-switch': {'name': 'Nav-0-DesktopNav-0-DesktopNav-acct-switch', 'components': [{'bundleName': 'tdv2-applet-account-switch', 'name': 'AccountSwitch', 'config': {'isEnabled': True}, 'props': {'key': 'Nav-0-DesktopNav-0-DesktopNav-acct-switch-0-AccountSwitch', 'id': 'Nav-0-DesktopNav-0-DesktopNav-acct-switch-0-AccountSwitch'}}]}}, 'compositeStatus': {'Nav-0-DesktopNav': 1, 'Nav-0-DesktopNav-0-DesktopNav-acct-switch': 1}, 'pageData': {'title': 'Apple Inc. (AAPL) Income Statement - Yahoo Finance', 'description': 'Get the detailed quarterly/annual income statement for Apple Inc. (AAPL). Find out the revenue, expenses and profit or loss over the last fiscal year.', 'keywords': 'income statement,gross profit,revenue,operating expenses,operating income,net income,earning,earning per share', 'symbol': 'AAPL', 'category': 'financials', 'meta': {'property': {'twitter:site': '@YahooFinance', 'fb:pages': '458584288257241', 'og:image': 'https://s.yimg.com/cv/apiv2/social/images/yahoo_default_logo.png', 'og:description': 'Get the detailed quarterly/annual income statement for Apple Inc. (AAPL). Find out the revenue, expenses and profit or loss over the last fiscal year.', 'og:title': 'Apple Inc. (AAPL) Income Statement - Yahoo Finance', 'twitter:description': 'Get the detailed quarterly/annual income statement for Apple Inc. (AAPL). Find out the revenue, expenses and profit or loss over the last fiscal year.', 'twitter:title': 'Apple Inc. (AAPL) Income Statement - Yahoo Finance', 'al:ios:app_store_id': '328412701', 'al:ios:app_name': 'Yahoo Finance', 'al:android:url': 'intent://quote/AAPL/#Intent;scheme=yfinance;action=android.intent.action.VIEW;package=com.yahoo.mobile.client.android.finance;S.browser_fallback_url=https%3A%2F%2Fplay.google.com%2Fstore%2Fapps%2Fdetails%3Fid%3Dcom.yahoo.mobile.client.android.finance;end', 'al:android:app_name': 'Yahoo Finance', 'al:android:package': 'com.yahoo.mobile.client.android.finance'}, 'name': {'apple-itunes-app': 'app-id=328412701, app-clip-bundle-id=com.yahoo.finance.clip-qsp, affiliate-data=ct=us.fin.mbl.smart-banner&pt=9029, app-argument=https://finance.yahoo.com/quote/AAPL', 'oath:guce:consent-host': 'guce.yahoo.com'}}}, 'spaceid': 95993639, 'status': {'code': 200, 'headers': {'Cache-Control': 'private, no-store, no-cache, max-age=0'}}, 'appConfig': {'timeouts': {'navigate': 10000}, 'spaceid': 1183300002, 'renderTargets': [{'classNames': 'render-target-default Pos(a) W(100%)', 'id': 'default'}, {'classNames': 'render-target-modal O(n)!:f Bdtw(1px) D(n) H(a)! Mih(100%) modal-postopen_Op(1) Pos(a) T(76px) CollapsibleUh_T(60px) Start(0) End(0) Maw(1230px) Miw(984px) Mx(a) modal-open_D(b) modal-postopen_D(b) W(100%) H(100%) Z(9)', 'id': 'modal'}]}, 'routeConfig': {}, 'renderTargets': {'default': {'id': 'default', 'guid': 0, 'classNames': 'render-target-default Pos(a) W(100%)', 'owner': 'app', 'elementId': 'render-target-default', 'url': ''}, 'modal': {'classNames': 'render-target-modal O(n)!:f Bdtw(1px) D(n) H(a)! Mih(100%) modal-postopen_Op(1) Pos(a) T(76px) CollapsibleUh_T(60px) Start(0) End(0) Maw(1230px) Miw(984px) Mx(a) modal-open_D(b) modal-postopen_D(b) W(100%) H(100%) Z(9)', 'id': 'modal', 'guid': 1, 'elementId': 'render-target-modal', 'owner': 'app', 'url': ''}}, 'renderTargetsInited': True}, 'MRTStore': {'mrtConfigRaw': {'app': {'enable': True, 'loadStaticBundles': False}, 'page': {}, 'route': {}}, 'originRenderTargetId': 'default', 'originUrl': '/quote/AAPL/financials?p=AAPL&lang=en-US®ion=US', 'staticComponents': {'UH-0-HeaderDesktop': {'cache': False, 'static': True, 'enableStaticI13nTracking': False}, 'UH-1-WaferHeaderHelper': {'static': True, 'enableStaticI13nTracking': False}}}, 'RouteStore': {'currentNavigate': {'transactionId': 2666920822851578, 'url': '/quote/AAPL/financials?p=AAPL&lang=en-US®ion=US', 'method': 'GET', 'body': {}, 'externalUrl': 'https://finance.yahoo.com/quote/AAPL/financials?p=AAPL&lang=en-US®ion=US', 'route': None, 'error': None, 'isComplete': True}, 'routes': {'status500': {'path': '/__status500', 'method': 'get', 'page': 'status500', 'action': 'loadConfigAndPage'}, 'status404': {'path': '/__status404', 'method': 'get', 'page': 'status404', 'action': 'loadConfigAndPage'}, 'home': {'path': '/', 'method': 'get', 'page': 'home', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'home', 'ver': 'ydotcom'}}}}, 'personalFinance': {'path': '/personal-finance', 'method': 'get', 'page': 'personalFinance', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'personal-finance', 'ver': 'ydotcom'}}}}, 'earnings': {'path': '/topics/:symbol-:quarter-:full(full-year-)?:year-earnings', 'method': 'get', 'page': 'earnings', 'action': 'loadSubscriptionAndConfig', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'earnings', 'ver': 'ydotcom'}}}}, 'shareholdersMeeting': {'path': '/topics/:symbol(yahoo)-:year-shareholders-meeting', 'method': 'get', 'page': 'shareholdersMeeting', 'action': 'loadSubscriptionAndConfig', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'shareholdersmeeting', 'ver': 'ydotcom'}}}}, 'brkLiveStream': {'path': '/:symbol(brk)livestream', 'method': 'get', 'page': 'brkLiveStream', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'initMarketing': False, 'rapid': {'keys': {'pt': 'minihome', 'pct': 'brklivestream', 'pg_name': 'brklivestream', 'ver': 'ydotcom'}}, 'marketing': {'activity_id': 792877}}}, 'liveStream': {'path': '/live/:eventName', 'method': 'get', 'page': 'liveStream', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'initMarketing': False, 'rapid': {'keys': {'pt': 'minihome', 'pct': 'livestream', 'pg_name': ':eventName', 'ver': 'ydotcom'}}, 'marketing': {'activity_id': 792877}}}, 'quote': {'path': '/quote/:symbol/:category?', 'method': 'get', 'page': 'quote', 'action': 'loadQuotePage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'quoteLeaf': {'path': '/__quoteleaf/:symbol/:quoteType/:category', 'method': 'get', 'page': 'quoteLeaf', 'action': 'loadQuotePage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp-leaf', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'quoteLeaf2': {'path': '/__quoteleaf/:symbol/:category', 'method': 'get', 'page': 'quoteLeaf', 'action': 'loadQuotePage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp-leaf', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'quoteECD': {'path': '/__quoteecd/:symbol', 'method': 'get', 'page': 'quoteECD', 'action': 'loadQuotePage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp-ecd', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'quoteECD2': {'path': '/__quoteecd/:symbol', 'method': 'head', 'page': 'quoteECD', 'action': 'loadQuotePage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp-ecd', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'moduleDetails': {'path': '/__moduleDetails/:type/:id', 'method': 'get', 'page': 'moduleDetails', 'action': 'loadConfigAndPage', 'contentSite': 'finance', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'portal-ecd', 'pstcat': ':type', 'pg_name': ':type', 'rvt': ':id', 'ver': 'ydotcom'}}}}, 'companyInsightsWebview': {'path': '/__companyInsights/:symbol/:category', 'method': 'get', 'page': 'companyInsightsWebview', 'action': 'loadQuotePage', 'contentSite': 'finance', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'comp-ins-webview', 'pstcat': ':category', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'fullScreenChart': {'path': '/chart/:symbol', 'method': 'get', 'page': 'fullScreenChartIQ', 'action': 'loadSubscriptionAndConfig', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'chart', 'pstcat': ':quoteType', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'fullScreenChartWebView': {'path': '/__chart/:symbol', 'method': 'get', 'page': 'chartIQWebView', 'action': 'loadSubscriptionAndConfig', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'chart-webview', 'pstcat': ':quoteType', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'embedStockChartWebView': {'path': '/__embed-chart-v1', 'method': 'get', 'page': 'embedChartWebView', 'pageType': 'embedChartWebView', 'action': 'loadConfigAndPage', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'embchart-webview', 'ver': 'ydotcom'}}}}, 'currencies': {'path': '/currencies', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'listName': 'currencies', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'currencies', 'ver': 'ydotcom'}}}, 'spaceid': 2146786654}, 'bonds': {'path': '/bonds', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'bonds', 'ver': 'ydotcom'}}}, 'spaceid': 42328446}, 'trending_tickers': {'path': '/trending-tickers', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'listName': 'trending-tickers', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'trending', 'ver': 'ydotcom'}}}, 'spaceid': 1183331958}, 'world_indices': {'path': '/world-indices', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'listName': 'world-indices', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'indices', 'ver': 'ydotcom'}}}, 'spaceid': 1183331958}, 'commodities': {'path': '/commodities', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'listName': 'commodities', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'commodities', 'ver': 'ydotcom'}}}, 'spaceid': 97327075}, 'recentQuotes': {'path': '/recent-quotes', 'method': 'get', 'page': 'recentlyViewedList', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'recents', 'ver': 'ydotcom'}}}}, 'screenerLanding': {'path': '/screener', 'method': 'get', 'page': 'screener', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'landing'}}}}, 'plusScreenerLanding': {'path': '/screener/predefined-plus', 'method': 'get', 'page': 'plusScreeners', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'plusScreeners'}}}}, 'screenerDetail': {'path': '/screener/:prefix(predefined|unsaved|equity|mutualfund|insider|etf|future|index|analyst_ratings|tradingcentral_event|institutional_interest|institutional_holdings)?/:screenerId', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'rowCount': 25, 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'detail'}}}}, 'screenerDetail2': {'path': '/screener/:prefix(predefined|analyst_ratings|unsaved|equity|mutualfund|insider|etf)?/:screenerId/:view(heatmap)', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'rowCount': 250, 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'detail'}}}}, 'screenerTypesPage': {'path': '/screeners/types', 'method': 'get', 'page': 'screenerTypesPage', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'types'}}}}, 'portfolios': {'path': '/:prefix(__portfoliow|portfolio|portafoglio|cartera|portafolio|portefeuille)s', 'method': 'get', 'page': 'portfolios', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'watchlist', 'pg_name': 'landing', 'ver': 'ydotcom'}}}}, 'portfolioDetail': {'path': '/:prefix(__portfoliow|portfolio|portafoglio|cartera|portafolio|portefeuille)/:pfId', 'method': 'get', 'page': 'portfolioDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'watchlist', 'pg_name': 'detail', 'ver': 'ydotcom'}}}}, 'portfolioDetail2': {'path': '/:prefix(__portfoliow|portfolio|portafoglio|cartera|portafolio|portefeuille)/:pfId/:viewPrefix(view|visualizzazione|ansicht|vista|visualizacao|vue)/:viewId?', 'method': 'get', 'page': 'portfolioDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'watchlist', 'pg_name': 'detail', 'ver': 'ydotcom'}}}}, 'multiQuote': {'path': '/:prefix(quotes|cotizaciones|cotations|quotazioni|kurse)/:quotes', 'method': 'get', 'page': 'multiQuote', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'multiquotes', 'pg_name': 'multiquotes', 'ver': 'ydotcom'}}}}, 'multiQuote2': {'path': '/:prefix(quotes|cotizaciones|cotations|quotazioni|kurse)/:quotes?/:viewPrefix(view|visualizzazione|ansicht|vista|visualizacao|vue)/:viewId?', 'method': 'get', 'page': 'multiQuote', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'multiquotes', 'pg_name': 'multiquotes', 'ver': 'ydotcom'}}}}, 'quoteLookUp': {'path': '/lookup', 'method': 'get', 'page': 'lookup', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'lookUp', 'ver': 'ydotcom', 'pg_name': 'lookup'}}}}, 'quoteLookUpTabs': {'path': '/lookup/:type(all|equity|mutualfund|etf|index|future|currency)', 'method': 'get', 'page': 'lookup', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'lookUp', 'ver': 'ydotcom', 'pg_name': 'lookup'}}}}, 'calendar': {'path': '/calendar/:calendarType(earnings|splits|ipo|economic)?', 'method': 'get', 'page': 'calendar', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'calendar', 'ver': 'ydotcom', 'pg_name': 'earnings'}}}}, 'currencyConverterECD': {'path': '/__currency-converter', 'method': 'get', 'page': 'currencyConverterECD', 'action': 'loadConfigAndPage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'currency-converter-ecd', 'ver': 'ydotcom'}}}}, 'currencyConverter': {'path': '/currency-converter', 'method': 'get', 'page': 'currencyConverter', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'currency-converter', 'ver': 'ydotcom'}}}}, 'cryptoScreener': {'path': '/crypto/:view(heatmap)?', 'underlyingScrId': 'all_cryptocurrencies_us', 'method': 'get', 'page': 'cryptoLanding', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'cryptocurrency', 'pg_name': 'predefined'}}}}, 'most_activeScreener': {'path': '/:screenerId(most-active)/:view(heatmap)?', 'underlyingScrId': 'most_actives', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'most-active', 'pg_name': 'detail'}}}, 'spaceid': 1183331958}, 'gainersScreener': {'path': '/:screenerId(gainers)/:view(heatmap)?', 'underlyingScrId': 'day_gainers', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'gainers', 'pg_name': 'detail'}}}, 'spaceid': 1183331958}, 'losersScreener': {'path': '/:screenerId(losers)/:view(heatmap)?', 'underlyingScrId': 'day_losers', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'losers', 'pg_name': 'detail'}}}, 'spaceid': 1183331958}, 'mutualfundsScreener': {'path': '/:screenerId(mutualfunds)', 'underlyingScrId': 'top_mutual_funds', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'funds', 'pg_name': 'detail'}}}, 'spaceid': 1183331884}, 'etfsScreener': {'path': '/:screenerId(etfs)', 'underlyingScrId': 'top_etfs_us', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'etfs', 'pg_name': 'detail'}}}, 'spaceid': 1183331881}, 'categoryWatchlists': {'path': '/watchlists/category/:categorySlug', 'method': 'get', 'page': 'categoryWatchlists', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'categoryWatchlists', 'pg_name': ':categorySlug', 'ver': 'ydotcom'}}}}, 'watchlists': {'path': '/watchlists', 'method': 'get', 'page': 'watchlists', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'watchlists', 'pg_name': 'watchlists', 'ver': 'ydotcom'}}}}, 'watchlist': {'path': '/u/:provider/watchlists/:watchlistSlug', 'method': 'get', 'page': 'watchlist', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'watchlist', 'pg_name': ':watchlistSlug', 'ver': 'ydotcom'}}}}, 'eventSplash': {'path': '/splash/:eventName', 'method': 'get', 'page': 'eventSplash', 'action': 'loadConfigAndPage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'initMarketing': False, 'rapid': {'keys': {'pt': 'utility', 'pct': 'event-splash', 'pg_name': ':eventName', 'ver': 'ydotcom'}}}}, 'userInsights': {'path': '/user-insights', 'method': 'get', 'page': 'userInsights', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'user-insights', 'pg_name': 'user_insights', 'ver': 'ydotcom'}}}, 'spaceid': 1197811689}, 'secFilingDetail': {'path': '/sec-filing/:symbol/:secFilingId', 'method': 'get', 'page': 'secFilingDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'secFilingDetail', 'pg_name': 'secFilingDetail', 'ver': 'ydotcom'}}}}, 'videos': {'path': '/videos/:alias?', 'method': 'get', 'page': 'videos', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'video', 'pg_name': 'landing', 'ver': 'ydotcom'}}}}, 'videoDetails': {'path': '/show/:showName', 'method': 'get', 'page': 'videoDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'video', 'pg_name': ':showName', 'ver': 'ydotcom'}}}}, 'rates1': {'path': '/rates/auto/insurance/:state(florida|california|texas|newyork|ohio)', 'method': 'get', 'page': 'rates', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'rates', 'pstcat': 'insurance', 'pg_name': 'insurance', 'ver': 'ydotcom'}}}}, 'rates2': {'path': '/rates/:category(auto|home-equity|credit-card|deposit|mortgage)/:subpath(48-month-new-car-loan|60-month-new-car-loan|72-month-new-car-loan|36-month-used-car-loan|48-month-used-car-loan|60-month-used-car-loan|75k-heloc|50k-heloc|30k-heloc|75k-home-equity-loan|50k-home-equity-loan|30k-home-equity-loan|credit-cards-for-bad-credit|instant-approval-credit-cards|cash-back-credit-cards|reward-credit-cards|airline-credit-cards|student-credit-cards|business-credit-cards|balance-transfer-credit-cards|low-interest-credit-cards|credit|bank|type|jumbo-mma|jumbo-cd|ira-mma|savings|10k-mma|mma|2-year-cd|1-year-cd|6-month-cd|5-1-arm-refinance|30-year-jumbo|15-year-fixed-refinance|30-year-fixed-refinance|15-year-fixed|30-year-fixed|insurance)', 'method': 'get', 'page': 'rates', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'rates', 'pstcat': 'loan', 'pg_name': ':category', 'ver': 'ydotcom'}}}}, 'rates3': {'path': '/rates', 'method': 'get', 'page': 'rates', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'rates', 'pg_name': 'rates', 'ver': 'ydotcom'}}}}, 'personalFinanceStream': {'path': '/personal-finance/:eventName', 'method': 'get', 'page': 'personalFinanceStream', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'initMarketing': False, 'rapid': {'keys': {'pt': 'minihome', 'pct': 'personal-finance', 'pg_name': ':eventName', 'ver': 'ydotcom'}}, 'marketing': {'activity_id': 792877}}}, 'topic': {'path': '/:topic(topic|search|news|budget)/(provider-|):topicName([a-zA-Z0-9-%_]+)', 'method': 'get', 'page': 'topic', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pg_name': ':topicName', 'ver': 'ydotcom'}}}}, 'techTopic': {'path': '/tech', 'method': 'get', 'page': 'techTopic', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'tech', 'pg_name': 'tech', 'ver': 'ydotcom'}}}}, 'techSubpage': {'path': '/:listitem(tech|business)/:topicName', 'method': 'get', 'page': 'techSubpage', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': ':topicName', 'pg_name': ':topicName', 'ver': 'ydotcom'}}}}, 'industries': {'path': '/industries', 'method': 'get', 'page': 'industry', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'industries', 'ver': 'ydotcom', 'pg_name': 'industries'}}}, 'spaceid': 1183335957}, 'industry': {'path': '/industries/:sector(all|financial|healthcare|services|utilities|industrial_goods|basic_materials|conglomerates|consumer_goods|technology)', 'method': 'get', 'page': 'industry', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': ':sector', 'ver': 'ydotcom', 'pg_name': 'industry'}}}, 'spaceid': 1183335957}, 'minihomeNews': {'path': '/news', 'method': 'get', 'page': 'minihomeNews', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'news', 'pg_name': 'news', 'ver': 'ydotcom'}}}}, 'optionsOIScreener': {'path': '/options/:screenerId(highest-open-interest)', 'underlyingScrId': '65f51cea-8dc8-4e56-9f99-6ef7720eb69c', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'options_highest_open_interest', 'pg_name': 'detail'}}}, 'spaceid': 1183331888}, 'optionsScreener': {'path': '/options/:screenerId(highest-implied-volatility)', 'underlyingScrId': '671c40b0-5ea8-4063-89b9-9db45bf9edf0', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'options_highest_implied_volatility', 'pg_name': 'detail'}}}, 'spaceid': 1183331888}, 'companySummary': {'path': '/company/:entitySlug', 'method': 'get', 'page': 'companySummary', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'company', 'pg_name': 'summary', 'rvt': ':entitySlug', 'ver': 'ydotcom'}}}}, 'trumponomics': {'path': '/:presidentOmics(trumponomics|bidenomics)', 'method': 'get', 'page': 'trumponomics', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'trumponomics', 'ver': 'ydotcom'}}}}, 'premiumPortalECD': {'path': '/__premium', 'method': 'get', 'page': 'premiumPortalECD', 'action': 'loadPremiumPortalPage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'premium', 'ver': 'ydotcom', 'pg_name': 'premium_portal'}}}}, 'reportDetail': {'path': '/research/:category(reports)/:contentId', 'method': 'get', 'page': 'reportDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'reportDetail', 'pg_name': ':category', 'ver': 'ydotcom'}}}}, 'seo_research': {'path': '/research/:category(stock-forecast)/:symbol', 'method': 'get', 'page': 'research', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'research', 'pg_name': 'landing', 'ver': 'ydotcom'}}}}, 'plusPortal': {'path': '/plus-dashboard', 'method': 'get', 'page': 'plusDashboard', 'action': 'loadPremiumPortalPage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'premium', 'ver': 'ydotcom', 'pg_name': 'premium_portal'}}}}, 'webinar': {'path': '/webinars', 'method': 'get', 'action': 'loadSubscriptionAndConfig', 'page': 'webinar', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'webinar', 'pg_name': 'webinar', 'ver': 'ydotcom'}}}}, 'hub': {'path': '/taxes', 'method': 'get', 'page': 'hub', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance'}, 'portfolioDetailWebView': {'path': '/:prefix(__portfolio)/:pfId/:viewPrefix(view)/:viewId?', 'method': 'get', 'page': 'portfolioDetailWebView', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'pf-webview', 'pstcat': 'watchlist', 'pg_name': 'detail', 'ver': 'ydotcom'}}}}, 'blogpost': {'path': '/blogs/:contentBlog/:alias.html', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'blogpost', 'pageType': 'content', 'renderTarget': 'modal'}, 'cavideo': {'path': '/video/:alias.html', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'cavideo', 'pageType': 'content', 'renderTarget': 'modal'}, 'preview': {'path': '/m/:uuid([a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12})/:alias.html', 'action': 'loadSubscriptionAndConfig', 'contentType': 'story', 'method': 'get', 'page': 'content', 'pageType': 'content', 'renderTarget': 'modal'}, 'slideshow': {'path': '/photos/:alias', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'slideshow', 'pageType': 'content', 'renderTarget': 'modal'}, 'slideshowPhoto': {'path': '/photos/:alias/:photoAlias.html', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'slideshow', 'pageType': 'content', 'renderTarget': 'modal'}, 'story': {'path': '/:prefix(news)/:alias.html', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'story', 'pageType': 'content', 'renderTarget': 'modal'}, 'premiumPortal': {'path': '/premium', 'method': 'get', 'page': 'premiumPortal', 'action': 'loadPremiumPortalPage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'premium', 'ver': 'ydotcom', 'pg_name': 'premium_portal'}}}}, 'research': {'path': '/research/:category(trade-ideas)?', 'method': 'get', 'page': 'research', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'research', 'pg_name': 'landing', 'ver': 'ydotcom'}}}}}}, 'I13nStore': {'appConfig': {'base': {'initComscore': True, 'initRapid': True, 'enableNielsenBeacon': False, 'enablePartneradobeBeacon': False, 'adobeProp53': '', 'enableDeTrackingBeacon': False, 'enableDcmPixel': False, 'rootModelData': {'sec': 'app'}, 'rapid': {'async_all_clicks': True, 'click_timeout': 300, 'client_only': 1, 'compr_type': 'deflate', 'keys': {'ver': 'ydotcom', 'navtype': 'server'}, 'pageview_on_init': True, 'query_parameters': True, 'test_id': '', 'tracked_mods_viewability': [], 'track_right_click': True, 'viewability': True, 'dwell_on': True, 'perf_navigationtime': 2, 'perf_resourcetime': 1, 'webworker_file': '/__rapidworker-1.2.js'}, 'serverPageview': {'enable': True, 'type': 'nonClassified'}, 'secMapping': {'AddSymbolBtn': 'datautility', 'Analyst.PriceTargets': 'qsp-analyst-price-target', 'Analyst.Ratings': 'qsp-recom-trends', 'Analyst.RecommendationRating': 'qsp-recom-rating', 'Analyst.UpgradeDowngradeHistory': 'analyst-history', 'AnalystsUpsell': 'analysts-upsell', 'AssetProfile': 'qsp-assetprofile', 'BrokerCenter': 'brokercenter-landingpage-table', 'CalCarousel': 'cal-carousel', 'CalDatePicker': 'cal-date-picker', 'CalEvents': 'cal-evnts', 'CalTable': 'cal-table', 'ChartIQChartType': 'chartiq-chart_type', 'ChartIQComparison': 'chartiq-comparison', 'ChartIQDrawingTool': 'chartiq-drawing-tool', 'ChartIQInterval': 'chartiq-interval', 'ChartIQLegend': 'chartiq-legend', 'ChartIQRange': 'chartiq-range', 'ChartIQEvents': 'chartiq-events', 'ChartIQShare': 'chartiq-social-share', 'ColorPicker': 'color-picker', 'CompanyInsights': 'company-insights', 'company-insights': 'company-insights', 'corporate-events': 'company-insights-corp', 'research-reports': 'company-insights-research', 'fair-value': 'company-insights-fair', 'dividends': 'company-insights-divid', 'innovation': 'company-insights-innov', 'hiring-trends': 'company-insights-hiring', 'insider-sentiment': 'company-insights-sentiment', 'CompanyProfile': 'qsp-profile', 'CompanySnapshot': 'company-snapshot', 'ColumnItemEditorial': 'editorial-news', 'ColumnItemImage': 'editorial-image', 'ColumnItemLatestNews': 'latest-news', 'ColumnItem.Featured': 'featured-news-item', 'CommunityProfile': 'community-profile', 'Company': 'company', 'Company360': 'company360', 'Company360Drilldown': 'company360-drilldown', 'CryptoAbout': 'crypto-about', 'CryptoAccountManagement': 'crypto-acct-mgmt', 'CryptoDeactivate': 'crypto-deactivate', 'CryptoDeposit': 'crypto-deposit', 'CryptoWithdrawal': 'crypto-withdrawal', 'CryptoHome': 'crypto-home', 'CryptoKYC': 'crypto-create-account', 'CryptoPortfolio': 'crypto-portfolio', 'CryptoPortfolioFinTab': 'crypto-fin-subtab', 'CryptoTradable': 'crypto-tradable', 'CryptoTrade': 'crypto-trade', 'CuratedWatchlists': 'curated-watchlists', 'CWLCategoryTable': 'cwl-category', 'CWLDetail': 'cwl-detail', 'Earnings': 'earnings', 'EditorialNews': 'editorial-news', 'ColumnItem.Video': 'editorial-video', 'CorporateGovernance': 'qsp-corporate', 'CustomColumns': 'toolbar', 'DataUtility': 'datautility', 'DataUtilityHeader': 'datautility-hdr', 'EarningsRevenueBarChart': 'qsp-revenue-chart', 'EarningsScatterChart': 'qsp-earnings-chart', 'ESGMiniScore': 'qsp-esg-mini-score', 'EditColumns': 'toolbar', 'Sustainability.PeerScoresTable': 'sustainability-peer-scores-table', 'EventPromo': 'event-promo', 'FeaturePromo': 'feature-promo', 'FinancialsLeafPage': 'qsp-financials', 'FinancialStatement': 'qsp-statement', 'Footer': 'footer', 'FredHistoricalDataTable': 'fred-qsp-historical', 'FullScreenChart': 'chart', 'FullScreenChartMW': 'fullscreen-chart-mw', 'FuturesChain': 'futures-chain', 'Following': 'megathon-follow', 'HistoricalDataTable': 'qsp-historical', 'Holders': 'qsp-holders', 'Holders.Insiders': 'qsp-insiders', 'Holders.InsiderTransaction': 'qsp-insider-transaction', 'Holders.InsiderRoster': 'qsp-insider-roster', 'Holders.Summary': 'qsp-holdings', 'IndexComponents': 'top-components', 'IndustryLanding': 'industry-landing', 'KeyStatistics': 'qsp-key-stats', 'KeyStatisticsLeafPage': 'qsp-keystatistics', 'LineWidthSelector': 'line-width-selector', 'MarketDataTable': 'datautility', 'MarketSummary': 'mrkt-sum', 'MarketSummaryItem': 'mrkt-sum', 'MustRead': 'must-read', 'NewsStreamMyQuoteNews': 'my-quote-news-stream', 'NewsSummary': 'news-summary', 'MyMarketNews': 'my-quote-news', 'MarketNews': 'market-news', 'OptionContracts': 'qsp-options', 'OptionContractsTable': 'qsp-option-table', 'OptionContract:ResultItem': 'qsp-options', 'OptOutBtn': 'opt-out', 'PortfolioBreadcrumb': 'pf-breadcrumb', 'PortfolioControls': 'pf-controls', 'PortfolioHeader': 'pf-summary', 'PortfolioNewsStream': 'pf-news', 'PortfolioTable': 'pf-table', 'PortfolioToolbar': 'toolbar', 'PositionRow': 'datautility', 'PlusDashboard': 'plus-dashboard', 'PremiumPortal': 'prm-prtl', 'PremiumPromoHeader': 'prm-prmo-hdr', 'PremiumPromoFooter': 'prm-prmo-ftr', 'PressRelease': 'press-releases', 'QSP.FeaturedNews': 'qsp-featured-news', 'QSPSubNav': 'qsp-subnav', 'QSP.News': 'qsp-news', 'QSP.Section': 'qsp-section', 'QSPAddToWatchlist': 'qsp-hdr', 'Quote': 'qsp', 'QuoteContainer': 'qsp', 'QuoteHeader': 'quote-header', 'QuoteNews': 'quote-news', 'QuotesNews': 'quotes-news', 'QuotePill': 'quote-pill', 'QuoteRelated': 'qsp-related', 'QuoteRelatedVideo': 'related-video', 'QuoteSearchAd': 'qsp-search-ad', 'RecommendationsBySymbol': 'recommended-symbols', 'RecommendationsBySymbolSimilar': 'similar-symbols', 'ReportDetail': 'report-detail', 'Research': 'research', 'ResearchInsights': 'research-insights', 'QSPResearchReports': 'qsp-research-reports', 'ScreenerLanding': 'screener-landing', 'ScreenerPlusList': 'screener-plus-list', 'ScreenerCriteria': 'screener-criteria', 'ScreenerFilter': 'screener-filter', 'ScreenerNewFilter': 'screener-new-filter', 'ScreenerResults': 'screener-results', 'ScreenerSaveModal': 'screener-save-modal', 'ScreenerShare': 'screener-share', 'SecFilings': 'qsp-filings', 'SymbolRemoval': 'datautility', 'VideosLeftNav': 'videos-left-nav', 'SwitchVideo': 'video-switch', 'TableHead': 'datautility', 'TableRow': 'datautility', 'TickerNews': 'ticker-news', 'Trumponomics': 'trumponomics', 'UserInsights': 'user-insights', 'Virgo:ResultItem': 'chart', 'VideoPlayerWithLangSelector': 'video-player', 'YFinListTable': 'yfin-list-table'}, 'enableConsentData': True}}, 'comscoreC7Keyword': '', 'currentUrl': '/quote/AAPL/financials?p=AAPL&lang=en-US®ion=US', 'i13nConfig': {'initComscore': True, 'initRapid': True, 'enableNielsenBeacon': False, 'enablePartneradobeBeacon': False, 'adobeProp53': '', 'enableDeTrackingBeacon': False, 'enableDcmPixel': False, 'rootModelData': {'sec': 'app'}, 'rapid': {'async_all_clicks': True, 'click_timeout': 300, 'client_only': 1, 'compr_type': 'deflate', 'keys': {'ver': 'ydotcom', 'navtype': 'server', 'pt': 'utility', 'pct': 'qsp', 'pstcat': 'equities', 'pg_name': 'financials', 'rvt': 'AAPL', 'ticker': 'AAPL', 'pl1': 'us_market', 'pl2': 'NMS', 'mrkt': 'us', 'site': 'finance', 'lang': 'en-US', 'colo': 'bf1', '_yrid': '28rf3jhhu29if', '_rid': '28rf3jhhu29if', 'abk': ''}, 'pageview_on_init': True, 'query_parameters': True, 'test_id': 'finance-US-en-US-def', 'tracked_mods_viewability': [], 'track_right_click': True, 'viewability': True, 'dwell_on': True, 'perf_navigationtime': 2, 'perf_resourcetime': 1, 'webworker_file': '/__rapidworker-1.2.js', 'spaceid': 95993639}, 'serverPageview': {'enable': True, 'type': 'nonClassified'}, 'secMapping': {'AddSymbolBtn': 'datautility', 'Analyst.PriceTargets': 'qsp-analyst-price-target', 'Analyst.Ratings': 'qsp-recom-trends', 'Analyst.RecommendationRating': 'qsp-recom-rating', 'Analyst.UpgradeDowngradeHistory': 'analyst-history', 'AnalystsUpsell': 'analysts-upsell', 'AssetProfile': 'qsp-assetprofile', 'BrokerCenter': 'brokercenter-landingpage-table', 'CalCarousel': 'cal-carousel', 'CalDatePicker': 'cal-date-picker', 'CalEvents': 'cal-evnts', 'CalTable': 'cal-table', 'ChartIQChartType': 'chartiq-chart_type', 'ChartIQComparison': 'chartiq-comparison', 'ChartIQDrawingTool': 'chartiq-drawing-tool', 'ChartIQInterval': 'chartiq-interval', 'ChartIQLegend': 'chartiq-legend', 'ChartIQRange': 'chartiq-range', 'ChartIQEvents': 'chartiq-events', 'ChartIQShare': 'chartiq-social-share', 'ColorPicker': 'color-picker', 'CompanyInsights': 'company-insights', 'company-insights': 'company-insights', 'corporate-events': 'company-insights-corp', 'research-reports': 'company-insights-research', 'fair-value': 'company-insights-fair', 'dividends': 'company-insights-divid', 'innovation': 'company-insights-innov', 'hiring-trends': 'company-insights-hiring', 'insider-sentiment': 'company-insights-sentiment', 'CompanyProfile': 'qsp-profile', 'CompanySnapshot': 'company-snapshot', 'ColumnItemEditorial': 'editorial-news', 'ColumnItemImage': 'editorial-image', 'ColumnItemLatestNews': 'latest-news', 'ColumnItem.Featured': 'featured-news-item', 'CommunityProfile': 'community-profile', 'Company': 'company', 'Company360': 'company360', 'Company360Drilldown': 'company360-drilldown', 'CryptoAbout': 'crypto-about', 'CryptoAccountManagement': 'crypto-acct-mgmt', 'CryptoDeactivate': 'crypto-deactivate', 'CryptoDeposit': 'crypto-deposit', 'CryptoWithdrawal': 'crypto-withdrawal', 'CryptoHome': 'crypto-home', 'CryptoKYC': 'crypto-create-account', 'CryptoPortfolio': 'crypto-portfolio', 'CryptoPortfolioFinTab': 'crypto-fin-subtab', 'CryptoTradable': 'crypto-tradable', 'CryptoTrade': 'crypto-trade', 'CuratedWatchlists': 'curated-watchlists', 'CWLCategoryTable': 'cwl-category', 'CWLDetail': 'cwl-detail', 'Earnings': 'earnings', 'EditorialNews': 'editorial-news', 'ColumnItem.Video': 'editorial-video', 'CorporateGovernance': 'qsp-corporate', 'CustomColumns': 'toolbar', 'DataUtility': 'datautility', 'DataUtilityHeader': 'datautility-hdr', 'EarningsRevenueBarChart': 'qsp-revenue-chart', 'EarningsScatterChart': 'qsp-earnings-chart', 'ESGMiniScore': 'qsp-esg-mini-score', 'EditColumns': 'toolbar', 'Sustainability.PeerScoresTable': 'sustainability-peer-scores-table', 'EventPromo': 'event-promo', 'FeaturePromo': 'feature-promo', 'FinancialsLeafPage': 'qsp-financials', 'FinancialStatement': 'qsp-statement', 'Footer': 'footer', 'FredHistoricalDataTable': 'fred-qsp-historical', 'FullScreenChart': 'chart', 'FullScreenChartMW': 'fullscreen-chart-mw', 'FuturesChain': 'futures-chain', 'Following': 'megathon-follow', 'HistoricalDataTable': 'qsp-historical', 'Holders': 'qsp-holders', 'Holders.Insiders': 'qsp-insiders', 'Holders.InsiderTransaction': 'qsp-insider-transaction', 'Holders.InsiderRoster': 'qsp-insider-roster', 'Holders.Summary': 'qsp-holdings', 'IndexComponents': 'top-components', 'IndustryLanding': 'industry-landing', 'KeyStatistics': 'qsp-key-stats', 'KeyStatisticsLeafPage': 'qsp-keystatistics', 'LineWidthSelector': 'line-width-selector', 'MarketDataTable': 'datautility', 'MarketSummary': 'mrkt-sum', 'MarketSummaryItem': 'mrkt-sum', 'MustRead': 'must-read', 'NewsStreamMyQuoteNews': 'my-quote-news-stream', 'NewsSummary': 'news-summary', 'MyMarketNews': 'my-quote-news', 'MarketNews': 'market-news', 'OptionContracts': 'qsp-options', 'OptionContractsTable': 'qsp-option-table', 'OptionContract:ResultItem': 'qsp-options', 'OptOutBtn': 'opt-out', 'PortfolioBreadcrumb': 'pf-breadcrumb', 'PortfolioControls': 'pf-controls', 'PortfolioHeader': 'pf-summary', 'PortfolioNewsStream': 'pf-news', 'PortfolioTable': 'pf-table', 'PortfolioToolbar': 'toolbar', 'PositionRow': 'datautility', 'PlusDashboard': 'plus-dashboard', 'PremiumPortal': 'prm-prtl', 'PremiumPromoHeader': 'prm-prmo-hdr', 'PremiumPromoFooter': 'prm-prmo-ftr', 'PressRelease': 'press-releases', 'QSP.FeaturedNews': 'qsp-featured-news', 'QSPSubNav': 'qsp-subnav', 'QSP.News': 'qsp-news', 'QSP.Section': 'qsp-section', 'QSPAddToWatchlist': 'qsp-hdr', 'Quote': 'qsp', 'QuoteContainer': 'qsp', 'QuoteHeader': 'quote-header', 'QuoteNews': 'quote-news', 'QuotesNews': 'quotes-news', 'QuotePill': 'quote-pill', 'QuoteRelated': 'qsp-related', 'QuoteRelatedVideo': 'related-video', 'QuoteSearchAd': 'qsp-search-ad', 'RecommendationsBySymbol': 'recommended-symbols', 'RecommendationsBySymbolSimilar': 'similar-symbols', 'ReportDetail': 'report-detail', 'Research': 'research', 'ResearchInsights': 'research-insights', 'QSPResearchReports': 'qsp-research-reports', 'ScreenerLanding': 'screener-landing', 'ScreenerPlusList': 'screener-plus-list', 'ScreenerCriteria': 'screener-criteria', 'ScreenerFilter': 'screener-filter', 'ScreenerNewFilter': 'screener-new-filter', 'ScreenerResults': 'screener-results', 'ScreenerSaveModal': 'screener-save-modal', 'ScreenerShare': 'screener-share', 'SecFilings': 'qsp-filings', 'SymbolRemoval': 'datautility', 'VideosLeftNav': 'videos-left-nav', 'SwitchVideo': 'video-switch', 'TableHead': 'datautility', 'TableRow': 'datautility', 'TickerNews': 'ticker-news', 'Trumponomics': 'trumponomics', 'UserInsights': 'user-insights', 'Virgo:ResultItem': 'chart', 'VideoPlayerWithLangSelector': 'video-player', 'YFinListTable': 'yfin-list-table'}, 'enableConsentData': True}, 'pageConfig': {'headerOverride': None}, 'routeConfig': {'base': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'runtimeConfig': {'rapid': {'keys': {'rvt': 'AAPL', 'ticker': 'AAPL', 'pl1': 'us_market', 'pl2': 'NMS', 'pstcat': 'equities', 'pg_name': 'financials'}}}}, 'PageTransitionStore': {'_appConfig': {'pageTransition': {'enabled': True, 'handleSameTarget': False, 'pluginName': 'modal-fade'}}, '_currentRoute': {'path': '/quote/:symbol/:category?', 'method': 'get', 'page': 'quote', 'action': 'loadQuotePage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}, 'name': 'quote', 'url': '/quote/AAPL/financials?p=AAPL&lang=en-US®ion=US', 'params': {'symbol': 'AAPL', 'category': 'financials', 'quoteType': 'EQUITY', 'subscribed': '0', 'inTrial': '0', 'enablePremium': '1', 'enableTrading': '1'}, 'query': {'lang': 'en-US', 'p': 'AAPL', 'region': 'US'}}, '_currentRenderTarget': {'referrer': {'route': {}}, 'id': 'default', 'guid': 0, 'classNames': 'render-target-default', 'owner': 'app', 'elementId': 'render-target-default', 'url': ''}, '_renderTargets': {'default': {'referrer': {'route': {}}, 'id': 'default', 'guid': 0, 'classNames': 'render-target-default', 'owner': 'app', 'elementId': 'render-target-default', 'url': ''}}}, 'VideoPlayerStore': {'_config': {'docking': {'enableOnScrollDown': False, 'enableOnScrollUp': False, 'fadeInAnimation': True, 'position': {'left': 'ref', 'right': 0, 'bottom': 45}, 'ref': '.modal-open .render-target-modal .modalRight', 'width': 300, 'height': 168.75, 'threshold': 60, 'enableOnMuted': True, 'showInfoCard': False}, 'enableRestoreOnNavigate': True, 'enableUndockOnNavigate': True, 'refreshDockingOnNavigate': True, 'totalInactivePlayers': 10, 'videoClickSrc': ['video-click', 'startScreen']}, '_playerConfig': {}}, 'QuoteAutoCompleteStore': {'clear': True}, 'NavrailStore': {'showNavrail': False, 'navTitle': 'finance', 'navSections': '', 'currentUrl': '/quote/AAPL/financials?p=AAPL&lang=en-US®ion=US', 'pageType': {}, 'navSectionsDisplayTitle': {}, 'site': 'finance'}, 'StreamDataStore': {'quoteData': {'^TNX': {'sourceInterval': 30, 'exchange': 'NYB', 'regularMarketTime': {'raw': 1675698889, 'fmt': '10:54AM EST'}, 'shortName': '10-Yr Bond', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0.085999966, 'fmt': '0.0860'}, 'regularMarketPreviousClose': {'raw': 3.532, 'fmt': '3.5320'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 10, 'customPriceAlertConfidence': 'LOW', 'priceHint': 4, 'regularMarketPrice': {'raw': 3.618, 'fmt': '3.6180'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': -252356400000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^TNX', 'language': 'en-US', 'market': 'us24_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 2.43488, 'fmt': '2.43%'}, 'fullExchangeName': 'ICE Futures', 'tradeable': False}, 'AMZN': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 102.925, 'fmt': '102.93'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699790, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '81.43 - 170.8315', 'fmt': '81.43 - 170.83'}, 'sharesOutstanding': {'raw': 10201700352, 'fmt': '10.202B', 'longFmt': '10,201,700,352'}, 'regularMarketDayHigh': {'raw': 103.9484, 'fmt': '103.95'}, 'shortName': 'Amazon.com, Inc.', 'longName': 'Amazon.com, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -1.8150024, 'fmt': '-1.82'}, 'regularMarketPreviousClose': {'raw': 103.39, 'fmt': '103.39'}, 'fiftyTwoWeekHighChange': {'raw': -69.2565, 'fmt': '-69.26'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 20.144997, 'fmt': '20.14'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 100.65, 'fmt': '100.65'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 101.575, 'fmt': '101.57'}, 'regularMarketVolume': {'raw': 34760911, 'fmt': '34.761M', 'longFmt': '34,760,911'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 863703000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1036237668352, 'fmt': '1.036T', 'longFmt': '1,036,237,668,352'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'AMZN', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.24739036, 'fmt': '24.74%'}, 'regularMarketDayRange': {'raw': '100.65 - 103.9484', 'fmt': '100.65 - 103.95'}, 'messageBoardId': 'finmb_18749', 'fiftyTwoWeekHigh': {'raw': 170.8315, 'fmt': '170.83'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.40540826, 'fmt': '-40.54%'}, 'uuid': '261fd26b-0151-3813-b0d0-97e4ed4c6505', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 81.43, 'fmt': '81.43'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.7554913, 'fmt': '-1.76%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'GOOG': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 102.685, 'fmt': '102.68'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699788, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '83.45 - 144.1625', 'fmt': '83.45 - 144.16'}, 'sharesOutstanding': {'raw': 5968000000, 'fmt': '5.968B', 'longFmt': '5,968,000,000'}, 'regularMarketDayHigh': {'raw': 104.69, 'fmt': '104.69'}, 'shortName': 'Alphabet Inc.', 'longName': 'Alphabet Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.5699997, 'fmt': '-2.57'}, 'regularMarketPreviousClose': {'raw': 105.22, 'fmt': '105.22'}, 'fiftyTwoWeekHighChange': {'raw': -41.512505, 'fmt': '-41.51'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 19.200005, 'fmt': '19.20'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 102.21, 'fmt': '102.21'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 102.65, 'fmt': '102.65'}, 'regularMarketVolume': {'raw': 9844592, 'fmt': '9.845M', 'longFmt': '9,844,592'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1092922200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1311702777856, 'fmt': '1.312T', 'longFmt': '1,311,702,777,856'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'GOOG', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.23007795, 'fmt': '23.01%'}, 'regularMarketDayRange': {'raw': '102.21 - 104.69', 'fmt': '102.21 - 104.69'}, 'messageBoardId': 'finmb_29096', 'fiftyTwoWeekHigh': {'raw': 144.1625, 'fmt': '144.16'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.28795633, 'fmt': '-28.80%'}, 'uuid': 'ee8cce8c-2475-31c0-8436-ecdf889cbfbd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 83.45, 'fmt': '83.45'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -2.442501, 'fmt': '-2.44%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'NFLX': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 363.642, 'fmt': '363.64'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699786, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '162.71 - 412.98', 'fmt': '162.71 - 412.98'}, 'sharesOutstanding': {'raw': 445347008, 'fmt': '445.347M', 'longFmt': '445,347,008'}, 'regularMarketDayHigh': {'raw': 368.45, 'fmt': '368.45'}, 'shortName': 'Netflix, Inc.', 'longName': 'Netflix, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.7799072, 'fmt': '-2.78'}, 'regularMarketPreviousClose': {'raw': 365.9, 'fmt': '365.90'}, 'fiftyTwoWeekHighChange': {'raw': -49.859924, 'fmt': '-49.86'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 200.41008, 'fmt': '200.41'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 360.7, 'fmt': '360.70'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 363.1201, 'fmt': '363.12'}, 'regularMarketVolume': {'raw': 1893254, 'fmt': '1.893M', 'longFmt': '1,893,254'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1022160600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 161714438144, 'fmt': '161.714B', 'longFmt': '161,714,438,144'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'NFLX', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 1.231701, 'fmt': '123.17%'}, 'regularMarketDayRange': {'raw': '360.7 - 368.45', 'fmt': '360.70 - 368.45'}, 'messageBoardId': 'finmb_32012', 'fiftyTwoWeekHigh': {'raw': 412.98, 'fmt': '412.98'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.120732054, 'fmt': '-12.07%'}, 'uuid': '1a1cddac-4d41-374d-b202-739314177b67', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 162.71, 'fmt': '162.71'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.75974506, 'fmt': '-0.76%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'KOSS': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.82, 'fmt': '5.82'}, 'exchange': 'NCM', 'regularMarketTime': {'raw': 1675697530, 'fmt': '10:32AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.44 - 12.86', 'fmt': '4.44 - 12.86'}, 'sharesOutstanding': {'raw': 9189800, 'fmt': '9.19M', 'longFmt': '9,189,800'}, 'regularMarketDayHigh': {'raw': 5.88, 'fmt': '5.88'}, 'shortName': 'Koss Corporation', 'longName': 'Koss Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0.01999998, 'fmt': '0.02'}, 'regularMarketPreviousClose': {'raw': 5.8, 'fmt': '5.80'}, 'fiftyTwoWeekHighChange': {'raw': -7.0399995, 'fmt': '-7.04'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1.3800001, 'fmt': '1.38'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.8, 'fmt': '5.80'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.82, 'fmt': '5.82'}, 'regularMarketVolume': {'raw': 2746, 'fmt': '2,746', 'longFmt': '2,746'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 322151400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 53484636, 'fmt': '53.485M', 'longFmt': '53,484,636'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'KOSS', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.31081083, 'fmt': '31.08%'}, 'regularMarketDayRange': {'raw': '5.8 - 5.88', 'fmt': '5.80 - 5.88'}, 'messageBoardId': 'finmb_283448', 'fiftyTwoWeekHigh': {'raw': 12.86, 'fmt': '12.86'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.54743385, 'fmt': '-54.74%'}, 'uuid': 'ad708ee0-5672-30f5-85f6-bbbcb3e0eccd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.44, 'fmt': '4.44'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.34482723, 'fmt': '0.34%'}, 'fullExchangeName': 'NasdaqCM', 'tradeable': False}, '^N225': {'sourceInterval': 20, 'quoteSourceName': 'Delayed Quote', 'exchange': 'OSA', 'regularMarketTime': {'raw': 1675664103, 'fmt': '3:15PM JST'}, 'shortName': 'Nikkei 225', 'exchangeTimezoneName': 'Asia/Tokyo', 'regularMarketChange': {'raw': 184.18945, 'fmt': '184.19'}, 'regularMarketPreviousClose': {'raw': 27509.46, 'fmt': '27,509.46'}, 'exchangeTimezoneShortName': 'JST', 'exchangeDataDelayedBy': 20, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 27693.65, 'fmt': '27,693.65'}, 'triggerable': False, 'gmtOffSetMilliseconds': 32400000, 'firstTradeDateMilliseconds': -157420800000, 'region': 'US', 'marketState': 'PREPRE', 'quoteType': 'INDEX', 'symbol': '^N225', 'language': 'en-US', 'market': 'jp_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.6695495, 'fmt': '0.67%'}, 'fullExchangeName': 'Osaka', 'tradeable': False}, 'GC=F': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CMX', 'regularMarketTime': {'raw': 1675699191, 'fmt': '10:59AM EST'}, 'shortName': 'Gold', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 2.4000244, 'fmt': '2.40'}, 'regularMarketPreviousClose': {'raw': 1862.9, 'fmt': '1,862.90'}, 'contractSymbol': False, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 10, 'customPriceAlertConfidence': 'NONE', 'regularMarketPrice': {'raw': 1879, 'fmt': '1,879.00'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 967608000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'FUTURE', 'symbol': 'GC=F', 'language': 'en-US', 'headSymbol': True, 'headSymbolAsString': 'GC=F', 'market': 'us24_market', 'typeDisp': 'Futures', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.12789217, 'fmt': '0.13%'}, 'fullExchangeName': 'COMEX', 'tradeable': False}, 'META': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 186.53, 'fmt': '186.53'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699788, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '88.09 - 238.3', 'fmt': '88.09 - 238.30'}, 'sharesOutstanding': {'raw': 2255320064, 'fmt': '2.255B', 'longFmt': '2,255,320,064'}, 'regularMarketDayHigh': {'raw': 190.7, 'fmt': '190.70'}, 'shortName': 'Meta Platforms, Inc.', 'longName': 'Meta Platforms, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 1.6800079, 'fmt': '1.68'}, 'regularMarketPreviousClose': {'raw': 186.53, 'fmt': '186.53'}, 'fiftyTwoWeekHighChange': {'raw': -50.089996, 'fmt': '-50.09'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 100.12001, 'fmt': '100.12'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 185.8, 'fmt': '185.80'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 188.21, 'fmt': '188.21'}, 'regularMarketVolume': {'raw': 17709651, 'fmt': '17.71M', 'longFmt': '17,709,651'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1337347800000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 493524287488, 'fmt': '493.524B', 'longFmt': '493,524,287,488'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'META', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 1.1365651, 'fmt': '113.66%'}, 'regularMarketDayRange': {'raw': '185.8 - 190.7', 'fmt': '185.80 - 190.70'}, 'messageBoardId': 'finmb_20765463', 'fiftyTwoWeekHigh': {'raw': 238.3, 'fmt': '238.30'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.21019721, 'fmt': '-21.02%'}, 'uuid': 'e59f1c4f-b1aa-3d70-a8c3-eb59ff3e461b', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 88.09, 'fmt': '88.09'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.9006637, 'fmt': '0.90%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, '^DJI': {'sourceInterval': 120, 'quoteSourceName': 'Free Realtime Quote', 'exchange': 'DJI', 'regularMarketTime': {'raw': 1675699791, 'fmt': '11:09AM EST'}, 'shortName': 'Dow 30', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -102.77344, 'fmt': '-102.77'}, 'regularMarketPreviousClose': {'raw': 33926.01, 'fmt': '33,926.01'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 33823.24, 'fmt': '33,823.24'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 694362600000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^DJI', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.30293405, 'fmt': '-0.30%'}, 'fullExchangeName': 'DJI', 'tradeable': False}, 'GPRO': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.64, 'fmt': '5.64'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699789, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.5 - 9.42', 'fmt': '4.50 - 9.42'}, 'sharesOutstanding': {'raw': 129668000, 'fmt': '129.668M', 'longFmt': '129,668,000'}, 'regularMarketDayHigh': {'raw': 5.76, 'fmt': '5.76'}, 'shortName': 'GoPro, Inc.', 'longName': 'GoPro, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.19000006, 'fmt': '-0.19'}, 'regularMarketPreviousClose': {'raw': 5.69, 'fmt': '5.69'}, 'fiftyTwoWeekHighChange': {'raw': -3.92, 'fmt': '-3.92'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1, 'fmt': '1.00'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.475, 'fmt': '5.47'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.5, 'fmt': '5.50'}, 'regularMarketVolume': {'raw': 1028969, 'fmt': '1.029M', 'longFmt': '1,028,969'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1403789400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 857598528, 'fmt': '857.599M', 'longFmt': '857,598,528'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'GPRO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.22222222, 'fmt': '22.22%'}, 'regularMarketDayRange': {'raw': '5.475 - 5.76', 'fmt': '5.47 - 5.76'}, 'messageBoardId': 'finmb_113665065', 'fiftyTwoWeekHigh': {'raw': 9.42, 'fmt': '9.42'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.41613588, 'fmt': '-41.61%'}, 'uuid': 'd831d8ea-3a6d-36de-af60-081896d375cd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.5, 'fmt': '4.50'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.3391926, 'fmt': '-3.34%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'SONY': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 90.86, 'fmt': '90.86'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675699786, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '61.72 - 111.98', 'fmt': '61.72 - 111.98'}, 'sharesOutstanding': {'raw': 1234690048, 'fmt': '1.235B', 'longFmt': '1,234,690,048'}, 'regularMarketDayHigh': {'raw': 90.84, 'fmt': '90.84'}, 'shortName': 'Sony Group Corporation', 'longName': 'Sony Group Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -3.3899994, 'fmt': '-3.39'}, 'regularMarketPreviousClose': {'raw': 93.13, 'fmt': '93.13'}, 'fiftyTwoWeekHighChange': {'raw': -22.240005, 'fmt': '-22.24'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 28.019997, 'fmt': '28.02'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 89.6211, 'fmt': '89.62'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 89.74, 'fmt': '89.74'}, 'regularMarketVolume': {'raw': 235981, 'fmt': '235,981', 'longFmt': '235,981'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 99153000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 110801084416, 'fmt': '110.801B', 'longFmt': '110,801,084,416'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SONY', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.4539857, 'fmt': '45.40%'}, 'regularMarketDayRange': {'raw': '89.6211 - 90.84', 'fmt': '89.62 - 90.84'}, 'messageBoardId': 'finmb_23021', 'fiftyTwoWeekHigh': {'raw': 111.98, 'fmt': '111.98'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.19860694, 'fmt': '-19.86%'}, 'uuid': '51ec1656-6a66-39d0-8159-ed49cf2f2289', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 61.72, 'fmt': '61.72'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.6400726, 'fmt': '-3.64%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, '^IXIC': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'NIM', 'regularMarketTime': {'raw': 1675699785, 'fmt': '11:09AM EST'}, 'shortName': 'Nasdaq', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -86.2168, 'fmt': '-86.22'}, 'regularMarketPreviousClose': {'raw': 12007, 'fmt': '12,007.00'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 11920.738, 'fmt': '11,920.74'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 34612200000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^IXIC', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.7180571, 'fmt': '-0.72%'}, 'fullExchangeName': 'Nasdaq GIDS', 'tradeable': False}, 'LPL': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 5.52, 'fmt': '5.52'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675698891, 'fmt': '10:54AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.08 - 8.53', 'fmt': '4.08 - 8.53'}, 'sharesOutstanding': {'raw': 715630976, 'fmt': '715.631M', 'longFmt': '715,630,976'}, 'regularMarketDayHigh': {'raw': 5.52, 'fmt': '5.52'}, 'shortName': 'LG Display Co, Ltd AMERICAN DEP', 'longName': 'LG Display Co., Ltd.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.1949997, 'fmt': '-0.19'}, 'regularMarketPreviousClose': {'raw': 5.68, 'fmt': '5.68'}, 'fiftyTwoWeekHighChange': {'raw': -3.0449996, 'fmt': '-3.04'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1.4050002, 'fmt': '1.41'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.46, 'fmt': '5.46'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.485, 'fmt': '5.49'}, 'regularMarketVolume': {'raw': 76348, 'fmt': '76,348', 'longFmt': '76,348'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1090503000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 3925235968, 'fmt': '3.925B', 'longFmt': '3,925,235,968'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'LPL', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.3443628, 'fmt': '34.44%'}, 'regularMarketDayRange': {'raw': '5.46 - 5.52', 'fmt': '5.46 - 5.52'}, 'messageBoardId': 'finmb_5471044', 'fiftyTwoWeekHigh': {'raw': 8.53, 'fmt': '8.53'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.35697535, 'fmt': '-35.70%'}, 'uuid': '78df0a6f-207d-3a77-adfe-657f86e6d5c9', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.08, 'fmt': '4.08'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.4330933, 'fmt': '-3.43%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, 'SSNLF': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 40.5999, 'fmt': '40.60'}, 'exchange': 'PNK', 'regularMarketTime': {'raw': 1664306331, 'fmt': '3:18PM EDT'}, 'fiftyTwoWeekRange': {'raw': '40.5999 - 57.75', 'fmt': '40.60 - 57.75'}, 'sharesOutstanding': {'raw': 5969780224, 'fmt': '5.97B', 'longFmt': '5,969,780,224'}, 'regularMarketDayHigh': {'raw': 40.5999, 'fmt': '40.60'}, 'shortName': 'SAMSUNG ELECTRONICS CO', 'longName': 'Samsung Electronics Co., Ltd.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0, 'fmt': '0.00'}, 'regularMarketPreviousClose': {'raw': 40.5999, 'fmt': '40.60'}, 'fiftyTwoWeekHighChange': {'raw': -17.1501, 'fmt': '-17.15'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 0, 'fmt': '0.00'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketDayLow': {'raw': 40.5999, 'fmt': '40.60'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 40.5999, 'fmt': '40.60'}, 'regularMarketVolume': {'raw': 200, 'fmt': '200', 'longFmt': '200'}, 'isLoading': False, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 997104600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 301846429696, 'fmt': '301.846B', 'longFmt': '301,846,429,696'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SSNLF', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0, 'fmt': '0.00%'}, 'regularMarketDayRange': {'raw': '40.5999 - 40.5999', 'fmt': '40.60 - 40.60'}, 'messageBoardId': 'finmb_91868', 'fiftyTwoWeekHigh': {'raw': 57.75, 'fmt': '57.75'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.29697144, 'fmt': '-29.70%'}, 'uuid': '5f5ae02b-3a86-367d-b20b-055520cea9ae', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 40.5999, 'fmt': '40.60'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0, 'fmt': '0.00%'}, 'fullExchangeName': 'Other OTC', 'tradeable': False}, 'VZIO': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 9.44, 'fmt': '9.44'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675699688, 'fmt': '11:08AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.47 - 15.42', 'fmt': '6.47 - 15.42'}, 'sharesOutstanding': {'raw': 117636000, 'fmt': '117.636M', 'longFmt': '117,636,000'}, 'regularMarketDayHigh': {'raw': 9.505, 'fmt': '9.51'}, 'shortName': 'VIZIO Holding Corp.', 'longName': 'VIZIO Holding Corp.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.34999943, 'fmt': '-0.35'}, 'regularMarketPreviousClose': {'raw': 9.57, 'fmt': '9.57'}, 'fiftyTwoWeekHighChange': {'raw': -6.2, 'fmt': '-6.20'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.7500005, 'fmt': '2.75'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 9.13, 'fmt': '9.13'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 9.22, 'fmt': '9.22'}, 'regularMarketVolume': {'raw': 45393, 'fmt': '45,393', 'longFmt': '45,393'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1616765400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1792829056, 'fmt': '1.793B', 'longFmt': '1,792,829,056'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'VZIO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.42503873, 'fmt': '42.50%'}, 'regularMarketDayRange': {'raw': '9.13 - 9.505', 'fmt': '9.13 - 9.51'}, 'messageBoardId': 'finmb_27650657', 'fiftyTwoWeekHigh': {'raw': 15.42, 'fmt': '15.42'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.4020752, 'fmt': '-40.21%'}, 'uuid': '98dc8f95-157e-3c62-b8f9-ea5c671822cd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.47, 'fmt': '6.47'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.6572564, 'fmt': '-3.66%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, 'BTC-USD': {'sourceInterval': 15, 'quoteSourceName': 'CoinMarketCap', 'exchange': 'CCC', 'regularMarketTime': {'raw': 1675699620, 'fmt': '4:07PM UTC'}, 'exchangeTimezoneName': 'UTC', 'regularMarketChange': {'raw': -65.80469, 'fmt': '-65.80'}, 'regularMarketPreviousClose': {'raw': 22959.066, 'fmt': '22,959.07'}, 'exchangeTimezoneShortName': 'UTC', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketPrice': {'raw': 23061.99, 'fmt': '23,061.99'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 1410912000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'CRYPTOCURRENCY', 'symbol': 'BTC-USD', 'language': 'en-US', 'market': 'ccc_market', 'typeDisp': 'Cryptocurrency', 'cryptoTradeable': True, 'regularMarketChangePercent': {'raw': -0.284531, 'fmt': '-0.28%'}, 'fullExchangeName': 'CCC', 'tradeable': False}, 'GBPUSD=X': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CCY', 'regularMarketTime': {'raw': 1675699673, 'fmt': '4:07PM GMT'}, 'shortName': 'GBP/USD', 'exchangeTimezoneName': 'Europe/London', 'regularMarketChange': {'raw': -0.003478527, 'fmt': '-0.0035'}, 'regularMarketPreviousClose': {'raw': 1.2056472, 'fmt': '1.2056'}, 'exchangeTimezoneShortName': 'GMT', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 4, 'currency': 'USD', 'regularMarketPrice': {'raw': 1.2021687, 'fmt': '1.2022'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 1070236800000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'CURRENCY', 'symbol': 'GBPUSD=X', 'language': 'en-US', 'market': 'ccy_market', 'typeDisp': 'Currency', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.28852537, 'fmt': '-0.29%'}, 'fullExchangeName': 'CCY', 'tradeable': False}, 'HEAR': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 9.29, 'fmt': '9.29'}, 'exchange': 'NGM', 'regularMarketTime': {'raw': 1675699651, 'fmt': '11:07AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.22 - 25.33', 'fmt': '6.22 - 25.33'}, 'sharesOutstanding': {'raw': 16557000, 'fmt': '16.557M', 'longFmt': '16,557,000'}, 'regularMarketDayHigh': {'raw': 9.29, 'fmt': '9.29'}, 'shortName': 'Turtle Beach Corporation', 'longName': 'Turtle Beach Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.28999996, 'fmt': '-0.29'}, 'regularMarketPreviousClose': {'raw': 9.33, 'fmt': '9.33'}, 'fiftyTwoWeekHighChange': {'raw': -16.29, 'fmt': '-16.29'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.8200002, 'fmt': '2.82'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 8.94, 'fmt': '8.94'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 9.04, 'fmt': '9.04'}, 'regularMarketVolume': {'raw': 23439, 'fmt': '23,439', 'longFmt': '23,439'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1289831400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 149675280, 'fmt': '149.675M', 'longFmt': '149,675,280'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'HEAR', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.45337626, 'fmt': '45.34%'}, 'regularMarketDayRange': {'raw': '8.94 - 9.29', 'fmt': '8.94 - 9.29'}, 'messageBoardId': 'finmb_851282', 'fiftyTwoWeekHigh': {'raw': 25.33, 'fmt': '25.33'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.643111, 'fmt': '-64.31%'}, 'uuid': '58194bdb-92f1-3b95-b21e-5b66d5d67f2f', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.22, 'fmt': '6.22'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.1082525, 'fmt': '-3.11%'}, 'fullExchangeName': 'NasdaqGM', 'tradeable': False}, 'VUZI': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.66, 'fmt': '5.66'}, 'exchange': 'NCM', 'regularMarketTime': {'raw': 1675699642, 'fmt': '11:07AM EST'}, 'fiftyTwoWeekRange': {'raw': '3.27 - 10.49', 'fmt': '3.27 - 10.49'}, 'sharesOutstanding': {'raw': 63739600, 'fmt': '63.74M', 'longFmt': '63,739,600'}, 'regularMarketDayHigh': {'raw': 5.8, 'fmt': '5.80'}, 'shortName': 'Vuzix Corporation', 'longName': 'Vuzix Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.14069986, 'fmt': '-0.14'}, 'regularMarketPreviousClose': {'raw': 5.75, 'fmt': '5.75'}, 'fiftyTwoWeekHighChange': {'raw': -4.8806996, 'fmt': '-4.88'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.3393002, 'fmt': '2.34'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.49, 'fmt': '5.49'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.6093, 'fmt': '5.61'}, 'regularMarketVolume': {'raw': 367816, 'fmt': '367,816', 'longFmt': '367,816'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1270474200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 357534560, 'fmt': '357.535M', 'longFmt': '357,534,560'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'VUZI', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.71538234, 'fmt': '71.54%'}, 'regularMarketDayRange': {'raw': '5.49 - 5.8', 'fmt': '5.49 - 5.80'}, 'messageBoardId': 'finmb_13610016', 'fiftyTwoWeekHigh': {'raw': 10.49, 'fmt': '10.49'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.46527165, 'fmt': '-46.53%'}, 'uuid': 'b42c8863-c6d0-341b-9d51-442783839350', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 3.27, 'fmt': '3.27'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -2.4469543, 'fmt': '-2.45%'}, 'fullExchangeName': 'NasdaqCM', 'tradeable': False}, 'JPY=X': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CCY', 'regularMarketTime': {'raw': 1675699790, 'fmt': '4:09PM GMT'}, 'shortName': 'USD/JPY', 'exchangeTimezoneName': 'Europe/London', 'regularMarketChange': {'raw': 1.6840057, 'fmt': '1.6840'}, 'regularMarketPreviousClose': {'raw': 131.15, 'fmt': '131.1500'}, 'exchangeTimezoneShortName': 'GMT', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 4, 'currency': 'JPY', 'regularMarketPrice': {'raw': 132.834, 'fmt': '132.8340'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 846633600000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'CURRENCY', 'symbol': 'JPY=X', 'language': 'en-US', 'market': 'ccy_market', 'typeDisp': 'Currency', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 1.2840303, 'fmt': '1.28%'}, 'fullExchangeName': 'CCY', 'tradeable': False}, 'PCRFY': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 8.62, 'fmt': '8.62'}, 'exchange': 'PNK', 'regularMarketTime': {'raw': 1675698716, 'fmt': '10:51AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.66 - 10.89', 'fmt': '6.66 - 10.89'}, 'sharesOutstanding': {'raw': 2334089984, 'fmt': '2.334B', 'longFmt': '2,334,089,984'}, 'regularMarketDayHigh': {'raw': 8.745, 'fmt': '8.74'}, 'shortName': 'PANASONIC HOLDINGS CORP ADR-EAC', 'longName': 'Panasonic Holdings Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.08000088, 'fmt': '-0.08'}, 'regularMarketPreviousClose': {'raw': 8.77, 'fmt': '8.77'}, 'fiftyTwoWeekHighChange': {'raw': -2.2000008, 'fmt': '-2.20'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.0299997, 'fmt': '2.03'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketDayLow': {'raw': 8.62, 'fmt': '8.62'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 8.69, 'fmt': '8.69'}, 'regularMarketVolume': {'raw': 47805, 'fmt': '47,805', 'longFmt': '47,805'}, 'isLoading': False, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 322151400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 20283240448, 'fmt': '20.283B', 'longFmt': '20,283,240,448'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'PCRFY', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.30480477, 'fmt': '30.48%'}, 'regularMarketDayRange': {'raw': '8.62 - 8.745', 'fmt': '8.62 - 8.74'}, 'messageBoardId': 'finmb_320433', 'fiftyTwoWeekHigh': {'raw': 10.89, 'fmt': '10.89'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.20202027, 'fmt': '-20.20%'}, 'uuid': '01e8db59-6c12-3ae1-a223-b71412148081', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.66, 'fmt': '6.66'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.91221064, 'fmt': '-0.91%'}, 'fullExchangeName': 'Other OTC', 'tradeable': False}, 'CL=F': {'sourceInterval': 30, 'quoteSourceName': 'Delayed Quote', 'exchange': 'NYM', 'regularMarketTime': {'raw': 1675699192, 'fmt': '10:59AM EST'}, 'shortName': 'Crude Oil', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.94000244, 'fmt': '-0.94'}, 'regularMarketPreviousClose': {'raw': 73.39, 'fmt': '73.39'}, 'contractSymbol': False, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 10, 'customPriceAlertConfidence': 'NONE', 'regularMarketPrice': {'raw': 72.45, 'fmt': '72.45'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 967003200000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'FUTURE', 'symbol': 'CL=F', 'language': 'en-US', 'headSymbol': True, 'headSymbolAsString': 'CL=F', 'market': 'us24_market', 'typeDisp': 'Futures', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.2808318, 'fmt': '-1.28%'}, 'fullExchangeName': 'NY Mercantile', 'tradeable': False}, '^RUT': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'WCB', 'regularMarketTime': {'raw': 1675698890, 'fmt': '10:54AM EST'}, 'shortName': 'Russell 2000', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -23.233154, 'fmt': '-23.23'}, 'regularMarketPreviousClose': {'raw': 1985.5343, 'fmt': '1,985.53'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 15, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 1962.3011, 'fmt': '1,962.30'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 558279000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^RUT', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.1701211, 'fmt': '-1.17%'}, 'fullExchangeName': 'Chicago Options', 'tradeable': False}, 'TSLA': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 193.01, 'fmt': '193.01'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699791, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '101.81 - 384.29', 'fmt': '101.81 - 384.29'}, 'sharesOutstanding': {'raw': 3164100096, 'fmt': '3.164B', 'longFmt': '3,164,100,096'}, 'regularMarketDayHigh': {'raw': 198.16, 'fmt': '198.16'}, 'shortName': 'Tesla, Inc.', 'longName': 'Tesla, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 4.7882996, 'fmt': '4.79'}, 'regularMarketPreviousClose': {'raw': 189.98, 'fmt': '189.98'}, 'fiftyTwoWeekHighChange': {'raw': -189.52171, 'fmt': '-189.52'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 92.9583, 'fmt': '92.96'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 189.92, 'fmt': '189.92'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 194.7683, 'fmt': '194.77'}, 'regularMarketVolume': {'raw': 86488569, 'fmt': '86.489M', 'longFmt': '86,488,569'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1277818200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 616266399744, 'fmt': '616.266B', 'longFmt': '616,266,399,744'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'TSLA', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.9130567, 'fmt': '91.31%'}, 'regularMarketDayRange': {'raw': '189.92 - 198.16', 'fmt': '189.92 - 198.16'}, 'messageBoardId': 'finmb_27444752', 'fiftyTwoWeekHigh': {'raw': 384.29, 'fmt': '384.29'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.49317366, 'fmt': '-49.32%'}, 'uuid': 'ec367bc4-f92c-397c-ac81-bf7b43cffaf7', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 101.81, 'fmt': '101.81'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 2.520423, 'fmt': '2.52%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, '^CMC200': {'sourceInterval': 15, 'quoteSourceName': 'Free Realtime Quote', 'exchange': 'NIM', 'regularMarketTime': {'raw': 1675699637, 'fmt': '11:07AM EST'}, 'shortName': 'CMC Crypto 200', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 4.818054, 'fmt': '4.82'}, 'regularMarketPreviousClose': {'raw': 525.1342, 'fmt': '525.13'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 529.9523, 'fmt': '529.95'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1546266600000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^CMC200', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.91749, 'fmt': '0.92%'}, 'fullExchangeName': 'Nasdaq GIDS', 'tradeable': False}, 'AAPL': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 152.575, 'fmt': '152.57'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699791, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '124.17 - 179.61', 'fmt': '124.17 - 179.61'}, 'sharesOutstanding': {'raw': 15821899776, 'fmt': '15.822B', 'longFmt': '15,821,899,776'}, 'regularMarketDayHigh': {'raw': 153.1, 'fmt': '153.10'}, 'shortName': 'Apple Inc.', 'longName': 'Apple Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.2789001, 'fmt': '-2.28'}, 'regularMarketPreviousClose': {'raw': 154.5, 'fmt': '154.50'}, 'fiftyTwoWeekHighChange': {'raw': -27.3889, 'fmt': '-27.39'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 28.051102, 'fmt': '28.05'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 150.9, 'fmt': '150.90'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 152.2211, 'fmt': '152.22'}, 'regularMarketVolume': {'raw': 27877131, 'fmt': '27.877M', 'longFmt': '27,877,131'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 345479400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 2408427028480, 'fmt': '2.408T', 'longFmt': '2,408,427,028,480'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [{'header': 'Dividend', 'message': 'AAPL announced a cash dividend of 0.23 with an ex-date of Feb. 10, 2023', 'meta': {'eventType': 'DIVIDEND', 'dateEpochMs': 1675969200000}}], 'symbol': 'AAPL', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.22590885, 'fmt': '22.59%'}, 'regularMarketDayRange': {'raw': '150.9 - 153.1', 'fmt': '150.90 - 153.10'}, 'messageBoardId': 'finmb_24937', 'fiftyTwoWeekHigh': {'raw': 179.61, 'fmt': '179.61'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.15249096, 'fmt': '-15.25%'}, 'uuid': '8b10e4ae-9eeb-3684-921a-9ab27e4d87aa', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 124.17, 'fmt': '124.17'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.4750162, 'fmt': '-1.48%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'SONO': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 18.66, 'fmt': '18.66'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699680, 'fmt': '11:08AM EST'}, 'fiftyTwoWeekRange': {'raw': '13.65 - 31.22', 'fmt': '13.65 - 31.22'}, 'sharesOutstanding': {'raw': 127345000, 'fmt': '127.345M', 'longFmt': '127,345,000'}, 'regularMarketDayHigh': {'raw': 18.66, 'fmt': '18.66'}, 'shortName': 'Sonos, Inc.', 'longName': 'Sonos, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.7350006, 'fmt': '-0.74'}, 'regularMarketPreviousClose': {'raw': 18.91, 'fmt': '18.91'}, 'fiftyTwoWeekHighChange': {'raw': -13.045, 'fmt': '-13.05'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 4.5249996, 'fmt': '4.52'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 18.14, 'fmt': '18.14'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 18.175, 'fmt': '18.17'}, 'regularMarketVolume': {'raw': 510481, 'fmt': '510,481', 'longFmt': '510,481'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1533216600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 2314495232, 'fmt': '2.314B', 'longFmt': '2,314,495,232'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SONO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.3315018, 'fmt': '33.15%'}, 'regularMarketDayRange': {'raw': '18.14 - 18.66', 'fmt': '18.14 - 18.66'}, 'messageBoardId': 'finmb_10654809', 'fiftyTwoWeekHigh': {'raw': 31.22, 'fmt': '31.22'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.41784114, 'fmt': '-41.78%'}, 'uuid': '98c419db-3a58-3f86-8eb4-a664481f7d12', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 13.65, 'fmt': '13.65'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.8868356, 'fmt': '-3.89%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, '^GSPC': {'sourceInterval': 15, 'quoteSourceName': 'Free Realtime Quote', 'exchange': 'SNP', 'regularMarketTime': {'raw': 1675699790, 'fmt': '11:09AM EST'}, 'shortName': 'S&P 500', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -23.29004, 'fmt': '-23.29'}, 'regularMarketPreviousClose': {'raw': 4136.48, 'fmt': '4,136.48'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 4113.19, 'fmt': '4,113.19'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': -1325583000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^GSPC', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.5630401, 'fmt': '-0.56%'}, 'fullExchangeName': 'SNP', 'tradeable': False}, '^FTSE': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'FGI', 'regularMarketTime': {'raw': 1675698890, 'fmt': '3:54PM GMT'}, 'shortName': 'FTSE 100', 'exchangeTimezoneName': 'Europe/London', 'regularMarketChange': {'raw': -70.41992, 'fmt': '-70.42'}, 'regularMarketPreviousClose': {'raw': 7901.8, 'fmt': '7,901.80'}, 'exchangeTimezoneShortName': 'GMT', 'exchangeDataDelayedBy': 15, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 7831.38, 'fmt': '7,831.38'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 441964800000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^FTSE', 'language': 'en-US', 'market': 'gb_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.8911883, 'fmt': '-0.89%'}, 'fullExchangeName': 'FTSE Index', 'tradeable': False}, 'SI=F': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CMX', 'regularMarketTime': {'raw': 1675699192, 'fmt': '10:59AM EST'}, 'shortName': 'Silver', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.125, 'fmt': '-0.12'}, 'regularMarketPreviousClose': {'raw': 22.405, 'fmt': '22.41'}, 'contractSymbol': False, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 10, 'customPriceAlertConfidence': 'NONE', 'regularMarketPrice': {'raw': 22.28, 'fmt': '22.28'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 967608000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'FUTURE', 'symbol': 'SI=F', 'language': 'en-US', 'headSymbol': True, 'headSymbolAsString': 'SI=F', 'market': 'us24_market', 'typeDisp': 'Futures', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.55791116, 'fmt': '-0.56%'}, 'fullExchangeName': 'COMEX', 'tradeable': False}, 'EURUSD=X': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CCY', 'regularMarketTime': {'raw': 1675699673, 'fmt': '4:07PM GMT'}, 'shortName': 'EUR/USD', 'exchangeTimezoneName': 'Europe/London', 'regularMarketChange': {'raw': -0.005566597, 'fmt': '-0.0056'}, 'regularMarketPreviousClose': {'raw': 1.0796804, 'fmt': '1.0797'}, 'exchangeTimezoneShortName': 'GMT', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 4, 'currency': 'USD', 'regularMarketPrice': {'raw': 1.0741138, 'fmt': '1.0741'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 1070236800000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'CURRENCY', 'symbol': 'EURUSD=X', 'language': 'en-US', 'market': 'ccy_market', 'typeDisp': 'Currency', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.5155769, 'fmt': '-0.52%'}, 'fullExchangeName': 'CCY', 'tradeable': False}}, 'mktmData': {}}, 'QuoteSummaryStore': {'financialsTemplate': {'code': 'N', 'maxAge': 1}, 'cashflowStatementHistory': {'cashflowStatements': [{'investments': {'raw': -9560000000, 'fmt': '-9.56B', 'longFmt': '-9,560,000,000'}, 'changeToLiabilities': {'raw': 9926000000, 'fmt': '9.93B', 'longFmt': '9,926,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -22354000000, 'fmt': '-22.35B', 'longFmt': '-22,354,000,000'}, 'netBorrowings': {'raw': -123000000, 'fmt': '-123M', 'longFmt': '-123,000,000'}, 'totalCashFromFinancingActivities': {'raw': -110749000000, 'fmt': '-110.75B', 'longFmt': '-110,749,000,000'}, 'changeToOperatingActivities': {'raw': -8387000000, 'fmt': '-8.39B', 'longFmt': '-8,387,000,000'}, 'netIncome': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}, 'changeInCash': {'raw': -10952000000, 'fmt': '-10.95B', 'longFmt': '-10,952,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'repurchaseOfStock': {'raw': -95625000000, 'fmt': '-95.62B', 'longFmt': '-95,625,000,000'}, 'totalCashFromOperatingActivities': {'raw': 122151000000, 'fmt': '122.15B', 'longFmt': '122,151,000,000'}, 'depreciation': {'raw': 11104000000, 'fmt': '11.1B', 'longFmt': '11,104,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -1780000000, 'fmt': '-1.78B', 'longFmt': '-1,780,000,000'}, 'dividendsPaid': {'raw': -14841000000, 'fmt': '-14.84B', 'longFmt': '-14,841,000,000'}, 'changeToInventory': {'raw': 1484000000, 'fmt': '1.48B', 'longFmt': '1,484,000,000'}, 'changeToAccountReceivables': {'raw': -1823000000, 'fmt': '-1.82B', 'longFmt': '-1,823,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -160000000, 'fmt': '-160M', 'longFmt': '-160,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 10044000000, 'fmt': '10.04B', 'longFmt': '10,044,000,000'}, 'capitalExpenditures': {'raw': -10708000000, 'fmt': '-10.71B', 'longFmt': '-10,708,000,000'}}, {'investments': {'raw': -3075000000, 'fmt': '-3.08B', 'longFmt': '-3,075,000,000'}, 'changeToLiabilities': {'raw': 14002000000, 'fmt': '14B', 'longFmt': '14,002,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -14545000000, 'fmt': '-14.54B', 'longFmt': '-14,545,000,000'}, 'netBorrowings': {'raw': 12665000000, 'fmt': '12.66B', 'longFmt': '12,665,000,000'}, 'totalCashFromFinancingActivities': {'raw': -93353000000, 'fmt': '-93.35B', 'longFmt': '-93,353,000,000'}, 'changeToOperatingActivities': {'raw': -6146000000, 'fmt': '-6.15B', 'longFmt': '-6,146,000,000'}, 'netIncome': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}, 'changeInCash': {'raw': -3860000000, 'fmt': '-3.86B', 'longFmt': '-3,860,000,000'}, 'endDate': {'raw': 1632528000, 'fmt': '2021-09-25'}, 'repurchaseOfStock': {'raw': -92527000000, 'fmt': '-92.53B', 'longFmt': '-92,527,000,000'}, 'totalCashFromOperatingActivities': {'raw': 104038000000, 'fmt': '104.04B', 'longFmt': '104,038,000,000'}, 'depreciation': {'raw': 11284000000, 'fmt': '11.28B', 'longFmt': '11,284,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -352000000, 'fmt': '-352M', 'longFmt': '-352,000,000'}, 'dividendsPaid': {'raw': -14467000000, 'fmt': '-14.47B', 'longFmt': '-14,467,000,000'}, 'changeToInventory': {'raw': -2642000000, 'fmt': '-2.64B', 'longFmt': '-2,642,000,000'}, 'changeToAccountReceivables': {'raw': -10125000000, 'fmt': '-10.12B', 'longFmt': '-10,125,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': 976000000, 'fmt': '976M', 'longFmt': '976,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 2985000000, 'fmt': '2.98B', 'longFmt': '2,985,000,000'}, 'capitalExpenditures': {'raw': -11085000000, 'fmt': '-11.09B', 'longFmt': '-11,085,000,000'}}, {'investments': {'raw': 5453000000, 'fmt': '5.45B', 'longFmt': '5,453,000,000'}, 'changeToLiabilities': {'raw': -1981000000, 'fmt': '-1.98B', 'longFmt': '-1,981,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -4289000000, 'fmt': '-4.29B', 'longFmt': '-4,289,000,000'}, 'netBorrowings': {'raw': 2499000000, 'fmt': '2.5B', 'longFmt': '2,499,000,000'}, 'totalCashFromFinancingActivities': {'raw': -86820000000, 'fmt': '-86.82B', 'longFmt': '-86,820,000,000'}, 'changeToOperatingActivities': {'raw': 881000000, 'fmt': '881M', 'longFmt': '881,000,000'}, 'netIncome': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}, 'changeInCash': {'raw': -10435000000, 'fmt': '-10.44B', 'longFmt': '-10,435,000,000'}, 'endDate': {'raw': 1601078400, 'fmt': '2020-09-26'}, 'repurchaseOfStock': {'raw': -75992000000, 'fmt': '-75.99B', 'longFmt': '-75,992,000,000'}, 'totalCashFromOperatingActivities': {'raw': 80674000000, 'fmt': '80.67B', 'longFmt': '80,674,000,000'}, 'depreciation': {'raw': 11056000000, 'fmt': '11.06B', 'longFmt': '11,056,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -909000000, 'fmt': '-909M', 'longFmt': '-909,000,000'}, 'dividendsPaid': {'raw': -14081000000, 'fmt': '-14.08B', 'longFmt': '-14,081,000,000'}, 'changeToInventory': {'raw': -127000000, 'fmt': '-127M', 'longFmt': '-127,000,000'}, 'changeToAccountReceivables': {'raw': 6917000000, 'fmt': '6.92B', 'longFmt': '6,917,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': 754000000, 'fmt': '754M', 'longFmt': '754,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 6517000000, 'fmt': '6.52B', 'longFmt': '6,517,000,000'}, 'capitalExpenditures': {'raw': -7309000000, 'fmt': '-7.31B', 'longFmt': '-7,309,000,000'}}, {'investments': {'raw': 58093000000, 'fmt': '58.09B', 'longFmt': '58,093,000,000'}, 'changeToLiabilities': {'raw': -2548000000, 'fmt': '-2.55B', 'longFmt': '-2,548,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': 45896000000, 'fmt': '45.9B', 'longFmt': '45,896,000,000'}, 'netBorrowings': {'raw': -7819000000, 'fmt': '-7.82B', 'longFmt': '-7,819,000,000'}, 'totalCashFromFinancingActivities': {'raw': -90976000000, 'fmt': '-90.98B', 'longFmt': '-90,976,000,000'}, 'changeToOperatingActivities': {'raw': -896000000, 'fmt': '-896M', 'longFmt': '-896,000,000'}, 'issuanceOfStock': {'raw': 781000000, 'fmt': '781M', 'longFmt': '781,000,000'}, 'netIncome': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}, 'changeInCash': {'raw': 24311000000, 'fmt': '24.31B', 'longFmt': '24,311,000,000'}, 'endDate': {'raw': 1569628800, 'fmt': '2019-09-28'}, 'repurchaseOfStock': {'raw': -69714000000, 'fmt': '-69.71B', 'longFmt': '-69,714,000,000'}, 'totalCashFromOperatingActivities': {'raw': 69391000000, 'fmt': '69.39B', 'longFmt': '69,391,000,000'}, 'depreciation': {'raw': 12547000000, 'fmt': '12.55B', 'longFmt': '12,547,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -1078000000, 'fmt': '-1.08B', 'longFmt': '-1,078,000,000'}, 'dividendsPaid': {'raw': -14119000000, 'fmt': '-14.12B', 'longFmt': '-14,119,000,000'}, 'changeToInventory': {'raw': -289000000, 'fmt': '-289M', 'longFmt': '-289,000,000'}, 'changeToAccountReceivables': {'raw': 245000000, 'fmt': '245M', 'longFmt': '245,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -105000000, 'fmt': '-105M', 'longFmt': '-105,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 5076000000, 'fmt': '5.08B', 'longFmt': '5,076,000,000'}, 'capitalExpenditures': {'raw': -10495000000, 'fmt': '-10.49B', 'longFmt': '-10,495,000,000'}}], 'maxAge': 86400}, 'balanceSheetHistoryQuarterly': {'balanceSheetStatements': [{'totalLiab': {'raw': 290020000000, 'fmt': '290.02B', 'longFmt': '290,020,000,000'}, 'totalStockholderEquity': {'raw': 56727000000, 'fmt': '56.73B', 'longFmt': '56,727,000,000'}, 'otherCurrentLiab': {'raw': 67885000000, 'fmt': '67.89B', 'longFmt': '67,885,000,000'}, 'totalAssets': {'raw': 346747000000, 'fmt': '346.75B', 'longFmt': '346,747,000,000'}, 'endDate': {'raw': 1672444800, 'fmt': '2022-12-31'}, 'commonStock': {'raw': 66399000000, 'fmt': '66.4B', 'longFmt': '66,399,000,000'}, 'otherCurrentAssets': {'raw': 16422000000, 'fmt': '16.42B', 'longFmt': '16,422,000,000'}, 'retainedEarnings': {'raw': 3240000000, 'fmt': '3.24B', 'longFmt': '3,240,000,000'}, 'otherLiab': {'raw': 53107000000, 'fmt': '53.11B', 'longFmt': '53,107,000,000'}, 'treasuryStock': {'raw': -12912000000, 'fmt': '-12.91B', 'longFmt': '-12,912,000,000'}, 'otherAssets': {'raw': 60924000000, 'fmt': '60.92B', 'longFmt': '60,924,000,000'}, 'cash': {'raw': 20535000000, 'fmt': '20.54B', 'longFmt': '20,535,000,000'}, 'totalCurrentLiabilities': {'raw': 137286000000, 'fmt': '137.29B', 'longFmt': '137,286,000,000'}, 'shortLongTermDebt': {'raw': 9740000000, 'fmt': '9.74B', 'longFmt': '9,740,000,000'}, 'otherStockholderEquity': {'raw': -12912000000, 'fmt': '-12.91B', 'longFmt': '-12,912,000,000'}, 'propertyPlantEquipment': {'raw': 42951000000, 'fmt': '42.95B', 'longFmt': '42,951,000,000'}, 'totalCurrentAssets': {'raw': 128777000000, 'fmt': '128.78B', 'longFmt': '128,777,000,000'}, 'longTermInvestments': {'raw': 114095000000, 'fmt': '114.09B', 'longFmt': '114,095,000,000'}, 'netTangibleAssets': {'raw': 56727000000, 'fmt': '56.73B', 'longFmt': '56,727,000,000'}, 'shortTermInvestments': {'raw': 30820000000, 'fmt': '30.82B', 'longFmt': '30,820,000,000'}, 'netReceivables': {'raw': 54180000000, 'fmt': '54.18B', 'longFmt': '54,180,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 99627000000, 'fmt': '99.63B', 'longFmt': '99,627,000,000'}, 'inventory': {'raw': 6820000000, 'fmt': '6.82B', 'longFmt': '6,820,000,000'}, 'accountsPayable': {'raw': 57918000000, 'fmt': '57.92B', 'longFmt': '57,918,000,000'}}, {'totalLiab': {'raw': 302083000000, 'fmt': '302.08B', 'longFmt': '302,083,000,000'}, 'totalStockholderEquity': {'raw': 50672000000, 'fmt': '50.67B', 'longFmt': '50,672,000,000'}, 'otherCurrentLiab': {'raw': 67094000000, 'fmt': '67.09B', 'longFmt': '67,094,000,000'}, 'totalAssets': {'raw': 352755000000, 'fmt': '352.75B', 'longFmt': '352,755,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'commonStock': {'raw': 64849000000, 'fmt': '64.85B', 'longFmt': '64,849,000,000'}, 'otherCurrentAssets': {'raw': 21223000000, 'fmt': '21.22B', 'longFmt': '21,223,000,000'}, 'retainedEarnings': {'raw': -3068000000, 'fmt': '-3.07B', 'longFmt': '-3,068,000,000'}, 'otherLiab': {'raw': 38394000000, 'fmt': '38.39B', 'longFmt': '38,394,000,000'}, 'treasuryStock': {'raw': -11109000000, 'fmt': '-11.11B', 'longFmt': '-11,109,000,000'}, 'otherAssets': {'raw': 44011000000, 'fmt': '44.01B', 'longFmt': '44,011,000,000'}, 'cash': {'raw': 23646000000, 'fmt': '23.65B', 'longFmt': '23,646,000,000'}, 'totalCurrentLiabilities': {'raw': 153982000000, 'fmt': '153.98B', 'longFmt': '153,982,000,000'}, 'shortLongTermDebt': {'raw': 11128000000, 'fmt': '11.13B', 'longFmt': '11,128,000,000'}, 'otherStockholderEquity': {'raw': -11109000000, 'fmt': '-11.11B', 'longFmt': '-11,109,000,000'}, 'propertyPlantEquipment': {'raw': 52534000000, 'fmt': '52.53B', 'longFmt': '52,534,000,000'}, 'totalCurrentAssets': {'raw': 135405000000, 'fmt': '135.41B', 'longFmt': '135,405,000,000'}, 'longTermInvestments': {'raw': 120805000000, 'fmt': '120.81B', 'longFmt': '120,805,000,000'}, 'netTangibleAssets': {'raw': 50672000000, 'fmt': '50.67B', 'longFmt': '50,672,000,000'}, 'shortTermInvestments': {'raw': 24658000000, 'fmt': '24.66B', 'longFmt': '24,658,000,000'}, 'netReceivables': {'raw': 60932000000, 'fmt': '60.93B', 'longFmt': '60,932,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 98959000000, 'fmt': '98.96B', 'longFmt': '98,959,000,000'}, 'inventory': {'raw': 4946000000, 'fmt': '4.95B', 'longFmt': '4,946,000,000'}, 'accountsPayable': {'raw': 64115000000, 'fmt': '64.11B', 'longFmt': '64,115,000,000'}}, {'totalLiab': {'raw': 278202000000, 'fmt': '278.2B', 'longFmt': '278,202,000,000'}, 'totalStockholderEquity': {'raw': 58107000000, 'fmt': '58.11B', 'longFmt': '58,107,000,000'}, 'otherCurrentLiab': {'raw': 56539000000, 'fmt': '56.54B', 'longFmt': '56,539,000,000'}, 'totalAssets': {'raw': 336309000000, 'fmt': '336.31B', 'longFmt': '336,309,000,000'}, 'endDate': {'raw': 1656115200, 'fmt': '2022-06-25'}, 'commonStock': {'raw': 62115000000, 'fmt': '62.12B', 'longFmt': '62,115,000,000'}, 'otherCurrentAssets': {'raw': 16386000000, 'fmt': '16.39B', 'longFmt': '16,386,000,000'}, 'retainedEarnings': {'raw': 5289000000, 'fmt': '5.29B', 'longFmt': '5,289,000,000'}, 'otherLiab': {'raw': 53629000000, 'fmt': '53.63B', 'longFmt': '53,629,000,000'}, 'treasuryStock': {'raw': -9297000000, 'fmt': '-9.3B', 'longFmt': '-9,297,000,000'}, 'otherAssets': {'raw': 52605000000, 'fmt': '52.6B', 'longFmt': '52,605,000,000'}, 'cash': {'raw': 27502000000, 'fmt': '27.5B', 'longFmt': '27,502,000,000'}, 'totalCurrentLiabilities': {'raw': 129873000000, 'fmt': '129.87B', 'longFmt': '129,873,000,000'}, 'shortLongTermDebt': {'raw': 14009000000, 'fmt': '14.01B', 'longFmt': '14,009,000,000'}, 'otherStockholderEquity': {'raw': -9297000000, 'fmt': '-9.3B', 'longFmt': '-9,297,000,000'}, 'propertyPlantEquipment': {'raw': 40335000000, 'fmt': '40.34B', 'longFmt': '40,335,000,000'}, 'totalCurrentAssets': {'raw': 112292000000, 'fmt': '112.29B', 'longFmt': '112,292,000,000'}, 'longTermInvestments': {'raw': 131077000000, 'fmt': '131.08B', 'longFmt': '131,077,000,000'}, 'netTangibleAssets': {'raw': 58107000000, 'fmt': '58.11B', 'longFmt': '58,107,000,000'}, 'shortTermInvestments': {'raw': 20729000000, 'fmt': '20.73B', 'longFmt': '20,729,000,000'}, 'netReceivables': {'raw': 42242000000, 'fmt': '42.24B', 'longFmt': '42,242,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 94700000000, 'fmt': '94.7B', 'longFmt': '94,700,000,000'}, 'inventory': {'raw': 5433000000, 'fmt': '5.43B', 'longFmt': '5,433,000,000'}, 'accountsPayable': {'raw': 48343000000, 'fmt': '48.34B', 'longFmt': '48,343,000,000'}}, {'totalLiab': {'raw': 283263000000, 'fmt': '283.26B', 'longFmt': '283,263,000,000'}, 'totalStockholderEquity': {'raw': 67399000000, 'fmt': '67.4B', 'longFmt': '67,399,000,000'}, 'otherCurrentLiab': {'raw': 58168000000, 'fmt': '58.17B', 'longFmt': '58,168,000,000'}, 'totalAssets': {'raw': 350662000000, 'fmt': '350.66B', 'longFmt': '350,662,000,000'}, 'endDate': {'raw': 1648252800, 'fmt': '2022-03-26'}, 'commonStock': {'raw': 61181000000, 'fmt': '61.18B', 'longFmt': '61,181,000,000'}, 'otherCurrentAssets': {'raw': 15809000000, 'fmt': '15.81B', 'longFmt': '15,809,000,000'}, 'retainedEarnings': {'raw': 12712000000, 'fmt': '12.71B', 'longFmt': '12,712,000,000'}, 'otherLiab': {'raw': 52432000000, 'fmt': '52.43B', 'longFmt': '52,432,000,000'}, 'treasuryStock': {'raw': -6494000000, 'fmt': '-6.49B', 'longFmt': '-6,494,000,000'}, 'otherAssets': {'raw': 51959000000, 'fmt': '51.96B', 'longFmt': '51,959,000,000'}, 'cash': {'raw': 28098000000, 'fmt': '28.1B', 'longFmt': '28,098,000,000'}, 'totalCurrentLiabilities': {'raw': 127508000000, 'fmt': '127.51B', 'longFmt': '127,508,000,000'}, 'shortLongTermDebt': {'raw': 9659000000, 'fmt': '9.66B', 'longFmt': '9,659,000,000'}, 'otherStockholderEquity': {'raw': -6494000000, 'fmt': '-6.49B', 'longFmt': '-6,494,000,000'}, 'propertyPlantEquipment': {'raw': 39304000000, 'fmt': '39.3B', 'longFmt': '39,304,000,000'}, 'totalCurrentAssets': {'raw': 118180000000, 'fmt': '118.18B', 'longFmt': '118,180,000,000'}, 'longTermInvestments': {'raw': 141219000000, 'fmt': '141.22B', 'longFmt': '141,219,000,000'}, 'netTangibleAssets': {'raw': 67399000000, 'fmt': '67.4B', 'longFmt': '67,399,000,000'}, 'shortTermInvestments': {'raw': 23413000000, 'fmt': '23.41B', 'longFmt': '23,413,000,000'}, 'netReceivables': {'raw': 45400000000, 'fmt': '45.4B', 'longFmt': '45,400,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 103323000000, 'fmt': '103.32B', 'longFmt': '103,323,000,000'}, 'inventory': {'raw': 5460000000, 'fmt': '5.46B', 'longFmt': '5,460,000,000'}, 'accountsPayable': {'raw': 52682000000, 'fmt': '52.68B', 'longFmt': '52,682,000,000'}}], 'maxAge': 86400}, 'earnings': {'maxAge': 86400, 'earningsChart': {'quarterly': [{'date': '1Q2022', 'actual': {'raw': 1.52, 'fmt': '1.52'}, 'estimate': {'raw': 1.43, 'fmt': '1.43'}}, {'date': '2Q2022', 'actual': {'raw': 1.2, 'fmt': '1.20'}, 'estimate': {'raw': 1.16, 'fmt': '1.16'}}, {'date': '3Q2022', 'actual': {'raw': 1.29, 'fmt': '1.29'}, 'estimate': {'raw': 1.27, 'fmt': '1.27'}}, {'date': '4Q2022', 'actual': {'raw': 1.88, 'fmt': '1.88'}, 'estimate': {'raw': 1.94, 'fmt': '1.94'}}], 'currentQuarterEstimate': {'raw': 1.43, 'fmt': '1.43'}, 'currentQuarterEstimateDate': '1Q', 'currentQuarterEstimateYear': 2023, 'earningsDate': [{'raw': 1682506740, 'fmt': '2023-04-26'}, {'raw': 1682942400, 'fmt': '2023-05-01'}]}, 'financialsChart': {'yearly': [{'date': 2019, 'revenue': {'raw': 260174000000, 'fmt': '260.17B', 'longFmt': '260,174,000,000'}, 'earnings': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}}, {'date': 2020, 'revenue': {'raw': 274515000000, 'fmt': '274.51B', 'longFmt': '274,515,000,000'}, 'earnings': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}}, {'date': 2021, 'revenue': {'raw': 365817000000, 'fmt': '365.82B', 'longFmt': '365,817,000,000'}, 'earnings': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}}, {'date': 2022, 'revenue': {'raw': 394328000000, 'fmt': '394.33B', 'longFmt': '394,328,000,000'}, 'earnings': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}}], 'quarterly': [{'date': '1Q2022', 'revenue': {'raw': 97278000000, 'fmt': '97.28B', 'longFmt': '97,278,000,000'}, 'earnings': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}}, {'date': '2Q2022', 'revenue': {'raw': 82959000000, 'fmt': '82.96B', 'longFmt': '82,959,000,000'}, 'earnings': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}}, {'date': '3Q2022', 'revenue': {'raw': 90146000000, 'fmt': '90.15B', 'longFmt': '90,146,000,000'}, 'earnings': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}}, {'date': '4Q2022', 'revenue': {'raw': 117154000000, 'fmt': '117.15B', 'longFmt': '117,154,000,000'}, 'earnings': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}}]}, 'financialCurrency': 'USD'}, 'price': {'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 152.575, 'fmt': '152.57'}, 'averageDailyVolume3Month': {'raw': 78381785, 'fmt': '78.38M', 'longFmt': '78,381,785'}, 'exchange': 'NMS', 'regularMarketTime': 1675699791, 'volume24Hr': {}, 'regularMarketDayHigh': {'raw': 153.1, 'fmt': '153.10'}, 'shortName': 'Apple Inc.', 'averageDailyVolume10Day': {'raw': 81876490, 'fmt': '81.88M', 'longFmt': '81,876,490'}, 'longName': 'Apple Inc.', 'regularMarketChange': {'raw': -2.2789001, 'fmt': '-2.28'}, 'currencySymbol': '$', 'regularMarketPreviousClose': {'raw': 154.5, 'fmt': '154.50'}, 'preMarketPrice': {'raw': 152.5, 'fmt': '152.50'}, 'preMarketTime': 1675693799, 'exchangeDataDelayedBy': 0, 'toCurrency': None, 'postMarketChange': {}, 'postMarketPrice': {}, 'exchangeName': 'NasdaqGS', 'preMarketChange': {'raw': -2, 'fmt': '-2.00'}, 'circulatingSupply': {}, 'regularMarketDayLow': {'raw': 150.9, 'fmt': '150.90'}, 'priceHint': {'raw': 2, 'fmt': '2', 'longFmt': '2'}, 'currency': 'USD', 'regularMarketPrice': {'raw': 152.2211, 'fmt': '152.22'}, 'regularMarketVolume': {'raw': 27877131, 'fmt': '27.88M', 'longFmt': '27,877,131.00'}, 'lastMarket': None, 'regularMarketSource': 'FREE_REALTIME', 'openInterest': {}, 'marketState': 'REGULAR', 'underlyingSymbol': None, 'marketCap': {'raw': 2408427028480, 'fmt': '2.41T', 'longFmt': '2,408,427,028,480.00'}, 'quoteType': 'EQUITY', 'preMarketChangePercent': {'raw': -0.012945, 'fmt': '-1.29%'}, 'volumeAllCurrencies': {}, 'strikePrice': {}, 'symbol': 'AAPL', 'preMarketSource': 'FREE_REALTIME', 'maxAge': 1, 'fromCurrency': None, 'regularMarketChangePercent': {'raw': -0.014750162, 'fmt': '-1.48%'}}, 'incomeStatementHistoryQuarterly': {'incomeStatementHistory': [{'researchDevelopment': {'raw': 7709000000, 'fmt': '7.71B', 'longFmt': '7,709,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 35623000000, 'fmt': '35.62B', 'longFmt': '35,623,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}, 'sellingGeneralAdministrative': {'raw': 6607000000, 'fmt': '6.61B', 'longFmt': '6,607,000,000'}, 'grossProfit': {'raw': 50332000000, 'fmt': '50.33B', 'longFmt': '50,332,000,000'}, 'ebit': {'raw': 36016000000, 'fmt': '36.02B', 'longFmt': '36,016,000,000'}, 'endDate': {'raw': 1672444800, 'fmt': '2022-12-31'}, 'operatingIncome': {'raw': 36016000000, 'fmt': '36.02B', 'longFmt': '36,016,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -1003000000, 'fmt': '-1B', 'longFmt': '-1,003,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 5625000000, 'fmt': '5.62B', 'longFmt': '5,625,000,000'}, 'totalRevenue': {'raw': 117154000000, 'fmt': '117.15B', 'longFmt': '117,154,000,000'}, 'totalOperatingExpenses': {'raw': 81138000000, 'fmt': '81.14B', 'longFmt': '81,138,000,000'}, 'costOfRevenue': {'raw': 66822000000, 'fmt': '66.82B', 'longFmt': '66,822,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': -393000000, 'fmt': '-393M', 'longFmt': '-393,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}}, {'researchDevelopment': {'raw': 6761000000, 'fmt': '6.76B', 'longFmt': '6,761,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 24657000000, 'fmt': '24.66B', 'longFmt': '24,657,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}, 'sellingGeneralAdministrative': {'raw': 6440000000, 'fmt': '6.44B', 'longFmt': '6,440,000,000'}, 'grossProfit': {'raw': 38095000000, 'fmt': '38.09B', 'longFmt': '38,095,000,000'}, 'ebit': {'raw': 24894000000, 'fmt': '24.89B', 'longFmt': '24,894,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'operatingIncome': {'raw': 24894000000, 'fmt': '24.89B', 'longFmt': '24,894,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -827000000, 'fmt': '-827M', 'longFmt': '-827,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 3936000000, 'fmt': '3.94B', 'longFmt': '3,936,000,000'}, 'totalRevenue': {'raw': 90146000000, 'fmt': '90.15B', 'longFmt': '90,146,000,000'}, 'totalOperatingExpenses': {'raw': 65252000000, 'fmt': '65.25B', 'longFmt': '65,252,000,000'}, 'costOfRevenue': {'raw': 52051000000, 'fmt': '52.05B', 'longFmt': '52,051,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': -237000000, 'fmt': '-237M', 'longFmt': '-237,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}}, {'researchDevelopment': {'raw': 6797000000, 'fmt': '6.8B', 'longFmt': '6,797,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 23066000000, 'fmt': '23.07B', 'longFmt': '23,066,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}, 'sellingGeneralAdministrative': {'raw': 6012000000, 'fmt': '6.01B', 'longFmt': '6,012,000,000'}, 'grossProfit': {'raw': 35885000000, 'fmt': '35.88B', 'longFmt': '35,885,000,000'}, 'ebit': {'raw': 23076000000, 'fmt': '23.08B', 'longFmt': '23,076,000,000'}, 'endDate': {'raw': 1656115200, 'fmt': '2022-06-25'}, 'operatingIncome': {'raw': 23076000000, 'fmt': '23.08B', 'longFmt': '23,076,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -719000000, 'fmt': '-719M', 'longFmt': '-719,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 3624000000, 'fmt': '3.62B', 'longFmt': '3,624,000,000'}, 'totalRevenue': {'raw': 82959000000, 'fmt': '82.96B', 'longFmt': '82,959,000,000'}, 'totalOperatingExpenses': {'raw': 59883000000, 'fmt': '59.88B', 'longFmt': '59,883,000,000'}, 'costOfRevenue': {'raw': 47074000000, 'fmt': '47.07B', 'longFmt': '47,074,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': -10000000, 'fmt': '-10M', 'longFmt': '-10,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}}, {'researchDevelopment': {'raw': 6387000000, 'fmt': '6.39B', 'longFmt': '6,387,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 30139000000, 'fmt': '30.14B', 'longFmt': '30,139,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}, 'sellingGeneralAdministrative': {'raw': 6193000000, 'fmt': '6.19B', 'longFmt': '6,193,000,000'}, 'grossProfit': {'raw': 42559000000, 'fmt': '42.56B', 'longFmt': '42,559,000,000'}, 'ebit': {'raw': 29979000000, 'fmt': '29.98B', 'longFmt': '29,979,000,000'}, 'endDate': {'raw': 1648252800, 'fmt': '2022-03-26'}, 'operatingIncome': {'raw': 29979000000, 'fmt': '29.98B', 'longFmt': '29,979,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -691000000, 'fmt': '-691M', 'longFmt': '-691,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 5129000000, 'fmt': '5.13B', 'longFmt': '5,129,000,000'}, 'totalRevenue': {'raw': 97278000000, 'fmt': '97.28B', 'longFmt': '97,278,000,000'}, 'totalOperatingExpenses': {'raw': 67299000000, 'fmt': '67.3B', 'longFmt': '67,299,000,000'}, 'costOfRevenue': {'raw': 54719000000, 'fmt': '54.72B', 'longFmt': '54,719,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': 160000000, 'fmt': '160M', 'longFmt': '160,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}}], 'maxAge': 86400}, 'incomeStatementHistory': {'incomeStatementHistory': [{'researchDevelopment': {'raw': 26251000000, 'fmt': '26.25B', 'longFmt': '26,251,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 119103000000, 'fmt': '119.1B', 'longFmt': '119,103,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}, 'sellingGeneralAdministrative': {'raw': 25094000000, 'fmt': '25.09B', 'longFmt': '25,094,000,000'}, 'grossProfit': {'raw': 170782000000, 'fmt': '170.78B', 'longFmt': '170,782,000,000'}, 'ebit': {'raw': 119437000000, 'fmt': '119.44B', 'longFmt': '119,437,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'operatingIncome': {'raw': 119437000000, 'fmt': '119.44B', 'longFmt': '119,437,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -2931000000, 'fmt': '-2.93B', 'longFmt': '-2,931,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 19300000000, 'fmt': '19.3B', 'longFmt': '19,300,000,000'}, 'totalRevenue': {'raw': 394328000000, 'fmt': '394.33B', 'longFmt': '394,328,000,000'}, 'totalOperatingExpenses': {'raw': 274891000000, 'fmt': '274.89B', 'longFmt': '274,891,000,000'}, 'costOfRevenue': {'raw': 223546000000, 'fmt': '223.55B', 'longFmt': '223,546,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': -334000000, 'fmt': '-334M', 'longFmt': '-334,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}}, {'researchDevelopment': {'raw': 21914000000, 'fmt': '21.91B', 'longFmt': '21,914,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 109207000000, 'fmt': '109.21B', 'longFmt': '109,207,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}, 'sellingGeneralAdministrative': {'raw': 21973000000, 'fmt': '21.97B', 'longFmt': '21,973,000,000'}, 'grossProfit': {'raw': 152836000000, 'fmt': '152.84B', 'longFmt': '152,836,000,000'}, 'ebit': {'raw': 108949000000, 'fmt': '108.95B', 'longFmt': '108,949,000,000'}, 'endDate': {'raw': 1632528000, 'fmt': '2021-09-25'}, 'operatingIncome': {'raw': 108949000000, 'fmt': '108.95B', 'longFmt': '108,949,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -2645000000, 'fmt': '-2.65B', 'longFmt': '-2,645,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 14527000000, 'fmt': '14.53B', 'longFmt': '14,527,000,000'}, 'totalRevenue': {'raw': 365817000000, 'fmt': '365.82B', 'longFmt': '365,817,000,000'}, 'totalOperatingExpenses': {'raw': 256868000000, 'fmt': '256.87B', 'longFmt': '256,868,000,000'}, 'costOfRevenue': {'raw': 212981000000, 'fmt': '212.98B', 'longFmt': '212,981,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': 258000000, 'fmt': '258M', 'longFmt': '258,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}}, {'researchDevelopment': {'raw': 18752000000, 'fmt': '18.75B', 'longFmt': '18,752,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 67091000000, 'fmt': '67.09B', 'longFmt': '67,091,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}, 'sellingGeneralAdministrative': {'raw': 19916000000, 'fmt': '19.92B', 'longFmt': '19,916,000,000'}, 'grossProfit': {'raw': 104956000000, 'fmt': '104.96B', 'longFmt': '104,956,000,000'}, 'ebit': {'raw': 66288000000, 'fmt': '66.29B', 'longFmt': '66,288,000,000'}, 'endDate': {'raw': 1601078400, 'fmt': '2020-09-26'}, 'operatingIncome': {'raw': 66288000000, 'fmt': '66.29B', 'longFmt': '66,288,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -2873000000, 'fmt': '-2.87B', 'longFmt': '-2,873,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 9680000000, 'fmt': '9.68B', 'longFmt': '9,680,000,000'}, 'totalRevenue': {'raw': 274515000000, 'fmt': '274.51B', 'longFmt': '274,515,000,000'}, 'totalOperatingExpenses': {'raw': 208227000000, 'fmt': '208.23B', 'longFmt': '208,227,000,000'}, 'costOfRevenue': {'raw': 169559000000, 'fmt': '169.56B', 'longFmt': '169,559,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': 803000000, 'fmt': '803M', 'longFmt': '803,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}}, {'researchDevelopment': {'raw': 16217000000, 'fmt': '16.22B', 'longFmt': '16,217,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 65737000000, 'fmt': '65.74B', 'longFmt': '65,737,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}, 'sellingGeneralAdministrative': {'raw': 18245000000, 'fmt': '18.25B', 'longFmt': '18,245,000,000'}, 'grossProfit': {'raw': 98392000000, 'fmt': '98.39B', 'longFmt': '98,392,000,000'}, 'ebit': {'raw': 63930000000, 'fmt': '63.93B', 'longFmt': '63,930,000,000'}, 'endDate': {'raw': 1569628800, 'fmt': '2019-09-28'}, 'operatingIncome': {'raw': 63930000000, 'fmt': '63.93B', 'longFmt': '63,930,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -3576000000, 'fmt': '-3.58B', 'longFmt': '-3,576,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 10481000000, 'fmt': '10.48B', 'longFmt': '10,481,000,000'}, 'totalRevenue': {'raw': 260174000000, 'fmt': '260.17B', 'longFmt': '260,174,000,000'}, 'totalOperatingExpenses': {'raw': 196244000000, 'fmt': '196.24B', 'longFmt': '196,244,000,000'}, 'costOfRevenue': {'raw': 161782000000, 'fmt': '161.78B', 'longFmt': '161,782,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': 1807000000, 'fmt': '1.81B', 'longFmt': '1,807,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}}], 'maxAge': 86400}, 'balanceSheetHistory': {'balanceSheetStatements': [{'totalLiab': {'raw': 302083000000, 'fmt': '302.08B', 'longFmt': '302,083,000,000'}, 'totalStockholderEquity': {'raw': 50672000000, 'fmt': '50.67B', 'longFmt': '50,672,000,000'}, 'otherCurrentLiab': {'raw': 67094000000, 'fmt': '67.09B', 'longFmt': '67,094,000,000'}, 'totalAssets': {'raw': 352755000000, 'fmt': '352.75B', 'longFmt': '352,755,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'commonStock': {'raw': 64849000000, 'fmt': '64.85B', 'longFmt': '64,849,000,000'}, 'otherCurrentAssets': {'raw': 21223000000, 'fmt': '21.22B', 'longFmt': '21,223,000,000'}, 'retainedEarnings': {'raw': -3068000000, 'fmt': '-3.07B', 'longFmt': '-3,068,000,000'}, 'otherLiab': {'raw': 38394000000, 'fmt': '38.39B', 'longFmt': '38,394,000,000'}, 'treasuryStock': {'raw': -11109000000, 'fmt': '-11.11B', 'longFmt': '-11,109,000,000'}, 'otherAssets': {'raw': 44011000000, 'fmt': '44.01B', 'longFmt': '44,011,000,000'}, 'cash': {'raw': 23646000000, 'fmt': '23.65B', 'longFmt': '23,646,000,000'}, 'totalCurrentLiabilities': {'raw': 153982000000, 'fmt': '153.98B', 'longFmt': '153,982,000,000'}, 'shortLongTermDebt': {'raw': 11128000000, 'fmt': '11.13B', 'longFmt': '11,128,000,000'}, 'otherStockholderEquity': {'raw': -11109000000, 'fmt': '-11.11B', 'longFmt': '-11,109,000,000'}, 'propertyPlantEquipment': {'raw': 52534000000, 'fmt': '52.53B', 'longFmt': '52,534,000,000'}, 'totalCurrentAssets': {'raw': 135405000000, 'fmt': '135.41B', 'longFmt': '135,405,000,000'}, 'longTermInvestments': {'raw': 120805000000, 'fmt': '120.81B', 'longFmt': '120,805,000,000'}, 'netTangibleAssets': {'raw': 50672000000, 'fmt': '50.67B', 'longFmt': '50,672,000,000'}, 'shortTermInvestments': {'raw': 24658000000, 'fmt': '24.66B', 'longFmt': '24,658,000,000'}, 'netReceivables': {'raw': 60932000000, 'fmt': '60.93B', 'longFmt': '60,932,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 98959000000, 'fmt': '98.96B', 'longFmt': '98,959,000,000'}, 'inventory': {'raw': 4946000000, 'fmt': '4.95B', 'longFmt': '4,946,000,000'}, 'accountsPayable': {'raw': 64115000000, 'fmt': '64.11B', 'longFmt': '64,115,000,000'}}, {'totalLiab': {'raw': 287912000000, 'fmt': '287.91B', 'longFmt': '287,912,000,000'}, 'totalStockholderEquity': {'raw': 63090000000, 'fmt': '63.09B', 'longFmt': '63,090,000,000'}, 'otherCurrentLiab': {'raw': 53577000000, 'fmt': '53.58B', 'longFmt': '53,577,000,000'}, 'totalAssets': {'raw': 351002000000, 'fmt': '351B', 'longFmt': '351,002,000,000'}, 'endDate': {'raw': 1632528000, 'fmt': '2021-09-25'}, 'commonStock': {'raw': 57365000000, 'fmt': '57.37B', 'longFmt': '57,365,000,000'}, 'otherCurrentAssets': {'raw': 14111000000, 'fmt': '14.11B', 'longFmt': '14,111,000,000'}, 'retainedEarnings': {'raw': 5562000000, 'fmt': '5.56B', 'longFmt': '5,562,000,000'}, 'otherLiab': {'raw': 43050000000, 'fmt': '43.05B', 'longFmt': '43,050,000,000'}, 'treasuryStock': {'raw': 163000000, 'fmt': '163M', 'longFmt': '163,000,000'}, 'otherAssets': {'raw': 38762000000, 'fmt': '38.76B', 'longFmt': '38,762,000,000'}, 'cash': {'raw': 34940000000, 'fmt': '34.94B', 'longFmt': '34,940,000,000'}, 'totalCurrentLiabilities': {'raw': 125481000000, 'fmt': '125.48B', 'longFmt': '125,481,000,000'}, 'shortLongTermDebt': {'raw': 9613000000, 'fmt': '9.61B', 'longFmt': '9,613,000,000'}, 'otherStockholderEquity': {'raw': 163000000, 'fmt': '163M', 'longFmt': '163,000,000'}, 'propertyPlantEquipment': {'raw': 49527000000, 'fmt': '49.53B', 'longFmt': '49,527,000,000'}, 'totalCurrentAssets': {'raw': 134836000000, 'fmt': '134.84B', 'longFmt': '134,836,000,000'}, 'longTermInvestments': {'raw': 127877000000, 'fmt': '127.88B', 'longFmt': '127,877,000,000'}, 'netTangibleAssets': {'raw': 63090000000, 'fmt': '63.09B', 'longFmt': '63,090,000,000'}, 'shortTermInvestments': {'raw': 27699000000, 'fmt': '27.7B', 'longFmt': '27,699,000,000'}, 'netReceivables': {'raw': 51506000000, 'fmt': '51.51B', 'longFmt': '51,506,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 109106000000, 'fmt': '109.11B', 'longFmt': '109,106,000,000'}, 'inventory': {'raw': 6580000000, 'fmt': '6.58B', 'longFmt': '6,580,000,000'}, 'accountsPayable': {'raw': 54763000000, 'fmt': '54.76B', 'longFmt': '54,763,000,000'}}, {'totalLiab': {'raw': 258549000000, 'fmt': '258.55B', 'longFmt': '258,549,000,000'}, 'totalStockholderEquity': {'raw': 65339000000, 'fmt': '65.34B', 'longFmt': '65,339,000,000'}, 'otherCurrentLiab': {'raw': 47867000000, 'fmt': '47.87B', 'longFmt': '47,867,000,000'}, 'totalAssets': {'raw': 323888000000, 'fmt': '323.89B', 'longFmt': '323,888,000,000'}, 'endDate': {'raw': 1601078400, 'fmt': '2020-09-26'}, 'commonStock': {'raw': 50779000000, 'fmt': '50.78B', 'longFmt': '50,779,000,000'}, 'otherCurrentAssets': {'raw': 11264000000, 'fmt': '11.26B', 'longFmt': '11,264,000,000'}, 'retainedEarnings': {'raw': 14966000000, 'fmt': '14.97B', 'longFmt': '14,966,000,000'}, 'otherLiab': {'raw': 46108000000, 'fmt': '46.11B', 'longFmt': '46,108,000,000'}, 'treasuryStock': {'raw': -406000000, 'fmt': '-406M', 'longFmt': '-406,000,000'}, 'otherAssets': {'raw': 33952000000, 'fmt': '33.95B', 'longFmt': '33,952,000,000'}, 'cash': {'raw': 38016000000, 'fmt': '38.02B', 'longFmt': '38,016,000,000'}, 'totalCurrentLiabilities': {'raw': 105392000000, 'fmt': '105.39B', 'longFmt': '105,392,000,000'}, 'shortLongTermDebt': {'raw': 8773000000, 'fmt': '8.77B', 'longFmt': '8,773,000,000'}, 'otherStockholderEquity': {'raw': -406000000, 'fmt': '-406M', 'longFmt': '-406,000,000'}, 'propertyPlantEquipment': {'raw': 45336000000, 'fmt': '45.34B', 'longFmt': '45,336,000,000'}, 'totalCurrentAssets': {'raw': 143713000000, 'fmt': '143.71B', 'longFmt': '143,713,000,000'}, 'longTermInvestments': {'raw': 100887000000, 'fmt': '100.89B', 'longFmt': '100,887,000,000'}, 'netTangibleAssets': {'raw': 65339000000, 'fmt': '65.34B', 'longFmt': '65,339,000,000'}, 'shortTermInvestments': {'raw': 52927000000, 'fmt': '52.93B', 'longFmt': '52,927,000,000'}, 'netReceivables': {'raw': 37445000000, 'fmt': '37.45B', 'longFmt': '37,445,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 98667000000, 'fmt': '98.67B', 'longFmt': '98,667,000,000'}, 'inventory': {'raw': 4061000000, 'fmt': '4.06B', 'longFmt': '4,061,000,000'}, 'accountsPayable': {'raw': 42296000000, 'fmt': '42.3B', 'longFmt': '42,296,000,000'}}, {'totalLiab': {'raw': 248028000000, 'fmt': '248.03B', 'longFmt': '248,028,000,000'}, 'totalStockholderEquity': {'raw': 90488000000, 'fmt': '90.49B', 'longFmt': '90,488,000,000'}, 'otherCurrentLiab': {'raw': 43242000000, 'fmt': '43.24B', 'longFmt': '43,242,000,000'}, 'totalAssets': {'raw': 338516000000, 'fmt': '338.52B', 'longFmt': '338,516,000,000'}, 'endDate': {'raw': 1569628800, 'fmt': '2019-09-28'}, 'commonStock': {'raw': 45174000000, 'fmt': '45.17B', 'longFmt': '45,174,000,000'}, 'otherCurrentAssets': {'raw': 12352000000, 'fmt': '12.35B', 'longFmt': '12,352,000,000'}, 'retainedEarnings': {'raw': 45898000000, 'fmt': '45.9B', 'longFmt': '45,898,000,000'}, 'otherLiab': {'raw': 50503000000, 'fmt': '50.5B', 'longFmt': '50,503,000,000'}, 'treasuryStock': {'raw': -584000000, 'fmt': '-584M', 'longFmt': '-584,000,000'}, 'otherAssets': {'raw': 32978000000, 'fmt': '32.98B', 'longFmt': '32,978,000,000'}, 'cash': {'raw': 48844000000, 'fmt': '48.84B', 'longFmt': '48,844,000,000'}, 'totalCurrentLiabilities': {'raw': 105718000000, 'fmt': '105.72B', 'longFmt': '105,718,000,000'}, 'shortLongTermDebt': {'raw': 10260000000, 'fmt': '10.26B', 'longFmt': '10,260,000,000'}, 'otherStockholderEquity': {'raw': -584000000, 'fmt': '-584M', 'longFmt': '-584,000,000'}, 'propertyPlantEquipment': {'raw': 37378000000, 'fmt': '37.38B', 'longFmt': '37,378,000,000'}, 'totalCurrentAssets': {'raw': 162819000000, 'fmt': '162.82B', 'longFmt': '162,819,000,000'}, 'longTermInvestments': {'raw': 105341000000, 'fmt': '105.34B', 'longFmt': '105,341,000,000'}, 'netTangibleAssets': {'raw': 90488000000, 'fmt': '90.49B', 'longFmt': '90,488,000,000'}, 'shortTermInvestments': {'raw': 51713000000, 'fmt': '51.71B', 'longFmt': '51,713,000,000'}, 'netReceivables': {'raw': 45804000000, 'fmt': '45.8B', 'longFmt': '45,804,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 91807000000, 'fmt': '91.81B', 'longFmt': '91,807,000,000'}, 'inventory': {'raw': 4106000000, 'fmt': '4.11B', 'longFmt': '4,106,000,000'}, 'accountsPayable': {'raw': 46236000000, 'fmt': '46.24B', 'longFmt': '46,236,000,000'}}], 'maxAge': 86400}, 'cashflowStatementHistoryQuarterly': {'cashflowStatements': [{'investments': {'raw': 2483000000, 'fmt': '2.48B', 'longFmt': '2,483,000,000'}, 'changeToLiabilities': {'raw': -5944000000, 'fmt': '-5.94B', 'longFmt': '-5,944,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -1445000000, 'fmt': '-1.45B', 'longFmt': '-1,445,000,000'}, 'netBorrowings': {'raw': -9615000000, 'fmt': '-9.62B', 'longFmt': '-9,615,000,000'}, 'totalCashFromFinancingActivities': {'raw': -35563000000, 'fmt': '-35.56B', 'longFmt': '-35,563,000,000'}, 'changeToOperatingActivities': {'raw': 1979000000, 'fmt': '1.98B', 'longFmt': '1,979,000,000'}, 'netIncome': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}, 'changeInCash': {'raw': -3003000000, 'fmt': '-3B', 'longFmt': '-3,003,000,000'}, 'endDate': {'raw': 1672444800, 'fmt': '2022-12-31'}, 'repurchaseOfStock': {'raw': -21791000000, 'fmt': '-21.79B', 'longFmt': '-21,791,000,000'}, 'totalCashFromOperatingActivities': {'raw': 34005000000, 'fmt': '34.01B', 'longFmt': '34,005,000,000'}, 'depreciation': {'raw': 2916000000, 'fmt': '2.92B', 'longFmt': '2,916,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -141000000, 'fmt': '-141M', 'longFmt': '-141,000,000'}, 'dividendsPaid': {'raw': -3768000000, 'fmt': '-3.77B', 'longFmt': '-3,768,000,000'}, 'changeToInventory': {'raw': -1807000000, 'fmt': '-1.81B', 'longFmt': '-1,807,000,000'}, 'changeToAccountReceivables': {'raw': 4275000000, 'fmt': '4.28B', 'longFmt': '4,275,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -389000000, 'fmt': '-389M', 'longFmt': '-389,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 2588000000, 'fmt': '2.59B', 'longFmt': '2,588,000,000'}, 'capitalExpenditures': {'raw': -3787000000, 'fmt': '-3.79B', 'longFmt': '-3,787,000,000'}}, {'investments': {'raw': 2806000000, 'fmt': '2.81B', 'longFmt': '2,806,000,000'}, 'changeToLiabilities': {'raw': 15774000000, 'fmt': '15.77B', 'longFmt': '15,774,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -1217000000, 'fmt': '-1.22B', 'longFmt': '-1,217,000,000'}, 'netBorrowings': {'raw': 1657000000, 'fmt': '1.66B', 'longFmt': '1,657,000,000'}, 'totalCashFromFinancingActivities': {'raw': -26794000000, 'fmt': '-26.79B', 'longFmt': '-26,794,000,000'}, 'changeToOperatingActivities': {'raw': -9873000000, 'fmt': '-9.87B', 'longFmt': '-9,873,000,000'}, 'netIncome': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}, 'changeInCash': {'raw': -3884000000, 'fmt': '-3.88B', 'longFmt': '-3,884,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'repurchaseOfStock': {'raw': -24736000000, 'fmt': '-24.74B', 'longFmt': '-24,736,000,000'}, 'totalCashFromOperatingActivities': {'raw': 24127000000, 'fmt': '24.13B', 'longFmt': '24,127,000,000'}, 'depreciation': {'raw': 2865000000, 'fmt': '2.87B', 'longFmt': '2,865,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -597000000, 'fmt': '-597M', 'longFmt': '-597,000,000'}, 'dividendsPaid': {'raw': -3703000000, 'fmt': '-3.7B', 'longFmt': '-3,703,000,000'}, 'changeToInventory': {'raw': 435000000, 'fmt': '435M', 'longFmt': '435,000,000'}, 'changeToAccountReceivables': {'raw': -6384000000, 'fmt': '-6.38B', 'longFmt': '-6,384,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -12000000, 'fmt': '-12M', 'longFmt': '-12,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 589000000, 'fmt': '589M', 'longFmt': '589,000,000'}, 'capitalExpenditures': {'raw': -3289000000, 'fmt': '-3.29B', 'longFmt': '-3,289,000,000'}}, {'investments': {'raw': 6953000000, 'fmt': '6.95B', 'longFmt': '6,953,000,000'}, 'changeToLiabilities': {'raw': -4725000000, 'fmt': '-4.72B', 'longFmt': '-4,725,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': 4234000000, 'fmt': '4.23B', 'longFmt': '4,234,000,000'}, 'netBorrowings': {'raw': 971000000, 'fmt': '971M', 'longFmt': '971,000,000'}, 'totalCashFromFinancingActivities': {'raw': -27445000000, 'fmt': '-27.45B', 'longFmt': '-27,445,000,000'}, 'changeToOperatingActivities': {'raw': 2497000000, 'fmt': '2.5B', 'longFmt': '2,497,000,000'}, 'netIncome': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}, 'changeInCash': {'raw': -319000000, 'fmt': '-319M', 'longFmt': '-319,000,000'}, 'endDate': {'raw': 1656115200, 'fmt': '2022-06-25'}, 'repurchaseOfStock': {'raw': -24562000000, 'fmt': '-24.56B', 'longFmt': '-24,562,000,000'}, 'totalCashFromOperatingActivities': {'raw': 22892000000, 'fmt': '22.89B', 'longFmt': '22,892,000,000'}, 'depreciation': {'raw': 2805000000, 'fmt': '2.81B', 'longFmt': '2,805,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -615000000, 'fmt': '-615M', 'longFmt': '-615,000,000'}, 'dividendsPaid': {'raw': -3811000000, 'fmt': '-3.81B', 'longFmt': '-3,811,000,000'}, 'changeToInventory': {'raw': -16000000, 'fmt': '-16M', 'longFmt': '-16,000,000'}, 'changeToAccountReceivables': {'raw': -981000000, 'fmt': '-981M', 'longFmt': '-981,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -43000000, 'fmt': '-43M', 'longFmt': '-43,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 3870000000, 'fmt': '3.87B', 'longFmt': '3,870,000,000'}, 'capitalExpenditures': {'raw': -2102000000, 'fmt': '-2.1B', 'longFmt': '-2,102,000,000'}}, {'investments': {'raw': -6390000000, 'fmt': '-6.39B', 'longFmt': '-6,390,000,000'}, 'changeToLiabilities': {'raw': -21398000000, 'fmt': '-21.4B', 'longFmt': '-21,398,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -9265000000, 'fmt': '-9.27B', 'longFmt': '-9,265,000,000'}, 'netBorrowings': {'raw': -1751000000, 'fmt': '-1.75B', 'longFmt': '-1,751,000,000'}, 'totalCashFromFinancingActivities': {'raw': -28351000000, 'fmt': '-28.35B', 'longFmt': '-28,351,000,000'}, 'changeToOperatingActivities': {'raw': 9486000000, 'fmt': '9.49B', 'longFmt': '9,486,000,000'}, 'netIncome': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}, 'changeInCash': {'raw': -9450000000, 'fmt': '-9.45B', 'longFmt': '-9,450,000,000'}, 'endDate': {'raw': 1648252800, 'fmt': '2022-03-26'}, 'repurchaseOfStock': {'raw': -22961000000, 'fmt': '-22.96B', 'longFmt': '-22,961,000,000'}, 'totalCashFromOperatingActivities': {'raw': 28166000000, 'fmt': '28.17B', 'longFmt': '28,166,000,000'}, 'depreciation': {'raw': 2737000000, 'fmt': '2.74B', 'longFmt': '2,737,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -194000000, 'fmt': '-194M', 'longFmt': '-194,000,000'}, 'dividendsPaid': {'raw': -3595000000, 'fmt': '-3.6B', 'longFmt': '-3,595,000,000'}, 'changeToInventory': {'raw': 384000000, 'fmt': '384M', 'longFmt': '384,000,000'}, 'changeToAccountReceivables': {'raw': 9476000000, 'fmt': '9.48B', 'longFmt': '9,476,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -44000000, 'fmt': '-44M', 'longFmt': '-44,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 2471000000, 'fmt': '2.47B', 'longFmt': '2,471,000,000'}, 'capitalExpenditures': {'raw': -2514000000, 'fmt': '-2.51B', 'longFmt': '-2,514,000,000'}}], 'maxAge': 86400}, 'quoteType': {'exchange': 'NMS', 'shortName': 'Apple Inc.', 'longName': 'Apple Inc.', 'exchangeTimezoneName': 'America/New_York', 'exchangeTimezoneShortName': 'EST', 'isEsgPopulated': False, 'gmtOffSetMilliseconds': '-18000000', 'quoteType': 'EQUITY', 'symbol': 'AAPL', 'messageBoardId': 'finmb_24937', 'market': 'us_market'}, 'summaryDetail': {'previousClose': {'raw': 154.5, 'fmt': '154.50'}, 'regularMarketOpen': {'raw': 152.575, 'fmt': '152.57'}, 'twoHundredDayAverage': {'raw': 147.80174, 'fmt': '147.80'}, 'trailingAnnualDividendYield': {'raw': 0.005889968, 'fmt': '0.59%'}, 'payoutRatio': {'raw': 0.1545, 'fmt': '15.45%'}, 'volume24Hr': {}, 'regularMarketDayHigh': {'raw': 153.1, 'fmt': '153.10'}, 'navPrice': {}, 'averageDailyVolume10Day': {'raw': 81876490, 'fmt': '81.88M', 'longFmt': '81,876,490'}, 'totalAssets': {}, 'regularMarketPreviousClose': {'raw': 154.5, 'fmt': '154.50'}, 'fiftyDayAverage': {'raw': 138.8904, 'fmt': '138.89'}, 'trailingAnnualDividendRate': {'raw': 0.91, 'fmt': '0.91'}, 'open': {'raw': 152.575, 'fmt': '152.57'}, 'toCurrency': None, 'averageVolume10days': {'raw': 81876490, 'fmt': '81.88M', 'longFmt': '81,876,490'}, 'expireDate': {}, 'yield': {}, 'algorithm': None, 'dividendRate': {'raw': 0.92, 'fmt': '0.92'}, 'exDividendDate': {'raw': 1675987200, 'fmt': '2023-02-10'}, 'beta': {'raw': 1.277894, 'fmt': '1.28'}, 'circulatingSupply': {}, 'startDate': {}, 'regularMarketDayLow': {'raw': 150.9, 'fmt': '150.90'}, 'priceHint': {'raw': 2, 'fmt': '2', 'longFmt': '2'}, 'currency': 'USD', 'trailingPE': {'raw': 25.84399, 'fmt': '25.84'}, 'regularMarketVolume': {'raw': 27877131, 'fmt': '27.88M', 'longFmt': '27,877,131'}, 'lastMarket': None, 'maxSupply': {}, 'openInterest': {}, 'marketCap': {'raw': 2408427028480, 'fmt': '2.41T', 'longFmt': '2,408,427,028,480'}, 'volumeAllCurrencies': {}, 'strikePrice': {}, 'averageVolume': {'raw': 78381785, 'fmt': '78.38M', 'longFmt': '78,381,785'}, 'priceToSalesTrailing12Months': {'raw': 6.214702, 'fmt': '6.21'}, 'dayLow': {'raw': 150.9, 'fmt': '150.90'}, 'ask': {'raw': 152.31, 'fmt': '152.31'}, 'ytdReturn': {}, 'askSize': {'raw': 2200, 'fmt': '2.2k', 'longFmt': '2,200'}, 'volume': {'raw': 27877131, 'fmt': '27.88M', 'longFmt': '27,877,131'}, 'fiftyTwoWeekHigh': {'raw': 179.61, 'fmt': '179.61'}, 'forwardPE': {'raw': 23.02891, 'fmt': '23.03'}, 'maxAge': 1, 'fromCurrency': None, 'fiveYearAvgDividendYield': {'raw': 0.96, 'fmt': '0.96'}, 'fiftyTwoWeekLow': {'raw': 124.17, 'fmt': '124.17'}, 'bid': {'raw': 152.34, 'fmt': '152.34'}, 'tradeable': False, 'dividendYield': {'raw': 0.006, 'fmt': '0.60%'}, 'bidSize': {'raw': 3000, 'fmt': '3k', 'longFmt': '3,000'}, 'dayHigh': {'raw': 153.1, 'fmt': '153.10'}, 'coinMarketCapLink': None}, 'symbol': 'AAPL', 'pageViews': {'shortTermTrend': 'UP', 'midTermTrend': 'UP', 'longTermTrend': 'UP', 'maxAge': 1}}, 'FinanceConfigStore': {'app': {'base': {'feedback': {'enabled': False}, 'marketdata': {'lists': {'most_active': {'name': 'MOST_ACTIVE_TITLE', 'uri': '/most-active', 'count': 5, 'listCount': 30, 'predefinedScrId': 'most_actives'}, 'options_highest_open_interest': {'name': 'OPTIONS_HIGHEST_OPEN_INTEREST_TITLE', 'uri': '/options/highest-open-interest', 'predefinedScrId': '65f51cea-8dc8-4e56-9f99-6ef7720eb69c'}, 'gainers': {'name': 'GAINERS_TITLE', 'uri': '/gainers', 'count': 5, 'listCount': 30, 'predefinedScrId': 'day_gainers'}, 'commodities': {'name': 'FUTURES', 'uri': '/commodities', 'count': 5, 'listCount': 30}, 'currencies': {'name': 'CURRENCIES_TITLE', 'uri': '/currencies', 'count': 5, 'listCount': 30}, 'trending_tickers': {'name': 'TRENDING_TICKERS_TITLE', 'uri': '/trending-tickers', 'count': 5, 'listCount': 30}, 'bonds': {'name': 'BONDS_TITLE', 'uri': '/bonds', 'count': 5, 'listCount': 30}, 'cryptocurrencies': {'name': 'CRYPTO_CURRENCIES', 'uri': '/crypto', 'count': 5, 'predefinedScrId': 'all_cryptocurrencies_us'}, 'losers': {'name': 'LOSERS_TITLE', 'uri': '/losers', 'count': 5, 'listCount': 30, 'predefinedScrId': 'day_losers'}, 'options_highest_implied_volatility': {'name': 'OPTIONS_HIGHEST_IMPLIED_VOLATALITY_TITLE', 'uri': '/options/highest-implied-volatility', 'predefinedScrId': '671c40b0-5ea8-4063-89b9-9db45bf9edf0'}, 'mutualfunds': {'name': 'MUTUALFUNDS_TITLE', 'uri': '/mutualfunds', 'count': 5, 'listCount': 30, 'predefinedScrId': 'top_mutual_funds'}, 'world_indices': {'name': 'WORLD_INDICES', 'uri': '/world-indices', 'count': 5, 'listCount': 30}, 'etfs': {'name': 'ETFS_TITLE', 'uri': '/etfs', 'count': 5, 'listCount': 30, 'predefinedScrId': 'top_etfs_us'}}, 'defaultLists': ['recentQuotes', 'cryptocurrencies', 'trending_tickers', 'most_active', 'gainers', 'losers', 'mutualfunds', 'etfs', 'currencies', 'commodities', 'options_highest_open_interest', 'options_highest_implied_volatility'], 'orderedLists': ['cryptocurrencies', 'trending_tickers', 'most_active', 'gainers', 'losers', 'mutualfunds', 'etfs', 'commodities', 'options_highest_open_interest', 'options_highest_implied_volatility', 'world_indices', 'currencies', 'bonds']}, 'host': 'finance.yahoo.com', 'hiringLinks': {'snv': 'https://www.linkedin.com/jobs2/cap/view/208631894?pathWildcard=208631894&trk=job_capjs', 'nyc': 'https://www.linkedin.com/jobs/view/188529482'}, 'timeouts': {'navigate': 10000}, 'spaceIds': {'TRADE_IDEAS': 1197807300, 'most_active': 1183331958, 'fullScreenChart': 2022773886, 'FUTURE': 97327109, 'EQUITY': 95993639, 'gainers': 1183331958, 'SCREENER_FUTURE': 1183336017, 'CRYPTO_PORTFOLIO': 1197812219, 'commodities': 97327075, 'SCREENER_EQUITY': 1183335883, 'SCREENER_INDEX': 1183336019, 'COMMODITY': 97327109, 'currencies': 2146786654, 'trending_tickers': 1183331958, 'BONDS': 95993639, 'bonds': 42328446, 'SCREENER_INSIDER': 1183335958, 'CURRENCY': 96390611, 'SCREENER_ETF': 1183335947, 'INDEX': 95993639, 'CRYPTOCURRENCY': 1197805203, 'QUOTE_BASE': 95993639, 'OPTION': 1197783905, 'fullScreenChart_MUTUALFUND': 1197773430, 'losers': 1183331958, 'SCREENER_BASE': 1183335867, 'ETF': 96469363, 'SCREENER_CRYPTOCURRENCY': 1183335995, 'CUL_IDX': 95993639, 'MUTUALFUND': 2712295, 'CUL_SUB_IDX': 95993639, 'mutualfunds': 1183331884, 'world_indices': 1183331958, 'SCREENER_OPTION': 1183335974, 'RESEARCH_REPORTS': 1197807299, 'etfs': 1183331881, 'industries': 1183331958, 'CATEGORY_options': 28951412, 'options': 1183331888, 'SCREENER_MUTUALFUND': 1183335884}, 'videoReel': {'capPortfolioSymbols': 20, 'capRecentQuotes': 20}, 'enableVideoManager': True, 'premium': {'sku': {'monthly': 'fin-yh-ft22178', 'annually': 'fin-yh-fte993687'}}, 'nativeAds': {'se': 4492794}, 'videoPlayer': {'baseUrl': 'https://yep.video.yahoo.com/oath/js/1/oath-player.js', 'device': 'nextgen-desktop', 'docking': {'fadeInAnimation': True, 'width': 300, 'height': 168.75, 'position': {'left': 'ref', 'right': 0, 'bottom': 45}, 'enableOnMuted': True, 'enableOnScrollUp': False, 'threshold': 60, 'enableOnScrollDown': False, 'ref': '.modal-open .render-target-modal .modalRight', 'showInfoCard': False}, 'enableRestoreOnNavigate': True, 'refreshDockingOnNavigate': True, 'version': None, 'vpaidTimeout': 10}}}}, 'LangStore': {'defaultBundle': 'td-app-finance', 'baseLangs': {'td-app-finance': {'10_YEARS': '10 Years', '1_D': '1D', '1_DAY_CHANGE': 'Change (1D)', '1_D_PERFORMANCE': '1D Performance', '1_D_PERF_ASC': '1D Performance Asc', '1_D_PERF_DESC': '1D Performance Desc', '1_M': '1M', '1_Y': '1Y', '1_YEAR': '1 Year', '200_DAY_MOVING_AVG': '200-Day Moving Average', '2_Y': '2Y', '30_DAYS_AGO': '30 Days Ago', '3_M': '3M', '3_YEARS': '3 Years', '50_DAY_MOVING_AVG': '50-Day Moving Average', '52_WEEK_CHANGE': '52-Week Change', '5_D': '5D', '5_Y': '5Y', '5_YEARS': '5 Years', '5_YEAR_AVERAGE_DIVIDEND_YIELD': '5 Year Average Dividend Yield', '60_DAYS_AGO': '60 Days Ago', '6_M': '6M', '7_DAYS_AGO': '7 Days Ago', '7_DAY_VISITS': 'Visits (7D)', '7_DAY_YIELD': '7 Day Yield', '90_DAYS_AGO': '90 Days Ago', 'ABOUT_TEXT': 'About {value}', 'ABOVE_AVG': 'Above Average', 'ACCIDENT_HEALTH_INSURANCE': 'Accident & Health Insurance', 'ACCIDENT_HEALTH_INSURANCE_DESC': 'Accident & Health Insurance Stocks', 'ACCOUNTS_PAYABLE': 'Accounts Payable', 'ACCOUNTS_RECEIVABLE': 'Accounts receivable', 'ACCOUNT_INFO': 'Account Info', 'ACCOUNT': 'Account', 'ACCRUED_INTEREST_RECEIVABLE': 'Accrued Interest Receivable', 'ACCRUED_INVESTMENT_INCOME': 'Accrued Investment Income', 'ACCUMULATED_AMORTIZATION': 'Accumulated Amortization', 'ACCUMULATED_DEPRECIATION': 'Accumulated Depreciation', 'ACCUMULATED_OTHER_COMPREHENSIVE_INCOME': 'Accumulated other comprehensive income', 'ACCURED_LIABILITES': 'Accrued liabilities', 'ACQUISITIONS_NET': 'Acquisitions, net', 'ACTIONS': 'Actions', 'ACTUAL': 'Actual', 'ADD': 'Add', 'ADDED': 'Added', 'ADDITIONAL_PAID_IN_CAPITAL': 'Additional Paid in Capital', 'ADDRESS': 'Address', 'ADD_AVATAR': 'Add avatar', 'ADD_CHART_COMPARISONS': 'Add Comparisons', 'ADD_CHART_INDICATORS': 'Add Indicators', 'ADD_FIELD': 'Add {field}', 'ADD_FILTER': 'Add another filter', 'ADD_HOLDINGS': 'Add Holdings', 'ADD_INDICATORS': 'Indicators', 'ADD_LOT': 'Add Lot', 'ADD_MANAGE_ACCOUNTS': 'Add or Manage accounts', 'ADD_REMOVE_LIST': 'Add to or remove from my watchlist', 'ADD_CASH_HOLDING': 'Add cash holding', 'ADD_NEW_CASH_TRANSACTION': 'Add Cash Transaction', 'ADD_NEW_TRANSACTION': 'Add a new transaction - {symbol} ({name})', 'ADD_SELECTED_STOCKS': 'Add Selected Stocks to...', 'ADD_SELECTED_STOCKS_SIGNED_OUT': '{content} to add selected stocks to your portfolios.', 'ADD_SYMBOL': 'Add Symbol', 'ADD_TO_PORTFOLIO': 'Add to Portfolio', 'ADD_TO_TOTAL_HOLDINGS': 'Add to Total Holdings', 'ADD_TO_WATCHLIST': 'Add to watchlist', 'ADD_TRANSACTION': 'Add a transaction', 'ADJUSTED_CLOSE': 'Adj Close**', 'ADJUSTED_GEOGRAPHY_SEGMENT_DATA': 'Adjusted Geography Segment Data', 'ADJUSTMENT_TO_NET_INCOME': 'Adjustments To Net Income', 'ADS_RELATED_TO': 'Ads related to: {name}', 'ADVANCE_FROM_FEDERAL_HOME_LOAN_BANKS': 'Advance From Federal Home Loan Banks', 'ADVERTISE_WITH_US': 'Advertise with us', 'ADVERTISING_AGENCIES': 'Advertising Agencies', 'ADVERTISING_AGENCIES_DESC': 'Advertising Agencies Stocks', 'ADVANCED_CHART': 'Advanced Chart', 'AD_ABBR': 'Ad', 'AD_DISLIKE': \"I don't like this ad\", 'AD_FEEDBACK_ADLITE_PROMO': 'Try Yahoo Finance Plus', 'AD_FEEDBACK_MESSAGE': 'Improve your future experience.', 'AD_FEEDBACK_NEGATIVE': \"Why don't you like this ad?\", 'AD_FEEDBACK_REVIEW': \"We'll review and make changes needed.\", 'AD_FEEDBACK_THANKYOU': 'Thanks for your feedback', 'AD_HIDDEN': 'This ad has been hidden', 'AD_LIKE': 'I like this ad', 'AD_TERMS': 'Why this ad?', 'ADD_DATE': 'Add date', 'AERONAUTIQUE_TITLE': 'Aeronautics', 'AEROSPACE_DEFENSE_MAJOR_DIVERSIFIED': 'Aerospace/Defense - Major Diversified', 'AEROSPACE_DEFENSE_MAJOR_DIVERSIFIED_DESC': 'Aerospace/Defense - Major Diversified Stocks', 'AEROSPACE_DEFENSE_PRODUCTS_SERVICES': 'Aerospace/Defense Products & Services', 'AEROSPACE_DEFENSE_PRODUCTS_SERVICES_DESC': 'Aerospace/Defense Products & Services Stocks', 'AGE': 'Age', 'AGGRESSIVE_SMALL_CAPS': 'Aggressive Small Caps', 'AGGRESSIVE_SMALL_CAPS_DESC': 'Small cap stocks with earnings growth rates better than 25%.', 'AGRICULTURAL_CHEMICALS': 'Agricultural Chemicals', 'AGRICULTURAL_CHEMICALS_DESC': 'Agricultural Chemicals Stocks', 'AIR_DELIVERY_FREIGHT_SERVICES': 'Air Delivery & Freight Services', 'AIR_DELIVERY_FREIGHT_SERVICES_DESC': 'Air Delivery & Freight Services Stocks', 'AIR_SERVICES_OTHER': 'Air Services, Other', 'AIR_SERVICES_OTHER_DESC': 'Air Services, Other Stocks', 'ALGORITHM': 'Algorithm', 'ALGO_WATCHLIST': 'Watchlist', 'ALIMENTACION-Y-CONSUMO_TITLE': 'Food and Consumption', 'ALL': 'All', 'ALLOCATION': 'Allocation', 'ALLOWANCE_FOR_DOUBTFUL_ACCOUNTS_RECEIVABLE': 'Allowance For Doubtful Accounts Receivable', 'ALLOWANCE_FOR_LOANS_AND_LEASE_LOSSES': 'Allowance for Loans And Lease Losses', 'ALLOWANCE_FOR_NOTES_RECEIVABLE': 'Allowance for Notes Receivable', 'ALL_EVENTS': 'All Events', 'ALL_INDICATORS': 'All Indicators', 'ALL_MARKETS': 'All Markets', 'ALL_NUMBER_IN_THOUSANDS': 'All numbers in thousands', 'ALL_PORTFOLIOS': 'All Portfolios', 'ALL_POSITIONS': 'All Positions', 'ALL_REPORTS': 'All reports', 'ALL_SCREENERS': 'All Screeners', 'ALL_TAXES_PAID': 'All Taxes Paid', 'ALPHA': 'Alpha', 'ALUMINUM': 'Aluminum', 'ALUMINUM_DESC': 'Aluminum Stocks', 'AMORTIZATION': 'Amortization', 'AMORTIZATION_AMORTIZATION_CASH_FLOW': 'Amortization & Amortization Cash Flow', 'AMORTIZATION_OF_FINANCING_COSTS_AND_DISCOUNTS': 'Amortization of Financing Costs And Discounts', 'AMORTIZATION_OF_INTANGIBLES': 'Amortization of Intangibles', 'AMORTIZATION_OF_SECURITIES': 'Amortization of Securities', 'ANALYSIS': 'Analysis', 'ANALYSTS': 'Analysts', 'ANALYST_PRICE_TARGETS': 'Analyst Price Targets', 'ANALYST_PROFILE': 'Analyst Profile', 'ANALYST_QUARTER_LABEL': '{label} ({month} {year})', 'ANALYST_RATING': 'Analyst Rating', 'ANALYST_RATINGS': 'Analyst Ratings', 'ANALYST_REPORT': 'Analyst Report', 'ANALYST_STRONG_BUY_STOCKS': 'Analyst Strong Buy Stocks', 'ANALYST_YEAR_LABEL': '{label} ({year})', 'ANALYSTS_ARE_SAYING': 'Analysts Are Saying', 'ANALYTICS': 'Analytics', 'AND': 'and', 'ANNOUNCEMENT': 'Announcement', 'ANNOUNCEMENT_PLACEHOLDER': 'Users will be able to see your anouncement in your livestream room', 'ANNUAL': 'Annual', 'ANNUAL_HOLDINGS_TURNOVER': 'Holdings Turnover', 'ANNUAL_REPORT_EXPENSE_RATIO': 'Annual Report Expense Ratio (net)', 'ANNUAL_TOTAL_RETURNS': 'Annual Total Return (%) History', 'ANNUAL_STOCK_PERFORMANCE_DATA': 'Annual Stock Performance Data', 'APPAREL_STORES': 'Apparel Stores', 'APPAREL_STORES_DESC': 'Apparel Stores Stocks', 'APPLET_COMMENT_COMMENTS': 'Comments', 'APPLIANCES': 'Appliances', 'APPLIANCES_DESC': 'Appliances Stocks', 'APPLICATION_SOFTWARE': 'Application Software', 'APPLICATION_SOFTWARE_DESC': 'Application Software Stocks', 'APPLIED': 'Applied', 'APPLIED_FILTERS': 'Applied Filters for {type} screener', 'APPLY': 'Apply', 'APP_PROMO_ALERTS': 'News and price alerts', 'APP_PROMO_FREE_DATA': 'Free real-time data', 'APP_PROMO_GET_APP': 'Get the App', 'APP_PROMO_HOLDINGS': 'Add and edit holdings', 'APP_PROMO_OPEN_APP': 'Open in App', 'APP_PROMO_PERFORMANCE': 'Track performance', 'APP_PROMO_WATCHLISTS': 'Create multiple watchlists', 'AREA': 'Area', 'ARGUS_RATING': 'Argus Rating', 'ARROW': 'Arrow', 'ASC_ORDER': 'Ascending Order', 'AS_OF': 'As of:', 'ASK': 'Ask', 'ASSET': 'Asset', 'ASSETS': 'Assets', 'ASSET_CLASS': 'Asset Class', 'ASSETS_HELD_FOR_SALE': 'Assets Held for Sale', 'ASSETS_HELD_FOR_SALE_CURRENT': 'Assets Held for Sale Current', 'ASSETS_OF_DISCONTINUED_OPERATIONS': 'Assets of Discontinued Operations', 'ASSET_IMPAIRMENT_CHARGE': 'Asset Impairment Charge', 'ASSET_MANAGEMENT': 'Asset Management', 'ASSET_MANAGEMENT_DESC': 'Asset Management Stocks', 'ATTRIBUTES': 'Attributes', 'AUDIOVISUAL-Y-MEDIOS_TITLE': 'Audiovisual and Media', 'AUSTRALIA': 'Australia', 'AUTO': 'Auto', 'AUTOCOMPLETE_PLACEHOLDER': 'VZ, AAPL, TSLA', 'AUTOMATIC_PICK': 'Automatic Pick', 'AUTOMOBILE_TITLE': 'Automobile', 'AUTOS_TITLE': 'Autos', 'AUTOS_TRANSPORTATION_TITLE': 'Autos & Transportation', 'AUTO_DEALERSHIPS': 'Auto Dealerships', 'AUTO_DEALERSHIPS_DESC': 'Auto Dealerships Stocks', 'AUTO_MANUFACTURERS_MAJOR': 'Auto Manufacturers - Major', 'AUTO_MANUFACTURERS_MAJOR_DESC': 'Auto Manufacturers - Major Stocks', 'AUTO_PARTS': 'Auto Parts', 'AUTO_PARTS_DESC': 'Auto Parts Stocks', 'AUTO_PARTS_STORES': 'Auto Parts Stores', 'AUTO_PARTS_STORES_DESC': 'Auto Parts Stores Stocks', 'AUTO_PARTS_WHOLESALE': 'Auto Parts Wholesale', 'AUTO_PARTS_WHOLESALE_DESC': 'Auto Parts Wholesale Stocks', 'AVAILABLE_FOR_SALE_SECURITIES': 'Available for Sale Securities', 'AVATAR_COPY': 'Choosing a more professional avatar will gain more trust from your followers.', 'AVERAGE': 'Average', 'AVERAGE_DILUTION_EARNINGS': 'Average Dilution Earnings', 'AVERAGE_FOR_CATEGORY': 'Average for Category', 'AVERAGE_VOLUME_3MONTH': 'Avg. Volume', 'AVG_COST_PER_QUANTITY': 'Avg Cost / Quantity', 'AVG_COST_PER_SHARE': 'Avg Cost / Share', 'AVERAGE_COST_PER_SHARE': 'Average Cost / Share', 'AVG_ESTIMATE': 'Avg. Estimate', 'AVG_HOURLY_EARNINGS': 'Average \\nHourly Earnings', 'AVG_MATURITY': 'Avg Maturity (days)', 'AVG_VOL_10_DAY': 'Avg Vol (10 day)', 'AVG_VOL_3_MONTH': 'Avg Vol (3 month)', 'BACK': 'Back', 'BALANCE_SHEET': 'Balance Sheet', 'BANCA-Y-SEGUROS_TITLE': 'Banking & Insurance', 'BANK_INDEBTEDNESS': 'Bank Indebtedness', 'BANK_OWNED_LIFE_INSURANCE': 'Bank Owned Life Insurance', 'BANQUE-ET-ASSURANCE_TITLE': 'Banking & Insurance', 'BAR': 'Bar', 'BASIC': 'Basic', 'BASIC_ACCOUNTING_CHANGE': 'Basic Accounting Change', 'BASIC_AVERAGE_SHARES': 'Basic Average Shares', 'BASIC_CONTINUOUS_OPERATIONS': 'Basic Continuous Operations', 'BASIC_DISCONTINUOUS_OPERATIONS': 'Basic Discontinuous Operations', 'BASIC_EPS': 'Basic EPS', 'BASIC_EPS_OTHER_GAINS_LOSSES': 'Basic EPS Other Gains Losses', 'BASIC_EXTRAORDINARY': 'Basic Extraordinary', 'BASIC_MATERIALS': 'Basic Materials', 'BASIC_MATERIALS_DESC': 'Basic Materials Stocks', 'BASIC_MATERIALS_WHOLESALE': 'Basic Materials Wholesale', 'BASIC_MATERIALS_WHOLESALE_DESC': 'Basic Materials Wholesale Stocks', 'BASIC_PORTFOLIO': 'Basic Portfolio', 'BEARISH': 'Bearish', 'BEARISH_STOCKS_RIGHT_NOW': 'Bearish Stocks Right Now', 'BEARS_SAY': 'Bears Say', 'BEAT': 'Beat', 'BEA_CODE': 'BEA Code', 'BEGINNING_CASH_POSITION': 'Beginning Cash Position', 'BEHAVIOR': 'Behavior', 'BELOW_AVG': 'Below Average', 'BENI-DI-CONSUMO_TITLE': 'Consumer Goods', 'BENS-DE-CONSUMO_TITLE': 'Consumer goods', 'BEST_ONE_YR_TOTAL_RETURN': 'Best 1 Yr Total Return ({date})', 'BEST_THREE_YR_TOTAL_RETURN': 'Best 3-Yr Total Return', 'BETA': 'BETA', 'BETA_5Y': 'Beta (5Y Monthly)', 'BETA_PORTFOLIO': 'Beta portfolio', 'BEVERAGES_BREWERS': 'Beverages - Brewers', 'BEVERAGES_BREWERS_DESC': 'Beverages - Brewers Stocks', 'BEVERAGES_SOFT_DRINKS': 'Beverages - Soft Drinks', 'BEVERAGES_SOFT_DRINKS_DESC': 'Beverages - Soft Drinks Stocks', 'BEVERAGES_WINERIES_DISTILLERS': 'Beverages - Wineries & Distillers', 'BEVERAGES_WINERIES_DISTILLERS_DESC': 'Beverages - Wineries & Distillers Stocks', 'BECOME_STREAMER': 'Become a livestreamer', 'BI_WEEKLY': 'Bi-weekly', 'BID': 'Bid', 'BILLION_SHORT': '{num}B', 'BIO': 'Bio', 'BIOTECHNOLOGY': 'Biotechnology', 'BIOTECHNOLOGY_DESC': 'Biotechnology Stocks', 'BIO_PLACEHOLDER': 'Tell your followers more about you', 'BLOCK_NO': 'Block No.', 'BLOCK_REWARD': 'Block Reward', 'BLOCK_RR': 'Block RR.', 'BLOG': 'Blog', 'BONDS': 'Bonds', 'BOND_A': 'A', 'BOND_AA': 'AA', 'BOND_AAA': 'AAA', 'BOND_B': 'B', 'BOND_BB': 'BB', 'BOND_BBB': 'BBB', 'BOND_BELOW_B': 'Below B', 'BOND_HOLDINGS': 'Bond Holdings', 'BOND_RATINGS': 'Bond Ratings', 'BOND_US_GOVERMENT': 'US Government', 'BOOK_VALUE_PER_SHARE': 'Book Value Per Share', 'BRAZIL': 'Brazil', 'BREXIT_TITLE': 'Brexit', 'BROADCASTING_RADIO': 'Broadcasting - Radio', 'BROADCASTING_RADIO_DESC': 'Broadcasting - Radio Stocks', 'BROADCASTING_TV': 'Broadcasting - TV', 'BROADCASTING_TV_DESC': 'Broadcasting - TV Stocks', 'BROKERAGE_AVAILABILITY': 'Brokerage Availability', 'BROUGHT_TO_YOU_BY_ISS': 'Corporate governance scores courtesy of', 'BROUGHT_TO_YOU_BY_ISS_CONTEXT': 'Scores indicate decile rank relative to index or region. A decile score of 1 indicates lower governance risk, while a 10 indicates higher governance risk.', 'BROWSER_UPGRADE': 'Some parts of this page is not supported on your current browser version. Please upgrade the browser to the latest.', 'BUILDINGS_AND_IMPROVEMENTS': 'Buildings And Improvements', 'BUILDING_MATERIALS_WHOLESALE': 'Building Materials Wholesale', 'BUILDING_MATERIALS_WHOLESALE_DESC': 'Building Materials Wholesale Stocks', 'BUILD_SCREENER_MSG': 'Build {type} screener with filters below', 'BULLISH': 'Bullish', 'BULLISH_STOCKS_RIGHT_NOW': 'Bullish Stocks Right Now', 'BULLS_SAY': 'Bulls Say', 'BULLISH_BEARISH_TITLE': 'How do you feel about {symbol}?', 'BUSINESS_EQUIPMENT': 'Business Equipment', 'BUSINESS_EQUIPMENT_DESC': 'Business Equipment Stocks', 'BUSINESS_SERVICES': 'Business Services', 'BUSINESS_SERVICES_DESC': 'Business Services Stocks', 'BUSINESS_SERVICES_TITLE': 'Business Services', 'BUSINESS_SOFTWARE_SERVICES': 'Business Software & Services', 'BUSINESS_SOFTWARE_SERVICES_DESC': 'Business Software & Services Stocks', 'BUY': 'Buy', 'BUY_SLASH_SELL': 'Buy/Sell', 'BUY_TO_COVER': 'Buy to Cover', 'BY': 'By', 'BY_ENTITY': 'by {entity}', 'CALENDAR': 'Calendar', 'CALENDAR_FRI': 'Fri', 'CALENDAR_MON': 'Mon', 'CALENDAR_MONTH_0': 'Jan', 'CALENDAR_MONTH_1': 'Feb', 'CALENDAR_MONTH_10': 'Nov', 'CALENDAR_MONTH_11': 'Dec', 'CALENDAR_MONTH_2': 'Mar', 'CALENDAR_MONTH_3': 'Apr', 'CALENDAR_MONTH_4': 'May', 'CALENDAR_MONTH_5': 'Jun', 'CALENDAR_MONTH_6': 'Jul', 'CALENDAR_MONTH_7': 'Aug', 'CALENDAR_MONTH_8': 'Sep', 'CALENDAR_MONTH_9': 'Oct', 'CALENDAR_SAT': 'Sat', 'CALENDAR_SUN': 'Sun', 'CALENDAR_THU': 'Thu', 'CALENDAR_TUES': 'Tues', 'CALENDAR_WED': 'Wed', 'CALLOUT': 'Callout', 'CANADA_TITLE': 'Canada', 'CANCEL': 'Cancel', 'CANDLE': 'Candle', 'CANVASS DISPLAY_TEXT': '${symbol} conversation', 'CANVASS SENTIMENT_PROMPT': 'How are you feeling about {symbol}?', 'CAPITAL_EX': 'Capital Expenditure', 'CAPITAL_EXPENDITURE': 'Capital Expenditure', 'CAPITAL_EXPENDITURE_REPORTED': 'Capital Expenditure Reported', 'CAPITAL_GAIN': 'Capital Gain', 'CAPITAL_LEASE_OBLIGATIONS': 'Capital Lease Obligations', 'CAPITAL_OR': 'OR', 'CAPITAL_STOCK': 'Capital Stock', 'CAPITAL_SURPLUS': 'Capital Surplus', 'CAREERS_TITLE': 'Careers', 'CASH': 'Cash', 'CASH_AND_CASH_EQUIVALENTS': 'Cash And Cash Equivalents', 'CASH_AND_DUE_FROM_BANKS': 'Cash And Due from Banks', 'CASH_AT_BEGINNING_OF_PERIOD': 'Cash at beginning of period', 'CASH_AT_END_OF_PERIOD': 'Cash at end of period', 'CASH_CASH_EQUIVALENTS_AND_FEDERAL_FUNDS_SOLD': 'Cash, Cash Equivalents & Federal Funds Sold', 'CASH_CASH_EQUIVALENTS_AND_SHORT_TERM_INVESTMENTS': 'Cash, Cash Equivalents & Short Term Investments', 'CASH_DEPOSIT': 'Cash Deposit', 'CASH_DIVIDENDS_PAID': 'Cash Dividends Paid', 'CASH_EQUIVALENTS': 'Cash Equivalents', 'CASH_FLOW': 'Cash Flow', 'CASH_FLOWSFROMUSEDIN_OPERATING_ACTIVITIES_DIRECT': 'Cash Flows from Used in Operating Activities Direct', 'CASH_FLOW_FROM_CONTINUING_FINANCING_ACTIVITIES': 'Cash Flow from Continuing Financing Activities', 'CASH_FLOW_FROM_CONTINUING_INVESTING_ACTIVITIES': 'Cash Flow from Continuing Investing Activities', 'CASH_FLOW_FROM_CONTINUING_OPERATING_ACTIVITIES': 'Cash Flow from Continuing Operating Activities', 'CASH_FLOW_FROM_DISCONTINUED_OPERATION': 'Cash Flow from Discontinued Operation', 'CASH_FLOW_FROM_FINANCING_ACT': 'Cash flows from financing activities', 'CASH_FLOW_FROM_INVESTING_ACT': 'Cash flows from investing activities ', 'CASH_FLOW_FROM_OP_ACT': 'Cash flows from operating activities', 'CASH_FLOW_STATEMENT': 'Cash Flow Statement', 'CASH_FROM_DISCONTINUED_FINANCING_ACTIVITIES': 'Cash from Discontinued Financing Activities', 'CASH_FROM_DISCONTINUED_INVESTING_ACTIVITIES': 'Cash from Discontinued Investing Activities', 'CASH_FROM_DISCONTINUED_OPERATING_ACTIVITIES': 'Cash from Discontinued Operating Activities', 'CASH_HOLDINGS': 'Cash Holdings', 'CASH_MANAGEMENT': 'Cash management', 'CASH_MANAGEMENT_CAPS': 'Cash Management', 'CASH_PAIDFOR_INSURANCE_ACTIVITIES': 'Cash Paid for Insurance Activities', 'CASH_PAIDTO_REINSURERS': 'Cash Paid to Reinsurers', 'CASH_PAYMENTSFOR_DEPOSITSBY_BANKSAND_CUSTOMERS': 'Cash Payments for Depositsby Banks & Customers', 'CASH_PAYMENTSFOR_LOANS': 'Cash Payments for Loans', 'CASH_RECEIPTSFROM_DEPOSITSBY_BANKSAND_CUSTOMERS': 'Cash Receipts from Depositsby Banks & Customers', 'CASH_RECEIPTSFROM_FEESAND_COMMISSIONS': 'Cash Receipts from Fees & Commissions', 'CASH_RECEIPTSFROM_LOANS': 'Cash Receipts from Loans', 'CASH_RECEIPTSFROM_SECURITIES_RELATED_ACTIVITIES': 'Cash Receipts from Securities Related Activities', 'CASH_RECEIPTSFROM_TAX_REFUNDS': 'Cash Receipts from Tax Refunds', 'CASH_RECEIVEDFROM_INSURANCE_ACTIVITIES': 'Cash Received from Insurance Activities', 'CASH_SETTINGS_BUY_BEHAVIOR': 'Use available cash holdings', 'CASH_SETTINGS_BUY_BEHAVIOR_LONG': 'Use available cash holdings to purchase new stocks', 'CASH_SETTINGS_SELL_BEHAVIOR': 'Auto-add proceeds to cash holdings', 'CASH_SETTINGS_SELL_BEHAVIOR_LONG': 'Auto-add sell proceeds to my Cash holdings', 'CASH_SETTINGS_DIVIDENDS_BEHAVIOR': 'Auto-add payouts to cash holdings', 'CASH_SETTINGS_DIVIDENDS_BEHAVIOR_LONG': 'Auto-add dividend payouts to my Cash holdings', 'CASH_TIP': 'Tip: Type \"$$\" to enter custom symbols such as \"$$CASH\"', 'CASH_WITHDRAW': 'Cash Withdraw', 'CATALOG_MAIL_ORDER_HOUSES': 'Catalog & Mail Order Houses', 'CATALOG_MAIL_ORDER_HOUSES_DESC': 'Catalog & Mail Order Houses Stocks', 'CATEGORY': 'Category', 'CATEGORY_AVG': 'Category Average', 'CATEGORY_RANK_YDT': 'Rank in Category (ytd)', 'CATEGORY_RANK_YDT_PERCENT': '% Rank in Category (ytd)', 'CATV_SYSTEMS': 'CATV Systems', 'CATV_SYSTEMS_DESC': 'CATV Systems Stocks', 'CEDED_PREMIUMS': 'Ceded Premiums', 'CEMENT': 'Cement', 'CEMENT_DESC': 'Cement Stocks', 'CHANGE': 'Change', 'CHANGEIN_INSURANCE_CONTRACT_ASSETS': 'Change in Insurance Contract Assets', 'CHANGES_IN_ACCOUNTS_RECEIVABLES': 'Changes in Accounts Receivables', 'CHANGES_IN_ACCOUNT_RECEIVABLES': 'Changes in Account Receivables', 'CHANGES_IN_CASH': 'Changes in Cash', 'CHANGES_IN_INVENTORIES': 'Changes In Inventories', 'CHANGES_IN_LIABILITIES': 'Changes In Liabilities', 'CHANGES_IN_OTHER_OPERATING_ACT': 'Changes In Other Operating Activities', 'CHANGES_IN_PRICE_AND_MARKET_CAP': 'Changes in Price and Market Cap', 'CHANGES_IN_VOLUME_AND_OWNERSHIP': 'Changes in Volume and Ownership', 'CHANGE_IN_ACCOUNT_PAYABLE': 'Change in Account Payable', 'CHANGE_IN_ACCRUED_EXPENSE': 'Change in Accrued Expense', 'CHANGE_IN_ACCRUED_INVESTMENT_INCOME': 'Change in Accrued Investment Income', 'CHANGE_IN_CASH_AND_EQ': 'Change in Cash and Cash Equivalents', 'CHANGE_IN_DEFERRED_ACQUISITION_COSTS': 'Change in Deferred Acquisition Costs', 'CHANGE_IN_DEFERRED_CHARGES': 'Change in Deferred Charges', 'CHANGE_IN_DIVIDEND_PAYABLE': 'Change in Dividend Payable', 'CHANGE_IN_FEDERAL_FUNDS_AND_SECURITIES_SOLD_FOR_REPURCHASE': 'Change in Federal Funds And Securities Sold for Repurchase', 'CHANGE_IN_FUNDS_WITHHELD': 'Change in Funds Withheld', 'CHANGE_IN_INCOME_TAX_PAYABLE': 'Change in Income Tax Payable', 'CHANGE_IN_INTEREST_PAYABLE': 'Change in Interest Payable', 'CHANGE_IN_INVENTORY': 'Change in Inventory', 'CHANGE_IN_LOANS': 'Change in Loans', 'CHANGE_IN_LOSS_AND_LOSS_ADJUSTMENT_EXPENSE_RESERVES': 'Change in Loss And Loss Adjustment Expense Reserves', 'CHANGE_IN_OTHER_CURRENT_ASSETS': 'Change in Other Current Assets', 'CHANGE_IN_OTHER_CURRENT_LIABILITIES': 'Change in Other Current Liabilities', 'CHANGE_IN_OTHER_WORKING_CAPITAL': 'Change in Other Working Capital', 'CHANGE_IN_PAYABLE': 'Change in Payable', 'CHANGE_IN_PAYABLES_AND_ACCRUED_EXPENSE': 'Change in Payables And Accrued Expense', 'CHANGE_IN_PREPAID_ASSETS': 'Change in Prepaid Assets', 'CHANGE_IN_RECEIVABLES': 'Change in Receivables', 'CHANGE_IN_REINSURANCE_RECOVERABLE_ON_PAID_AND_UNPAID_LOSSES': 'Change in Reinsurance Recoverable on Paid And Unpaid Losses', 'CHANGE_IN_RESTRICTED_CASH': 'Change in Restricted Cash', 'CHANGE_IN_TAX_PAYABLE': 'Change in Tax Payable', 'CHANGE_IN_TRADING_ACCOUNT_SECURITIES': 'Change in Trading Account Securities', 'CHANGE_IN_UNEARNED_PREMIUMS': 'Change in Unearned Premiums', 'CHANGE_IN_WORKING_CAPITAL': 'Change in working capital', 'CHARACTERISTICS': 'Characteristics', 'CHART': 'Chart', 'CHART_EVENTS': 'Chart Events', 'CHARTIQ_DISCLAIMER_TEXT': 'In partnership with ChartIQ', 'CHARTIQ_FEEDBACK': 'Give feedback', 'CHARTIQ_INTERVAL_DAY': '1 day', 'CHARTIQ_INTERVAL_DAYS': '{n} days', 'CHARTIQ_INTERVAL_HOUR': '1 hour', 'CHARTIQ_INTERVAL_HOURS': '{n} hours', 'CHARTIQ_INTERVAL_MIN': '1 min', 'CHARTIQ_INTERVAL_MINS': '{n} mins', 'CHARTIQ_INTERVAL_MONTH': '1 month', 'CHARTIQ_INTERVAL_MONTHS': '{n} months', 'CHARTIQ_INTERVAL_WEEK': '1 week', 'CHARTIQ_INTERVAL_YEAR': '1 year', 'CHART_NOT_AVAILABLE': 'This chart is not available', 'CHART_NOT_SUPPORTED': 'Stock chart is not supported by your current browser', 'CHART_PREFERENCE': 'Chart Preference', 'CHART_TEMP_NOT_AVAILABLE': 'Unable to display charts. Please try again later.', 'CHART_TYPE': 'Chart Type', 'CHART_FEATURE_CUE_EXPERT_1': 'See all the pro tools we have for you! Expand to explore', 'CHART_FEATURE_CUE_EXPERT_2': 'You asked, we added! Expand to explore our new features', 'CHART_FEATURE_CUE_START_1': 'This graph has more to offer! Expand to explore', 'CHART_FEATURE_CUE_START_2': 'See what else our graphs can do! Expand now', 'CHART_FEATURE_MARKETING_HEADLINE': 'NEW: Experience our best charts yet.', 'CHART_FEATURE_MARKETING_SUBHEAD': 'Everything you need for any kind of investing', 'CHART_FEATURE_MARKETING_ACTION': 'Explore new charts', 'CHART_FEATURE_MARKETING_TIP_1': 'Find MACD, RSI, and more than 100 different indicators', 'CHART_FEATURE_MARKETING_TIP_2': 'Compare multiple stocks, indexes, and more, all at once', 'CHART_FEATURE_MARKETING_TIP_3': 'Create your own analysis with 37 drawing tools ', 'CHART_FEATURE_MARKETING_TIP_4': 'Download your chart information in table format', 'CHART_FEATURE_MARKETING_TIP_5': 'Use Line, Candle, and other 30 different type of graphs', 'CHART_FEATURE_MARKETING_TIP_6': \"Light or Dark mode, that's up to you\", 'CHART_FEATURE_MARKETING_TIP_7': 'Real Time for all US exchanges (equities and etfs)', 'CHART_FEATURE_MARKETING_TIP_8': 'Accessibility: keyboard navigation for dialogs & UI controls', 'CHEMICALS_MAJOR_DIVERSIFIED': 'Chemicals - Major Diversified', 'CHEMICALS_MAJOR_DIVERSIFIED_DESC': 'Chemicals - Major Diversified Stocks', 'CHEMIE_TITLE': 'Chemie', 'CHIMICA-E-MATERIE-PRIME_TITLE': 'Chemical and Basic materials', 'CHOOSE_FILTERS': 'Choose filters to screen {quoteType}', 'CHOOSE_RECENT_VIEW': 'Recently viewed symbols', 'CIGARETTES': 'Cigarettes', 'CIGARETTES_DESC': 'Cigarettes Stocks', 'CIRCULATING_SUPPLY': 'Circulating Supply', 'CLAIMS_PAID': 'Claims Paid', 'CLASSESOF_CASH_PAYMENTS': 'Classes of Cash Payments', 'CLASSESOF_CASH_RECEIPTSFROM_OPERATING_ACTIVITIES': 'Classes of Cash Receipts from Operating Activities', 'CLEANING_PRODUCTS': 'Cleaning Products', 'CLEANING_PRODUCTS_DESC': 'Cleaning Products Stocks', 'CLEAR': 'Clear', 'CLEAR_DRAWINGS': 'Clear Drawings', 'CLOSE': 'Close', 'CLOSED': 'Closed', 'CLOSEDEND_FUND_DEBT': 'Closed-End Fund - Debt', 'CLOSEDEND_FUND_DEBT_DESC': 'Closed-End Fund - Debt Stocks', 'CLOSEDEND_FUND_EQUITY': 'Closed-End Fund - Equity', 'CLOSEDEND_FUND_EQUITY_DESC': 'Closed-End Fund - Equity Stocks', 'CLOSEDEND_FUND_FOREIGN': 'Closed-End Fund - Foreign', 'CLOSEDEND_FUND_FOREIGN_DESC': 'Closed-End Fund - Foreign Stocks', 'COIN_MARKET_CAP': 'CoinMarketCap', 'COIN_TYPE': 'Coin Type', 'COLLAPSE': 'Collapse', 'COLLAPSE_ALL': 'Collapse All', 'COLOR': 'Color', 'COLORED_BAR': 'Colored Bar', 'COMMERCIAL_LOAN': 'Commercial Loan', 'COMMERCIAL_PAPER': 'Commercial Paper', 'COMMISSION': 'Commission', 'COMMISSION_PAID': 'Commission Paid', 'COMMODITIES_TITLE': 'Futures', 'COMMONLY_USED': 'Commonly used', 'COMMON_STOCK': 'Common Stock', 'COMMON_STOCK_DIVIDEND_PAID': 'Common Stock Dividend Paid', 'COMMON_STOCK_EQUITY': 'Common Stock Equity', 'COMMON_STOCK_ISSUANCE': 'Common Stock Issuance', 'COMMON_STOCK_ISSUED': 'Common stock issued', 'COMMON_STOCK_PAYMENTS': 'Common Stock Payments', 'COMMON_STOCK_REPURCHASED': 'Common stock repurchased', 'COMMON_UTILITY_PLANT': 'Common Utility Plant', 'COMMUNICATION_EQUIPMENT': 'Communication Equipment', 'COMMUNICATION_EQUIPMENT_DESC': 'Communication Equipment Stocks', 'COMMUNICATION_SERVICES': 'Communication Services', 'COMMUNITY': 'Message Boards', 'COMMUNITY_SENTIMENT_DESC': 'We’ve tracked changes in conversation so you can see what the buzz is about.', 'COMMUNITY_SENTIMENT_TITLE': 'Community Conversation', 'COMPACT_TABLE_DENSITY': 'Compact Table Density', 'COMPANIES': 'Companies', 'COMPANY': 'Name', 'COMPANY360': 'Company 360', 'COMPANY_360_FOOTER_DIVIDENDS': 'Morningstar calculates dividend yield based on distributions. It measures the income generated by investing in a stock.', 'COMPANY_360_FOOTER_EARNINGS': \"Refinitiv's I/B/E/S database aggregates earnings estimates from sell-side analysts and derives a consensus forecast.\", 'COMPANY_360_FOOTER_INNOVATION': \"Trea's Innovation Index provides a comprehensive look into every aspect of a company's research and development.\", 'COMPANY_360_FOOTER_SIGDEV': \"Refinitiv's Significant Developments highlight the most pertinent market-moving company news headlines.\", 'COMPANY_360_LEGEND_INNOVATION': 'Sector score {score}', 'COMPANY_360_MOST_RECENT': 'most recent', 'COMPANY_360_NO_DATA': '{type} data is not made public by this company', 'COMPANY_ANALYSIS': 'Company analysis', 'COMPANY_DATA_PROVIDED_BY': '{companyName} data provided by', 'COMPANY_INSIGHTS': 'Company Insights', 'COMPANY_METRICS': 'Company Metrics', 'COMPANY_NAME': 'Company Name', 'COMPANY_OUTLOOK': 'Company Outlook', 'COMPANY_PROFILE': 'Profile', 'COMPANY_SUMMARY': 'Company Summary', 'COMPANY_VS_SECTOR': '{company} vs Sector', 'COMPARABLE': 'Comparable', 'COMPARISON': 'Comparison', 'COMPENSATION_DISCLOSURE': 'Amounts are as of {date} and compensation values are for the last fiscal year ending on that date. Pay is salary, bonuses, etc. Exercised is the value of options exercised during the fiscal year. Currency in {currency}.', 'COMPETITOR_FILINGS': 'Competitor Filings', 'COMPLETE_LIST': 'Complete list', 'COMPONENTS': 'Components', 'COMPUTERS_WHOLESALE': 'Computers Wholesale', 'COMPUTERS_WHOLESALE_DESC': 'Computers Wholesale Stocks', 'COMPUTER_BASED_SYSTEMS': 'Computer Based Systems', 'COMPUTER_BASED_SYSTEMS_DESC': 'Computer Based Systems Stocks', 'COMPUTER_PERIPHERALS': 'Computer Peripherals', 'COMPUTER_PERIPHERALS_DESC': 'Computer Peripherals Stocks', 'CONFECTIONERS': 'Confectioners', 'CONFECTIONERS_DESC': 'Confectioners Stocks', 'CONFIRM': 'Confirm', 'CONFIRM_DELETE': 'Confirm Delete', 'CONFIRM_DELETE_MSG': 'Are you sure you want to delete {pfName}?', 'CONFIRM_DELETE_SCREENER_MSG': 'Are you sure you want to delete {scrName} screener?', 'CONFIRM_DELETE_TICKER': 'Are you sure you want to remove {symbol}?', 'CONFIRM_DELETE_ALL_TICKERS': 'Are you sure you want to remove all of these symbols from this portfolio?', 'CONFIRM_DELETE_TICKER_TRANSACTIONS_PLURAL': 'There are {transactionsCount} transactions associated with this symbol. Are you sure you want to remove {symbol}?', 'CONFIRM_UNLINK_MSG': 'Are you sure you want to unlink {pfName}?', 'CONGLOMERATES': 'Conglomerates', 'CONGLOMERATES_DESC': 'Conglomerates Stocks', 'CONSERVATIVE_FOREIGN_FUNDS': 'Conservative Foreign Funds', 'CONSERVATIVE_FOREIGN_FUNDS_DESC': 'Foreign funds with Performance Rating of 4 & 5, low risk and top-half returns', 'CONSTRUCAO-EQUIPAMENTOS_TITLE': 'Construction & Equipment', 'CONSTRUCCION-Y-TRANSPORTES_TITLE': 'Construction and Transportation', 'CONSTRUCCION_TITLE': 'Building', 'CONSTRUCTION_IN_PROGRESS': 'Construction in Progress', 'CONSUMER_CYCLICAL': 'Consumer Cyclical', 'CONSUMER_DEFENSIVE': 'Consumer Defensive', 'CONSUMER_GOODS': 'Consumer Goods', 'CONSUMER_GOODS_DESC': 'Consumer Goods Stocks', 'CONSUMER_LOAN': 'Consumer Loan', 'CONSUMER_PRODUCTS_MEDIA_TITLE': 'Consumer Products & Media', 'CONSUMER_SERVICES': 'Consumer Services', 'CONSUMER_SERVICES_DESC': 'Consumer Services Stocks', 'CONTINUING_AND_DISCONTINUED_BASIC_EPS': 'Continuing & Discontinued Basic EPS', 'CONTINUING_AND_DISCONTINUED_DILUTED_EPS': 'Continuing & Discontinued Diluted EPS', 'CONTRACT_NAME': 'Contract Name', 'CONTRACT_RANGE': 'Contract Range', 'CONVERSATIONS': 'Conversations', 'CONVERTIBLE': 'Convertable', 'CONVERT_TO_WATCHLIST': 'Convert this to watchlist', 'CONVO_MSG_APPS_TITLE_END': '{host} is removing Conversations', 'CONVO_MSG_END_1': '{host} will soon be removing our Conversations message boards. Thanks for being such a loyal member of our Finance Conversations community!', 'CONVO_MSG_END_2': '{host} will be removing our Conversations message boards on Aug. 15. Thanks for being such a loyal member of our Finance Conversations community!', 'CONVO_MSG_HK_1': 'Our goal is to create a safe and engaging place for users to connect over interests and passions. In order to improve our community experience, we will soon be disabling commenting.', 'CONVO_MSG_HK_2': 'Our goal is to create a safe and engaging place for users to connect over interests and passions. In order to improve our community experience, we will soon be disabling commenting on August 15.', 'COPIED_TO_CLIPBOARD': 'Copied to clipboard.', 'COLORED_AREA': 'Colored Area', 'COPPER': 'Copper', 'COPPER_DESC': 'Copper Stocks', 'COPY': 'Copy', 'CORPORATE_ACTIONS': 'Corporate Actions', 'CORPORATE_EVENTS': 'Corporate Events', 'CORPORATE_GOVERNANCE': 'Corporate Governance', 'CORRECTIVE': 'Corrective:', 'COST_OF_REVENUE': 'Cost of Revenue', 'COST_PER_QUANTITY': 'Cost / Quantity', 'COST_PER_SHARE': 'Cost / Share', 'COST_PER_SHARE_DESCRIPTION': 'Price paid for buying an individual stock, or simply price per share.', 'CREATE': 'Create', 'CREATE_NEW_PORTFOLIO': 'Create New Portfolio', 'CREATE_NEW_LIST': 'Create list', 'CREATE_NEW_SCREENER': 'Create New Screener', 'CREATE_A_NEW_SCREENER': 'Create a New Screener', 'CREATE_NEW_SCREENER_DES': 'Pick a screener type to get started', 'CREATE_NEW_VIEW': 'Create New View', 'CREATE_PF_ERROR': 'Unable to create new portfolio. Please retry.', 'CREATE_PORTFOLIO': 'Create Portfolio', 'CREATE_STREAM_PROFILE': 'Create my Streamer profile', 'CREATE_WATCHLIST_UPSELL': 'Create watchlists to find unexpected patterns', 'CREATOR_TERMS_AGREEMENT': \"You agree to our {termsAndConditionsLink} Also, each product may be subject to additional terms required by the product's vendor, which you can review here.\", 'CREDIT_CARD': 'Credit Card', 'CREDIT_LOSSES_PROVISION': 'Credit Losses Provision', 'CREDIT_QUALITY': 'Credit Quality', 'CREDIT_SERVICES': 'Credit Services', 'CREDIT_SERVICES_DESC': 'Credit Services Stocks', 'CRYPTO_CURRENCIES': 'Cryptocurrencies', 'CRYPTO_ACCOUNT_MANAGEMENT': 'Crypto Account Management', 'CRYPTO_ACCOUNT_REMAINING_STEPS': 'Remaining steps', 'CRYPTO_ACCOUNT_REMAINING_STEPS_INFO': 'You are close to finishing up your account creation. Initiate fund transfer and start trading', 'CRYPTO_INITIATE_FUNDS': 'Add your bank account using Plaid and start initiating funds for crypto trading.', 'CRYPTO_TRADABLE_TITLE': 'Browse over 300 cryptos on Yahoo from here', 'CRYPTO_TRADABLE_INFO': 'Learn about Yahoo Crypto now, sign up today and start browsing. Certain limitations apply.', 'CRYPTO_TRADING_ACTION': 'Browse tradable coins', 'CRYPTO_TRADING_INFO': 'Learn about Yahoo Crypto now, sign up today and start browsing 21 cryptos. Certain limitations apply.', 'CRYPTO_TRADING_LEARN_MORE': 'Learn more about Yahoo Crypto', 'CRYPTO_TRADING_TITLE': 'The new crypto trading starts from here', 'CRYPTO_TRANSACTION_LIMIT_TITLE': 'Your current transaction limit', 'CRYPTO_TRANSACTION_UNLOCK_LIMIT_TITLE': 'Unlock unlimited trading', 'CRYPTO_TRANSACTION_UNLOCK_LIMIT_INFO': 'Don’t want to be limited? Send a link to your phone to verify your government ID and get unlimited crypto trading today!', 'CROSSHAIR': 'Crosshair', 'CRYPTO_ALL_IN_ONE': 'Security and simplicity, all in one place', 'CRYPTO_3_EASY_STEPS': 'Start buying cryptos in 3 Easy Steps', 'CRYPTO_CREATE_ACCT': 'Create account', 'CRYPTO_EXPLORE': 'Explore 300+ coins for your trading', 'CRYPTO_HOURS': 'Full extended hours trading with 24/7 live help and support', 'CRYPTO_EXT_HOURS': 'Extended Trading Hours', 'CRYPTO_HOW_IT_WORKS': 'How it works', 'CRYPTO_OPEN_ACCT': 'Open an account at Yahoo to trade 300+ coins', 'CRYPTO_OPEN_ACCT2': 'Open an account at Yahoo to trade these coins', 'CRYPTO_NO_TX_FEES': 'No transactional fees', 'CRYPTO_MARKETING': 'Security and simplicity, all in one place', 'CRYPTO_SECURITY': 'Security', 'CRYPTO_TRANSFER_FUND_TX': 'Transfer your funds and start transacting', 'CRYPTO_TRANSFER_FUND': 'Transfer Funds', 'CRYPTO_VERIFY_ID': 'Verify your identity', 'ALL_CRYPTOCURRENCIES_US': 'Cryptocurrencies', 'ALL_CRYPTOCURRENCIES_EU': 'Cryptocurrencies', 'CURATED_BY': 'Curated by', 'CURRENCY': 'Currency', 'CURRENCY_NOTICE': 'Currency in {currency}', 'CURRENCY_VALUE': 'Currency: {currency}', 'CURRENT': 'Current', 'CURRENT_ACCRUED_EXPENSES': 'Current Accrued Expenses', 'CURRENT_ASSETS': 'Current Assets', 'CURRENT_CAPITAL_LEASE_OBLIGATION': 'Current Capital Lease Obligation', 'CURRENT_DEBT': 'Current Debt', 'CURRENT_DEBT_AND_CAPITAL_LEASE_OBLIGATION': 'Current Debt And Capital Lease Obligation', 'CURRENT_DEFERRED_ASSETS': 'Current Deferred Assets', 'CURRENT_DEFERRED_LIABILITIES': 'Current Deferred Liabilities', 'CURRENT_DEFERRED_REVENUE': 'Current Deferred Revenue', 'CURRENT_DEFERRED_TAXES_ASSETS': 'Current Deferred Taxes Assets', 'CURRENT_DEFERRED_TAXES_LIABILITIES': 'Current Deferred Taxes Liabilities', 'CURRENT_ESTIMATE': 'Current Estimate', 'CURRENT_LIABILITIES': 'Current Liabilities', 'CURRENT_NOTES_PAYABLE': 'Current Notes Payable', 'CURRENT_PRICE': 'Current Price', 'CURRENT_PROVISIONS': 'Current Provisions', 'CURRENT_QTR': 'Current Qtr.', 'CURRENT_RATIO': 'Current Ratio', 'CURRENT_YEAR': 'Current Year', 'CUSTOM': 'Custom', 'CUSTOMER_ACCEPTANCES': 'Customer Acceptances', 'CUSTOMER_ACCOUNTS': 'Customer Accounts', 'CUSTOMIZE': 'Customize', 'CWL_FOLLOWING_EMPTY': 'You are currently not following any lists', 'CWL_SIGN_IN_TO_VIEW': 'Sign in to view your followed lists', 'DAILY': 'Daily', 'DAILY_GAIN': 'Daily Gain', 'DAILY_PERCENT_GAIN': 'Daily % Gain', 'DAIRY_PRODUCTS': 'Dairy Products', 'DAIRY_PRODUCTS_DESC': 'Dairy Products Stocks', 'DARK': 'Dark', 'DASH': '-', 'DASHBOARD': 'Dashboard', 'DATA_NA': 'Data N/A', 'DATA_PROVIDED_BY': 'Data provided by {dataSource}', 'DATA_STORAGE_DEVICES': 'Data Storage Devices', 'DATA_STORAGE_DEVICES_DESC': 'Data Storage Devices Stocks', 'DATA_UTILITY_PF_TITLE': 'My Portfolio & Markets', 'DATA_UNAVAILABLE': 'Data unavailable', 'DATE': 'Date', 'DATES': 'Dates', 'DATE_FORMAT_ERROR': \"Date format should be 'mm/dd/yyyy'\", 'DATE_PRIOR_THAN_MIN_ERROR': \"Date shouldn't be prior to '{date}'\", 'DATE_RANGE': 'Date Range', 'DATE_RANGE_ERROR': \"'Start' date must be prior to 'End' date.\", 'DATE_REPORTED': 'Date Reported', 'DAYS_RANGE': \"Day's Range\", 'DAY_CHG': 'Day Chg', 'DAY_CHG_PCT': 'Day Chg %', 'DAY_GAIN': 'Day Gain', 'DAY_GAINERS': 'Day Gainers', 'DAY_GAINERS_DESC': 'Stocks ordered in descending order by price percent change with respect to the previous close.', 'DAY_LOSERS': 'Day Losers', 'DAY_LOSERS_DESC': 'Stocks ordered in ascending order by price percent change with respect to the previous close.', 'DC_1YR_TARGET_EST': '1yr Target Est', 'DC_200_DMA': '200-DMA', 'DC_200_DMA_CHG': '200-DMA Chg', 'DC_200_DMA_CHG_P': '200-DMA Chg %', 'DC_50_DMA': '50-DMA', 'DC_50_DMA_CHG': '50-DMA Chg', 'DC_50_DMA_CHG_P': '50-DMA Chg %', 'DC_52_WK_HIGH': '52-Wk High', 'DC_52_WK_HIGH_CHG': '52-Wk High Chg', 'DC_52_WK_HIGH_CHG_P': '52-Wk High Chg %', 'DC_52_WK_LOW': '52-Wk Low', 'DC_52_WK_LOW_CHG': '52-Wk Low Chg', 'DC_52_WK_LOW_CHG_P': '52-Wk Low Chg %', 'DC_52_WK_RANGE': '52-Wk Range', 'DC_ANNUALIZED_GAIN': 'Annualized Gain', 'DC_ANNUALIZED_GAIN_PERCENT': 'Annualized Gain %', 'DC_AVG_VOL_10DAY': 'Avg Vol (10day)', 'DC_AVG_VOL_3M': 'Avg Vol (3m)', 'DC_CHG_P': 'Chg %', 'DC_EX_DIV_DATE': 'Ex-Div Date', 'DC_FORWARD_ANNUAL_DIV_RATE': 'Forward Annual Div Rate', 'DC_FORWARD_ANNUAL_DIV_YIELD': 'Forward Annual Div Yield', 'DC_NO_OF_LOTS': 'No. of Lots', 'DC_PEG_RATIO_5YR_EXPECTED': 'PEG Ratio (5yr expected)', 'DC_POST_MKT_CHG': 'Post-Mkt Chg', 'DC_POST_MKT_CHG_P': 'Post-Mkt Chg %', 'DC_POST_MKT_PRICE': 'Post-Mkt Price', 'DC_POST_MKT_TIME': 'Post-Mkt Time', 'DC_PRE_MKT_CHG': 'Pre-Mkt Chg', 'DC_PRE_MKT_CHG_P': 'Pre-Mkt Chg %', 'DC_PRE_MKT_PRICE': 'Pre-Mkt Price', 'DC_PRE_MKT_TIME': 'Pre-Mkt Time', 'DC_TRAILING_ANNUAL_DIV_RATE': 'Trailing Annual Div Rate', 'DC_TRAILING_ANNUAL_DIV_YIELD': 'Trailing Annual Div Yield', 'DC_TRAILING_P_E': 'Trailing P/E', 'DDA_COSTOF_REVENUE': 'DDA Cost of Revenue', 'DEBT_RATIOS': 'Debt Ratios', 'DEBT_REPAYMENT': 'Debt repayment', 'DECORATION': 'Decoration:', 'DECREASEIN_INTEREST_BEARING_DEPOSITSIN_BANK': 'Decrease in Interest Bearing Depositsin Bank', 'DEFERRED_ASSETS': 'Deferred Assets', 'DEFERRED_INCOME_TAX': 'Deferred Income Tax', 'DEFERRED_INCOME_TAXES': 'Deferred income taxes', 'DEFERRED_LONG_TERM_ASSET_CHARGES': 'Deferred Long Term Asset Charges', 'DEFERRED_LONG_TERM_LIABILITY_CHARGES': 'Deferred Long Term Liability Charges', 'DEFERRED_POLICY_ACQUISITION_COSTS': 'Deferred Policy Acquisition Costs', 'DEFERRED_REVENUES': 'Deferred revenues', 'DEFERRED_TAX': 'Deferred Tax', 'DEFERRED_TAXES_LIABILITIES': 'Deferred taxes liabilities', 'DEFERRED_TAX_ASSETS': 'Deferred Tax Assets', 'DEFINED_PENSION_BENEFIT': 'Defined Pension Benefit', 'DELETE': 'Delete', 'DELETE_LOT': 'Delete Lot', 'DELETE_PORTFOLIO': 'Delete Portfolio', 'DELETE_PORTFOLIO_ERROR': 'Unable to delete portfolio. Please retry.', 'DELETE_PORTFOLIO_TITLE': 'Delete Portfolio?', 'DELETE_SCREENER': 'Delete Screener', 'DELETE_SYMBOLS': 'Delete Symbols', 'DELETE_SYMBOLS_ERROR': 'Unable to delete symbols. Please retry.', 'DELETE_SYMBOLS_TITLE': 'Delete Symbols?', 'DELETE_TRANSACTION': 'Delete transaction', 'DELETE_TRANSACTION_MESSAGE': 'Are you sure you want to remove this {transactionType} transaction for {symbol}?', 'DELETE_TRANSACTION_MESSAGE_CASH': 'Are you sure you want to remove this {transactionType} cash transaction?', 'DELETE_VIEW': 'Delete View', 'DELETE_VIEW_ERROR': 'Unable to delete view. Please retry.', 'DELETE_VIEW_TITLE': 'Delete View?', 'DEPARTMENT_STORES': 'Department Stores', 'DEPARTMENT_STORES_DESC': 'Department Stores Stocks', 'DEPLETION': 'Depletion', 'DEPLETION_DEPLETION_INCOME_STATEMENT': 'Depletion & Depletion Income Statement', 'DEPOSITSBY_BANK': 'Depositsby Bank', 'DEPRECIATION': 'Depreciation', 'DEPRECIATION_AMORTIZATION_DEPLETION': 'Depreciation Amortization Depletion', 'DEPRECIATION_AND_AMORTIZATION': 'Depreciation & amortization', 'DEPRECIATION_DEPRECIATION_INCOME_STATEMENT': 'Depreciation & Depreciation Income Statement', 'DERIVATIVE_ASSETS': 'Derivative Assets', 'DERIVATIVE_PRODUCT_LIABILITIES': 'Derivative Product Liabilities', 'DESCRIPTION': 'Description', 'DESC_ORDER': 'Descending Order', 'DETAILS': 'Details', 'DG_BASIC': 'Basic', 'DG_DETAILS': 'Details', 'DG_ESTIMATES': 'Estimates', 'DG_EXTENDED_HOURS': 'Extended Hours', 'DG_MOVING_AVERAGES': 'Moving Averages', 'DG_PORTFOLIOS': 'Portfolios', 'DIAGNOSTIC_SUBSTANCES': 'Diagnostic Substances', 'DIAGNOSTIC_SUBSTANCES_DESC': 'Diagnostic Substances Stocks', 'DIFF': 'Diff', 'DIFFERENCE': 'Difference', 'DILUTED': 'Diluted', 'DILUTED_ACCOUNTING_CHANGE': 'Diluted Accounting Change', 'DILUTED_AVERAGE_SHARES': 'Diluted Average Shares', 'DILUTED_CONTINUOUS_OPERATIONS': 'Diluted Continuous Operations', 'DILUTED_DISCONTINUOUS_OPERATIONS': 'Diluted Discontinuous Operations', 'DILUTED_EPS': 'Diluted EPS', 'DILUTED_EPS_OTHER_GAINS_LOSSES': 'Diluted EPS Other Gains Losses', 'DILUTED_EXTRAORDINARY': 'Diluted Extraordinary', 'DILUTED_NI_AVAILTO_COM_STOCKHOLDERS': 'Diluted NI Available to Com Stockholders', 'DIRECT': 'Direct', 'DISABLED': 'Disabled', 'DISCONTINUED_OPS': 'Discontinued Operations', 'DISCOUNT_VARIETY_STORES': 'Discount, Variety Stores', 'DISCOUNT_VARIETY_STORES_DESC': 'Discount, Variety Stores Stocks', 'DISCOVER_INVESTMENT_IDEAS': 'Discover Investment Ideas', 'DIVERSIFIED_BUSINESS_TITLE': 'Diversified Business', 'DIVERSIFIED_COMMUNICATION_SERVICES': 'Diversified Communication Services', 'DIVERSIFIED_COMMUNICATION_SERVICES_DESC': 'Diversified Communication Services Stocks', 'DIVERSIFIED_COMPUTER_SYSTEMS': 'Diversified Computer Systems', 'DIVERSIFIED_COMPUTER_SYSTEMS_DESC': 'Diversified Computer Systems Stocks', 'DIVERSIFIED_ELECTRONICS': 'Diversified Electronics', 'DIVERSIFIED_ELECTRONICS_DESC': 'Diversified Electronics Stocks', 'DIVERSIFIED_INVESTMENTS': 'Diversified Investments', 'DIVERSIFIED_INVESTMENTS_DESC': 'Diversified Investments Stocks', 'DIVERSIFIED_MACHINERY': 'Diversified Machinery', 'DIVERSIFIED_MACHINERY_DESC': 'Diversified Machinery Stocks', 'DIVERSIFIED_UTILITIES': 'Diversified Utilities', 'DIVERSIFIED_UTILITIES_DESC': 'Diversified Utilities Stocks', 'DIVIDEND_MANAGEMENT': 'Dividend Management', 'DIVIDEND_PAYOUT': 'Your next dividend payout is scheduled for {date}. Payouts are reflected in your Cash Holdings and will also be added here automatically.', 'DIVIDEND_PAYOUT_LABEL': 'Dividend payout', 'DIVIDEND_PAYOUT_RATIO': 'Dividend Payout Ratio', 'DIVIDENDS': 'Dividends', 'DIVIDENDS_AND_SPLITS': 'Dividends & Splits', 'DIVIDENDS_ONLY': 'Dividends Only', 'DIVIDENDS_PAID': 'Dividends Paid', 'DIVIDENDS_PAID_DIRECT': 'Dividends Paid Direct', 'DIVIDENDS_PAYABLE': 'Dividends Payable', 'DIVIDENDS_RECEIVED_CFI': 'Dividends Received CFI', 'DIVIDENDS_RECEIVED_DIRECT': 'Dividends Received Direct', 'DIVIDEND_AND_YIELD': 'Forward Dividend & Yield', 'DIVIDEND_DATE': 'Dividend Date', 'DIVIDEND_INCOME': 'Dividend Income', 'DIVIDEND_PAID_CFO': 'Dividend Paid CFO', 'DIVIDEND_PER_SHARE': 'Dividend Per Share', 'DIVIDEND_RECEIVED_CFO': 'Dividend Received CFO', 'DOMESTIC_SALES': 'Domestic Sales', 'DONE': 'Done', 'DOODLE': 'Doodle', 'DOWN': 'Down', 'DOWNGRADE': 'Downgrade', 'DOWNLOAD': 'Download', 'DOWNLOAD_APP_NOTE': 'To view complete list, get the Yahoo Finance App', 'DOWN_LAST_30_DAYS': 'Down Last 30 Days', 'DOWN_LAST_7_DAYS': 'Down Last 7 Days', 'DRAW': 'Draw', 'DRUGS_GENERIC': 'Drugs - Generic', 'DRUGS_GENERIC_DESC': 'Drugs - Generic Stocks', 'DRUGS_WHOLESALE': 'Drugs Wholesale', 'DRUGS_WHOLESALE_DESC': 'Drugs Wholesale Stocks', 'DRUG_DELIVERY': 'Drug Delivery', 'DRUG_DELIVERY_DESC': 'Drug Delivery Stocks', 'DRUG_MANUFACTURERS_MAJOR': 'Drug Manufacturers - Major', 'DRUG_MANUFACTURERS_MAJOR_DESC': 'Drug Manufacturers - Major Stocks', 'DRUG_MANUFACTURERS_OTHER': 'Drug Manufacturers - Other', 'DRUG_MANUFACTURERS_OTHER_DESC': 'Drug Manufacturers - Other Stocks', 'DRUG_RELATED_PRODUCTS': 'Drug Related Products', 'DRUG_RELATED_PRODUCTS_DESC': 'Drug Related Products Stocks', 'DRUG_STORES': 'Drug Stores', 'DRUG_STORES_DESC': 'Drug Stores Stocks', 'DUEFROM_RELATED_PARTIES_CURRENT': 'Due from Related Parties Current', 'DUEFROM_RELATED_PARTIES_NON_CURRENT': 'Due from Related Parties Non Current', 'DUETO_RELATED_PARTIES': 'Due to Related Parties', 'DUETO_RELATED_PARTIES_CURRENT': 'Due to Related Parties Current', 'DUETO_RELATED_PARTIES_NON_CURRENT': 'Due to Related Parties Non Current', 'DUE_FROM_RELATED_PARTIES': 'Due from Related Parties', 'DURATION': 'Duration', 'DYNAMIC': 'Dynamic', 'EARNINGS': 'Earnings', 'EARNINGS_BEFORE_INTEREST_TAX': 'Earnings Before Interest and Taxes', 'EARNINGS_CALENDAR': 'Earnings Calendar', 'EARNINGS_CALL': 'Earnings Call', 'EARNINGS_DATE': 'Earnings Date', 'EARNINGS_DOWNLOAD_TITLE': 'Download {earnings} slides', 'EARNINGS_ESTIMATE': 'Earnings Estimate', 'EARNINGS_FROM_EQUITY_INTEREST': 'Earnings from Equity Interest', 'EARNINGS_FROM_EQUITY_INTEREST_NET_OF_TAX': 'Earnings from Equity Interest Net of Tax', 'EARNINGS_HISTORY': 'Earnings History', 'EARNINGS_LOSSES_FROM_EQUITY_INVESTMENTS': 'Earnings Losses from Equity Investments', 'EARNINGS_PER_SHARE': 'Earnings Per Share', 'EARNINGS_REPORT': 'Earnings Report', 'EBIT': 'EBIT', 'EBITDA': 'EBITDA', 'ECONOMIC': 'Economic', 'ECONOMIC_INDICATOR': 'Economic Indicator', 'ECONOMIC_MOAT': 'Economic Moat', 'ECONOMIC_TRENDS': 'Economic Trends', 'EDIT': 'Edit', 'EDITORS_PICK': \"Editor's Pick\", 'EDIT_CASH_SETTINGS': 'Edit Cash Settings', 'EDIT_CURRENCY': 'Edit Currency', 'EDIT_CURRENCY_ERROR': 'Unable to change currency. Please retry.', 'EDIT_EXISTING_CASH_TRANSACTION': 'Edit Cash Transaction', 'EDIT_EXISTING_TRANSACTION': 'Edit transaction - {symbol} ({name})', 'EDIT_PORTOFLIO': 'Edit Portfolio', 'EDIT_SYMBOLS': 'Edit Symbols', 'EDIT_TOTAL_HOLDINGS_SETTINGS': 'Edit Total Holdings Settings', 'EDIT_TRANSACTION': 'Edit transaction', 'EDIT_VIEW': 'Edit View', 'EDUCATION_LOT': 'Share lots are the summary of your key purchasing of stocks on different days.', 'EDUCATION_TRAINING_SERVICES': 'Education & Training Services', 'EDUCATION_TRAINING_SERVICES_DESC': 'Education & Training Services Stocks', 'EDUCATION_TRANSACTION': 'Transactions will record every transaction you do including buy, sell, etc.', 'EFFECT_OF_ACCOUNTING_CHANGES': 'Effect of Accounting Changes', 'EFFECT_OF_EXCHANGE_RATE_CHANGES': 'Effect of Exchange Rate Changes', 'ELECTRIC_UTILITIES': 'Electric Utilities', 'ELECTRIC_UTILITIES_DESC': 'Electric Utilities Stocks', 'ELECTRIC_UTILITY_PLANT': 'Electric Utility Plant', 'ELECTRONICS_STORES': 'Electronics Stores', 'ELECTRONICS_STORES_DESC': 'Electronics Stores Stocks', 'ELECTRONICS_WHOLESALE': 'Electronics Wholesale', 'ELECTRONICS_WHOLESALE_DESC': 'Electronics Wholesale Stocks', 'ELECTRONIC_EQUIPMENT': 'Electronic Equipment', 'ELECTRONIC_EQUIPMENT_DESC': 'Electronic Equipment Stocks', 'ELLIPSE': 'Ellipse', 'EMAIL': 'Email', 'EMPLOYEE_BENEFITS': 'Employee Benefits', 'EMPLOYEES': 'Employees', 'EMPLOYMENT_ENTERPRISING_TITLE': 'Employment and enterprising', 'ENABLED': 'Enabled', 'END_CASH_POSITION': 'End Cash Position', 'END_DATE': 'End Date', 'ENERGIA-PETROLEO-GAS_TITLE': 'Energy & Oil & Gas', 'ENERGIA_TITLE': 'Energy', 'ENERGIE-ET-ENVIRONNEMENT_TITLE': 'Energy & Environment', 'ENERGY_TITLE': 'Energy', 'ENTERPRISE_VALUE': 'Enterprise Value', 'ENTERPRISE_VALUE_TO_EBITDA': 'Enterprise Value/EBITDA', 'ENTERPRISE_VALUE_TO_REVENUE': 'Enterprise Value/Revenue', 'ENTERTAINMENT_DIVERSIFIED': 'Entertainment - Diversified', 'ENTERTAINMENT_DIVERSIFIED_DESC': 'Entertainment - Diversified Stocks', 'ENTER_COMMUNITY_ROOM': 'Enter this livestream room for more', 'ENTER_EMAIL': 'Enter email', 'ENTER_PERSONAL_INFO': 'Enter your personal information', 'ENTER_PORTFOLIO_NAME': 'Enter Portfolio Name', 'ENTER_SYMBOL_COMPANY': 'Enter symbols or company names', 'ENTER_VIEW_NAME': 'Enter View Name', 'ENVIRONMENT': 'Environment Risk Score', 'ENVIRONMENTAL': 'Environmental', 'EPS_ACTUAL': 'EPS Actual', 'EPS_AND_INCOME_STATEMENT': 'EPS and Income Statement', 'EPS_EST': 'EPS Est.', 'EPS_RATIO': 'EPS (TTM)', 'EPS_REVISIONS': 'EPS Revisions', 'EPS_TREND': 'EPS Trend', 'EQUIPMENT': 'Equipment', 'EQUITY_AND_OTHER_INVESTMENTS': 'Equity and other investments', 'EQUITY_HOLDINGS': 'Equity Holdings', 'EQUITY_INVESTMENTS': 'Equity Investments', 'EQUITY_SCREENER': 'Equity Screener', 'EQUITY_SCREENER_DES': 'Find the best stocks according to your criteria with coverage that includes global markets with more than 50 regions', 'ESG_ADULT': 'Adult Entertainment', 'ESG_AGGREGATE_PERF': 'AGGREGATE PERFORMANCE', 'ESG_ALCOHOLIC': 'Alcoholic Beverages', 'ESG_ANIMALTESTING': 'Animal Testing', 'ESG_AUM_DEF': \"The percent of a fund's assets under management that has ESG scores from Sustainalytics.\", 'ESG_AUM_PERCENTAGE': 'based on {percentage}% AUM', 'ESG_AVG_PERF': 'Medium', 'ESG_CATHOLIC': 'Catholic Values', 'ESG_CATHOLIC_DEF': 'Flags a company’s involvement in abortion, contraceptives, or human embryonic stem cell and fetal tissue research.', 'ESG_CAT_PERCENT_RANK': 'Sustainability % rank in category: {rank}', 'ESG_COAL': 'Thermal Coal', 'ESG_CONTROVERSIALWEAPONS': 'Controversial Weapons', 'ESG_CONTROVERSY_DEDUCTION': 'Controversy Deduction', 'ESG_CONTROVERSY_LEVEL': '{level} Controversy level', 'ESG_CONTROVERSY_LEVEL_DEF': 'Sustainalytics’ Controversies Research identifies companies involved in incidents and events that may negatively impact stakeholders, the environment or the company’s operations. Controversies are rated on a scale from one to five with five denoting the most serious controversies with the largest potential impact.', 'ESG_CONTROVERSY_LEVEL_TITLE': 'Controversy Level', 'ESG_DATA_NOT_AVAILABLE': 'Sustainability data is not available', 'ESG_E': 'E', 'ESG_FOCUS': 'Yes, ESG Focus', 'ESG_FOOTER_MSG': \"Sustainalytics' ESG Risk Ratings measure how well a company manages environmental, social, and governance issues.\", 'ESG_FURLEATHER': 'Fur and Specialty Leather', 'ESG_G': 'G', 'ESG_GAMBLING': 'Gambling', 'ESG_GMO': 'GMO', 'ESG_LAG_PERF': 'Negligible', 'ESG_LAST_UPDATED': 'Last updated on {month}/{year}', 'ESG_LEAD_PERF': 'Severe', 'ESG_MILITARYCONTRACT': 'Military Contracting', 'ESG_NUCLEAR': 'Nuclear', 'ESG_OUT_PERF': 'High', 'ESG_PALMOIL': 'Palm Oil', 'ESG_PEER_CATEGORY_AVG': 'Peer avg.', 'ESG_PERFORMANCE_FUNDS': 'ESG Performance for the Fund Portfolio Snapshot', 'ESG_PERFORMANCE_VS_PEER': 'ESG Performance vs {peerCount} Peer Companies', 'ESG_PERF_HISTORICAL': 'Historical ESG Performance', 'ESG_PERF_TITLE': 'ESG PERFORMANCE', 'ESG_PESTICIDES': 'Pesticides', 'ESG_PORT_CONTROVERSY_DEF': 'The Portfolio Controversy Score is the asset-weighted average level of the seriousness of the controversial incidents of companies in the portfolio. A lower score is better than a higher score, as it indicates fewer controversies. Controversies are represented as: Low, Moderate, Significant, High, or Severe, or None, if there is no evidence of controversy.', 'ESG_PORT_ESG_DEF': \"The Portfolio ESG Score is the asset-weighted average of the normalized company ESG Scores for the covered holdings in a portfolio. Higher scores are better than lower scores and, at the portfolio level, indicate that a fund has more of its assets invested in companies that score well under Sustainalytics' ESG methodology, which evaluates company preparedness, disclosure. \", 'ESG_PORT_SCORE': 'Portfolio Sustainability Score', 'ESG_POWERED_BY': 'ESG data provided by Sustainalytics, Inc.', 'ESG_PRODUCT_INVOLVE_DEF': 'Flags a company’s involvement in products, services and business activities commonly used for screening purposes.', 'ESG_RATINGS': 'Environment, Social and Governance (ESG) Risk Ratings', 'ESG_RATINGS_DEF': 'Sustainalytics’ ESG Risk Ratings assess the degree to which a company’s enterprise business value is at risk driven by environmental, social and governance issues. The rating employs a two-dimensional framework that combines an assessment of a company’s exposure to industry-specific material ESG issues with an assessment of how well the company is managing those issues. The final ESG Risk Ratings scores are a measure of unmanaged risk on an absolute scale of 0-100, with a lower score signaling less unmanaged ESG Risk.', 'ESG_REL_CAT': 'Relative to Morningstar Category: {relation}', 'ESG_S': 'S', 'ESG_SCORE': 'ESG Risk Score', 'ESG_SCORES': 'ESG Scores', 'ESG_SCORE_PEERS': 'ESG Risk Score for Peers', 'ESG_SMALLARMS': 'Small Arms', 'ESG_SOCIALLY_RESPONSIBLE_FUND_DEF': 'An indication that the fund discloses in their prospectus that they employ socially responsible or ESG principles in their investment selection processes. These funds make investments based on ethics or values on issues like environmental responsibility, human rights, or religious views. This group also includes funds that may avoid investing in companies that produce or distribute alcohol, tobacco, or weapons.', 'ESG_SUSTAINABILITY_MANDATE': 'Sustainability mandate: {responsible}', 'ESG_SUSTAINABILITY_RATING': 'Sustainability Rating', 'ESG_SUSTAINABILITY_SCORE': 'Sustainability Score', 'ESG_SUSTAINABILITY_SCORE_DEF': 'Morningstar assigns Sustainability Ratings by ranking all scored funds within a Morningstar Category by their Portfolio Sustainability Scores. The ranked funds are then divided into five groups, based on a normal distribution to assign a rating from \"High\" to \"Low\", or 5 globes to 1 globe.', 'ESG_THIS_COMPANY': '( this company )', 'ESG_TOBACCO': 'Tobacco Products', 'ESG_TOTAL_SCORE': 'Total ESG Risk score', 'ESG_UNDER_PERF': 'Low', 'EST': 'Est.', 'ESTIMATE': 'Estimate', 'ESTIMATED_RESULTS': 'Estimated results', 'ETF': 'ETF', 'ETF_SCREENER': 'ETF Screener', 'ETF_SCREENER_DES': 'Search hundreds of ETFs by criteria such as the expense ratio, historical performance, and more', 'ETFS': 'ETFs', 'ETF_LEGAL_TYPE': 'Legal Type', 'EVENTS': 'Events', 'EVENTS_CALENDAR_MSG': 'Events Calendar for:', 'EVENTS_NONE': 'No events found', 'EVENTS_SELECT_A_FEW': 'Select a few events to plot.', 'EVENT_DESCRIPTION': 'Event Description', 'EVENT_FILTERS': 'Event Filters', 'EVENT_LIST': 'Event List', 'EVENT_LIST_BACK': 'Back to events list', 'EVENT_TIME_TYPE_AMC': 'After Market Close', 'EVENT_TIME_TYPE_BMO': 'Before Market Open', 'EVENT_TIME_TYPE_TAS': 'Time As Supplied', 'EVENT_TIME_TYPE_TNS': 'Time Not Supplied', 'EXCESS_TAX_BENEFIT_FROM_STOCK_BASED_COMPENSATION': 'Excess Tax Benefit from Stock Based Compensation', 'EXCISE_TAXES': 'Excise Taxes', 'EXERCISED': 'Exercised', 'EXHIBITS': 'Exhibits', 'EXPAND': 'Expand', 'EXPAND_ALL': 'Expand All', 'EXPAND_SLASH_COLLAPSE_ALL': 'Expand/Collapse All', 'EXPAND_SLASH_COLLAPSE_ALL_SPACE': 'Expand / Collapse All', 'EXPENSE': 'Expense', 'EXPENSE_RATIO': 'Expense Ratio (net)', 'EXPIRED': 'Expired', 'EXPIRE_DATE': 'Expire Date', 'EXPLORATION_DEVELOPMENT_AND_MINERAL_PROPERTY_LEASE_EXPENSES': 'Exploration Development & Mineral Property Lease Expenses', 'EXPLORE': 'Explore', 'EXPLORE_NEW_FINANCIALS': 'Explore detailed look into companies’ financial history', 'EXPORT': 'Export', 'EXPORTS': 'Exports', 'EXPORT_VIEW': 'Export View', 'EXPOSURE': 'Exposure', 'EXTENDED_HOURS': 'Extended hours', 'EXTENSION_PROMO_TITLE': 'Get live quotes and news on new tabs', 'EXTRAORDINARY_ITEMS': 'Extraordinary Items', 'EX_DIVIDEND_DATE': 'Ex-Dividend Date', 'FACEBOOK': 'Facebook', 'FACEBOOK_SHARE': 'Share', 'FAILED_TO_COPY': 'Failed to copy.', 'FAILED_TO_LOAD_SCREENERS_LINE_1': 'We are working on getting your other screeners ready.', 'FAILED_TO_LOAD_SCREENERS_LINE_2': 'You can still create another one.', 'FAILSAFE_CACHE_MESSAGE': 'We are experiencing some temporary issues. The market data on this page is currently delayed. Please bear with us as we address this and restore your personalized lists.', 'FAIR_VALUE': 'Fair Value', 'FARMACEUTICA_TITLE': 'Pharmaceutical', 'FARM_CONSTRUCTION_MACHINERY': 'Farm & Construction Machinery', 'FARM_CONSTRUCTION_MACHINERY_DESC': 'Farm & Construction Machinery Stocks', 'FARM_PRODUCTS': 'Farm Products', 'FARM_PRODUCTS_DESC': 'Farm Products Stocks', 'FEATURECUE_BETA_PORTFOLIO': 'Create a new Beta Portfolio to experience all the new features.', 'FEATURECUE_CHART_SLT': 'Click here to switch to Line, Candle or Bar charts!', 'FEATURECUE_QUOTE_TRADE': 'See all your accounts in one place. Trade quickly and easily with any US broker.', 'FEATURECUE_TICKER_SHARE_LIST': 'NEW: Share lists of your favorite tickers', 'FEATURECUE_TICKER_SHARE_LIST_SHORT': 'NEW: Share ticker lists', 'FEATURECUE_CUSTOMSYMBOL_IN_TOTALGAINS': 'NEW: Custom symbols like $$CASH are now reflected in your day and total gain percentages', 'FEATURECUE_CRYPTOCURRENCIES_NAV': \"NEW: We've added over 9,000 cryptocurrencies\", 'FEDERAL_FUNDS_PURCHASED': 'Federal Funds Purchased', 'FEDERAL_FUNDS_PURCHASED_AND_SECURITIES_SOLD_UNDER_AGREEMENT_TO_REPURCHASE': 'Federal Funds Purchased And Securities Sold Under Agreement To Repurchase', 'FEDERAL_FUNDS_SOLD': 'Federal Funds Sold', 'FEDERAL_FUNDS_SOLD_AND_SECURITIES_PURCHASE_UNDER_AGREEMENTS_TO_RESELL': 'Federal Funds Sold & Securities Purchased Under Agreements to Resell', 'FEDERAL_HOME_LOAN_BANK_STOCK': 'Federal Home Loan Bank Stock', 'FEE': 'Fee', 'FEESAND_COMMISSION_EXPENSE': 'Fees & Commission Expense', 'FEESAND_COMMISSION_INCOME': 'Fees & Commission Income', 'FEES_AND_COMMISSIONS': 'Fees And Commissions', 'FEES_AND_EXPENSES': 'Fees & Expenses', 'FEE_REVENUE_AND_OTHER_INCOME': 'Fee Revenue & Other Income', 'FIBONACCI': 'Fibonacci', 'FIBONACCI_RATIOS': 'Fibonacci Ratios', 'FIBONACCI_TIMEZONE': 'Fibonacci Timezone', 'FIFTY_TWO_WK_RANGE': '52 Week Range', 'FILINGS': 'Filings', 'FILLED_JOBS': 'Filled Jobs', 'FILTERS': 'Filters', 'FILTER_CREATED': 'Created on {date}', 'FILTER_REPORTS': 'Filter reports', 'FILTER_TRADE_IDEAS': 'Filter investment ideas', 'FILTER_UPDATED': 'Updated on {date}', 'FINAL_ROUND_TITLE': 'The Final Round', 'FINANCIAL': 'Financial', 'FINANCIALS': 'Financials', 'FINANCIAL_ASSETS': 'Financial Assets', 'FINANCIAL_ASSETS_DESIGNATEDAS_FAIR_VALUE_THROUGH_PROFITOR_LOSS_TOTAL': 'Financial Assets Designatedas Fair Value Through Profitor Loss Total', 'FINANCIAL_CURRENCY': 'Currency in {currency}. {thousandsMessage}', 'FINANCIAL_DESC': 'Financial Stocks', 'FINANCIAL_HIGHLIGHTS': 'Financial Highlights', 'FINANCIAL_INSTRUMENTS_SOLD_UNDER_AGREEMENTS_TO_REPURCHASE': 'Financial Instruments Sold Under Agreements To Repurchase', 'FINANCIAL_SERVICES': 'Financial Services', 'FINANCIAL_TITLE': 'Financial', 'FINANCING_ACTIVITIES_CASHFLOWS_PROVIDED': 'Financing Activities, Cash Flows Provided By or Used In', 'FINANCING_CASH_FLOW': 'Financing Cash Flow', 'FINANZAS_TITLE': 'Finance & Banking', 'FINANZA_TITLE': 'Finance & Banking', 'FIND_EARNINGS_FOR_SYMBOLS': 'Find earnings for symbols', 'FIND_FILTERS': 'Find filters', 'FIND_RESULTS': 'Find {text}', 'FINISHED_GOODS': 'Finished Goods', 'FISCAL_YEAR': 'Fiscal Year', 'FISCAL_YEAR_ENDS': 'Fiscal Year Ends', 'FIVE_YEAR': '5-Year', 'FIVE_YEAR_AVERAGE_RETURN': '5y Average Return', 'FIVE_YEAR_EXPENSE_PROJECTION': '5 Yr Expense Projection', 'FIVE_YEAR_GROWTH_RATE': 'PE Growth Rate(5Y)', 'FIVE_YR_AVG_RETURN_PCT': '5-Year Average Return', 'FIXED_ASSETS_REVALUATION_RESERVE': 'Fixed Assets Revaluation Reserve', 'FIXED_MATURITY_INVESTMENTS': 'Fixed Maturity Investments', 'FLIGHT_FLEET_VEHICLE_AND_RELATED_EQUIPMENTS': 'Flight Fleet Vehicle & Related Equipments', 'FLOATING': 'Floating', 'FOLLOW': 'Follow', 'FOLLOWER_COUNT': '{count} followers', 'FOLLOWING_TITLE': 'Following', 'FOLLOW_ONBOARDING_TITLE': 'Follow the right companies and find patterns you need.', 'FOLLOW_ONBOARDING_DESC': 'Follow stocks with a click, and we’ll organize them into lists. You can also create and organize watchlists under Following', 'UNFOLLOW': 'Unfollow', 'FOLLOWING_TICKER': 'Now following {ticker}', 'TICKERS_IN_LIST': 'Watchlists with {ticker}:', 'UNFOLLOW_EVERYWHERE': 'Unfollow {ticker} everywhere', 'FOOD_MAJOR_DIVERSIFIED': 'Food - Major Diversified', 'FOOD_MAJOR_DIVERSIFIED_DESC': 'Food - Major Diversified Stocks', 'FOOD_WHOLESALE': 'Food Wholesale', 'FOOD_WHOLESALE_DESC': 'Food Wholesale Stocks', 'FOOTER_COMPANY_TEXT': '{copyright}. All rights reserved.', 'FOOT_NOTES': 'Footnotes', 'FOR': 'for', 'FORECLOSED_ASSETS': 'Foreclosed Assets', 'FOREIGN_CURRENCY_TRANSLATION_ADJUSTMENTS': 'Foreign Currency Translation Adjustments', 'FOREIGN_EXCHANGE_TRADING_GAINS': 'Foreign Exchange Trading Gains', 'FOREIGN_MONEY_CENTER_BANKS': 'Foreign Money Center Banks', 'FOREIGN_MONEY_CENTER_BANKS_DESC': 'Foreign Money Center Banks Stocks', 'FOREIGN_REGIONAL_BANKS': 'Foreign Regional Banks', 'FOREIGN_REGIONAL_BANKS_DESC': 'Foreign Regional Banks Stocks', 'FOREIGN_SALES': 'Foreign Sales', 'FOREIGN_UTILITIES': 'Foreign Utilities', 'FOREIGN_UTILITIES_DESC': 'Foreign Utilities Stocks', 'FORWARD_ANNUAL_DIVIDEND_RATE': 'Forward Annual Dividend Rate', 'FORWARD_ANNUAL_DIVIDEND_YIELD': 'Forward Annual Dividend Yield', 'FORWARD_PE': 'Forward P/E', 'FRANCE': 'France', 'FREE_CASH_FLOW': 'Free Cash Flow', 'FREE_REALTIME': 'Real Time Price', 'FREQUENCY': 'Frequency', 'FROM': 'From', 'FUEL_AND_PURCHASE_POWER': 'Fuel & Purchase Power', 'FULL_CHART_VIEW': 'Full Chart View', 'FULL_FILING_AT_EDGAR_ONLINE': 'Full Filing', 'FULL_SCREEN': 'Full screen', 'FULL_TIME_EMPLOYEES': 'Full Time Employees', 'FUNDAMENTAL': 'Fundamental', 'FUNDAMENTALS': 'Fundamentals', 'FUND_FAMILY': 'Fund Family', 'FUND_INCEPTION_DATE': 'Inception Date', 'FUND_OPERATIONS': 'Fund Operations', 'FUND_OVERVIEW': 'Fund Overview', 'FUND_SUMMARY': 'Fund Summary', 'FUTURE': 'Future', 'FUTURES_SCREENER': 'Futures Screener', 'FUTURES_SCREENER_DES': 'Find the contracts to invest in and includes exchanges, day percent change, and region filters for further customization', 'FUTURES': 'Futures', 'FUTURES_CHAIN': 'Futures Chain', 'FUTURE_POLICY_BENEFITS': 'Future Policy Benefits', 'FYE': 'fye', 'GAINON_SALEOF_INVESTMENT_PROPERTY': 'Gain on Saleof Investment Property', 'GAINON_SALEOF_LOANS': 'Gain on Saleof Loans', 'GAINS_LOSSES_NOT_AFFECTING_RETAINED_EARNINGS': 'Gains Losses Not Affecting Retained Earnings', 'GAIN_LOSSON_SALEOF_ASSETS': 'Gain Losson Saleof Assets', 'GAIN_LOSS_ON_INVESTMENT_SECURITIES': 'Gain Loss On Investment Securities', 'GAIN_LOSS_ON_SALE_OF_BUSINESS': 'Gain Loss On Sale of Business', 'GAIN_LOSS_ON_SALE_OF_PPE': 'Gain Loss On Sale of PPE', 'GAIN_ON_SALE_OF_BUSINESS': 'Gain on Sale of Business', 'GAIN_ON_SALE_OF_PPE': 'Gain on Sale of PPE', 'GAIN_ON_SALE_OF_SECURITY': 'Gain on Sale of Security', 'GAMING_ACTIVITIES': 'Gaming Activities', 'GAMING_ACTIVITIES_DESC': 'Gaming Activities Stocks', 'GAS_UTILITIES': 'Gas Utilities', 'GAS_UTILITIES_DESC': 'Gas Utilities Stocks', 'GATHERING_HOLDINGS': 'Gathering holdings...', 'GDP_REAL': 'Real GDP per Capita', 'GDP_VALUE': 'GDP Value', 'GENERAL': 'Breaking News', 'GENERAL_AND_ADMINISTRATIVE_EXPENSE': 'General & Administrative Expense', 'GENERAL_BUILDING_MATERIALS': 'General Building Materials', 'GENERAL_BUILDING_MATERIALS_DESC': 'General Building Materials Stocks', 'GENERAL_CONTRACTORS': 'General Contractors', 'GENERAL_CONTRACTORS_DESC': 'General Contractors Stocks', 'GENERAL_ENTERTAINMENT': 'General Entertainment', 'GENERAL_ENTERTAINMENT_DESC': 'General Entertainment Stocks', 'GENERAL_PARTNERSHIP_CAPITAL': 'General Partnership Capital', 'GENERATE_LINK': 'Generate Sharable Link', 'GERMANY': 'Germany', 'GET_FINANCE_APP': 'Get the Yahoo Finance app', 'GET_STARTED': 'Get started', 'GIVE_FEEDBACK': 'Give feedback', 'GOLD': 'Gold', 'GOLD_DESC': 'Gold Stocks', 'GOODWILL': 'Goodwill', 'GOODWILL_AND_OTHER_INTANGIBLE_ASSETS': 'Goodwill And Other Intangible Assets', 'GOOD_LIFE_TITLE': 'The Good Life', 'GOTO_SYMBOL': 'Go to Symbol', 'GOTO_TEXT': 'Go to {text}', 'GOTO_TRANSACTION': 'Go to Transaction', 'GOVERNANCE': 'Governance Risk Score', 'GOVERNANCE_QUICKSCORE': '{company}’s ISS Governance QualityScore as of {date} is {score}.', 'GRAY_BACKGROUND_STRIPS': 'Gray background strips', 'GROCERY_STORES': 'Grocery Stores', 'GROCERY_STORES_DESC': 'Grocery Stores Stocks', 'GROSS_ACCOUNTS_RECEIVABLE': 'Gross Accounts Receivable', 'GROSS_LOAN': 'Gross Loan', 'GROSS_PPE': 'Gross PPE', 'GROSS_PREMIUMS_WRITTEN': 'Gross Premiums Written', 'GROSS_PROFIT': 'Gross Profit', 'GROSS_PROPERTY_PLANT_AND_EQUIPMENT': 'Gross property, plant and equipment', 'GROWTH_ESTIMATES': 'Growth Estimates', 'GROWTH_TECHNOLOGY_STOCKS': 'Growth Technology Stocks', 'GROWTH_TECHNOLOGY_STOCKS_DESC': 'Technology stocks with revenue and earnings growth in excess of 25%.', 'HARDWARE_ELECTRONICS_TITLE': 'Computer Hardware & Electronics', 'HAVE_NO_SCREENERS': 'Screeners lets you choose from hundreds of data filters to discover Stocks, Mutual Funds, ETFs and more. {more}', 'HEADS_UP_DISPLAY_HIDE': 'Hide Heads-Up Display', 'HEADS_UP_DISPLAY_SHOW': 'Show Heads-Up Display', 'HELP': 'Help', 'HEALTHCARE': 'Healthcare', 'HEALTHCARE_DESC': 'Healthcare Stocks', 'HEALTHCARE_INFORMATION_SERVICES': 'Healthcare Information Services', 'HEALTHCARE_INFORMATION_SERVICES_DESC': 'Healthcare Information Services Stocks', 'HEALTHCARE_TITLE': 'Healthcare', 'HEALTH_CARE_PLANS': 'Health Care Plans', 'HEALTH_CARE_PLANS_DESC': 'Health Care Plans Stocks', 'HEATMAP_VIEW': 'Heatmap View', 'HEAVY_CONSTRUCTION': 'Heavy Construction', 'HEAVY_CONSTRUCTION_DESC': 'Heavy Construction Stocks', 'HEDGING_ASSETS_CURRENT': 'Hedging Assets Current', 'HELD_TO_MATURITY_SECURITIES': 'Held To Maturity Securities', 'HELP_INFO_ADJ_CLOSE': '**Adjusted close price adjusted for splits and dividend and/or capital gain distributions.', 'HELP_INFO_CLOSE': '*Close price adjusted for splits.', 'HIDE_ALL': 'Hide all', 'HIDE_OUTLIERS': 'Hide outliers', 'HIGH': 'High', 'HIGH-TECH_TITLE': 'Tech', 'HIGH_ESTIMATE': 'High Estimate', 'HIGH_YIELD_BOND': 'High Yield Bond', 'HIGH_YIELD_BOND_DESC': 'High Yield Bond with Performance Rating of 4 & 5, low risk and top-half returns', 'HIRING': 'Hiring', 'HIRING_FOOTER_MSG': 'Greenwich HR aggregates job listings from public and private sources. Job listings signal hiring action 1-3m ahead.', 'HIRING_LEGEND_MSG': '% Change in total hiring', 'HIRING_TRENDS': 'Hiring Trends', 'HISTORICAL_DATA': 'Historical Data', 'HISTORICAL_PERFORMANCE': 'Historical Performance', 'HISTORICAL_PRICE': 'Historical Prices', 'HOLD': 'Hold', 'HOLDER': 'Holder', 'HOLDERS': 'Holders', 'HOLDINGS': 'Holdings', 'HOLLOW_CANDLE': 'Hollow Candle', 'HOME_FURNISHINGS_FIXTURES': 'Home Furnishings & Fixtures', 'HOME_FURNISHINGS_FIXTURES_DESC': 'Home Furnishings & Fixtures Stocks', 'HOME_FURNISHING_STORES': 'Home Furnishing Stores', 'HOME_FURNISHING_STORES_DESC': 'Home Furnishing Stores Stocks', 'HOME_HEALTH_CARE': 'Home Health Care', 'HOME_HEALTH_CARE_DESC': 'Home Health Care Stocks', 'HOME_IMPROVEMENT_STORES': 'Home Improvement Stores', 'HOME_IMPROVEMENT_STORES_DESC': 'Home Improvement Stores Stocks', 'HONG_KONG_STOCKS': 'Hong Kong Stocks', 'HORIZONTAL': 'Horizontal', 'HOSPITALS': 'Hospitals', 'HOSPITALS_DESC': 'Hospitals Stocks', 'HOUSEWARES_ACCESSORIES': 'Housewares & Accessories', 'HOUSEWARES_ACCESSORIES_DESC': 'Housewares & Accessories Stocks', 'IDENTITY_VERIFICATION': 'Identity verification', 'IMMOBILIER-ET-BTP_TITLE': 'Construction and public works', 'IMPAIRMENT_OF_CAPITAL_ASSETS': 'Impairment of Capital Assets', 'IMPLIED_SHARES_OUTSTANDING': 'Implied Shares Outstanding', 'IMPORT': 'Import', 'IMPORT_PF_ERROR': 'There was some error while importing your portfolio. Please Try Again.', 'IMPORT_PORTFOLIO': 'Import Portfolio', 'IMPORT_PORTFOLIO_MSG': 'Import your portfolio via CSV file', 'IMPULSE': 'Impulse:', 'INCLUDE_BETA_PORTFOLIO_VALUES': 'Include Beta portfolio values', 'INCOME': 'Income', 'INCOMEFROM_ASSOCIATESAND_OTHER_PARTICIPATING_INTERESTS': 'Income from Associates & Other Participating Interests', 'INCOME_BEFORE_TAX': 'Income Before Tax', 'INCOME_FROM_CONTINUING_OPS': 'Income from Continuing Operations', 'INCOME_STATEMENT': 'Income Statement', 'INCOME_TAX_EXPENSE': 'Income Tax Expense', 'INCOME_TAX_PAID_SUPPLEMENTAL_DATA': 'Income Tax Paid Supplemental Data', 'INCOME_TAX_PAYABLE': 'Income Tax Payable', 'INCREASEIN_INTEREST_BEARING_DEPOSITSIN_BANK': 'Increase in Interest Bearing Depositsin Bank', 'INCREASE_DECREASE_IN_DEPOSIT': 'Increase Decrease in Deposit', 'INCREASE_DECREASE_IN_NET_UNEARNED_PREMIUM_RESERVES': 'Increase Decrease in Net Unearned Premium Reserves', 'INDEPENDENT_OIL_GAS': 'Independent Oil & Gas', 'INDEPENDENT_OIL_GAS_DESC': 'Independent Oil & Gas Stocks', 'INDEX': 'Index', 'INDEX_SCREENER': 'Index Screener', 'INDEX_SCREENER_DES': 'Find stock market indexes often grouped around a particular sector, industry, or the stock market overall', 'INDEXES': 'Indexes', 'INDEX_COMPONENTS_NO_DATA': 'Components data is not available', 'INDEX_PROFILE': 'Index Profile', 'INDEX_WEIGHT': '% Index Weight', 'INDIA': 'India', 'INDIRECT': 'Indirect', 'INDIVIDUAL_OR_ENTITY': 'Individual or Entity', 'INDUSTRIA-ALIMENTICIA_TITLE': 'Food industry', 'INDUSTRIA-FINANCEIRA_TITLE': 'Financial Industry', 'INDUSTRIA-MANUFACTURERA_TITLE': 'Industrial Manufacturing', 'INDUSTRIA-MANUFATUREIRA_TITLE': 'Manufacturing industry', 'INDUSTRIALS_TITLE': 'Industrials', 'INDUSTRIAL_ELECTRICAL_EQUIPMENT': 'Industrial Electrical Equipment', 'INDUSTRIAL_ELECTRICAL_EQUIPMENT_DESC': 'Industrial Electrical Equipment Stocks', 'INDUSTRIAL_EQUIPMENT_COMPONENTS': 'Industrial Equipment & Components', 'INDUSTRIAL_EQUIPMENT_COMPONENTS_DESC': 'Industrial Equipment & Components Stocks', 'INDUSTRIAL_EQUIPMENT_WHOLESALE': 'Industrial Equipment Wholesale', 'INDUSTRIAL_EQUIPMENT_WHOLESALE_DESC': 'Industrial Equipment Wholesale Stocks', 'INDUSTRIAL_GOODS': 'Industrial Goods', 'INDUSTRIAL_GOODS_DESC': 'Industrial Goods Stocks', 'INDUSTRIAL_METALS_MINERALS': 'Industrial Metals & Minerals', 'INDUSTRIAL_METALS_MINERALS_DESC': 'Industrial Metals & Minerals Stocks', 'INDUSTRIAS-EM-GERAL_TITLE': 'Industries in general', 'INDUSTRIA_TITLE': 'Industrials', 'INDUSTRIE-LOURDE_TITLE': 'Industrials', 'INDUSTRY': 'Industry', 'INDUSTRY_CATEGORY': 'Industry / Category', 'INFORMATION_DELIVERY_SERVICES': 'Information & Delivery Services', 'INFORMATION_DELIVERY_SERVICES_DESC': 'Information & Delivery Services Stocks', 'INFORMATION_TECHNOLOGY_SERVICES': 'Information Technology Services', 'INFORMATION_TECHNOLOGY_SERVICES_DESC': 'Information Technology Services Stocks', 'INITIATE_FUND_TRANSFER': 'Initiate fund transfer', 'INITIATED': 'Initiated', 'INNOVATION': 'Innovation', 'INNOVATION_OUTLOOK': 'Innovation Outlook', 'INSIDER': 'Insider', 'INSIDER_OWNERSHIP': 'Insider Ownership', 'INSIDER_PURCHASES_LAST_SIX_MONTHS': 'Insider Purchases Last 6 Months', 'INSIDER_ROSTER': 'Insider Roster', 'INSIDER_SENTIMENT': 'Insider Sentiment', 'INSIDER_TRANSACTIONS': 'Insider Transactions', 'INSIGHTS': 'Insights', 'INSTITUTIONAL_OWNERSHIP': 'Institutional Ownership', 'INSTITUTIONAL_INTEREST': 'Institutional Interest', 'INSTITUTIONAL_HOLDINGS': 'Institutional Holdings', 'INSURANCE_AND_CLAIMS': 'Insurance & Claims', 'INSURANCE_BROKERS': 'Insurance Brokers', 'INSURANCE_BROKERS_DESC': 'Insurance Brokers Stocks', 'INTANGIBLE_ASSETS': 'Intangible Assets', 'INTERESTAND_COMMISSION_PAID': 'Interestand Commission Paid', 'INTEREST_BEARING_DEPOSITS_ASSETS': 'Interest Bearing Deposits Assets', 'INTEREST_BEARING_DEPOSITS_LIABILITIES': 'Interest Bearing Deposits Liabilities', 'INTEREST_CREDITED_ON_POLICYHOLDER_DEPOSITS': 'Interest Credited On Policyholder Deposits', 'INTEREST_EXPENSE': 'Interest Expense', 'INTEREST_EXPENSE_FOR_DEPOSIT': 'Interest Expense for Deposit', 'INTEREST_EXPENSE_FOR_FEDERAL_FUNDS_SOLD_AND_SECURITIES_PURCHASE_UNDER_AGREEMENTS_TO_RESELL': 'Interest Expense for Federal Funds Sold And Securities Purchase Under Agreements To Resell', 'INTEREST_EXPENSE_FOR_LONG_TERM_DEBT_AND_CAPITAL_SECURITIES': 'Interest Expense for Long Term Debt And Capital Securities', 'INTEREST_EXPENSE_FOR_SHORT_TERM_DEBT': 'Interest Expense for Short Term Debt', 'INTEREST_EXPENSE_NON_OPERATING': 'Interest Expense Non Operating', 'INTEREST_INCOME': 'Interest Income', 'INTEREST_INCOME_FROM_DEPOSITS': 'Interest Income from Deposits', 'INTEREST_INCOME_FROM_FEDERAL_FUNDS_SOLD_AND_SECURITIES_PURCHASE_UNDER_AGREEMENTS_TO_RESELL': 'Interest Income from Federal Funds Sold And Securities Purchase Under Agreements To Resell', 'INTEREST_INCOME_FROM_LEASES': 'Interest Income from Leases', 'INTEREST_INCOME_FROM_LOANS': 'Interest Income from Loans', 'INTEREST_INCOME_FROM_LOANS_AND_LEASE': 'Interest Income from Loans And Lease', 'INTEREST_INCOME_FROM_SECURITIES': 'Interest Income from Securities', 'INTEREST_INCOME_NON_OPERATING': 'Interest Income Non Operating', 'INTEREST_PAID_CFF': 'Interest Paid CFF', 'INTEREST_PAID_CFO': 'Interest Paid CFO', 'INTEREST_PAID_DIRECT': 'Interest Paid Direct', 'INTEREST_PAID_SUPPLEMENTAL_DATA': 'Interest Paid Supplemental Data', 'INTEREST_PAYABLE': 'Interest Payable', 'INTEREST_RECEIVED_CFI': 'Interest Received CFI', 'INTEREST_RECEIVED_CFO': 'Interest Received CFO', 'INTEREST_RECEIVED_DIRECT': 'Interest Received Direct', 'INTERIM_REVENUE': 'Interim Revenue', 'INTERNET_INFORMATION_PROVIDERS': 'Internet Information Providers', 'INTERNET_INFORMATION_PROVIDERS_DESC': 'Internet Information Providers Stocks', 'INTERNET_SERVICE_PROVIDERS': 'Internet Service Providers', 'INTERNET_SERVICE_PROVIDERS_DESC': 'Internet Service Providers Stocks', 'INTERNET_SOFTWARE_SERVICES': 'Internet Software & Services', 'INTERNET_SOFTWARE_SERVICES_DESC': 'Internet Software & Services Stocks', 'INTERNET_TITLE': 'Internet', 'INTERVAL': 'Interval', 'INVALID_INPUT': 'Invalid Input', 'INVENTORIES_ADJUSTMENTS_ALLOWANCES': 'Inventories Adjustments Allowances', 'INVENTORY': 'Inventory', 'INVERT': 'Invert', 'INVESTED_CAPITAL': 'Invested Capital', 'INVESTING_ACTIVITIES_CASHFLOWS_PROVIDED': 'Investing Activities, Cash Flows Provided By or Used In', 'INVESTING_CASH_FLOW': 'Investing Cash Flow', 'INVESTMENTIN_FINANCIAL_ASSETS': 'Investment in Financial Assets', 'INVESTMENTS': 'Investments', 'INVESTMENTSIN_ASSOCIATESAT_COST': 'Investments in Associatesat Cost', 'INVESTMENTSIN_JOINT_VENTURESAT_COST': 'Investments in Joint Venturesat Cost', 'INVESTMENTSIN_SUBSIDIARIESAT_COST': 'Investments in Subsidiariesat Cost', 'INVESTMENTS_AND_ADVANCES': 'Investments And Advances', 'INVESTMENTS_IN_OTHER_VENTURES_UNDER_EQUITY_METHOD': 'Investments in Other Ventures Under Equity Method', 'INVESTMENTS_PROPERTY_PLANT': 'Investments in property, plant and equipment', 'INVESTMENT_BANKING_PROFIT': 'Investment Banking Profit', 'INVESTMENT_BROKERAGE_NATIONAL': 'Investment Brokerage - National', 'INVESTMENT_BROKERAGE_NATIONAL_DESC': 'Investment Brokerage - National Stocks', 'INVESTMENT_BROKERAGE_REGIONAL': 'Investment Brokerage - Regional', 'INVESTMENT_BROKERAGE_REGIONAL_DESC': 'Investment Brokerage - Regional Stocks', 'INVESTMENT_INFORMATION': 'Investment Information', 'INVESTMENT_PROPERTIES': 'Investment Properties', 'INVOLVEMENT': 'Significant Involvement', 'IN_WATCHLIST': 'In watchlist', 'ISS': 'Institutional Shareholder Services (ISS)', 'ISSUANCE_OF_CAPITAL_STOCK': 'Issuance of Capital Stock', 'ISSUANCE_OF_DEBT': 'Issuance of Debt', 'ITALIA': 'Italia', 'JEWELRY_STORES': 'Jewelry Stores', 'JEWELRY_STORES_DESC': 'Jewelry Stores Stocks', 'JOIN_BETA': 'Join BETA', 'KEY_EXECUTIVES': 'Key Executives', 'KEY_STATISTICS': 'Key Statistics', 'KEY_STATS_DIVIDEND_AND_YIELD': '{0} ({1})', 'KEY_TECHNICALS': 'Key Technicals', 'KS_HELP_FYE_DETAIL': 'Fiscal Year Ending', 'KS_HELP_GUIDE': 'Abbreviation Guide:', 'KS_HELP_LFY_DETAIL': 'Last Fiscal Year', 'KS_HELP_LINK': 'See {link} for definitions of terms used.', 'KS_HELP_MRQ_DETAIL': 'Most Recent Quarter', 'KS_HELP_SUP_1': 'Data provided by Refinitiv.', 'KS_HELP_SUP_2': 'Data provided by EDGAR Online.', 'KS_HELP_SUP_3': 'Data derived from multiple sources or calculated by Yahoo Finance.', 'KS_HELP_SUP_4': 'Data provided by Morningstar, Inc.', 'KS_HELP_SUP_5': 'Shares outstanding is taken from the most recently filed quarterly or annual report and Market Cap is calculated using shares outstanding.', 'KS_HELP_SUP_6': 'Implied Shares Outstanding of common equity, assuming the conversion of all convertible subsidiary equity into common.', 'KS_HELP_SUP_7': 'EBITDA is calculated by S&P Global Market Intelligence using methodology that may differ from that used by a company in its reporting.', 'KS_HELP_SUP_8': \"A company's float is a measure of the number of shares available for trading by the public. It's calculated by taking the number of issued and outstanding shares minus any restricted stock, which may not be publicly traded.\", 'KS_HELP_TTM_DETAIL': 'Trailing Twelve Months', 'KS_HELP_YOY_DETAIL': 'Year Over Year', 'LAND_AND_IMPROVEMENTS': 'Land And Improvements', 'LANGUAGE': 'Language', 'LAST_BEAR_MKT': 'Last Bear Market', 'LAST_BULL_MKT': 'Last Bull Market', 'LAST_CAP_GAIN': 'Last Cap Gain', 'LAST_DIVIDEND': 'Last Dividend', 'LAST_PRICE': 'Last Price', 'LAST_SPLIT_DATE': 'Last Split Date', 'LAST_SPLIT_FACTOR': 'Last Split Factor', 'LATEST': 'Latest', 'LATEST_ANALYST_UPGRADED_STOCKS': 'Latest Analyst Upgraded Stocks', 'LATEST_SYMBOL_NEWS': 'Latest {symbol} news', 'LEAD_MANAGER_SINCE': 'Lead Manager since {date}', 'LEARN_MORE': 'Learn more', 'LEARN_MORE_STREAM': 'Learn More about Yahoo Finance Livestreaming', 'LEASES': 'Leases', 'LEGAL_TYPE': 'Legal Type', 'LEISURE_INDUSTRIES_TITLE': 'Leisure Industries', 'LEISURE_TITLE': 'Leisure Industries', 'LEVERED_FREE_CASH_FLOW': 'Levered Free Cash Flow', 'LFY': 'lfy', 'LIABILITIES': 'Liabilities', 'LIABILITIES_AND_STOCKHOLDERS_EQUITY': \"Liabilities and stockholders' equity\", 'LIABILITIES_HELDFOR_SALE_NON_CURRENT': 'Liabilities Held for Sale Non Current', 'LIABILITIES_OF_DISCONTINUED_OPERATIONS': 'Liabilities of Discontinued Operations', 'LIFESTYLE_TITLE': 'Health & Lifestyle', 'LIFE_INSURANCE': 'Life Insurance', 'LIFE_INSURANCE_DESC': 'Life Insurance Stocks', 'LIFE_MONEY_TITLE': 'Life and money', 'LIGHT': 'Light', 'LIMITED_PARTNERSHIP_CAPITAL': 'Limited Partnership Capital', 'LIMITS': 'Limits', 'LINE': 'Line', 'LINEAR': 'Linear', 'LINE_AVERAGE': 'Average Line', 'LINE_CROSS': 'Cross Line', 'LINE_OF_CREDIT': 'Line of Credit', 'LINE_QUADRANT': 'Quadrant Line', 'LINE_SIZE': 'Line Size', 'LINE_TREND': 'Trend Line', 'LINKED_ACCOUNT': 'Linked account', 'LINKED_ACCOUNTS': 'Linked Accounts', 'LINKED_ACCOUNT_LAST_UPDATED_TIME': 'Linked account data was last updated {date}', 'LINK_BROKER': 'Link Broker', 'LINK_BROKERS_TO_TRACK_PF': 'Link brokers to track portfolios', 'CONNECT_BROKERS_TO_TRACK_PF': 'Connect brokerage account', 'LINK_YOUR_BROKER': 'Link your real broker and trade', 'LINK_LIVESTREAM_TITLE': 'Please link your signal to start livestream', 'LINK_LIVESTREAM_TEXT': 'In your livestream tool, please input the URL as well as the livestream key below to connect your livestream signal. After everything’s ready, you may start your livestream.', 'LIQUIDITY_RATIOS': 'Liquidity Ratios', 'LISTS': 'Lists', 'LIVE': 'Live!', 'LIVESTREAM_IDEAS': 'Livestream your financial ideas', 'LIVESTREAM_KEY': 'Live Stream Key', 'LIVESTREAM_UPSELL_SUBTEXT': 'Learn about Yahoo Fiannce Livestream now, start livestrreaming. Certain limitations apply.', 'LIVESTREAM_STUDIO_ENTER': 'Enter Livestream Studio', 'LIVESTREAM_STUDIO_TITLE': 'Livestream Studio', 'LIVESTREAM_TAGS': 'Livestream Tags', 'LIVESTREAM_TICKERS': 'Related Tickers', 'LIVESTREAM_TITLE': 'Livestream Title', 'LIVE_NOW': 'LIVE NOW', 'LIVE_STATUS': 'LIVE', 'LIVE_VIDEO': 'Live Video', 'LOADING_FULL_CHART': 'Loading interactive chart...', 'LOADING_MORE_DATA': 'Loading more data...', 'LOAD_ADJUSTED_RETURNS': 'Load Adjusted Returns', 'LOANS_HELD_FOR_SALE': 'Loans Held for Sale', 'LOANS_RECEIVABLE': 'Loans Receivable', 'LODGING': 'Lodging', 'LODGING_DESC': 'Lodging Stocks', 'LOGARITHMIC': 'Logarithmic', 'LOGIN': 'Login', 'LONGTERM_CARE_FACILITIES': 'Long-Term Care Facilities', 'LONGTERM_CARE_FACILITIES_DESC': 'Long-Term Care Facilities Stocks', 'LONG_DISTANCE_CARRIERS': 'Long Distance Carriers', 'LONG_DISTANCE_CARRIERS_DESC': 'Long Distance Carriers Stocks', 'LONG_TERM_CAPITAL_LEASE_OBLIGATION': 'Long Term Capital Lease Obligation', 'LONG_TERM_DEBT': 'Long Term Debt', 'LONG_TERM_DEBT_AND_CAPITAL_LEASE_OBLIGATION': 'Long Term Debt And Capital Lease Obligation', 'LONG_TERM_DEBT_ISSUANCE': 'Long Term Debt Issuance', 'LONG_TERM_DEBT_PAYMENTS': 'Long Term Debt Payments', 'LONG_TERM_EQUITY_INVESTMENT': 'Long Term Equity Investment', 'LONG_TERM_INVESTMENTS': 'Long Term Investments', 'LONG_TERM_PROVISIONS': 'Long Term Provisions', 'LOOKUP_FOOTER_TIP': 'Tip: Use comma to separate multiple quotes and then press enter', 'LOOKUP_NO_RSULT': \"No results for '{searchPhrase}'\", 'LOOKUP_OPTION': 'Option Lookup', 'LOOKUP_TAB_all': 'All ({count})', 'LOOKUP_TAB_currency': 'Currencies ({count})', 'LOOKUP_TAB_equity': 'Stocks ({count})', 'LOOKUP_TAB_etf': 'ETFs ({count})', 'LOOKUP_TAB_future': 'Futures ({count})', 'LOOKUP_TAB_index': 'Indices ({count})', 'LOOKUP_TAB_mutualfund': 'Mutual Funds ({count})', 'LOSSON_EXTINGUISHMENTOF_DEBT': 'Loss on Extinguishment of Debt', 'LOSS_ADJUSTMENT_EXPENSE': 'Loss Adjustment Expense', 'LOW': 'Low', 'LOW_ESTIMATE': 'Low Estimate', 'LUMBER_WOOD_PRODUCTION': 'Lumber, Wood Production', 'LUMBER_WOOD_PRODUCTION_DESC': 'Lumber, Wood Production Stocks', 'MACHINERY_FURNITURE_EQUIPMENT': 'Machinery Furniture Equipment', 'MACHINE_TOOLS_ACCESSORIES': 'Machine Tools & Accessories', 'MACHINE_TOOLS_ACCESSORIES_DESC': 'Machine Tools & Accessories Stocks', 'MAINTAINS': 'Maintains', 'MAINTENANCE_AND_REPAIRS': 'Maintenance & Repairs', 'MAJOR_AIRLINES': 'Major Airlines', 'MAJOR_AIRLINES_DESC': 'Major Airlines Stocks', 'MAJOR_INTEGRATED_OIL_GAS': 'Major Integrated Oil & Gas', 'MAJOR_INTEGRATED_OIL_GAS_DESC': 'Major Integrated Oil & Gas Stocks', 'MANAGEMENT_EFFECTIVENESS': 'Management Effectiveness', 'MANAGEMENT_INFORMATION': 'Management Information', 'MANAGEMENT_SERVICES': 'Management Services', 'MANAGEMENT_SERVICES_DESC': 'Management Services Stocks', 'MANAGE_SETTINGS': 'Manage Settings', 'MANAGE_SUBSCRIPTION': 'Manage Subscription', 'MANUFACTURED_HOUSING': 'Manufactured Housing', 'MANUFACTURED_HOUSING_DESC': 'Manufactured Housing Stocks', 'MANUFACTURING_MATERIALS_TITLE': 'Manufacturing & Materials', 'MANUF_EMPLOYMENT': 'Manufacturing \\nEmployment', 'MARKETING_SERVICES': 'Marketing Services', 'MARKETING_SERVICES_DESC': 'Marketing Services Stocks', 'MARKETS_CLOSED': 'Market closed.', 'MARKETS_OPEN': 'Market open.', 'MARKETS_TITLE': 'Markets', 'MARKET_BLOGS_TITLE': 'Market Blogs', 'MARKET_CAP': 'Market Cap', 'MARKET_CAP_INTRADAY': 'Market Cap (intraday)', 'MARKET_DIGEST': 'Market digest', 'MARKET_MOVERS_TITLE': 'Market Movers', 'MARKET_REVIEW': 'Market Review', 'MARKET_SUMMARY': 'Market Summary', 'MARKET_TIME_NOTICE_CLOSED': 'As of {date} {time}. {marketState}', 'MARKET_TIME_NOTICE_CLOSED_SHORT': 'At close: {date} {time}', 'MARKET_TIME_NOTICE_OPEN': 'As of {date} {time}. {exchange} {marketSource}. {marketState}', 'MARKET_TIME_RELATED_COMPANIES': 'As of {time}', 'MARKET_TITLE': 'Market', 'MARKET_VALUE': 'Market Value', 'MATCHES': 'Matches', 'MATCHING_STOCKS': 'Matching stocks', 'MATCH_RESULTS': '{start}-{end} of {total} results', 'MATCH_RESULTS_INDUSTRY': '{total} results', 'MATERIALES-BASICOS_TITLE': 'Basic materials', 'MATERIALS_AND_SUPPLIES': 'Materials & Supplies', 'MATIERES-PREMIERES_TITLE': 'Raw materials', 'MATURITY': 'Maturity', 'MAX': 'Max', 'MAX_12B1_FEE': 'Max 12b1 Fee', 'MAX_DEFERRED_SALES_LOAD': 'Max Deferred Sales Load', 'MAX_FRONT_END_SALES_LOAD': 'Max Front End Sales Load', 'MAX_SUPPLY': 'Max Supply', 'MEAN_ANNUAL_RETURN': 'Mean Annual Return', 'MEAT_PRODUCTS': 'Meat Products', 'MEAT_PRODUCTS_DESC': 'Meat Products Stocks', 'MEDIAN': 'Median', 'MEDIAN_MARKET_CAP': 'Median Market Cap', 'MEDICAL_APPLIANCES_EQUIPMENT': 'Medical Appliances & Equipment', 'MEDICAL_APPLIANCES_EQUIPMENT_DESC': 'Medical Appliances & Equipment Stocks', 'MEDICAL_EQUIPMENT_WHOLESALE': 'Medical Equipment Wholesale', 'MEDICAL_EQUIPMENT_WHOLESALE_DESC': 'Medical Equipment Wholesale Stocks', 'MEDICAL_INSTRUMENTS_SUPPLIES': 'Medical Instruments & Supplies', 'MEDICAL_INSTRUMENTS_SUPPLIES_DESC': 'Medical Instruments & Supplies Stocks', 'MEDICAL_LABORATORIES_RESEARCH': 'Medical Laboratories & Research', 'MEDICAL_LABORATORIES_RESEARCH_DESC': 'Medical Laboratories & Research Stocks', 'MEDICAL_PRACTITIONERS': 'Medical Practitioners', 'MEDICAL_PRACTITIONERS_DESC': 'Medical Practitioners Stocks', 'MET': 'Met', 'METAL_FABRICATION': 'Metal Fabrication', 'METAL_FABRICATION_DESC': 'Metal Fabrication Stocks', 'META_DESCRIPTION': 'At Yahoo Finance, you get free stock quotes, up-to-date news, portfolio management resources, international market data, social interaction and mortgage rates that help you manage your financial life.', 'META_DESCRIPTION_CURRENCY_CONVERTER': 'Get fast and easy calculator for converting one currency to another using the latest live exchange rates. Also, get the latest news that could affect currency exchange rates.', 'META_DESCRIPTION_INDUSTRY': 'Search quotes and news for all sectors, industries and sub-industries.', 'META_DESCRIPTION_LOOKUP': 'Search for ticker symbols for Stocks, Mutual Funds, ETFs, Indices and Futures on Yahoo! Finance.', 'META_DESCRIPTION_MINIHOME_NEWS': 'Today’s business and financial news, plus the latest updates that may affect your money, investments, savings, and financial health', 'META_DESC_CALENDAR_ALL': 'Find earnings, economic, stock splits and IPO calendars to track upcoming financial events from Yahoo Finance.', 'META_DESC_CALENDAR_EARNINGS': 'Learn when companies announce their quarterly and annual earnings, along with the latest EPS estimates and conference call times from Yahoo Finance.', 'META_DESC_CALENDAR_EARNINGS_SYMBOL': 'Learn when {symbol} announce their quarterly, annual earnings. See the latest EPS estimates. Listen to the conference call and remind yourself by adding it to your calendar.', 'META_DESC_CALENDAR_ECONOMIC': 'Track economic announcements with forecast and actuals to help your trading and investment decisions.', 'META_DESC_CALENDAR_IPO': 'Learn which companies are planning to go public soon, and when they are scheduling their IPOs.', 'META_DESC_CALENDAR_SPLITS': 'Learn which company shares are splitting and when in this stocks splits calendar from Yahoo Finance.', 'META_DESC_CRYPTO_ABOUT': \"Get started with trading and investing in crypto with these helpful FAQ's and how to sign up for an account.\", 'META_DESC_CRYPTO_ACCOUNT': 'Manage your crypto trading account with notification settings, account statements, option to deactivate account.', 'META_DESC_CRYPTO_DEACTIVATE': 'Deactivate your crypto trading account.', 'META_DESC_CRYPTO_DEPOSIT': 'Deposit fund to your crypto trading account.', 'META_DESC_CRYPTO_HELP': \"Help page for crypto trading, including TOS, FAQ's and customer service contact info.\", 'META_DESC_CRYPTO_KYC': 'Find forms requesting crypto trading user info and/or identity verifcation documents.', 'META_DESC_CRYPTO_LINKED_ACCOUNTS': 'Link your ACH accounts, with option to deposit/withdraw and refresh/link/unlink accounts.', 'META_DESC_CRYPTO_TRADING': 'Buy, sell, trade and store crypto the safe and easy way. Customer service will always be there to help.', 'META_DESC_CRYPTO_WITHDRAW': 'Withdraw fund from your crypto trading account.', 'META_DESC_CRYPTOCURRENCY_LANDING': 'Find a list of top cryptocurrencies and their prices in real time, including percentage change, charts, history, volume and more.', 'META_DESC_EARNINGS': 'Yahoo {quarter} {year} Earnings', 'META_DESC_HUB': 'Find the latest tax news, tips, dates and info that you need to file taxes in 2023. ', 'META_DESC_INDUS': '{listId} Services - Industry Center - Financial data, performance information for the {listId} Services.', 'META_DESC_LIST_BONDS': 'Bonds Center - Learn the basics of bond investing, get current quotes, news, commentary and more.', 'META_DESC_LIST_COMMODITIES': 'See the list of commodity futures with price and percentage change for the day, trading volume, open interest, and day chart', 'META_DESC_LIST_CURRENCIES': 'See the complete list of latest currency exchange rates with price and percentage changes, 52 week range and day charts.', 'META_DESC_LIST_ETFS': \"Learn about Exchange-Traded Funds, read ETF news, and see which ETFs are performing the best with Yahoo Finance's ETF Center.\", 'META_DESC_LIST_GAINERS': 'View performance of stock gainers on Yahoo Finance', 'META_DESC_LIST_LOSERS': 'View performance of stock losers on Yahoo Finance', 'META_DESC_LIST_MOST_ACTIVE': 'View performance of most active stocks on Yahoo Finance', 'META_DESC_LIST_MUTUALFUNDS': 'Mutual Funds Center - Get investing strategies, data, and mutual fund news in the Yahoo Finance Mutual Fund Center. The Fund Screener surfaces low-cost and top-performing funds for each asset category and provides detailed fund profiles, fund charts, and news on fund manage', 'META_DESC_LIST_OPTIONS': 'Options Tools, Education and News on Yahoo Finance', 'META_DESC_LIST_TRENDING_TICKERS': 'See the list of trending stocks today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_LIST_WORLD_INDICES': 'See the complete list of world stock indexes with points and percentage change, volume, intraday highs and lows, 52 week range, and day charts.', 'META_DESC_MULTIQUOTE': 'View and compare {quotes} on Yahoo Finance.', 'META_DESC_MULTIQUOTE_EMPTY': 'View and compare quotes on Yahoo Finance.', 'META_DESC_PERSONAL_FINANCE': 'Read latest personal finance articles about loans, saving & spending, lifestyle, insurance, taxes, career & education, retirement, and real estate. Try our calculators for setting your savings goals for a car, down payment for a home, education and other needs as well as mortgage calculator to determine monthly payments for a home. Search glossary to better understand financial terms and their meanings.', 'META_DESC_PORTFOLIO': 'Track your personal stock portfolios and watch lists, and automatically determine your day gain and total gain at Yahoo Finance', 'META_DESC_QUOTE': 'Find the latest {shortName} ({symbol}) stock quote, history, news and other vital information to help you with your stock trading and investing.', 'META_DESC_QUOTE_ANALYSIS': 'See {shortName} ({symbol}) stock analyst estimates, including earnings and revenue, EPS, upgrades and downgrades.', 'META_DESC_QUOTE_BALANCE-SHEET': \"Get the annual and quarterly balance sheet of {shortName} ({symbol}) including details of assets, liabilities and shareholders' equity.\", 'META_DESC_QUOTE_CASH-FLOW': 'Understand the cash flow statement for {shortName} ({symbol}), learn where the money comes from and how the company spends it.', 'META_DESC_QUOTE_CHART': 'Interactive Chart for {shortName} ({symbol}), analyze all the data with a huge range of indicators.', 'META_DESC_QUOTE_COMMUNITY': \"Find the latest {shortName} ({symbol}) stock discussion in Yahoo Finance's forum. Share your opinion and gain insight from other stock traders and investors.\", 'META_DESC_QUOTE_COMPANY360': 'Get {shortName} ({symbol}) exclusive data and insights at your fingertips with intuitive visualizations.', 'META_DESC_QUOTE_COMPANY_INSIGHTS': 'Find essential company insights and stock analysis for {companyName} ({symbol}), including the Yahoo Finance company insight score, to help you with your stock trading and investing', 'META_DESC_QUOTE_COMPONENTS': 'View the basic {symbol} stock chart on Yahoo Finance and learn which stocks are present under {shortName} ({symbol}).', 'META_DESC_QUOTE_CORPORATE_EVENTS': 'Find earnings dates, report releases and other corporate events for {companyName} ({symbol}) to help you with your stock trading and investing', 'META_DESC_QUOTE_CRYPTOCURRENCY': 'Find the latest {shortName} ({symbol}) price quote, history, news and other vital information to help you with your cryptocurrency trading and investing.', 'META_DESC_QUOTE_CRYPTOCURRENCY_CHART': 'Interactive Chart for {shortName} ({symbol}), analyze all the data with a huge range of indicators.', 'META_DESC_QUOTE_CRYPTOCURRENCY_COMMUNITY': \"Find the latest {shortName} ({symbol}) cryptocurrency discussion in Yahoo Finance's forum. Share your opinions and get diverse opinions from other crypto traders and investors.\", 'META_DESC_QUOTE_CRYPTOCURRENCY_HISTORY': 'Discover historical prices of {shortName} ({symbol}) on Yahoo Finance. View daily, weekly or monthly formats.', 'META_DESC_QUOTE_CRYPTOCURRENCY_PROFILE': 'Find key facts about {shortName} ({symbol}) to help you with your cryptocurrency trading and investing.', 'META_DESC_QUOTE_CURRENCY': 'Find the latest {shortName} ({symbol}) currency exchange rate, plus historical data, charts, relevant news and more', 'META_DESC_QUOTE_CURRENCY_COMMUNITY': \"Find the latest {shortName} ({symbol}) forex discussions in Yahoo Finance's forum. Share your opinion and gain insight from other traders and investors.\", 'META_DESC_QUOTE_FAIR_VALUE': \"See the fair value of {companyName} ({symbol}) stock to learn if it is overvalued or undervalued with it's current price, and see the outlook for the stock.\", 'META_DESC_QUOTE_FINANCIALS': 'Get the detailed quarterly/annual income statement for {shortName} ({symbol}). Find out the revenue, expenses and profit or loss over the last fiscal year.', 'META_DESC_QUOTE_FUTURES': \"Yahoo Finance is a leading financial destination, providing consumers with a broad range of comprehensive online financial services and information essential to managing one's financial life. By providing access to up-to-date, international market data, real-time stock quotes, portfolio management resources, and community tools such as message boards and clubs, Yahoo Finance empowers consumers to make well-informed investment decisions.\", 'META_DESC_QUOTE_HISTORY': 'Discover historical prices for {symbol} stock on Yahoo Finance. View daily, weekly or monthly format back to when {shortName} stock was issued.', 'META_DESC_QUOTE_HOLDERS': 'Find out the direct holders, institutional holders and mutual fund holders for {shortName} ({symbol}).', 'META_DESC_QUOTE_HOLDINGS': 'View Top Holdings and Key Holding Information for {shortName} ({symbol}).', 'META_DESC_QUOTE_INDEX': 'Find the latest information on {shortName} ({symbol}) including data, charts, related news and more from Yahoo Finance', 'META_DESC_QUOTE_INDEX_COMMUNITY': \"Find the latest {shortName} ({symbol}) discussion in Yahoo Finance's forum. Share your opinion and gain insight from other traders and investors.\", 'META_DESC_QUOTE_INDEX_COMPONENTS': 'Get the components of the {shortName} ({symbol}) to help your investment decision from Yahoo Finance', 'META_DESC_QUOTE_INDEX_HISTORY': 'Get historical data for the {shortName} ({symbol}) on Yahoo Finance. View and download daily, weekly or monthly data to help your investment decisions.', 'META_DESC_QUOTE_INDEX_OPTIONS': 'Get the basic {shortName} ({symbol}) option chain and pricing options for different maturity periods from Yahoo Finance.', 'META_DESC_QUOTE_INSIDER-ROSTER': 'Get the latest updated list of insiders for {shortName} ({symbol}). Find out the total of insider shares held, purchased and sold.', 'META_DESC_QUOTE_INSIDER-TRANSACTIONS': 'Get the latest insider transactions for {shortName} ({symbol}). Find out the total of insider shares held, purchased and sold.', 'META_DESC_QUOTE_KEY-STATISTICS': 'Find out all the key statistics for {shortName} ({symbol}), including valuation measures, fiscal year financial statistics, trading record, share statistics and more.', 'META_DESC_QUOTE_NEWS': 'Get the latest {shortName} ({symbol}) stock news and headlines to help you in your trading and investing decisions.', 'META_DESC_QUOTE_OPTIONS': 'View the basic {symbol} option chain and compare options of {shortName} on Yahoo Finance.', 'META_DESC_QUOTE_PERFORMANCE': 'Current and Historical Performance Performance for {shortName} on Yahoo Finance.', 'META_DESC_QUOTE_PRESS-RELEASES': 'Get the latest {shortName} ({symbol}) stock news and headlines to help you in your trading and investing decisions.', 'META_DESC_QUOTE_PROFILE': 'See the company profile for {shortName} ({symbol}) including business summary, industry/sector information, number of employees, business summary, corporate governance, key executives and their compensation.', 'META_DESC_QUOTE_PURCHASE-INFO': 'View Minimum Investment Information and Available Brokerage for {shortName} ({symbol})', 'META_DESC_QUOTE_RESEARCH_REPORTS': 'See the latest analyst reports for {companyName} ({symbol}), including analyst ratings and price targets to help you with your stock trading and investing.', 'META_DESC_QUOTE_RISK': 'View Historical Risk Statistics for {shortName} ({symbol}).', 'META_DESC_QUOTE_SUSTAINABILITY': 'See {shortName} ({symbol}) Environment, Social and Governance Ratings to help you in your stock buying decisions.', 'META_DESC_QUOTE_UNKNOWN': 'The requested symbol was not found in our database. Try searching for some other symbol on Yahoo Finance', 'META_DESC_SCREENERS': 'Find Yahoo Finance predefined, ready-to-use stock screeners to search stocks by industry, index membership, and more. Create your own screens with over 150 different screening criteria.', 'META_DESC_SCREENERS_CRYPTOCURRENCY': 'Create your own cryptocurrency screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_EQUITY': 'Create your own stock screener with over 150 different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_EQUITY_DAY_GAINERS': 'See the list of the top gaining stocks today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_SCREENERS_EQUITY_DAY_LOSERS': 'See the list of the top losing stocks today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_SCREENERS_EQUITY_MOST_ACTIVES': 'See the list of the most active stocks today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_SCREENERS_ETF': 'Create your own ETF screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_ETF_TOP_ETFS_US': 'See the list of the top ETFs today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_SCREENERS_FUTURE': 'Create your own futures screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_INDEX': 'Create your own stock index screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_MUTUALFUND': 'Create your own mutual fund screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_ANALYST_RATINGS': 'Create your own analyst rating screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_MUTUALFUND_TOP_MUTUAL_FUNDS': 'See the complete list of mutual funds with price percent changes, 50 and 200 day averages, 3 month returns and YTD returns.', 'META_DESC_SCREENERS_OPTION': 'Option Screener: Option Research Center - Use the Option screener to search options by industry, index membership, share data such as price, market cap, beta, sales and profitability, valuation ratios, analyst estimates. Create your own screens with over 150 different screening criteria', 'META_DESC_SCREENERS_PREDEFINED': 'See a list of {title} using the Yahoo Finance screener. Create your own screens with over 150 different screening criteria.', 'META_DESC_WATCHLISTS': 'Explore curated stock watchlists to track and discover assets in a variety of categories', 'META_DESC_WATCHLISTS_CATEGORY': 'See a list of {metaTitle} from Yahoo Finance, with latest stock price and other details.', 'META_DESC_WATCHLISTS_THE_FIGHT_AGAINST_COVID19': 'Follow this list to discover and track the stocks of publicly traded companies with COVID-19 related treatments and healthcare plans.', 'META_KEYWORDS': '401k, Business, Financial Information, Investing, Investor, Market News, Stock Research, Stock Valuation, business news, economy, finance, investment tools, mortgage, mutual funds, personal finance, quote, real estate, retirement, stock, stocks, Suze Orman, tax, track portfolio', 'META_KEYWORDS_INDUSTRY': 'Industry, Sector, Energy, Materials, Industrials, Consumer Discretionary, Consumer Staples, Health Care, Financials, Information Technology, Telecommunication Services, Utilities, Real Estate', 'META_KEYWORDS_LOOKUP': 'symbol lookup, ticker lookup, stock symbol lookup', 'META_KWORDS_CALENDAR_EARNINGS': 'Earnings Announcements, Company Earnings, EPS Estimates, Earnings Per Share, Conference Calls, Before Market Open, After Market Close', 'META_KWORDS_CALENDAR_ECONOMIC': 'Economic Calendar, Forecast, Actual, Market Experts, Revised Forecast, FOMC, Unemployment Rate, GDP, Consumer Confidence, Durable Orders, Existing Home Sales, Nonfarm Payrolls, Initial Claims, Factory Orders, Construction Spending, ISM Index, Personal Income, Personal Spending', 'META_KWORDS_CALENDAR_IPO': 'Earnings Announcements, Company Earnings, EPS Estimates, IPO, IPOs, new companies', 'META_KWORDS_CALENDAR_SPLITS': 'Earnings Announcements, Company Earnings, EPS Estimates, Splits, Stock Split, Ratios', 'META_KWORDS_CRYPTOCURRENCY_LANDING': 'Cryptocurrency, cryptocurrencies, crypto, currencies, currency, bitcoin, etherium, litecoin, share data, option price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value', 'META_KWORDS_HUB': 'hub, news, tips, dates, taxes', 'META_KWORDS_INDUS': '{listId}, services, industries, Industry Center, Financial data, performance information, {listId} Services, utilities', 'META_KWORDS_LIST_BONDS': 'Bond, treasury, zero coupon, rate, interest rate, corporate bond, junk bond, municipal bond, muni bond, yield curve, coupon rate, maturity, rating, AAA, BBB, CCC, par value, callable bond, credit ratings', 'META_KWORDS_LIST_COMMODITIES': 'Commodities, Futures, futures headlines, futures chain', 'META_KWORDS_LIST_CURRENCIES': 'currency trading, forex currency trading, forex trading, yahoo finance', 'META_KWORDS_LIST_ETFS': 'index fund indexing ishares spdr qubes streettracks diamonds vipers', 'META_KWORDS_LIST_GAINERS': 'most active actives volumes leaders price percent percentage gainers losers nyse nasdaq amex', 'META_KWORDS_LIST_LOSERS': 'most active actives volumes leaders price percent percentage gainers losers nyse nasdaq amex', 'META_KWORDS_LIST_MOST_ACTIVE': 'most active actives volumes leaders price percent percentage gainers losers nyse nasdaq amex', 'META_KWORDS_LIST_MUTUALFUNDS': 'mutual fund, mutual, fund, funds, portfolio, fund family, fund manager, vanguard, fidelity, Morningstar, no-load, front-load, back-load, expense ratio, 12b-1, fund analysts, fund performance, index fund, actively managed fund', 'META_KWORDS_LIST_TRENDING_TICKERS': 'trending tickers, popular tickers, trending, popular, now, most popular, people', 'META_KWORDS_LIST_WORLD_INDICES': 'major world indices, indexes, index americas europe asia pacific africa middle east composite', 'META_KWORDS_QUOTE': '{symbol}, {shortName}, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_ANALYSIS': 'recommendation,analyst,analyst rating,strong buy,strong sell,hold,buy,sell,overweight,underweight,upgrade,downgrade,price target,EPS estimate,revenue estimate,growth estimate,p/e estimate,recommendation,analyst,analyst rating,strong buy,strong sell,hold,buy,sell,overweight,underweight,upgrade,downgrade,price target,EPS estimate,revenue estimate,growth estimate,p/e estimate', 'META_KWORDS_QUOTE_BALANCE-SHEET': 'balance sheet,asset,liabilities,shareholders equity,return on equity,cash equivalents,retained earning', 'META_KWORDS_QUOTE_CASH-FLOW': 'cash flow statement,operating activities,cash flows,investing,financing,cash,net cash', 'META_KWORDS_QUOTE_CHART': 'chart, interactive chart, graph, data graph, data points, analyze, analysis, data analysis', 'META_KWORDS_QUOTE_COMMUNITY': 'finance message boards, financial message boards, financial forum, financial chat, finance chat, finance forum, stock forum, stock message boards, investment forum, investing ideas, investing suggestions, investing tips, investment suggestion, investing ideas, messages, message board, Business Opportunity Board', 'META_KWORDS_QUOTE_COMPONENTS': '{symbol}, {shortName}, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_FINANCIALS': 'income statement,gross profit,revenue,operating expenses,operating income,net income,earning,earning per share', 'META_KWORDS_QUOTE_FUTURES': '{symbol}, {shortName}, {symbol} futures, {shortName} futures, finance, stocks, Investing, Investor, Business, Stock Research, Stock Valuation, Market News, Financial Information, stock market, charts, stock charts', 'META_KWORDS_QUOTE_HISTORY': '{symbol}, {shortName}, {symbol} historical prices, {shortName} historical prices, historical prices, stocks, quotes, finance', 'META_KWORDS_QUOTE_HOLDERS': 'direct holders,institutional holders,mutual fund holders,holding,holding shares,floating shares,major holders,form 144 holders', 'META_KWORDS_QUOTE_HOLDINGS': 'Top holdings, Holdings, Portfolio Composition, Equity Holdings, Sector Weightings, Bond holdings, Bond Ratings', 'META_KWORDS_QUOTE_INSIDER-ROSTER': 'insider selling,insider buying,shareholder,insider purchase,insider sale,earning per share,form 144 holders', 'META_KWORDS_QUOTE_INSIDER-TRANSACTIONS': 'insider selling,insider buying,shareholder,insider purchase,insider sale,form 144 holders', 'META_KWORDS_QUOTE_KEY-STATISTICS': 'key statistics,financial statistics,valuation,measurement,market cap,EPS,P/E,PEG,Price/book. EBITDA,Profit margin,operating Margin,Return on Equity,Beta,short ratio', 'META_KWORDS_QUOTE_NEWS': 'company headlines,news,latest happenings,latest news,recent news,{symbol}, {shortName}, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_OPTIONS': '{symbol}, {shortName}, {symbol} options, {shortName} options, {symbol} option chain, {shortName} option chain, option, option chain, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_PERFORMANCE': 'Performance , Trailing Returns vs. Benchmarks, Annual Total Return History, Past Quarterly Returns, Load Adjusted Returns', 'META_KWORDS_QUOTE_PRESS-RELEASES': 'press releases, company headlines,news,latest happenings,latest news,recent news,{symbol}, {shortName}, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_PROFILE': 'company profile,business summary,company management,company introduction,key statistics,officers', 'META_KWORDS_QUOTE_PURCHASE-INFO': 'Minimum Investment, Brokerage , Min Subsequent Investment, Purchase Info', 'META_KWORDS_QUOTE_RISK': 'Risk Statistics, Risk Overview, Risk Rating', 'META_KWORDS_SCREENERS': 'Stock Screener, industry, index membership, share data, stock price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_CRYPTOCURRENCY': 'Cryptocurrency screener, cryptocurrency, cryptocurrencies, crypto, currencies, currency, bitcoin, etherium, litecoin, share data, option price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value', 'META_KWORDS_SCREENERS_EQUITY': 'Stock Screener, industry, index membership, share data, stock price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_ETF': 'ETF Screener, industry, index membership, share data, etf price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_FUTURE': 'Future screener, share data, future price, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_INDEX': 'Index screener, exchange, share data, index price, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_MUTUALFUND': 'Mutual Fund Screener, industry, index membership, share data, mutual fund price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_OPTION': 'Option Screener, industry, index membership, share data, option price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_ANALYST_RATINGS': 'Analyst rating', 'META_KWORDS_WATCHLISTS': 'Curated watchlists, watchlists, watched, added, cryptocurrency, cryptocurrencies, crypto, cryptos, currencies, currency, bitcoin, etherium, litecoin, tokens, share data, option price, market cap, beta, sales, profitability, volatility, volatile, bets, volume, valuation ratios, analyst estimates, large cap value, sustainable, ethical', 'META_LOOKUP_DESCRIPTION': 'Search for ticker symbols for Stocks, Mutual Funds, ETFs, Indices and Futures on Yahoo! Finance.', 'META_LOOKUP_KEYWORDS': 'symbol lookup, ticker lookup, stock symbol lookup', 'META_LOOKUP_TITLE': 'Symbol Lookup from Yahoo Finance', 'META_TITLE': 'Yahoo Finance - Stock Market Live, Quotes, Business & Finance News', 'META_TITLE_CALENDAR_ALL': 'Financial Calendars - Yahoo Finance', 'META_TITLE_CALENDAR_EARNINGS': 'Company Earnings Calendar - Yahoo Finance', 'META_TITLE_CALENDAR_EARNINGS_SYMBOL': 'Earnings {symbol}: Company Earnings Calendar for {symbol} - Yahoo Finance', 'META_TITLE_CALENDAR_ECONOMIC': 'Economic Calendar - Yahoo Finance', 'META_TITLE_CALENDAR_IPO': \"Upcoming & Recent IPO's - IPOs Calendar - Yahoo Finance\", 'META_TITLE_CALENDAR_SPLITS': 'Stock Splits Calendar - Yahoo Finance', 'META_TITLE_CHART': '{symbol} Interactive Stock Chart | {shortName} Stock - Yahoo Finance', 'META_TITLE_CRYPTO_ABOUT': \"Crypto Trading & Investing: FAQ's & Other Info - Yahoo Finance\", 'META_TITLE_CRYPTO_ACCOUNT': 'Crypto Account Management - Yahoo Finance', 'META_TITLE_CRYPTO_DEACTIVATE': 'Crypto Deactivate Account - Yahoo Finance', 'META_TITLE_CRYPTO_DEPOSIT': 'Crypto Fund Deposit - Yahoo Finance', 'META_TITLE_CRYPTO_HELP': 'Crypto Trading Help - Contact Us - Yahoo Finance', 'META_TITLE_CRYPTO_KYC': 'Crypto Trading User Info - Yahoo Finance', 'META_TITLE_CRYPTO_LINKED_ACCOUNTS': 'Crypto Linked Accounts - Yahoo Finance', 'META_TITLE_CRYPTO_TRADING': 'Crypto Exchange - Buy, Sell And Trade Bitcoin & Other Crypto - Yahoo Finance', 'META_TITLE_CRYPTO_WITHDRAW': 'Crypto Fund Withdrawal - Yahoo Finance', 'META_TITLE_CRYPTOCURRENCY_LANDING': 'Crypto Real Time Prices & Latest News - Yahoo Finance', 'META_TITLE_CURRENCY_CONVERTER': 'Currency Converter | Currency Exchange Calculator - Yahoo Finance', 'META_TITLE_DEFAULT_LISTS': '{listId} - Yahoo Finance', 'META_TITLE_HUB': 'Taxes 2023: News, Tips, Dates & Latest Info - Yahoo Finance', 'META_TITLE_INDUS': 'Top {listId} - Yahoo Finance', 'META_TITLE_INDUSTRY': 'Industry Center - Yahoo Finance', 'META_TITLE_LIST_BONDS': 'Bonds Center - Bonds quotes, news, screeners and educational information - Yahoo Finance', 'META_TITLE_LIST_COMMODITIES': 'Commodities Futures Prices & Day Charts - Yahoo Finance', 'META_TITLE_LIST_CURRENCIES': 'Live Forex Rates & Currencies - Yahoo Finance', 'META_TITLE_LIST_ETFS': 'Exchange-Traded Funds (ETF) Center - Yahoo Finance', 'META_TITLE_LIST_GAINERS': 'Stocks Gainers - Yahoo Finance', 'META_TITLE_LIST_LOSERS': 'Stocks Losers - Yahoo Finance', 'META_TITLE_LIST_MOST_ACTIVE': 'Stocks Most Actives - Yahoo Finance', 'META_TITLE_LIST_MUTUALFUNDS': 'Mutual Funds Center - Yahoo Finance', 'META_TITLE_LIST_OPTIONS': 'Options Center - Yahoo Finance', 'META_TITLE_LIST_TRENDING_TICKERS': 'Trending Stocks Today - Yahoo Finance', 'META_TITLE_LIST_WORLD_INDICES': 'Major World Indices - Yahoo Finance', 'META_TITLE_LOOKUP': 'Symbol Lookup from Yahoo Finance', 'META_TITLE_MINIHOME_NEWS': 'Latest Financial and Business News - Yahoo Finance', 'META_TITLE_MULTIQUOTE': '{quotes} | Stock Prices | Quote Comparison - Yahoo Finance', 'META_TITLE_MULTIQUOTE_EMPTY': 'Stock Prices | Quote Comparison - Yahoo Finance', 'META_TITLE_PERSONAL_FINANCE': 'Personal Finance - Yahoo Finance', 'META_TITLE_PORTFOLIO': 'Stock Portfolio & Tracker - Yahoo Finance', 'META_TITLE_PLUS_PORTAL': 'Yahoo Finance Plus - Stock Research & Analysis, Portfolio Analysis', 'META_TITLE_QUOTE': '{shortName} ({symbol}) Stock Price, News, Quote & History - Yahoo Finance', 'META_TITLE_QUOTE_ANALYSIS': '{shortName} ({symbol}) Analyst Ratings, Estimates & Forecasts - Yahoo Finance', 'META_TITLE_QUOTE_BALANCE-SHEET': '{shortName} ({symbol}) Balance Sheet - Yahoo Finance', 'META_TITLE_QUOTE_CASH-FLOW': '{shortName} ({symbol}) Cash Flow - Yahoo Finance - Yahoo Finance', 'META_TITLE_QUOTE_CHART': '{shortName} ({symbol}) Interactive Stock Chart - Yahoo Finance', 'META_TITLE_QUOTE_COMMUNITY': '{shortName} ({symbol}) Stock Forum & Discussion - Yahoo Finance', 'META_TITLE_QUOTE_COMPANY360': '{shortName} ({symbol}) Exclusive Data & Insights - Yahoo Finance', 'META_TITLE_QUOTE_COMPANY_INSIGHTS': '{companyName} ({symbol}) Company Insights & Stock Analysis', 'META_TITLE_QUOTE_COMPONENTS': '{symbol} Components | {shortName} Stock - Yahoo Finance', 'META_TITLE_QUOTE_CORPORATE_EVENTS': '{companyName} ({symbol}) Earnings Date & Other Corporate Events', 'META_TITLE_QUOTE_CRYPTOCURRENCY': '{shortName} ({symbol}) Price, Value, News & History - Yahoo Finance', 'META_TITLE_QUOTE_CRYPTOCURRENCY_CHART': '{shortName} ({symbol}) Interactive Price Chart - Yahoo Finance', 'META_TITLE_QUOTE_CRYPTOCURRENCY_COMMUNITY': '{shortName} ({symbol}) Cryptocurrency Forum & Discussion - Yahoo Finance', 'META_TITLE_QUOTE_CRYPTOCURRENCY_HISTORY': '{shortName} ({symbol}) Price History & Historical Data - Yahoo Finance', 'META_TITLE_QUOTE_CRYPTOCURRENCY_PROFILE': '{shortName} ({symbol}) Cryptocurrency Profile & Facts - Yahoo Finance', 'META_TITLE_QUOTE_CURRENCY': '{shortName} ({symbol}) Live Rate, Chart & News - Yahoo Finance', 'META_TITLE_QUOTE_CURRENCY_CHART': '{shortName} ({symbol}) Interactive Chart - Yahoo Finance', 'META_TITLE_QUOTE_CURRENCY_COMMUNITY': '{shortName} ({symbol}) Forex Forum & Discussion - Yahoo Finance', 'META_TITLE_QUOTE_FAIR_VALUE': '{companyName} ({symbol}) Fair Value & Stock Outlook', 'META_TITLE_QUOTE_FINANCIALS': '{shortName} ({symbol}) Income Statement - Yahoo Finance', 'META_TITLE_QUOTE_FUTURES': '{shortName} ({symbol}) Futures Chain - Yahoo Finance', 'META_TITLE_QUOTE_HISTORY': '{shortName} ({symbol}) Stock Historical Prices & Data - Yahoo Finance', 'META_TITLE_QUOTE_HOLDERS': '{shortName} ({symbol}) Stock Major Holders - Yahoo Finance', 'META_TITLE_QUOTE_HOLDINGS': '{shortName} ({symbol}) Holdings - Yahoo Finance', 'META_TITLE_QUOTE_INDEX': '{shortName} ({symbol}) Charts, Data & News - Yahoo Finance', 'META_TITLE_QUOTE_INDEX_COMMUNITY': '{shortName} ({symbol}) Forum & Discussion - Yahoo Finance', 'META_TITLE_QUOTE_INDEX_COMPONENTS': '{shortName} ({symbol}) Components - Yahoo Finance', 'META_TITLE_QUOTE_INDEX_HISTORY': '{shortName} ({symbol}) Historical Data - Yahoo Finance', 'META_TITLE_QUOTE_INSIDER-ROSTER': '{shortName} ({symbol}) Insider Ownership & Holdings - Yahoo Finance', 'META_TITLE_QUOTE_INSIDER-TRANSACTIONS': '{shortName} ({symbol}) Recent Insider Transactions - Yahoo Finance', 'META_TITLE_QUOTE_KEY-STATISTICS': '{shortName} ({symbol}) Valuation Measures & Financial Statistics', 'META_TITLE_QUOTE_NEWS': '{shortName} ({symbol}) Latest Stock News & Headlines - Yahoo Finance', 'META_TITLE_QUOTE_OPTIONS': '{shortName} ({symbol}) Options Chain - Yahoo Finance', 'META_TITLE_QUOTE_OPTIONS_INDIVIDUAL': '{symbol} Quote | {shortName} Stock - Yahoo Finance', 'META_TITLE_QUOTE_PERFORMANCE': '{shortName} ({symbol}) Performance History - Yahoo Finance', 'META_TITLE_QUOTE_PRESS-RELEASES': '{shortName} ({symbol}) Latest Press Releases & Corporate News - Yahoo Finance', 'META_TITLE_QUOTE_PRICE': '{symbol} {price} {change} {changePercent} : {shortName} - Yahoo Finance', 'META_TITLE_QUOTE_PROFILE': '{shortName} ({symbol}) Company Profile & Facts - Yahoo Finance', 'META_TITLE_QUOTE_PURCHASE-INFO': '{symbol} Purchase Info | Investment Information for {shortName} Stock - Yahoo Finance', 'META_TITLE_QUOTE_REPORTS': '{shortName} ({symbol}) Stock Research & Reports - Yahoo Finance', 'META_TITLE_QUOTE_RESEARCH_REPORTS': '{companyName} ({symbol}) Analyst Reports, Price Targets & Ratings', 'META_TITLE_QUOTE_RISK': '{shortName} ({symbol}) Risk - Yahoo Finance', 'META_TITLE_QUOTE_SUSTAINABILITY': '{shortName} ({symbol}) Environment, Social and Governance (ESG) Ratings - Yahoo Finance', 'META_TITLE_QUOTE_UNKNOWN': \"Requested symbol wasn't found\", 'META_TITLE_RECENT_QUOTES': 'My Recent Quotes | Stock Prices | Yahoo Finance', 'META_TITLE_SCREENERS': 'Stock Screeners - Yahoo Finance', 'META_TITLE_SCREENERS_ANALYST_RATINGS': 'Analyst Ratings Screener - Yahoo Finance', 'META_TITLE_SCREENERS_CRYPTOCURRENCY': 'Free Cryptocurrency Screener - Yahoo Finance', 'META_TITLE_SCREENERS_EQUITY': 'Free Stock Screener - Yahoo Finance', 'META_TITLE_SCREENERS_EQUITY_DAY_GAINERS': 'Top Stock Gainers Today - Yahoo Finance', 'META_TITLE_SCREENERS_EQUITY_DAY_LOSERS': 'Top Stock Losers Today - Yahoo Finance', 'META_TITLE_SCREENERS_EQUITY_MOST_ACTIVES': 'Most Active Stocks Today - Yahoo Finance', 'META_TITLE_SCREENERS_ETF': 'Free ETF Screener - Yahoo Finance', 'META_TITLE_SCREENERS_ETF_TOP_ETFS_US': 'Top ETFs Today - Yahoo Finance', 'META_TITLE_SCREENERS_FUTURE': 'Free Futures Screener - Yahoo Finance', 'META_TITLE_SCREENERS_INDEX': 'Free Stock Index Screener - Yahoo Finance', 'META_TITLE_SCREENERS_MUTUALFUND': 'Free Mutual Fund Screener - Yahoo Finance', 'META_TITLE_SCREENERS_MUTUALFUND_TOP_MUTUAL_FUNDS': 'Top Mutual Funds Today - Yahoo Finance', 'META_TITLE_SCREENERS_OPTION': 'Free Option Screener - Yahoo Finance', 'META_TITLE_SCREENERS_PREDEFINED': 'Top {title} List | Screener - Yahoo Finance', 'META_TITLE_SCREENERS_PREDEFINED_PLUS': '{title} List | Screener - Yahoo Finance', 'META_TITLE_TOPIC_autos': 'Autos - Yahoo Finance', 'META_TITLE_TOPIC_brexit': 'Brexit - Yahoo Finance', 'META_TITLE_TOPIC_careers': 'Careers - Yahoo Finance', 'META_TITLE_TOPIC_finalround': 'The Final Round - Yahoo Finance', 'META_TITLE_TOPIC_finance-viral': 'Finance Viral - Yahoo Finance', 'META_TITLE_TOPIC_goodlife': 'The Good Life - Yahoo Finance', 'META_TITLE_TOPIC_leisure-industries': 'Leisure Industries - Yahoo Finance', 'META_TITLE_TOPIC_lifestyle': 'Lifestyle - Yahoo Finance', 'META_TITLE_TOPIC_market-blogs': 'Market Blogs - Yahoo Finance', 'META_TITLE_TOPIC_marketmovers': 'Market Movers - Yahoo Finance', 'META_TITLE_TOPIC_middaymovers': 'Midday Movers - Yahoo Finance', 'META_TITLE_TOPIC_personal-finance-news': 'Personal Finance News - Yahoo Finance', 'META_TITLE_TOPIC_property': 'Property - Yahoo Finance', 'META_TITLE_TOPIC_real-estate': 'Real Estate - Yahoo Finance', 'META_TITLE_TOPIC_retirement': 'Retirement - Yahoo Finance', 'META_TITLE_TOPIC_save-money': 'Save Money - Yahoo Finance', 'META_TITLE_TOPIC_saving-spending': 'Saving & Spending - Yahoo Finance', 'META_TITLE_TOPIC_shoppen': 'Shoppen - Yahoo Finance', 'META_TITLE_TOPIC_small-business': 'Small Business - Yahoo Finance', 'META_TITLE_TOPIC_sportsbook': 'Sportsbook - Yahoo Finance', 'META_TITLE_TOPIC_technology': 'Technology - Yahoo Finance', 'META_TITLE_TOPIC_travel': 'Travel - Yahoo Finance', 'META_TITLE_TOPIC_trendingtickers': 'Trending Tickers - Yahoo Finance', 'META_TITLE_TOPIC_videos': 'Video - Yahoo Finance', 'META_TITLE_TOPIC_yahoo-originals': 'Yahoo Originals - Yahoo Finance', 'META_TITLE_VIDEOS': 'Business and Finance News Videos - Yahoo Finance', 'META_TITLE_WATCHLISTS': 'Curated Stock Watch Lists & Categories - Yahoo Finance', 'META_TITLE_WATCHLISTSTITLE': '{title} - Yahoo Finance', 'META_TITLE_WATCHLISTS_ACTIVIST_HEDGE_FUND_POSITIONS': 'Stocks with the Most Activist Hedge Fund Positions', 'META_TITLE_WATCHLISTS_AGING_BABY_BOOMERS': 'Stocks for Aging Baby Boomers', 'META_TITLE_WATCHLISTS_BIGGEST_EARNINGS_BEATS': 'Stocks with Biggest Earnings Beats', 'META_TITLE_WATCHLISTS_BIGGEST_EARNINGS_MISSES': 'Stocks with Biggest Earnings Misses', 'META_TITLE_WATCHLISTS_BRANDS_CONSUMERS_LOVE': 'Stocks of Well-Known Consumer Brands', 'META_TITLE_WATCHLISTS_CANNABIS_STOCKS': 'Cannabis, Marijuana, 420 Stocks', 'META_TITLE_WATCHLISTS_CROWDED_HEDGE_FUND_POSITIONS': 'Stocks with Highest Percentage of Hedge Fund Ownership', 'META_TITLE_WATCHLISTS_CROWDED_TECH_HEDGE_FUND_POSITIONS': 'Tech Stocks with Highest Percentage of Hedge Fund Ownership', 'META_TITLE_WATCHLISTS_DIVIDEND_GROWTH_MARKET_LEADERS': 'Stocks with Highest Dividend Growth', 'META_TITLE_WATCHLISTS_HEALTHY_LIVING': 'Health, Wellness & Fitness Stocks', 'META_TITLE_WATCHLISTS_LARGEST_52-WEEK_GAINS': 'Stocks with Largest 52-Week Gains', 'META_TITLE_WATCHLISTS_LARGEST_52-WEEK_LOSSES': 'Stocks with Largest 52-Week Losses', 'META_TITLE_WATCHLISTS_LEAST_VOLATILE_CRYPTOS': 'Cryptocurrencies with Lowest Volatility', 'META_TITLE_WATCHLISTS_LONG_HAUL_BUFFETT_BUYS': \"Stocks in Warren Buffett's Berkshire Hathaway\", 'META_TITLE_WATCHLISTS_MOST_ADDED_TO_WATCHLISTS': 'Stocks Most Added to Watchlists by Yahoo Finance Users', 'META_TITLE_WATCHLISTS_MOST_BOUGHT_BY_ACTIVIST_HEDGE_FUNDS': 'Stocks Most Bought by Activist Hedge Funds', 'META_TITLE_WATCHLISTS_MOST_BOUGHT_BY_HEDGE_FUNDS': 'Stocks Most Bought by Hedge Funds', 'META_TITLE_WATCHLISTS_MOST_FOLLOWED': 'Most Followed Stocks Watchlists', 'META_TITLE_WATCHLISTS_MOST_REMOVED_FROM_WATCHLISTS': 'Stocks Most Removed in Watchlists by Yahoo Finance Users', 'META_TITLE_WATCHLISTS_MOST_SOLD_BY_ACTIVIST_HEDGE_FUNDS': 'Stocks Most Sold by Activist Hedge Funds', 'META_TITLE_WATCHLISTS_MOST_SOLD_BY_HEDGE_FUNDS': 'Stocks Most Sold by Hedge Funds', 'META_TITLE_WATCHLISTS_MOST_VOLATILE_CRYPTOS': 'Cryptocurrencies with Highest Volatility', 'META_TITLE_WATCHLISTS_MOST_WATCHED_BY_YAHOO_FINANCE_USERS': 'Stocks Most Watched by Yahoo Finance Users', 'META_TITLE_WATCHLISTS_NEW_FAMILY_ECONOMY': 'New Family, Family Needs & Household Stocks', 'META_TITLE_WATCHLISTS_NEW_HEDGE_FUND_HOLDERS': 'Hedge Fund Newly Held Stocks', 'META_TITLE_WATCHLISTS_RECENTLY_ADDED': 'Recently Added Stocks Watchlists', 'META_TITLE_WATCHLISTS_RECENTLY_UPDATED': 'Recently Updated Stocks Watchlists', 'META_TITLE_WATCHLISTS_RECENT_52-WEEK_HIGHS': 'Stocks with Recent 52-Week Highs', 'META_TITLE_WATCHLISTS_RECENT_52-WEEK_LOWS': 'Stocks with Recent 52-Week Lows', 'META_TITLE_WATCHLISTS_SINFUL_STOCKS': 'Sin Stocks - Casinos, Tobacco, Alcohol & More', 'META_TITLE_WATCHLISTS_SMART_MONEY_STOCKS': 'Stocks Widely Held By Hedge Funds', 'META_TITLE_WATCHLISTS_STOCKS_FUELING_THE_INTERNET_OF_THINGS': 'Internet of Things Stocks', 'META_TITLE_WATCHLISTS_TECH_STOCKS_THAT_MOVE_THE_MARKET': 'Tech Stocks That Move The Market', 'META_TITLE_WATCHLISTS_THE_AUTONOMOUS_CAR': 'Stocks Involved in Self-Driving Cars', 'META_TITLE_WATCHLISTS_THE_BERKSHIRE_HATHAWAY_PORTFOLIO': 'Stocks in the Berkshire Hathaway Portfolio', 'META_TITLE_WATCHLISTS_THE_BIG_SHORTS': 'Stocks with Big Short Positions', 'META_TITLE_WATCHLISTS_THE_FIGHT_AGAINST_COVID19': 'Fight against Covid-19 (Coronavirus) Stocks', 'META_TITLE_WATCHLISTS_TODAYS_TOP_PERFORMERS': \"Today's Stocks Best Performing Sectors\", 'META_TITLE_WATCHLISTS_TODAYS_WORST_PERFORMERS': \"Today's Stocks Worst Performing Sectors\", 'META_TITLE_WATCHLISTS_TOP_CRYPTOS_BY_MARKET_CAP': 'Cryptocurrencies with Highest Market Cap', 'META_TITLE_WATCHLISTS_TOP_CRYPTOS_BY_TOKENS_OUTSTANDING': 'Cryptocurrencies With Highest Circulating Supply', 'META_TITLE_WATCHLISTS_TOP_CRYPTOS_BY_VOLUME_(ALL_CURRENCIES_24HR)': 'Cryptocurrencies with Highest Trading Volume', 'META_TITLE_WATCHLISTS_TOP_CRYPTO_BETS': 'Stocks of Companies Involved in Cryptocurrencies', 'META_TITLE_WATCHLISTS_WOMEN_AT_THE_HELM': 'Stocks of Companies Led by Women', 'MIDDAY_MOVERS_TITLE': 'Midday Movers', 'MILLION_SHORT': '{num}M', 'MINIMUM_PENSION_LIABILITIES': 'Minimum Pension Liabilities', 'MINORITY_INTEREST': 'Minority Interest', 'MINORITY_INTERESTS': 'Minority Interests', 'MIN_INIT_AIP_INVESTMENT': 'Min Initial Investment, AIP', 'MIN_INIT_INVESTMENT': 'Min Initial Investment', 'MIN_INIT_IRA_INVESTMENT': 'Min Initial Investment, IRA', 'MIN_SUBSEQ_AIP_INVESTMENT': 'Min Subsequent Investment, AIP', 'MIN_SUBSEQ_INVESTMENT': 'Min Subsequent Investment', 'MIN_SUBSEQ_IRA_INVESTMENT': 'Min Subsequent Investment, IRA', 'MISC_STOCKS_OPTIONS_WARRANTS': 'Misc. Stocks Options Warrants', 'MISSED': 'Missed', 'MISSING_REQUIRED_DATA': 'Missing required data', 'MOBILE_NOT_SUPPORT': 'Embedded webinar is not supported in mobile devices', 'MODERATE': 'Moderate', 'MODULE_UNDER_CONSTRUCTION': '{type} module is under construction', 'MONEY_CENTER_BANKS': 'Money Center Banks', 'MONEY_CENTER_BANKS_DESC': 'Money Center Banks Stocks', 'MONEY_MARKET_INVESTMENTS': 'Money Market Investments', 'MONTHLY': 'Monthly', 'MONTHLY_TOTAL_RETURNS': 'Monthly Total Returns', 'MOODYS_ANALYTICS': \"Moody's Analytics\", 'MORE_ABOUT': 'More about', 'MORE_DETAILS': 'More details', 'MORE_SYMBOLS': 'More Symbols', 'MORE_UPGRADES_AND_DOWNGRADES': 'More Upgrades & Downgrades', 'MORNINGSTAR_CATEGORY': 'Morningstar Category', 'MORNINGSTAR_CATEGORY_DESC': \"While the investment objective stated in a fund's prospectus may or may not reflect how the fund actually invests, the Morningstar category is assigned based on the underlying securities in each portfolio. Morningstar categories help investors and investment professionals make meaningful comparisons between funds. The categories make it easier to build well-diversified portfolios, assess potential risk, and identify top-performing funds. We place funds in a given category based on their portfolio statistics and compositions over the past three years. If the fund is new and has no portfolio history, we estimate where it will fall before giving it a more permanent category assignment. When necessary, we may change a category assignment based on recent changes to the portfolio.\", 'MORNINGSTAR_STYLE_BOX': 'Morningstar Style Box', 'MORNINGSTAR_STYLE_BOX_DESC': \"Yahoo partners with Morningstar a leading market research and investment data group to help investors rate and compare funds on Yahoo Finance. The Morningstar Category is shown next to the Morningstar Style Box which identifies a fund's investment focus, based on the underlying securities in the fund.\", 'MORNING_BRIEF': 'Morning Brief', 'MORNING_STAR_RATING': 'Morningstar Rating', 'MORNINGSTAR_RATING': 'Morningstar Rating', 'MORNING_STAR_RETURN_RATING': 'Morningstar Return Rating', 'MORNING_STAR_RISK_RATING': 'Morningstar Risk Rating', 'MORNINGSTAR_FIVE_STAR_STOCKS': 'Morningstar 5-Star Stocks', 'MORNINGSTAR_FIVE_STAR_STOCKS_DESC': 'A 5-star rating indicates that the stock is trading meaningfully below fair value with an exciting discount.', 'MORTGAGE_AND_CONSUMERLOANS': 'Mortgage & Consumer Loans', 'MORTGAGE_INVESTMENT': 'Mortgage Investment', 'MORTGAGE_INVESTMENT_DESC': 'Mortgage Investment Stocks', 'MORTGAGE_LOAN': 'Mortgage Loan', 'MOST_ACTIVES': 'Most Actives', 'MOST_ACTIVES_DESC': 'Stocks ordered in descending order by intraday trade volume.', 'MOST_INSTITUTIONALLY_BOUGHT_LARGE_CAP_STOCKS': 'Most Institutionally Bought Large Cap Stocks', 'MOST_INSTITUTIONALLY_HELD_LARGE_CAP_STOCKS': 'Most Institutionally Held Large Cap Stocks', 'MOST_INSTITUTIONALLY_SOLD_LARGE_CAP_STOCKS': 'Most Institutionally Sold Large Cap Stocks', 'MOST_RECENT_QUARTER': 'Most Recent Quarter', 'MOST_RECENT_TRANSACTION': 'Most Recent Transaction', 'MOST_SHORTED_STOCKS': 'Most Shorted Stocks', 'MOST_SHORTED_STOCKS_DESC': 'Stocks with the highest short interest positions ordered by short % of shares outstanding from Nasdaq and NYSE reports released every two weeks.', 'MOST_VISITED': 'Most Visited', 'MOTOR-Y-AUTOMOCION_TITLE': 'Motor and Automotive', 'MOVIE_PRODUCTION_THEATERS': 'Movie Production, Theaters', 'MOVIE_PRODUCTION_THEATERS_DESC': 'Movie Production, Theaters Stocks', 'MRQ': 'mrq', 'MS_BASIC_MATERIALS': 'Basic Materials', 'MS_CONSUMER_CYCLICAL': 'Consumer Cyclical', 'MS_FINANCIAL_SERVICES': 'Financial Services', 'MS_REAL_ESTATE': 'Real Estate', 'MS_CONSUMER_DEFENSIVE': 'Consumer Defensive', 'MS_HEALTHCARE': 'Healthcare', 'MS_UTILITIES': 'Utilities', 'MS_COMMUNICATION_SERVICES': 'Communication Services', 'MS_ENERGY': 'Energy', 'MS_INDUSTRIALS': 'Industrials', 'MS_TECHNOLOGY': 'Technology', 'MSG_ADD_TO_A_WATCHLIST': 'Add {company} to one or more watchlists:', 'MSG_ADD_TO_A_WATCHLIST_DONE': 'You have added {company} to \"{watchlist}\".', 'MSG_ADD_TO_A_WATCHLIST_ERROR': 'Could not add {company} to \"{watchlist}\". Please try again.', 'MSG_BACK_TO_FINANCE': 'Back to Yahoo Finance', 'MSG_BACK_TO_HOMEPAGE': 'Back to Yahoo Homepage', 'MSG_BROKER_CRED': 'Yahoo does not store your broker credentials.', 'MSG_BROKER_NOT_SUPPORT': \"Unfortunately we don't support this broker yet\", 'MSG_BROKER_NOT_SUPPORT_DES': 'We will let you know when this broker becomes available to link again', 'MSG_BROWSE_REPORTS': 'Browse available reports for other tickers via the Research tab', 'MSG_EMPTY_LIST': 'Your list is empty.', 'MSG_FB_TICKER_CHANGE': 'Meta Platforms, Inc. has changed its ticker symbol from FB to META. If you were following FB, that change is now reflected in your portfolio', 'MSG_EMPTY_PF': 'Your list is empty. Add symbols to get relevant news', 'MSG_HAS_BEEN_ADDED': '{symbol} has been added!', 'MSG_INSUFFICIENT_FILTER': 'Select at least one filter to find matching {type}', 'MSG_INVALID_DATE': 'Please enter a valid date.', 'MSG_INVALID_LIST': \"We're sorry, but we were unable to retrieve your list. Redirecting to Yahoo Finance Home in a few seconds.\", 'MSG_LINK_PF_FAILURE': \"We're unable to gather your latest holdings data\", 'MSG_LINK_PF_GATHERING': \"We're still gathering your holdings. Please check back in a few minutes\", 'MSG_LINK_PF_REFRESH': 'Account refresh required', 'MSG_LINK_PF_SUCCESS': 'Broker successfully linked', 'MSG_NO_ACTION_SENTIMENT_RESULTS': 'No portfolio changes data found.', 'MSG_NO_CAL_DATE_SEL': 'Please select a date to see results.', 'MSG_NO_COMMUNITY_SENTIMENT_RESULTS': 'No community conversion data found.', 'MSG_NO_DATA': 'We’re sorry, we weren’t able to find any data.', 'MSG_NO_DATA_HEATMAP': 'Heatmap View for this screener is temporarily unavailable.', 'MSG_NO_DATA_IN_PERIOD': 'No data available for selected period.', 'MSG_NO_LOOKUP_RESULTS': 'Please check your spelling. Try our suggested matches or see results in other tabs.', 'MSG_NO_PORTFOLIOS': 'Unable to load your portfolios', 'MSG_NO_REPORTS': 'No reports available for {symbol}', 'MSG_NO_RESULTS': \"We couldn't find any results.\", 'MSG_NO_SCREENER_CRITERIA': 'No filters selected. Add a few filters to get results', 'MSG_NO_SCREENER_DETAIL': 'Unable to load Screener', 'MSG_NO_SCREENER_FILTER': 'Unable to load Filtering Criteria', 'MSG_NO_SCREENER_IDEA_RESULTS': 'No investment ideas found with the selected filters', 'MSG_NO_SCREENER_REPORT_RESULTS': 'No reports found with the selected filters', 'MSG_NO_SCREENER_RESULTS': 'Unable to fetch Results', 'MSG_NO_SEARCH_RESULTS': \"No matching results for '{query}'\", 'MSG_NO_SEC_FILINGS': 'No SEC Filings found', 'MSG_NO_SYMBOLS': 'No symbols found', 'MSG_ONLY_US': 'Premium filters are only applicable to US Equities', 'MSG_REAUTHENTICATE_PF': 'You need to refresh/relogin using the button above.', 'MSG_REAUTHENTICATE_PF_WEBVIEW': 'Your holdings are out of date. Please refresh using the button on the Home tab', 'MSG_RELAX_FILTER': 'Get more matching stocks by relaxing your criteria', 'MSG_RELAX_RESEARCH_FILTER': 'Please update your filters to find matching research', 'MSG_RELOAD_PAGE': 'Please try reloading the page.', 'MSG_REPORTS_ERROR': 'Unable to load research reports', 'MSG_SELECT_A_WATCHLIST': 'Select a watchlist', 'MSG_SELECT_DATE': 'Select a Date', 'MSG_STRICT_FILTER': 'Your screening filters are too strict', 'MULTIMEDIA_GRAPHICS_SOFTWARE': 'Multimedia & Graphics Software', 'MULTIMEDIA_GRAPHICS_SOFTWARE_DESC': 'Multimedia & Graphics Software Stocks', 'MUSIC_VIDEO_STORES': 'Music & Video Stores', 'MUSIC_VIDEO_STORES_DESC': 'Music & Video Stores Stocks', 'MUTUAL': 'Mutual Fund', 'MUTUALFUND': 'Mutual Fund', 'MUTUALFUND_SCREENER': 'Mutual Fund Screener', 'MUTUALFUND_SCREENER_DES': 'Search for funds using historical performance, performance rating, and more', 'MUTUAL_FUNDS': 'Mutual Funds', 'MY_HOLDINGS': 'My Holdings', 'MY_PORTFOLIOS': 'My Portfolios', 'MY_WATCHLIST': 'My Watchlists', 'FOLLOWED_WATCHLIST': 'Followed Watchlists', 'MY_SAVED_SCREENERS': 'My Saved Screeners', 'N_DAYS_AGO': '{number}d ago', 'NAME': 'Name', 'NATURAL_GAS_FUEL_AND_OTHER': 'Natural Gas, Fuel & Other', 'NAV': 'NAV', 'NEAR_FAIR_VALUE': 'Near Fair Value', 'NEGATIVE_GOODWILL': 'Negative Goodwill', 'NETWORKING_COMMUNICATION_DEVICES': 'Networking & Communication Devices', 'NETWORKING_COMMUNICATION_DEVICES_DESC': 'Networking & Communication Devices Stocks', 'NETWORK_HS': 'Network H/S', 'NET_ASSETS': 'Net Assets', 'NET_BORROWINGS': 'Net Borrowings', 'NET_BUSINESS_PURCHASE_AND_SALE': 'Net Business Purchase And Sale', 'NET_CASH_FINANCING_ACTIVITIES': 'Net cash used privided by (used for) financing activities', 'NET_CASH_INVESTING_ACTIVITIES': 'Net cash used for investing activites', 'NET_CASH_OPERATING_ACTIVITIES': 'Net cash provided by operating activites', 'NET_CHANGE_IN_CASH': 'Net change in cash', 'NET_COMMON_STOCK_ISSUANCE': 'Net Common Stock Issuance', 'NET_DEBT': 'Net Debt', 'NET_FOREIGN_CURRENCY_EXCHANGE_GAIN_LOSS': 'Net Foreign Currency Exchange Gain Loss', 'NET_FOREIGN_EXCHANGE_GAIN_LOSS': 'Net Foreign Exchange Gain Loss', 'NET_INCOME': 'Net Income', 'NET_INCOME_APPLICABLE_TO_COMMON_SHARES': 'Net Income Applicable To Common Shares', 'NET_INCOME_AVAILABLE_TO_COMMON_SHAREHOLDERS': 'Net Income available to common shareholders', 'NET_INCOME_AVI_TO_COMMON': 'Net Income Avi to Common', 'NET_INCOME_COMMON_STOCKHOLDERS': 'Net Income Common Stockholders', 'NET_INCOME_CONTINUOUS_OPERATIONS': 'Net Income Continuous Operations', 'NET_INCOME_DISCONTINUOUS_OPERATIONS': 'Net Income Discontinuous Operations', 'NET_INCOME_EXTRAORDINARY': 'Net Income Extraordinary', 'NET_INCOME_FROM_CONTINUING_AND_DISCONTINUED_OPERATION': 'Net Income from Continuing & Discontinued Operation', 'NET_INCOME_FROM_CONTINUING_OPERATIONS': 'Net Income from Continuing Operations', 'NET_INCOME_FROM_CONTINUING_OPERATION_NET_MINORITY_INTEREST': 'Net Income from Continuing Operation Net Minority Interest', 'NET_INCOME_FROM_CONTINUING_OPS': 'Net Income From Continuing Ops', 'NET_INCOME_FROM_TAX_LOSS_CARRYFORWARD': 'Net Income from Tax Loss Carryforward', 'NET_INCOME_INCLUDING_NONCONTROLLING_INTERESTS': 'Net Income Including Non-Controlling Interests', 'NET_INCOME_TITLE': 'Net Income', 'NET_INSTITUTIONAL_PURCHASES_PRIOR_LATEST_QUARTER': 'Net Institutional Purchases Prior Quarter to Latest Quarter', 'NET_INTANGIBLES_PURCHASE_AND_SALE': 'Net Intangibles Purchase And Sale', 'NET_INTEREST_INCOME': 'Net Interest Income', 'NET_INVESTMENT_INCOME': 'Net Investment Income', 'NET_INVESTMENT_PROPERTIES_PURCHASE_AND_SALE': 'Net Investment Properties Purchase And Sale', 'NET_INVESTMENT_PURCHASE_AND_SALE': 'Net Investment Purchase And Sale', 'NET_ISSUANCE_PAYMENTS_OF_DEBT': 'Net Issuance Payments of Debt', 'NET_LOAN': 'Net Loan', 'NET_LONG_TERM_DEBT_ISSUANCE': 'Net Long Term Debt Issuance', 'NET_MARGIN': 'Net Margin', 'NET_NON_OPERATING_INTEREST_INCOME_EXPENSE': 'Net Non Operating Interest Income Expense', 'NET_OCCUPANCY_EXPENSE': 'Net Occupancy Expense', 'NET_OTHER_FINANCING_CHARGES': 'Net Other Financing Charges', 'NET_OTHER_INVESTING_CHANGES': 'Net Other Investing Changes', 'NET_POLICYHOLDER_BENEFITS_AND_CLAIMS': 'Net Policyholder Benefits And Claims', 'NET_PPE': 'Net PPE', 'NET_PPE_PURCHASE_AND_SALE': 'Net PPE Purchase And Sale', 'NET_PREFERRED_STOCK_ISSUANCE': 'Net Preferred Stock Issuance', 'NET_PREMIUMS_WRITTEN': 'Net Premiums Written', 'NET_PROCEEDS_PAYMENT_FOR_LOAN': 'Net Proceeds Payment for Loan', 'NET_PROPERTY_PLANT_AND_EQUIPMENT': 'Net property, plant and equipment', 'NET_REALIZED_GAIN_LOSS_ON_INVESTMENTS': 'Net Realized Gain Loss on Investments', 'NET_RECEIVABLES': 'Net Receivables', 'NET_SHARES_PURCHASED_SOLD': 'Net Shares Purchased (Sold)', 'NET_SHORT_TERM_DEBT_ISSUANCE': 'Net Short Term Debt Issuance', 'NET_TANGIBLE_ASSETS': 'Net Tangible Assets', 'NET_UTILITY_PLANT': 'Net Utility Plant', 'NEUTRAL': 'Neutral', 'NEW': 'NEW', 'NEW_PORTFOLIO_NAME': 'New Portfolio Name', 'NEWS': 'News', 'NEWS_TITLE': 'Latest Financial and Business News', 'NEW_HIGH': 'Price Alert', 'NEW_LOW': 'Price Alert', 'NEW_PORTFOLIO': 'New Portfolio', 'NEW_SCREENER': 'Create New Screener', 'NEW_VIEW': 'New View', 'NEW_WATCHLIST': 'New Watchlist', 'NEW_ZEALAND': 'New Zealand', 'NEXT': 'Next', 'NEXT_5_YEARS': 'Next 5 Years (per annum)', 'NEXT_QTR': 'Next Qtr.', 'NEXT_YEAR': 'Next Year', 'NO': 'No', 'NO_SHARES': 'No shares', 'NONE': 'None', 'NONMETALLIC_MINERAL_MINING': 'Nonmetallic Mineral Mining', 'NONMETALLIC_MINERAL_MINING_DESC': 'Nonmetallic Mineral Mining Stocks', 'NON_CURRENT_ACCOUNTS_RECEIVABLE': 'Non Current Accounts Receivable', 'NON_CURRENT_ACCRUED_EXPENSES': 'Non Current Accrued Expenses', 'NON_CURRENT_ASSETS': 'Non-current assets', 'NON_CURRENT_DEFERRED_ASSETS': 'Non Current Deferred Assets', 'NON_CURRENT_DEFERRED_LIABILITIES': 'Non Current Deferred Liabilities', 'NON_CURRENT_DEFERRED_REVENUE': 'Non Current Deferred Revenue', 'NON_CURRENT_DEFERRED_TAXES_ASSETS': 'Non Current Deferred Taxes Assets', 'NON_CURRENT_DEFERRED_TAXES_LIABILITIES': 'Non Current Deferred Taxes Liabilities', 'NON_CURRENT_LIABILITIES': 'Non-current liabilities', 'NON_CURRENT_NOTE_RECEIVABLES': 'Non Current Note Receivables', 'NON_CURRENT_PENSION_AND_OTHER_POSTRETIREMENT_BENEFIT_PLANS': 'Non Current Pension And Other Post-Retirement Benefit Plans', 'NON_CURRENT_PREPAID_ASSETS': 'Non Current Prepaid Assets', 'NON_INTEREST_BEARING_DEPOSITS': 'Non Interest Bearing Deposits', 'NON_INTEREST_EXPENSE': 'Non Interest Expense', 'NON_INTEREST_INCOME': 'Non Interest Income', 'NON_RECURRING': 'Non Recurring', 'NON_RECURRING_EVENTS': 'Non-recurring Events', 'NORMALIZED_BASIC_EPS': 'Normalized Basic EPS', 'NORMALIZED_DILUTED_EPS': 'Normalized Diluted EPS', 'NORMALIZED_EBITDA': 'Normalized EBITDA', 'NORMALIZED_INCOME': 'Normalized Income', 'NOTES_RECEIVABLE': 'Notes Receivable', 'NOTICE_INSIDER_ROSTER': '*Insider roster data is derived solely from the last 24 months of Form 3 & Form 4 SEC filings.', 'NOTICE_VICKER_INDEX': \"Vicker's Insider Sentiment index provides insights into company officers and directors trading in their own stock.\", 'NOTIFICATIONS': 'Notifications', 'NOTIFY_ME': 'Notify me', 'NOT_FOUND': 'Not Found', 'NO_ABOUT_COMPANY': 'We have no additional information for this company', 'NO_CAPITAL_GAIN': 'No Capital Gains', 'NO_DATA': '{type} data is not available', 'NO_DIVIDENDS': 'No Dividends', 'NO_GRADE': 'No grade available at this time.', 'NO_NOTIFICATION_DATA': 'Notification data is not available', 'NO_OF_ANALYSTS': 'No. of Analysts', 'NO_SPLITS': 'No Split', 'NO_THANKS': 'No thanks', 'NO_THANKS_COMMA': 'No, thanks', 'NUMBER_RANGE': '{0} - {1}', 'NUM_EVENTS': '{num} events', 'NUM_M': '{num}M', 'NUM_SELECTED': '{num} selected', 'NUM_W': '{num}W', 'NUM_YEARS_DOWN': 'Number of Years Down', 'NUM_YEARS_UP': 'Number of Years Up', 'OCCUPANCY_AND_EQUIPMENT': 'Occupancy And Equipment', 'OFF': 'Off', 'OFFICE_SUPPLIES': 'Office Supplies', 'OFFICE_SUPPLIES_DESC': 'Office Supplies Stocks', 'OFFICIAL_SITE': 'Official Site', 'OIL_GAS_DRILLING_EXPLORATION': 'Oil & Gas Drilling & Exploration', 'OIL_GAS_DRILLING_EXPLORATION_DESC': 'Oil & Gas Drilling & Exploration Stocks', 'OIL_GAS_EQUIPMENT_SERVICES': 'Oil & Gas Equipment & Services', 'OIL_GAS_EQUIPMENT_SERVICES_DESC': 'Oil & Gas Equipment & Services Stocks', 'OIL_GAS_PIPELINES': 'Oil & Gas Pipelines', 'OIL_GAS_PIPELINES_DESC': 'Oil & Gas Pipelines Stocks', 'OIL_GAS_REFINING_MARKETING': 'Oil & Gas Refining & Marketing', 'OIL_GAS_REFINING_MARKETING_DESC': 'Oil & Gas Refining & Marketing Stocks', 'OKAY': 'Okay', 'OLDER': 'Older', 'ON': 'On', 'ONE_DAY_PERCENT_CHANGE': '1 Day % Change', 'ONE_MONTH': '1-Month', 'ONE_TIME': 'One time', 'ONE_YEAR': '1-Year', 'ONE_YEAR_DTR': '1-Year Daily Total Return', 'ONE_YEAR_EPS_GROWTH': 'EPS Growth(1Y)', 'ONE_YEAR_TARGET_PRICE': '1y Target Est', 'OPEN': 'Open', 'OPEN_INTERACTIVE_CHART': 'Interactive chart', 'OPEN_INTEREST': 'Open Interest', 'OPERATING_ACTIVITIES_CASHFLOWS_PROVIDED': 'Operating Activities, Cash Flows Provided By or Used In', 'OPERATING_CASH_FLOW': 'Operating Cash Flow', 'OPERATING_EXPENSE': 'Operating Expense', 'OPERATING_EXPENSES': 'Operating Expenses', 'OPERATING_GAINS_LOSSES': 'Operating Gains Losses', 'OPERATING_INCOME': 'Operating Income', 'OPERATING_INCOME_LOSS': 'Operating Income or Loss', 'OPERATING_MARGIN': 'Operating Margin', 'OPERATING_REVENUE': 'Operating Revenue', 'OPERATIONS': 'Operations', 'OPERATION_AND_MAINTENANCE': 'Operation & Maintenance', 'OPTIONS': 'Options', 'OPTIONS_HIGHEST_IMPLIED_VOLATALITY_TITLE': 'Options: Highest Implied Volatility', 'OPTIONS_HIGHEST_OPEN_INTEREST_TITLE': 'Options: Highest OI', 'OPTIONS_TITLE': 'Most Traded Options', 'OPTION_CONTRACT_CALL': 'Calls', 'OPTION_CONTRACT_IN_THE_MONEY': 'In The Money', 'OPTION_CONTRACT_LIST_DISPLAY': 'List', 'OPTION_CONTRACT_MINI_DISPLAY': 'Mini', 'OPTION_CONTRACT_PUT': 'Puts', 'OPTION_CONTRACT_REGULAR_DISPLAY': 'Regular', 'OPTION_CONTRACT_STRADDLE_DISPLAY': 'Straddle', 'OR': 'or', 'ORDER_HISTORY': 'Order History', 'ORDINARY_SHARES_NUMBER': 'Ordinary Shares Number', 'OTD_IMPLIED_VOLATILITY': 'Implied Volatility', 'OTHERS': 'Others', 'OTHERUNDER_PREFERRED_STOCK_DIVIDEND': 'Otherunder Preferred Stock Dividend', 'OTHER_ASSETS': 'Other Assets', 'OTHER_CAPITAL_STOCK': 'Other Capital Stock', 'OTHER_CASHFLOWS_FROM_FINANCING_ACT': 'Other Cash Flows from Financing Activities', 'OTHER_CASHFLOWS_FROM_INVESTING_ACT': 'Other Cash flows from Investing Activities', 'OTHER_CASH_ADJUSTMENT_INSIDE_CHANGEIN_CASH': 'Other Cash Adjustment Inside Change in Cash', 'OTHER_CASH_ADJUSTMENT_OUTSIDE_CHANGEIN_CASH': 'Other Cash Adjustment Outside Change in Cash', 'OTHER_CASH_PAYMENTSFROM_OPERATING_ACTIVITIES': 'Other Cash Payments from Operating Activities', 'OTHER_CASH_RECEIPTSFROM_OPERATING_ACTIVITIES': 'Other Cash Receipts from Operating Activities', 'OTHER_COSTOF_REVENUE': 'Other Cost of Revenue', 'OTHER_CURRENT_ASSETS': 'Other Current Assets', 'OTHER_CURRENT_BORROWINGS': 'Other Current Borrowings', 'OTHER_CURRENT_LIABILITIES': 'Other Current Liabilities', 'OTHER_CUSTOMER_SERVICES': 'Other Customer Services', 'OTHER_EQUITY_ADJUSTMENTS': 'Other Equity Adjustments', 'OTHER_EQUITY_INTEREST': 'Other Equity Interest', 'OTHER_FINANCING_ACTIVITIES': 'Other financing activites', 'OTHER_GAND_A': 'Other G and A', 'OTHER_INCOME_EXPENSE': 'Other Income Expense', 'OTHER_INTANGIBLE_ASSETS': 'Other Intangible Assets', 'OTHER_INTEREST_EXPENSE': 'Other Interest Expense', 'OTHER_INTEREST_INCOME': 'Other Interest Income', 'OTHER_INVENTORIES': 'Other Inventories', 'OTHER_INVESTED_ASSETS': 'Other Invested Assets', 'OTHER_INVESTING_ACTIVITIES': 'Other investing activites', 'OTHER_INVESTMENTS': 'Other Investments', 'OTHER_ITEMS': 'Other Items', 'OTHER_LIABILITIES': 'Other Liabilities', 'OTHER_LOAN_ASSETS': 'Other Loan Assets', 'OTHER_LONG_TERM_ASSETS': 'Other long-term assets', 'OTHER_LONG_TERM_LIABILITIES': 'Other long-term liabilities', 'OTHER_NON_CASH_ITEMS': 'Other non-cash items', 'OTHER_NON_CURRENT_ASSETS': 'Other Non Current Assets', 'OTHER_NON_CURRENT_LIABILITIES': 'Other Non Current Liabilities', 'OTHER_NON_INTEREST_EXPENSE': 'Other Non Interest Expense', 'OTHER_NON_INTEREST_INCOME': 'Other Non Interest Income', 'OTHER_NON_OPERATING_INCOME_EXPENSES': 'Other Non Operating Income Expenses', 'OTHER_OPERATING_EXPENSES': 'Other Operating Expenses', 'OTHER_PAYABLE': 'Other Payable', 'OTHER_PROPERTIES': 'Other Properties', 'OTHER_REAL_ESTATE_OWNED': 'Other Real Estate Owned', 'OTHER_RECEIVABLES': 'Other Receivables', 'OTHER_SHORT_TERM_INVESTMENTS': 'Other Short Term Investments', 'OTHER_SPECIAL_CHARGES': 'Other Special Charges', 'OTHER_STOCKHOLDER_EQUITY': 'Other Stockholder Equity', 'OTHER_TAXES': 'Other Taxes', 'OTHER_TRENDING_TICKERS': 'Other Trending Tickers', 'OTHER_UNDERWRITING_EXPENSES_PAID': 'Other Underwriting Expenses Paid', 'OTHER_WORKING_CAPITAL': 'Other working capital', 'OUTLOOK': 'Outlook', 'OUTPERFORM': 'Outperform', 'OVERVALUED': 'Overvalued', 'OVERALL_GRADE': 'Overall grade', 'OVERALL_INNOVATION_SCORE': 'Overall Innovation Score', 'OVERALL_PORTFOLIO_COMPOSITION': 'Overall Portfolio Composition (%)', 'OVERVIEW': 'Overview', 'OWNERSHIP_BREAKDOWN': 'Breakdown', 'OWNERSHIP_DIRECT_HOLDERS': 'Direct Holders (Forms 3 and 4)', 'OWNERSHIP_INSIDERS_TRANSACTIONS': 'Insider Transactions Reported - Last Two Years', 'OWNERSHIP_MAJOR_HOLDERS': 'Major Holders', 'OWNERSHIP_NUMBER_INSTITUION_SHARES': 'Number of Institutions Holding Shares', 'OWNERSHIP_PERCENT_FLOAT_INSTITUTIONS': '% of Float Held by Institutions', 'OWNERSHIP_PERCENT_SHARES_INSIDERS': '% of Shares Held by All Insider', 'OWNERSHIP_PERCENT_SHARES_INSTITUTIONS': '% of Shares Held by Institutions', 'OWNERSHIP_TOP_INSTITUTION_TITLE': 'Top Institutional Holders', 'OWNERSHIP_TOP_MUTUALFUND_TITLE': 'Top Mutual Fund Holders', 'PACKAGING_CONTAINERS': 'Packaging & Containers', 'PACKAGING_CONTAINERS_DESC': 'Packaging & Containers Stocks', 'PAGE_OF': 'Page {first} of {last}', 'PAPER_PAPER_PRODUCTS': 'Paper & Paper Products', 'PAPER_PAPER_PRODUCTS_DESC': 'Paper & Paper Products Stocks', 'PARAMETERS': 'Parameters', 'PAST_5_YEARS': 'Past 5 Years (per annum)', 'PAST_QUARTERLY_RETURNS': 'Past Quarterly Returns (%)', 'PATTERN_BULLISH': 'Bullish pattern', 'PATTERN_BEARISH': 'Bearish pattern', 'PATTERN_SENTIMENT_MSG_N': 'Neutral pattern', 'PAY': 'Pay', 'PAYABLES': 'Payables', 'PAYABLES_AND_ACCRUED_EXPENSES': 'Payables And Accrued Expenses', 'PAYMENTSON_BEHALFOF_EMPLOYEES': 'Payments on Behalf of Employees', 'PAYMENTSTO_SUPPLIERSFOR_GOODSAND_SERVICES': 'Payments to Suppliers for Goods & Services', 'PAYMENT_FOR_LOANS': 'Payment for Loans', 'PAYOUT_RATIO': 'Payout Ratio', 'PEERS': 'Peers', 'PENSIONAND_OTHER_POST_RETIREMENT_BENEFIT_PLANS_CURRENT': 'Pension & Other Post Retirement Benefit Plans Current', 'PENSION_AND_EMPLOYEE_BENEFIT_EXPENSE': 'Pension And Employee Benefit Expense', 'PEOPLE_ALSO_WATCH': 'People Also Watch', 'PERCENTAGE': 'Percentage', 'PERCENTILE_ND': '{value}nd percentile', 'PERCENTILE_RD': '{value}rd percentile', 'PERCENTILE_ST': '{value}st percentile', 'PERCENTILE_TH': '{value}th percentile', 'PERCENT_ASSETS': '% Assets', 'PERCENT_CHANGE': '% Change', 'PERCENT_CHANGE_IN_INSTITUTIONAL_SHARES_HELD': '% Change in Institutional Shares Held', 'PERCENT_HELD_BY_INSIDERS': '% Held by Insiders', 'PERCENT_HELD_BY_INSTITUTIONS': '% Held by Institutions', 'PERCENT_NET_SHARES_PURCHASED_SOLD': '% Net Shares Purchased (Sold)', 'PERCENT_OUT': '% Out', 'PERFORM': 'perform', 'PERFORMANCE': 'Performance', 'PERFORMANCE_AND_RISK': 'Performance & Risk', 'PERFORMANCE_OVERVIEW': 'Performance Overview', 'PERIOD': 'Period', 'PERIOD_ENDING': 'Period Ending', 'PERIOD_NOTICE': 'Data generated based on selected period from today', 'PERSONAL_COMPUTERS': 'Personal Computers', 'PERSONAL_COMPUTERS_DESC': 'Personal Computers Stocks', 'PERSONAL_FINANCE_NEWS_TITLE': 'Personal Finance News', 'PERSONAL_PRODUCTS': 'Personal Products', 'PERSONAL_PRODUCTS_DESC': 'Personal Products Stocks', 'PERSONAL_SERVICES': 'Personal Services', 'PERSONAL_SERVICES_DESC': 'Personal Services Stocks', 'PETROLIO-E-GAS-NATURALE_TITLE': 'Oil and Natural Gas', 'PE_RATIO': 'PE Ratio (TTM)', 'PHONE': 'Phone', 'PHOTOGRAPHIC_EQUIPMENT_SUPPLIES': 'Photographic Equipment & Supplies', 'PHOTOGRAPHIC_EQUIPMENT_SUPPLIES_DESC': 'Photographic Equipment & Supplies Stocks', 'PILLAR_SCORES': 'The pillar scores are Audit: {audit}; Board: {board}; Shareholder Rights: {shareRight}; Compensation: {comp}.', 'PINTEREST': 'Pinterest', 'PINTEREST_SHARE': 'Pin it', 'PLEASE_CLICK_HERE_TO': 'Please click here to do so.', 'PLUS': 'Plus', 'POLICYHOLDER_BENEFITS_CEDED': 'Policyholder Benefits Ceded', 'POLICYHOLDER_BENEFITS_GROSS': 'Policyholder Benefits Gross', 'POLICYHOLDER_DEPOSIT_INVESTMENT_RECEIVED': 'Policyholder Deposit Investment Received', 'POLICYHOLDER_DIVIDENDS': 'Policyholder Dividends', 'POLICYHOLDER_FUNDS': 'Policyholder Funds', 'POLICYHOLDER_INTEREST': 'Policyholder Interest', 'POLICY_ACQUISITION_EXPENSE': 'Policy Acquisition Expense', 'POLICY_HOLDERS_LIABILITIES': 'Policy Holders Liabilities', 'POLICY_LOANS': 'Policy Loans', 'POLLUTION_TREATMENT_CONTROLS': 'Pollution & Treatment Controls', 'POLLUTION_TREATMENT_CONTROLS_DESC': 'Pollution & Treatment Controls Stocks', 'POLL_QA': 'Poll and Q&A', 'POPULAR_FILTERS': 'Popular Filters', 'POPULAR_WATCHLISTS': 'Popular Watchlists', 'PORTFOLIO_ACTION_DESC': 'Look at what users are adding, deleting, and moving around in their portfolios.', 'PORTFOLIO_ACTION_TITLE': 'Portfolio Changes', 'PORTFOLIO_ANCHORS': 'Portfolio Anchors', 'PORTFOLIO_ANCHORS_DESC': \"Funds with Performance Rating of 4 & 5 and top-half returns that could serve as a rock-solid core of an investor's portfolio\", 'PORTFOLIO_CASH_SETTINGS': 'Portfolio Cash Settings', 'PORTFOLIO_CURRENCY': 'Portfolio Currency', 'PORTFOLIO_DAILY_SUMMARY': 'Portfolio Summary', 'PORTFOLIO_DETAILS': 'Portfolio Details', 'PORTFOLIO_HOLDINGS_BASIC_DESCRIPTION': 'Existing portfolio experience, with only support to input Buy.', 'PORTFOLIO_HOLDINGS_BETA_DESCRIPTION': 'Our new and enhanced portfolio version with support for Buy, Sell, Short, Buy to Cover Transactions and much more.', 'PORTFOLIO_HOLDINGS_BETA_TITLE_CREATE': 'Portfolio 2.0 with Transactions', 'PORTFOLIO_HOLDINGS_BETA_TITLE_PAGE0': 'Introducing Portfolio 2.0', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE0': 'All new features to help you better manage your portfolio holdings', 'PORTFOLIO_HOLDINGS_BETA_TITLE_PAGE1': \"What's new?\", 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1': 'All the tools you need to take your portfolio management to the next level.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1_CASH': 'Manage cash like any other asset.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1_DIVIDENDS': 'Automated dividend tracking and management.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1_LOTS': 'Automatic lot management using FIFO (First in First Out) methodology.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1_TRANSACTIONS': 'Buy, Sell, Sell Short, and Buy to Cover transactions supported.', 'PORTFOLIO_HOLDINGS_BETA_TITLE_PAGE2': 'Setup your portfolio', 'PORTFOLIO_HOLDINGS_BETA_EDUCATION_PAGE2': 'Your portfolio {pfName} will be cloned as part of this Beta trial. This allows you to try the new transactions features without disrupting your primary portfolio.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE2_CASH': 'Toggle on to enable automatic cash management - you can continue to manage your cash holdings manually if you prefer', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE2_HOLDINGS': \"Enabling will add this portfolio's value to the total holdings amount\", 'PORTFOLIO_HOLDINGS_BETA_WARNING_PAGE2': 'Please note that changes made to this cloned portfolio will not have any impact on your exisiting portfolio.', 'PORTFOLIO_NAME': 'Portfolio Name', 'PORTFOLIO_NEWS': 'Portfolio News', 'PORTFOLIO_SHARING_TEXT': 'We will only share the company tickers. Holdings information will not be included.', 'PORTFOLIO_STATISTICS': 'Portfolio Statistics', 'PORTFOLIO_TOTAL_HOLDINGS_SETTINGS': 'Portfolio Total Holdings Settings', 'PORTFOLIO_WELCOME_MESSAGE': 'Welcome to My Portfolio - Link your brokers or add lots', 'PORTFOLIO_WELCOME_MESSAGE_NONTRADE': 'Welcome to Yahoo Finance Portfolios', 'PORTFOLIO_WELCOME_SUBMSG': 'Track your overall performance in one place. Add portfolio holdings manually by entering lots or by linking your online brokerage account.', 'PORTFOLIO_WELCOME_SUBMSG_NONTRADE': 'Track your performance with real-time data and news related to your symbols.', 'PORTFOLIO_WELCOME_SUBSUBMSG': 'Manage your holdings efficiently and create custom views using over 60 data points.', 'POST': 'Post', 'POSTINGS': 'Postings', 'POST_MARKET_NOTICE': 'After hours:', 'PRE': 'Pre', 'PREDEFINED_SCREENER': 'Screener', 'PREFERRED': 'Preferred', 'PREFERRED_SECURITIES_OUTSIDE_STOCK_EQUITY': 'Preferred Securities Outside Stock Equity', 'PREFERRED_SHARES_NUMBER': 'Preferred Shares Number', 'PREFERRED_STOCK': 'Preferred Stock', 'PREFERRED_STOCK_DIVIDENDS': 'Preferred Stock Dividends', 'PREFERRED_STOCK_DIVIDEND_PAID': 'Preferred Stock Dividend Paid', 'PREFERRED_STOCK_EQUITY': 'Preferred Stock Equity', 'PREFERRED_STOCK_ISSUANCE': 'Preferred Stock Issuance', 'PREFERRED_STOCK_OTHER_ADJ': 'Preferred Stock And Other Adjustments', 'PREFERRED_STOCK_PAYMENTS': 'Preferred Stock Payments', 'PREMIUM': 'Premium', 'PREMIUM_CLOSE_PRICE': 'Close price', 'PREMIUM_DAILY': 'DAILY', 'PREMIUM_LONG_TERM': 'Long Term', 'PREMIUM_MID_TERM': 'Mid Term', 'PREMIUM_RECEIVED': 'Premium Received', 'PREMIUM_SHORT_TERM': 'Short Term', 'PREMIUM_TECH_EVENTS_FOR': '{num} Active Technical Events in {term}', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST': 'ADDED TO WATCHLIST', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_1': 'You will now see', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_2': ' more {ticker} news ', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_3': 'in your Yahoo feed', 'PREMIUM_UPSELL_CHART_PATTERN': 'Pattern', 'PREMIUM_UPSELL_CTA': 'Start your free trial today. >>', 'PREMIUM_UPSELL_DIFF_D': '{days}d', 'PREMIUM_UPSELL_DIFF_DAYS_AGO': '{days} days ago', 'PREMIUM_UPSELL_DIFF_ONE_DAY_AGO': '1 day ago', 'PREMIUM_UPSELL_DIFF_ONE_MONTH_AGO': '1 month ago', 'PREMIUM_UPSELL_NEW_FEATURE': 'NEW FEATURE', 'PREMIUM_UPSELL_NEW_FEATURE_LOGGED_IN': 'Stay up-to-date with news and stock price for {ticker}', 'PREMIUM_UPSELL_NEW_FEATURE_LOGGED_OUT': 'Sign in to keep track of {ticker} news and performance', 'PREMIUM_UPSELL_PATTERN_DETAIL': 'View bullish/bearish technical chart patterns with one click.', 'PREMIUM_UPSELL_PATTERN_TITLE': '{type} Pattern Detected', 'PREMIUM_UPSELL_PERFORMANCE_DETAIL': 'Conduct technical analysis for the short, mid, or long term.', 'PREMIUM_UPSELL_PERFORMANCE_TITLE': 'Performance Outlook', 'PREMIUM_UPSELL_RECOMMENDATION_TITLE': 'Recommendation rating', 'PREMIUM_UPSELL_REPORTS_DETAIL': 'Analyst reports and guidance from Morningstar and Argus.', 'PREMIUM_UPSELL_REPORTS_TITLE': 'Recent Research', 'PREMIUM_UPSELL_SIG_DEVS_DETAIL': 'Plot company events on charts to view impact on performance.', 'PREMIUM_UPSELL_SIG_DEVS_TITLE': 'Significant Event Occurred', 'PREMIUM_UPSELL_SIG_DEVS_TITLE_SHORT': 'Significant Event', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_CTA': 'Research report available', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_1': 'You’ve read ', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_2': '{usedCount} of your {maxCount} ', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_3': 'free research reports this quarter', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_HEADER': 'Unlock premium independent research on this stock.', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_CTA': 'Upgrade to read report', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_TOOLTIP_DETAIL': 'You’ve read all your free reports this quarter.', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_TOOLTIP_HEADER': 'Get unlimited reports with Yahoo Finance Plus.', 'PREMIUM_UPSELL_VALUATION_DETAIL': 'Determine the fair value of any stock with Premium.', 'PREMIUM_UPSELL_VALUATION_TITLE': 'Fair Value Estimate', 'PREMIUM_UPSELL_FEATURED_IN_TITLE': 'Featured in', 'PREMIUM_UPSELL_FEATURED_IN_PUBLISHER': 'Publisher', 'PREMIUM_UPSELL_FEATURED_IN_DAYCHNG': 'Day Change', 'PREMIUM_UPSELL_FEATURED_IN_FOLLOWERS': 'Followers', 'PREMIUM_WEEKLY': 'WEEKLY', 'PREMIUM_WHAT_IT_MEANS': 'What It Means', 'PREPAID_ASSETS': 'Prepaid Assets', 'PRESENTED_BY': 'Presented By', 'PRETAX_INCOME': 'Pretax Income', 'PREV': 'Prev', 'PREVIEW': 'Preview', 'PREV_CLOSE': 'Previous Close', 'PREV_PRESIDENTS': 'Compared to previous presidents...', 'PREV_SETTLEMENT_DATE': 'Pre. Settlement', 'PRE_MARKET_NOTICE': 'Pre-Market:', 'PRICE': 'Price', 'PRICE_ALERT_DOWN': 'Price Alert', 'PRICE_ALERT_UP': 'Price Alert', 'PRICE_CHANGE': 'Price Change', 'PRICE_DAY_RANGE': 'Price day range for {symbol}', 'PRICE_DETAILS': 'Price details', 'PRICE_TARGET': 'Price Target', 'PRICE_TARGET_LOWERCASE': 'Price target', 'PRICE_TO_BOOK': 'Price/Book', 'PRICE_TO_CASHFLOW': 'Price/Cashflow', 'PRICE_TO_EARNINGS': 'Price/Earnings', 'PRICE_TO_SALES': 'Price/Sales', 'PRICINGS': 'Pricings', 'PRINT': 'Print', 'PRINTED_CIRCUIT_BOARDS': 'Printed Circuit Boards', 'PRINTED_CIRCUIT_BOARDS_DESC': 'Printed Circuit Boards Stocks', 'PRIVACY_POLICY': 'Privacy Policy', 'PRIVATE_COMPANY': 'Private Company', 'PROCEEDS': 'Proceeds', 'PROCEEDS_FROM_LOANS': 'Proceeds from Loans', 'PROCEEDS_FROM_STOCK_OPTION_EXERCISED': 'Proceeds from Stock Option Exercised', 'PROCEEDS_PAYMENT_FEDERAL_FUNDS_SOLD_AND_SECURITIES_PURCHASED_UNDER_AGREEMENT_TO_RESELL': 'Proceeds Payment Federal Funds Sold And Securities Purchased Under Agreement To Resell', 'PROCEEDS_PAYMENT_IN_INTEREST_BEARING_DEPOSITS_IN_BANK': 'Proceeds Payment in Interest Bearing Deposits in Bank', 'PROCESSED_PACKAGED_GOODS': 'Processed & Packaged Goods', 'PROCESSED_PACKAGED_GOODS_DESC': 'Processed & Packaged Goods Stocks', 'PROCESSING_SYSTEMS_PRODUCTS': 'Processing Systems & Products', 'PROCESSING_SYSTEMS_PRODUCTS_DESC': 'Processing Systems & Products Stocks', 'PROFESSIONAL_EXPENSE_AND_CONTRACT_SERVICES_EXPENSE': 'Professional Expense And Contract Services Expense', 'PROFITABILITY': 'Profitability', 'PROFITABILITY_RATIOS_AND_DIVIDENDS': 'Profitability Ratios and Dividends', 'PROFIT_MARGIN': 'Profit Margin', 'PROMOTE_NEW_CHART': 'Try our new charting experience and share your thoughts', 'PROPERTIES': 'Properties', 'PROPERTY_CASUALTY_INSURANCE': 'Property & Casualty Insurance', 'PROPERTY_CASUALTY_INSURANCE_DESC': 'Property & Casualty Insurance Stocks', 'PROPERTY_MANAGEMENT': 'Property Management', 'PROPERTY_MANAGEMENT_DESC': 'Property Management Stocks', 'PROPERTY_PLANT_AND_EQUIPMENT': 'Property, plant and equipment', 'PROPERTY_TITLE': 'Property', 'PORTFOLIO_HOLDING_PROMO_TITLE': 'Get Insights', 'PORTFOLIO_WEIGHT': '{weight} of your portfolios.', 'PORTFOLIO_WEIGHT_DISCLAIMER': 'Only you can see this.', 'PROSPECTUS_GROSS_EXPENSE_RATIO': 'Prospectus Gross Expense Ratio', 'PROSPECTUS_NET_EXPENSE_RATIO': 'Prospectus Net Expense Ratio', 'PROVISIONAND_WRITE_OFFOF_ASSETS': 'Provision & Write Off of Assets', 'PROVISION_FOR_DOUBTFUL_ACCOUNTS': 'Provision for Doubtful Accounts', 'PROVISION_FOR_LOAN_LEASE_AND_OTHER_LOSSES': 'Provision for Loan Lease And Other Losses', 'PUBLISHING_BOOKS': 'Publishing - Books', 'PUBLISHING_BOOKS_DESC': 'Publishing - Books Stocks', 'PUBLISHING_NEWSPAPERS': 'Publishing - Newspapers', 'PUBLISHING_NEWSPAPERS_DESC': 'Publishing - Newspapers Stocks', 'PUBLISHING_PERIODICALS': 'Publishing - Periodicals', 'PUBLISHING_PERIODICALS_DESC': 'Publishing - Periodicals Stocks', 'PURCHASES': 'Purchases', 'PURCHASES_OF_INVESTMENTS': 'Purchases of investments', 'PURCHASE_DETAILS': 'Purchase Details', 'PURCHASE_INFO': 'Purchase info', 'PURCHASE_OF_BUSINESS': 'Purchase of Business', 'PURCHASE_OF_INTANGIBLES': 'Purchase of Intangibles', 'PURCHASE_OF_INVESTMENT': 'Purchase of Investment', 'PURCHASE_OF_INVESTMENT_PROPERTIES': 'Purchase of Investment Properties', 'PURCHASE_OF_PPE': 'Purchase of PPE', 'RELATED_TICKERS': 'RelatedTickers', 'REVIEW_ACCOUNT': 'Review account information', 'START': 'Start', 'QSP_DISCLAIMER': 'Trade prices are not sourced from all markets', 'QUANTITY': 'Quantity', 'QUARTERLY': 'Quarterly', 'QUARTERLY_EARNINGS_GROWTH': 'Quarterly Earnings Growth', 'QUARTERLY_REVENUE_GROWTH': 'Quarterly Revenue Growth', 'QUARTER_FOUR': 'Q4', 'QUARTER_ONE': 'Q1', 'QUARTER_THREE': 'Q3', 'QUARTER_TWO': 'Q2', 'QUICK_VIDEO': 'Quick Video', 'QUOTE_LOOKUP': 'Quote Lookup', 'QUOTE_LOOKUP_PLACEHOLDER': 'Search for symbols or companies: AAPL, GOOG, DIS', 'QUOTE_PRICE_NOTICE': '{exchangeName} {marketSource}. Currency in {currency}', 'RAILROADS': 'Railroads', 'RAILROADS_DESC': 'Railroads Stocks', 'RANGE_0_99': 'Range 0-99', 'RANGE_SLIDER': 'Range Slider', 'RANK': 'Rank', 'RANK_IN_CATEGORY': 'Rank In Category (By Total Return)', 'RATE': 'Rate', 'RATING': 'Rating', 'RATIOS': 'Ratios', 'RAW_MATERIALS': 'Raw Materials', 'READ_MORE': 'Read more', 'READ_RELEVANT_NEWS': 'Read Relevant Investment News', 'REALIZED_GAIN': 'Realized Gain', 'REALIZED_GAIN_LOSS_ON_SALE_OF_LOANS_AND_LEASE': 'Realized Gain Loss On Sale of Loans And Lease', 'REAL_ESTATE_DEVELOPMENT': 'Real Estate Development', 'REAL_ESTATE_DEVELOPMENT_DESC': 'Real Estate Development Stocks', 'REAL_ESTATE_TITLE': 'Real Estate', 'REAL_GDP': 'Real GDP', 'RECEIPTSFROM_CUSTOMERS': 'Receipts from Customers', 'RECEIPTSFROM_GOVERNMENT_GRANTS': 'Receipts from Government Grants', 'RECEIVABLES': 'Receivables', 'RECEIVABLES_ADJUSTMENTS_ALLOWANCES': 'Receivables Adjustments Allowances', 'RECENTLY_VIEWED_TITLE': 'Recently Viewed', 'RECENT_EVENTS': 'Recent Events', 'RECENT_UPDATES': 'Recent Updates', 'RECENT_FILINGS': 'Recent Filings', 'RECOMMENDATION': 'Recommendation', 'RECOMMENDATION_RATING': 'Recommendation Rating', 'RECOMMENDATION_RATING_SCR_RD_MSG': '{rating} on a scale of {minRating} to {maxRating}, where {minRating} is {minRatingText} and {maxRating} is {maxRatingText}', 'RECOMMENDATION_TRENDS': 'Recommendation Trends', 'RECOMMEND_STOCKS': 'Recommended Stocks', 'RECONCILED_COST_OF_REVENUE': 'Reconciled Cost of Revenue', 'RECONCILED_DEPRECIATION': 'Reconciled Depreciation', 'RECREATIONAL_GOODS_OTHER': 'Recreational Goods, Other', 'RECREATIONAL_GOODS_OTHER_DESC': 'Recreational Goods, Other Stocks', 'RECREATIONAL_VEHICLES': 'Recreational Vehicles', 'RECREATIONAL_VEHICLES_DESC': 'Recreational Vehicles Stocks', 'RECTANGLE': 'Rectangle', 'REDEEMABLE_PREFERRED_STOCK': 'Redeemable Preferred Stock', 'REFERENCE_CODE': 'Reference Code', 'REFRESH': 'Refresh', 'REGIONAL_AIRLINES': 'Regional Airlines', 'REGIONAL_AIRLINES_DESC': 'Regional Airlines Stocks', 'REGIONAL_MIDATLANTIC_BANKS': 'Regional - Mid-Atlantic Banks', 'REGIONAL_MIDATLANTIC_BANKS_DESC': 'Regional - Mid-Atlantic Banks Stocks', 'REGIONAL_MIDWEST_BANKS': 'Regional - Midwest Banks', 'REGIONAL_MIDWEST_BANKS_DESC': 'Regional - Midwest Banks Stocks', 'REGIONAL_NORTHEAST_BANKS': 'Regional - Northeast Banks', 'REGIONAL_NORTHEAST_BANKS_DESC': 'Regional - Northeast Banks Stocks', 'REGIONAL_PACIFIC_BANKS': 'Regional - Pacific Banks', 'REGIONAL_PACIFIC_BANKS_DESC': 'Regional - Pacific Banks Stocks', 'REGIONAL_SOUTHEAST_BANKS': 'Regional - Southeast Banks', 'REGIONAL_SOUTHEAST_BANKS_DESC': 'Regional - Southeast Banks Stocks', 'REGIONAL_SOUTHWEST_BANKS': 'Regional - Southwest Banks', 'REGIONAL_SOUTHWEST_BANKS_DESC': 'Regional - Southwest Banks Stocks', 'REGRESSION': 'Regression', 'REGULATORY_ASSETS': 'Regulatory Assets', 'REGULATORY_LIABILITIES': 'Regulatory Liabilities', 'REINSURANCEAND_OTHER_RECOVERIES_RECEIVED': 'Reinsurance & Other Recoveries Received', 'REINSURANCE_RECOVERABLE': 'Reinsurance Recoverable', 'REITERATES': 'Reiterates', 'REIT_DIVERSIFIED': 'REIT - Diversified', 'REIT_DIVERSIFIED_DESC': 'REIT - Diversified Stocks', 'REIT_HEALTHCARE_FACILITIES': 'REIT - Healthcare Facilities', 'REIT_HEALTHCARE_FACILITIES_DESC': 'REIT - Healthcare Facilities Stocks', 'REIT_HOTEL_MOTEL': 'REIT - Hotel/Motel', 'REIT_HOTEL_MOTEL_DESC': 'REIT - Hotel/Motel Stocks', 'REIT_INDUSTRIAL': 'REIT - Industrial', 'REIT_INDUSTRIAL_DESC': 'REIT - Industrial Stocks', 'REIT_OFFICE': 'REIT - Office', 'REIT_OFFICE_DESC': 'REIT - Office Stocks', 'REIT_RESIDENTIAL': 'REIT - Residential', 'REIT_RESIDENTIAL_DESC': 'REIT - Residential Stocks', 'REIT_RETAIL': 'REIT - Retail', 'REIT_RETAIL_DESC': 'REIT - Retail Stocks', 'RELATED_COMPANIES': 'Related Companies', 'RELATED_FILINGS_FROM_SYMBOL': 'Related Filings from {symbol}', 'RELATED_LISTS_FOR_SYMBOL': 'Related Lists for {symbol}', 'RELATED_QUOTES': 'Related Quotes', 'RELATED_REPORT': 'Related Reports', 'RELATED_VIDEO': 'Related Video', 'REMOVE': 'Remove', 'REMOVED': 'Removed', 'REMOVE_STRIKE_FILTER': 'Remove Strike Filtering', 'RENAME_MODAL_MESSAGE': 'Enter a new name for {pfName}.', 'RENAME_PORTFOLIO': 'Rename Portfolio', 'RENAME_PORTFOLIO_ERROR': 'Unable to rename portfolio. Please retry.', 'RENTAL_LEASING_SERVICES': 'Rental & Leasing Services', 'RENTAL_LEASING_SERVICES_DESC': 'Rental & Leasing Services Stocks', 'RENTAND_LANDING_FEES_COSTOF_REVENUE': 'Rentand Landing Fees Cost of Revenue', 'RENT_AND_LANDING_FEES': 'Rental & Landing Fees', 'RENT_EXPENSE_SUPPLEMENTAL': 'Rent Expense Supplemental', 'REORDER': 'Reorder', 'REORDER_COLUMNS': 'Reorder Columns', 'REORDER_LISTS': 'Reorder Lists', 'REPAYMENT_OF_DEBT': 'Repayment of Debt', 'REPORTED_NORMALIZED_BASIC_EPS': 'Reported Normalized Basic EPS', 'REPORTED_NORMALIZED_DILUTED_EPS': 'Reported Normalized Diluted EPS', 'REPORT_ID': 'Report Id', 'REPORT_NAME': 'Report Name', 'REPORT_TYPE': 'Report type', 'REPURCHASE_OF_CAPITAL_STOCK': 'Repurchase of Capital Stock', 'RESEARCH': 'Research', 'RESEARCH_AND_DEVELOPMENT': 'Research & Development', 'RESEARCH_DEVELOPMENT': 'Research Development', 'RESEARCH_INPUT_PLACEHOLDER': 'Filter reports by symbols', 'RESEARCH_REPORT': 'Premium Research Report', 'RESEARCH_REPORTS': 'Research Reports', 'RESEARCH_SERVICES': 'Research Services', 'RESEARCH_SERVICES_DESC': 'Research Services Stocks', 'RESET': 'Reset', 'RESIDENTIAL_CONSTRUCTION': 'Residential Construction', 'RESIDENTIAL_CONSTRUCTION_DESC': 'Residential Construction Stocks', 'RESISTANCE': 'Resistance', 'RESORTS_CASINOS': 'Resorts & Casinos', 'RESORTS_CASINOS_DESC': 'Resorts & Casinos Stocks', 'RESTAURANTS': 'Restaurants', 'RESTAURANTS_DESC': 'Restaurants Stocks', 'RESTRICTED_CASH': 'Restricted Cash', 'RESTRICTED_CASH_AND_CASH_EQUIVALENTS': 'Restricted Cash & Cash Equivalents', 'RESTRICTED_CASH_AND_INVESTMENTS': 'Restricted Cash And Investments', 'RESTRICTED_COMMON_STOCK': 'Restricted Common Stock', 'RESTRICTED_INVESTMENTS': 'Restricted Investments', 'RESTRUCTURING_AND_MERGERN_ACQUISITION': 'Restructuring & Mergers Acquisition', 'RESULTS': 'Results', 'RESULTS_CALENDAR_earnings': 'Earnings on {date}', 'RESULTS_CALENDAR_economic_event': 'Economic Events on {date}', 'RESULTS_CALENDAR_ipo_info': 'IPO Events on {date}', 'RESULTS_CALENDAR_splits': 'Stock Splits on {date}', 'RESULTS_LIST': 'Results List', 'RETAILING_HOSPITALITY_TITLE': 'Retail & Hospitality', 'RETAINED_EARNINGS': 'Retained Earnings', 'RETIREMENT_TITLE': 'Retirement', 'RETURN': 'Return', 'RETURN_ON_ASSETS': 'Return on Assets', 'RETURN_ON_EQUITY': 'Return on Equity', 'REVENUE': 'Revenue', 'REVENUE_ESTIMATE': 'Revenue Estimate', 'REVENUE_PER_PERIOD': '{period} revenue', 'REVENUE_PER_SHARE': 'Revenue Per Share', 'RGAREA': 'Red Green Area', 'RISK': 'Risk', 'RISK_ANALYSIS': 'Risk Analysis', 'RISK_OVERVIEW': 'Risk Overview', 'RISK_RATING': 'Morningstar Risk Rating', 'RISK_STATISTICS': 'Risk Statistics', 'ROR_PERCENT': 'RoR (%)', 'RUBBER_PLASTICS': 'Rubber & Plastics', 'RUBBER_PLASTICS_DESC': 'Rubber & Plastics Stocks', 'R_SQUARED': 'R-squared', 'SALARIES_AND_WAGES': 'Salaries and Wages', 'SALES': 'Sales', 'SALES_GROWTH_YEAR_EST': 'Sales Growth (year/est)', 'SALES_MATURITIES_OF_INVESTMENTS': 'Sales/Maturities of investments', 'SALE_OF_BUSINESS': 'Sale of Business', 'SALE_OF_INTANGIBLES': 'Sale of Intangibles', 'SALE_OF_INVESTMENT': 'Sale of Investment', 'SALE_OF_INVESTMENT_PROPERTIES': 'Sale of Investment Properties', 'SALE_OF_PPE': 'Sale of PPE', 'SALE_PURCHASE_OF_STOCK': 'Sale Purchase of Stock', 'SALUD_TITLE': 'Healthcare', 'SALUTE_TITLE': 'Healthcare', 'SAMPLE_DATA': 'Sample Data', 'SANTE-ET-CHIMIE_TITLE': 'Healthcare', 'SAUDE-FARMACEUTICA_TITLE': 'Health & Pharmaceuticals', 'SAVE': 'Save', 'SAVED': 'Saved', 'SAVE_AS': 'Save As', 'SAVE_FILTERS': 'Save Filters', 'SAVE_LOT': 'Save Lot', 'SAVE_MONEY_TITLE': 'Save Money', 'SAVE_TRANSACTION': 'Save transaction', 'SAVE_VIEW_ERROR': 'Unable to save view. Please retry.', 'SAVINGS_LOANS': 'Savings & Loans', 'SAVINGS_LOANS_DESC': 'Savings & Loans Stocks', 'SAVING_SPENDING_TITLE': 'Saving & Spending', 'SCIENTIFIC_TECHNICAL_INSTRUMENTS': 'Scientific & Technical Instruments', 'SCIENTIFIC_TECHNICAL_INSTRUMENTS_DESC': 'Scientific & Technical Instruments Stocks', 'SCREENER': 'Screener', 'SCREENERS': 'Screeners', 'SCREENER_CRITERIA_CHANGE': 'Screening Criteria has changed.', 'SCREENER_DEFAULT_CRITERIA': 'Default Criteria', 'SCREENER_DEPEND_FIELD_MSG': 'Select {field} first', 'SCREENER_DESC_PLACEHOLDER': 'Enter a description (optional)', 'SCREENER_FIELD_addtocalendar': 'Add to Calendar', 'SCREENER_FIELD_after_release_actual': 'Actual', 'SCREENER_FIELD_altmanzscoreusingtheaveragestockinformationforaperiod.lasttwelvemonths': 'Altman Z Score', 'SCREENER_FIELD_analyst_name': 'Analyst Firm', 'SCREENER_FIELD_announce_date': 'Announced', 'SCREENER_FIELD_annualreportgrossexpenseratio': 'Annual Gross Expense Ratio', 'SCREENER_FIELD_annualreportnetexpenseratio': 'Annual Net Expense Ratio', 'SCREENER_FIELD_annualreturnnavy1': '% Change in Net Asset Value (NAV - 1 yr)', 'SCREENER_FIELD_annualreturnnavy1categoryrank': 'Annual Return NAV Year 1 Category Rank', 'SCREENER_FIELD_annualreturnnavy3': '% Change in Net Asset Value (NAV - 3 yr)', 'SCREENER_FIELD_annualreturnnavy5': '% Change in Net Asset Value (NAV - 5 yr)', 'SCREENER_FIELD_average_rating': 'Average Rating', 'SCREENER_FIELD_averagedayspayableoutstanding.lasttwelvemonths': 'Average Days Payable Outstanding (LTM)', 'SCREENER_FIELD_avgdailyvol3m': 'Avg Vol (3 month)', 'SCREENER_FIELD_basicepscontinuingoperations.lasttwelvemonths': 'EPS (Basic, Continuing Operations)', 'SCREENER_FIELD_basicweightedaveragesharesoutstanding.lasttwelvemonths': 'Basic Weighted Average Shares Outstanding (LTM)', 'SCREENER_FIELD_beta': 'Beta (5Y Monthly)', 'SCREENER_FIELD_beta1year.lasttwelvemonths': 'Beta - 1 Year (LTM)', 'SCREENER_FIELD_bookvalueshare.lasttwelvemonths': 'Book Value / Share', 'SCREENER_FIELD_briefing_com_estimate': 'Briefing Forecast', 'SCREENER_FIELD_breakoutPrice': 'Breakout Price', 'SCREENER_FIELD_targetPrice': 'Target Price', 'SCREENER_FIELD_capitalexpenditure.lasttwelvemonths': 'Capital Expenditure (CapEx)', 'SCREENER_FIELD_cashandequivalents.lasttwelvemonths': 'Cash And Equivalents (LTM)', 'SCREENER_FIELD_cashfromoperations.lasttwelvemonths': 'Cash from Operations', 'SCREENER_FIELD_cashfromoperations1yrgrowth.lasttwelvemonths': '1 yr. % Change in Cash from Operations', 'SCREENER_FIELD_cashincometaxpaidrefund.lasttwelvemonths': 'Cash Income Tax Paid (Refund) (LTM)', 'SCREENER_FIELD_cashinterestpaid.lasttwelvemonths': 'Cash Interest Paid (LTM)', 'SCREENER_FIELD_categoryname': 'Funds by Category', 'SCREENER_FIELD_change_in_number_of_institutional_holders': 'Change in no. of Holders', 'SCREENER_FIELD_circulatingSupply': 'Circulating Supply', 'SCREENER_FIELD_companyshortname': 'Company', 'SCREENER_FIELD_consecutive_years_of_dividend_growth_count': 'Consecutive Years of Dividend Growth', 'SCREENER_FIELD_consensus_estimate': 'Market Expectation', 'SCREENER_FIELD_consensuseps': 'Consensus EPS', 'SCREENER_FIELD_count': 'Document Count', 'SCREENER_FIELD_country_code': 'Country', 'SCREENER_FIELD_currency': 'Currency', 'SCREENER_FIELD_currencyname': 'Currency', 'SCREENER_FIELD_current_price': 'Price (Delayed)', 'SCREENER_FIELD_currentratio.lasttwelvemonths': 'Current Ratio', 'SCREENER_FIELD_dateisestimate': 'Estimate Date', 'SCREENER_FIELD_days_to_cover_short.value': 'Short Interest Ratio', 'SCREENER_FIELD_daysoutstandinginventoryaverageinventory.lasttwelvemonths': 'Days Outstanding Inventory (Average Inventory) (LTM)', 'SCREENER_FIELD_dayssalesoutstandingaveragereceivables.lasttwelvemonths': 'Days Sales Outstanding (Average Receivables) (LTM)', 'SCREENER_FIELD_dayvolume': 'Volume', 'SCREENER_FIELD_dealtype': 'Actions', 'SCREENER_FIELD_dilutedeps1yrgrowth.lasttwelvemonths': '1 Yr. % Change in EPS (Diluted)', 'SCREENER_FIELD_dilutedepscontinuingoperations.lasttwelvemonths': 'EPS (Diluted, Continuing Operations)', 'SCREENER_FIELD_dilutedweightedaveragesharesoutstanding.lasttwelvemonths': 'Diluted Weighted Average Shares Outstanding (LTM)', 'SCREENER_FIELD_dividendDate': 'Div Payment Date', 'SCREENER_FIELD_dividendpershare.lasttwelvemonths': 'Dividend Per Share (DPS)', 'SCREENER_FIELD_dividendsPerShare': 'Div/Share', 'SCREENER_FIELD_dividendyield': 'Dividend Yield %', 'SCREENER_FIELD_earnings_consistency': 'Earnings Consistency', 'SCREENER_FIELD_earningscalltime': 'Earnings Call Time', 'SCREENER_FIELD_earningscount': 'Earnings', 'SCREENER_FIELD_earningsfromcontinuingoperations.lasttwelvemonths': 'Earnings From Continuing Operations (LTM)', 'SCREENER_FIELD_ebit.lasttwelvemonths': 'EBIT', 'SCREENER_FIELD_ebitda.lasttwelvemonths': 'EBITDA', 'SCREENER_FIELD_ebitda1yrgrowth.lasttwelvemonths': '1 Yr. % Change in EBITDA', 'SCREENER_FIELD_ebitdainterestexpense.lasttwelvemonths': 'EBITDA / Interest Expense (LTM)', 'SCREENER_FIELD_ebitdamargin.lasttwelvemonths': 'EBITDA Margin %', 'SCREENER_FIELD_ebitinterestexpense.lasttwelvemonths': 'EBIT / Interest Expense (LTM)', 'SCREENER_FIELD_ebtexclunusualitems.lasttwelvemonths': 'EBT, Excl. Unusual Items (LTM)', 'SCREENER_FIELD_econ_release': 'Event', 'SCREENER_FIELD_economiceventcount': 'Economic Events', 'SCREENER_FIELD_ecstotalcommonsharesoutstanding.lasttwelvemonths': 'ECS Total Common Shares Outstanding (LTM)', 'SCREENER_FIELD_ecstotalsharesoutstandingonfilingdate.lasttwelvemonths': 'ECS Total Shares Outstanding on Filing Date (LTM)', 'SCREENER_FIELD_enddatetime': 'Event End Date', 'SCREENER_FIELD_endDate': 'Event Date', 'SCREENER_FIELD_environmental_score': 'Environmental Score', 'SCREENER_FIELD_eodmarketcap': 'End-of-Day Market Cap', 'SCREENER_FIELD_eodprice': 'Price (End of Day)', 'SCREENER_FIELD_eodvolume': 'Volume (End of Day)', 'SCREENER_FIELD_epsForward': 'EPS Est Next Year', 'SCREENER_FIELD_epsactual': 'Reported EPS', 'SCREENER_FIELD_epsconsensus': 'EPS Consensus', 'SCREENER_FIELD_epscurrentyear': 'EPS Current Year', 'SCREENER_FIELD_epsestimate': 'EPS Estimate', 'SCREENER_FIELD_epsgrowth.annual': 'EPS Growth (ANNUAL)', 'SCREENER_FIELD_epsgrowth.lasttwelvemonths': '1 yr. % Change in EPS (Basic)', 'SCREENER_FIELD_epsgrowth.quarterly': 'EPS Growth (QUARTERLY)', 'SCREENER_FIELD_epsgrowth.yeartodate': 'EPS Growth (YTD)', 'SCREENER_FIELD_epssurprisepct': 'Surprise(%)', 'SCREENER_FIELD_esg_score': 'ESG Score', 'SCREENER_FIELD_estimated_earnings_growth': 'Est. EPS Growth (%)', 'SCREENER_FIELD_estimated_revenue_growth': 'Est. Revenue Growth (%)', 'SCREENER_FIELD_eventid': 'Event Id', 'SCREENER_FIELD_eventname': 'Event Name', 'SCREENER_FIELD_eventtype': 'Event Type', 'SCREENER_FIELD_eventTypeName': 'Pattern Name', 'SCREENER_FIELD_ex_date': 'Ex Date', 'SCREENER_FIELD_exchange': 'Exchange', 'SCREENER_FIELD_exchange_short_name': 'Exchange', 'SCREENER_FIELD_expire_date': 'Expiration Date', 'SCREENER_FIELD_fiftytwowkpercentchange': '52 Week Price % Change', 'SCREENER_FIELD_file_date': 'File Date', 'SCREENER_FIELD_filername': 'Name', 'SCREENER_FIELD_filingdate': 'Date', 'SCREENER_FIELD_fiscalyear': 'Financial Calendar Year', 'SCREENER_FIELD_form_type': 'Form Type', 'SCREENER_FIELD_forward_dividend_per_share': 'Forward Dividend Rate (DPS)', 'SCREENER_FIELD_forward_dividend_yield': 'Forward Dividend Yield %', 'SCREENER_FIELD_fulltimeemployees.lasttwelvemonths': 'Full Time Employees (LTM)', 'SCREENER_FIELD_fundfamilyname': 'Funds by Company', 'SCREENER_FIELD_fund_investment_orientation': 'Fund Investment Orientation', 'SCREENER_FIELD_fund_investment_style': 'Fund Investment Style', 'SCREENER_FIELD_fund_name.keyword': 'Fund Name', 'SCREENER_FIELD_fund_turnover_rating': 'Fund Turnover Rating', 'SCREENER_FIELD_fund_type': 'Fund Type', 'SCREENER_FIELD_fundnetassets': 'Net Assets', 'SCREENER_FIELD_governance_score': 'Governance Score', 'SCREENER_FIELD_grossprofit.lasttwelvemonths': 'Gross Profit', 'SCREENER_FIELD_grossprofitmargin.lasttwelvemonths': 'Gross Profit Margin %', 'SCREENER_FIELD_highest_controversy': 'Highest Controversy', 'SCREENER_FIELD_holders_fund_types': 'Fund Type', 'SCREENER_FIELD_number_of_institutional_holders': 'No. of Holders', 'SCREENER_FIELD_implied_volatility': 'Implied Volatility', 'SCREENER_FIELD_industry': 'Industry', 'SCREENER_FIELD_initialinvestment': 'Initial Minimum Investment', 'SCREENER_FIELD_intradaymarketcap': 'Market Cap (Intraday)', 'SCREENER_FIELD_intradayprice': 'Price (Intraday)', 'SCREENER_FIELD_intradaypricechange': 'Price Change (Intraday)', 'SCREENER_FIELD_ipoinfo': 'IPOs', 'SCREENER_FIELD_ipoinfocount': 'IPO Pricings', 'SCREENER_FIELD_lastclose52weekhigh.lasttwelvemonths': '52 Week Price High (Last Close)', 'SCREENER_FIELD_lastclose52weeklow.lasttwelvemonths': '52 Week Price Low (Last Close)', 'SCREENER_FIELD_lastclosebsshout.lasttwelvemonths': 'Last Close BS Shout (LTM)', 'SCREENER_FIELD_lastcloseindicateddividendstockprice.lasttwelvemonths': 'Last Close Indicated Dividend / Stock Price (LTM)', 'SCREENER_FIELD_lastclosemarketcap.lasttwelvemonths': 'Market Cap (Last Close)', 'SCREENER_FIELD_lastclosemarketcapebtexclunusualitems.lasttwelvemonths': 'Last Close Market Cap / EBT Excl. Unusual Items (LTM)', 'SCREENER_FIELD_lastclosemarketcaptotalrevenue.lasttwelvemonths': 'Price / Sales (P/S)', 'SCREENER_FIELD_lastcloseprice.lasttwelvemonths': 'Last Close Price (LTM)', 'SCREENER_FIELD_lastclosepricebookvalue.lasttwelvemonths': 'Price / Book Value (P/B)', 'SCREENER_FIELD_lastclosepriceearnings.lasttwelvemonths': 'Price / Earnings (P/E)', 'SCREENER_FIELD_lastclosepricetangiblebookvalue.lasttwelvemonths': 'Price / Tangible Book Value (P/TB)', 'SCREENER_FIELD_lastclosetevebit.lasttwelvemonths': 'Total Enterprise Value (TEV) / EBIT', 'SCREENER_FIELD_lastclosetevebitda.lasttwelvemonths': 'Total Enterprise Value (TEV) / EBITDA', 'SCREENER_FIELD_lastclosetevtotalrevenue.lasttwelvemonths': 'Total Enterprise Value / Total Revenue (EV/Sales)', 'SCREENER_FIELD_leveredfreecashflow.lasttwelvemonths': 'Levered (after expenses) Free Cash Flow', 'SCREENER_FIELD_leveredfreecashflow1yrgrowth.lasttwelvemonths': '1 yr. % Change in Levered Free Cash Flow', 'SCREENER_FIELD_ltdebtequity.lasttwelvemonths': 'Long Term Debt / Equity (LT D/E) %', 'SCREENER_FIELD_mapped_rating_current': 'Current Rating', 'SCREENER_FIELD_marketcapitalvaluelong': 'Market Capital Value - Long', 'SCREENER_FIELD_morningstar_economic_moat': 'Economic Moat', 'SCREENER_FIELD_morningstar_last_close_price_to_fair_value': 'Morningstar Last Close Price / Fair Value', 'SCREENER_FIELD_morningstar_moat_trend': 'Moat Trend', 'SCREENER_FIELD_morningstar_rating': 'Morningstar Rating', 'SCREENER_FIELD_morningstar_rating_change': 'Morningstar Rating Change', 'SCREENER_FIELD_morningstar_rating_updated_time': 'Morningstar Rating Updated Time', 'SCREENER_FIELD_morningstar_stewardship': 'Stewardship', 'SCREENER_FIELD_morningstar_uncertainty': 'Uncertainty Rating', 'SCREENER_FIELD_netdebtebitda.lasttwelvemonths': 'Net Debt / EBITDA', 'SCREENER_FIELD_netepsbasic.lasttwelvemonths': 'EPS (Basic)', 'SCREENER_FIELD_netepsdiluted.lasttwelvemonths': 'EPS (Diluted)', 'SCREENER_FIELD_netincome1yrgrowth.lasttwelvemonths': '1 Yr. % Change in Net Income', 'SCREENER_FIELD_netincomeis.lasttwelvemonths': 'Net Income', 'SCREENER_FIELD_netincomemargin.lasttwelvemonths': 'Net Income Margin %', 'SCREENER_FIELD_netincometocommonexclextraitems.lasttwelvemonths': 'Net Income to Common Excl. Extra Items (LTM)', 'SCREENER_FIELD_changeInSharesHeldByInstitutions': 'Change in Shares Held', 'SCREENER_FIELD_number_of_institutional_buyers': 'No. of Buyers', 'SCREENER_FIELD_number_of_institutional_sellers': 'No. of Sellers', 'SCREENER_FIELD_numOfSharesBoughtByInstitutions': 'No. of Shares Bought', 'SCREENER_FIELD_numOfSharesSoldByInstitutions': 'No. of Shares Sold', 'SCREENER_FIELD_offerprice': 'Price', 'SCREENER_FIELD_open_interest': 'Open Interest', 'SCREENER_FIELD_operatingcashflowtocurrentliabilities.lasttwelvemonths': 'Operating Cash Flow Ratio', 'SCREENER_FIELD_operatingincome.lasttwelvemonths': 'Operating Income', 'SCREENER_FIELD_optionable': 'Optionable?', 'SCREENER_FIELD_originally_reported_actual': 'Revised from', 'SCREENER_FIELD_ownership_percent': 'Ownership %', 'SCREENER_FIELD_lastReportDate': 'Last Report Date', 'SCREENER_FIELD_payable_on': 'Payable on', 'SCREENER_FIELD_pctheldinsider': '% of Shares Outstanding Held by Insiders', 'SCREENER_FIELD_pctheldinst': '% of Shares Outstanding Held by Institutions', 'SCREENER_FIELD_percent_change_in_shares_held': '% Change in Shares Held', 'SCREENER_FIELD_peer_group': 'Peer Group', 'SCREENER_FIELD_pegratio_5y': 'Price / Earnings to Growth (P/E/G)', 'SCREENER_FIELD_peratio.annual': 'Trailing P/E (ANNUAL)', 'SCREENER_FIELD_peratio.lasttwelvemonths': 'Trailing P/E', 'SCREENER_FIELD_peratio.quarterly': 'Trailing P/E (QUARTERLY)', 'SCREENER_FIELD_peratio.yeartodate': 'Trailing P/E (YTD)', 'SCREENER_FIELD_percentchange': '% Change in Price (Intraday)', 'SCREENER_FIELD_percent_change_in_number_of_institutional_holders': '% Change in no. of Holders', 'SCREENER_FIELD_percent_change_in_ownership': '% Change in Ownership', 'SCREENER_FIELD_percent_change_in_shares_held_by_funds': '% Change in Shares Held', 'SCREENER_FIELD_percent_in_funds_holding': 'No. of Holders %', 'SCREENER_FIELD_percent_in_top_ten_holdings': '% in Top 10 Holdings', 'SCREENER_FIELD_percent_of_shares_outstanding': '% of Shares Outstanding Held', 'SCREENER_FIELD_percent_of_shares_outstanding_bought_by_institutions': '% of Shares Outstanding Bought', 'SCREENER_FIELD_percent_of_shares_outstanding_sold_by_institutions': '% of Shares Outstanding Sold', 'SCREENER_FIELD_percentOfSharesOutHeldByInstitutions': '% of Shares Outstanding Held', 'SCREENER_FIELD_performanceratingoverall': 'Morningstar Performance Rating Overall', 'SCREENER_FIELD_period': 'For', 'SCREENER_FIELD_pricePeriod': 'Price Period', 'SCREENER_FIELD_priceToBook': 'Price/Book', 'SCREENER_FIELD_price_target_action': 'Price Target Action', 'SCREENER_FIELD_price_target_percent_change': 'Upside/Downside %', 'SCREENER_FIELD_pricebookratio.annual': 'Price/Book (ANNUAL)', 'SCREENER_FIELD_pricebookratio.lasttwelvemonths': 'Price/Book (LTM)', 'SCREENER_FIELD_pricebookratio.quarterly': 'P/B (most recent quarter - mrq)', 'SCREENER_FIELD_pricebookratio.yeartodate': 'Price/Book (YTD)', 'SCREENER_FIELD_priceto': 'Price Range', 'SCREENER_FIELD_prior_release_actual': 'Prior to This', 'SCREENER_FIELD_quarter': 'Quarter', 'SCREENER_FIELD_quarterendtrailingreturnytd': 'Quarter End Trailing Return YTD %', 'SCREENER_FIELD_quarterlyrevenuegrowth.annual': 'Quarterly Revenue Growth (ANNUAL)', 'SCREENER_FIELD_quarterlyrevenuegrowth.lasttwelvemonths': 'Quarterly Revenue Growth (LTM)', 'SCREENER_FIELD_quarterlyrevenuegrowth.quarterly': 'Quarterly Revenue Growth YoY %', 'SCREENER_FIELD_quarterlyrevenuegrowth.yeartodate': 'Quarterly Revenue Growth (YTD)', 'SCREENER_FIELD_quickratio.lasttwelvemonths': 'Quick Ratio', 'SCREENER_FIELD_rank_us': 'US Rank', 'SCREENER_FIELD_rating_action': 'Rating Change', 'SCREENER_FIELD_rating_date': 'Date Range', 'SCREENER_FIELD_ratingoverall': 'Morningstar Rating Overall', 'SCREENER_FIELD_region': 'Region', 'SCREENER_FIELD_regularMarketDayRange': 'Day Range', 'SCREENER_FIELD_reportedeps': 'Reported EPS', 'SCREENER_FIELD_researchanddevelopmentexpensefromfootnotes.lasttwelvemonths': 'Research And Development Expense From Footnotes (LTM)', 'SCREENER_FIELD_returnonassets.lasttwelvemonths': 'Return on Assets %', 'SCREENER_FIELD_returnonequity.annual': 'Return on Equity (ANNUAL)', 'SCREENER_FIELD_returnonequity.lasttwelvemonths': 'Return On Equity %', 'SCREENER_FIELD_returnonequity.quarterly': 'Return on Equity (QUARTERLY)', 'SCREENER_FIELD_returnonequity.yeartodate': 'Return on Equity (YTD)', 'SCREENER_FIELD_returnontotalcapital.lasttwelvemonths': 'Return on Total Capital %', 'SCREENER_FIELD_revenue.annual': 'Revenue (ANNUAL)', 'SCREENER_FIELD_revenue.lasttwelvemonths': 'Revenue (LTM)', 'SCREENER_FIELD_revenue.quarterly': 'Revenue (QUARTERLY)', 'SCREENER_FIELD_revenue.yeartodate': 'Revenue (YTD)', 'SCREENER_FIELD_revenue_consistency': 'Revenue Consistency', 'SCREENER_FIELD_revenuepershare.lasttwelvemonths': 'Revenue Per Share (LTM)', 'SCREENER_FIELD_riskratingoverall': 'Morningstar Risk Rating Overall', 'SCREENER_FIELD_ror_percent': 'Est. Rate of Return (%)', 'SCREENER_FIELD_sector': 'Sector', 'SCREENER_FIELD_sgandamargin.lasttwelvemonths': 'SG&A Margin (LTM)', 'SCREENER_FIELD_share_worth': 'Ratio', 'SCREENER_FIELD_shares': 'Shares', 'SCREENER_FIELD_sharesperdepositoryreceiptnonprimarycompanies.lasttwelvemonths': 'Shares per Depository Receipt (Non-Primary Companies) (LTM)', 'SCREENER_FIELD_sharesperdepositoryreceiptprimarycompanies.lasttwelvemonths': 'Shares per Depository Receipt (Primary Companies) (LTM)', 'SCREENER_FIELD_short_interest.value': 'Short Interest', 'SCREENER_FIELD_short_interest_percentage_change.value': 'Short Interest % Change', 'SCREENER_FIELD_short_percentage_of_float.value': 'Short % of Float', 'SCREENER_FIELD_short_percentage_of_shares_outstanding.value': 'Short % of Shares Outstanding', 'SCREENER_FIELD_sma200': '200 Day Moving Average', 'SCREENER_FIELD_sma50': '50 Day Moving Average', 'SCREENER_FIELD_social_score': 'Social Score', 'SCREENER_FIELD_sparkline': '1 Day Chart', 'SCREENER_FIELD_splitscount': 'Stock Splits', 'SCREENER_FIELD_startdatetime': 'Event Time', 'SCREENER_FIELD_startdatetimetype': 'Earnings Call Time', 'SCREENER_FIELD_surprisepercent': 'Surprise (%)', 'SCREENER_FIELD_targetPricePercentMove': 'Expected Price % Move', 'SCREENER_FIELD_ticker': 'Symbol', 'SCREENER_FIELD_tickersharesoutstanding': 'Ticker Shares Outstanding', 'SCREENER_FIELD_top_fund_holder_names': \"Fund Name (Stock in Fund's top 10 Holdings)\", 'SCREENER_FIELD_totalassets.lasttwelvemonths': 'Total Assets', 'SCREENER_FIELD_totalcapitalratio.lasttwelvemonths': 'Total Capital - (Ratio) (LTM)', 'SCREENER_FIELD_totalcashandshortterminvestments.lasttwelvemonths': 'Total Cash And Short Term Investments', 'SCREENER_FIELD_totalcommonequity.lasttwelvemonths': 'Total Common Equity', 'SCREENER_FIELD_totalcommonsharesoutstanding.lasttwelvemonths': 'Total Common Shares Outstanding', 'SCREENER_FIELD_totalcurrentassets.lasttwelvemonths': 'Total Current Assets', 'SCREENER_FIELD_totalcurrentliabilities.lasttwelvemonths': 'Total Current Liabilities', 'SCREENER_FIELD_totaldebt.lasttwelvemonths': 'Total Debt', 'SCREENER_FIELD_totaldebtebitda.lasttwelvemonths': 'Total Debt / EBITDA', 'SCREENER_FIELD_totaldebtequity.lasttwelvemonths': 'Debt / Equity (D/E) %', 'SCREENER_FIELD_total_equity_asset': 'Asset Under Management', 'SCREENER_FIELD_totalequity.lasttwelvemonths': 'Total Equity', 'SCREENER_FIELD_totalrevenues.lasttwelvemonths': 'Total Revenue', 'SCREENER_FIELD_totalrevenues1yrgrowth.lasttwelvemonths': '1 Yr. % Change in Total Revenue', 'SCREENER_FIELD_totalsharesoutstanding': 'Total Shares Outstanding', 'SCREENER_FIELD_totalsharesoutstandingonfilingdate.lasttwelvemonths': 'Total Shares Outstanding on Filing Date (LTM)', 'SCREENER_FIELD_tradeType': 'Outlook', 'SCREENER_FIELD_trading_central_last_close_price_to_fair_value': 'Last Close Price / Fair Value', 'SCREENER_FIELD_tradingHorizon': 'Time Frame', 'SCREENER_FIELD_trailing_3m_return': 'Trailing 3M Return %', 'SCREENER_FIELD_trailing_ytd_return': 'Trailing YTD Return %', 'SCREENER_FIELD_transactiondate': 'Transaction date', 'SCREENER_FIELD_trendChangeType': 'Trend Change Type', 'SCREENER_FIELD_turnoverratio': 'Turnover Ratio', 'SCREENER_FIELD_underlying_symbol': 'Underlying Symbol', 'SCREENER_FIELD_unleveredfreecashflow.lasttwelvemonths': 'Unlevered (before expenses) Free Cash Flow', 'SCREENER_FIELD_value_description': 'Valuation', 'SCREENER_FIELD_volume24Hr': 'Volume in Currency (24Hr)', 'SCREENER_FIELD_volumeAllCurrencies': 'Total Volume All Currencies (24Hr)', 'SCREENER_FIELD_years_of_consecutive_positive_eps': 'Years of Consecutive Positive EPS', 'SCREENER_FILTER_EMPTY_TEXT': \"Enter criteria and click 'Find {type}' to see the matching stocks\", 'SCREENER_INSIDER_TITLE': 'Insider Transactions', 'SCREENER_MATCH_RESULTS': 'Matching {text}', 'SCREENER_MATCH_RESULTS_INSIDER': 'Insider & Restricted Shareholder Transactions', 'SCREENER_NEW_TITLE': 'New Untitled Screener', 'SCREENER_NEW_UNSAVED_TITLE': 'New Unsaved Screener*', 'SCREENER_NOTICE_SCR_SAVE_FAIL': \"Unable to save criteria as '{name}'. Please try saving it again.\", 'SCREENER_NOTICE_SCR_SAVE_SUCCESS': \"Screener '{name}' is created successfully.\", 'SCREENER_NOTICE_STOCK_ADD_FAIL': \"Failed to add {count} selected stocks to '{list}'\", 'SCREENER_NOTICE_STOCK_ADD_SUCCESS': \"{count} selected stocks were added to '{list}'\", 'SCREENER_NOTICE_UNSAVED_SCR': 'expires in a few days, please save your screener.', 'SCREENER_NOT_SIGNEDIN': ' to view your saved screeners.', 'SCREENER_OP_BTWN': 'between', 'SCREENER_OP_EQ': 'equals', 'SCREENER_OP_GT': 'greater than', 'SCREENER_OP_GTE': 'greater than or equal', 'SCREENER_OP_IS': 'is', 'SCREENER_OP_LT': 'less than', 'SCREENER_REMOVE_FIELD': 'Remove {fieldId}', 'SCREENER_RESULTS': 'Screener Results', 'SCREENER_RESULTS_OUT_OF_SYNC': \"Please click 'Find {type}' to get updated results.\", 'SCREENER_RESULTS_TRY_AGAIN': \"Please try 'Find' again.\", 'SCREENER_RESULT_NOTICE': 'Results were generated a few mins ago. Pricing data is updated frequently. Currency in {currency}', 'SCREENER_SIGN_IN_SAVE': 'Sign in to save your screener', 'SCREENER_SORT_RESULT_TEXT': 'Sort results by {sortField} in {sortType}', 'SCREENER_TITLE_PLACEHOLDER': 'Name your screener', 'SCREENER_TOP_RESULTS': 'Top {text}', 'SCREENER_US_EXCHANGES': 'All US stock exchanges', 'SEARCH_COLUMNS': 'Search Columns', 'SEARCH_COMPARE': 'Search for symbols to compare', 'SEARCH_FEEDBACK_CURRENT_MSG': 'Give feedback on the search experience', 'SEARCH_FEEDBACK_MSG': 'Give feedback on the new search experience', 'SEARCH_INDICATORS': 'Search indicators', 'SEARCH_PRIVATE_COMPANIES_PROMOTION': 'Now you can search stock related news and private companies such as Airbnb.', 'SEARCH_RESULTS': 'Search Results', 'SEARCH_RESULTS_MULTIQUOTES': 'My List', 'SEARCH_SCREENER_LINK': 'Screener for stocks & more', 'SEARCH_SYMBOL_COMPANY': 'Search symbols or companies', 'SEARCH_TIP': 'Tip: Try a valid symbol or a specific company name for relevant results', 'SEC_FILINGS': 'SEC Filings', 'SEC_FILINGS_FOR_TICKER': 'SEC Filings for {companyName} ({symbol})', 'SECTOR': 'Sector(s)', 'SECTOR_ANALYSIS': 'Sector analysis', 'SECTOR_AVERAGE': 'Sector average', 'SEC_FILING_DATA_SOURCE': \"Data sourced from the SEC's public EDGAR database\", 'SECTOR_INDUSTRY': 'Sector & Industry', 'SECTOR_MEDIAN': 'Sector median', 'SECTOR_SUMMARY': 'Sector Summary', 'SECTOR_WEIGHTINGS': 'Sector Weightings (%)', 'SECURITIES_ACTIVITIES': 'Securities Activities', 'SECURITIES_AMORTIZATION': 'Securities Amortization', 'SECURITIES_LENDING_COLLATERAL': 'Securities Lending Collateral', 'SECURITIES_LOANED': 'Securities Loaned', 'SECURITY_AGREE_TO_BE_RESELL': 'Security Agree to be Resold', 'SECURITY_BORROWED': 'Security Borrowed', 'SECURITY_PROTECTION_SERVICES': 'Security & Protection Services', 'SECURITY_PROTECTION_SERVICES_DESC': 'Security & Protection Services Stocks', 'SECURITY_SOFTWARE_SERVICES': 'Security Software & Services', 'SECURITY_SOFTWARE_SERVICES_DESC': 'Security Software & Services Stocks', 'SECURITY_SOLD_NOT_YET_REPURCHASED': 'Security Sold Not Yet Repurchased', 'SEE_ALL': 'See All', 'SEE_FULL_PROFILE': 'See Full Profile', 'SEE_IT': 'See it', 'SEE_MORE_STATS': 'See more stats', 'SEE_WHY': 'See why', 'SELECT': 'Select', 'SELECTED': 'Selected', 'SELECTED_LISTS': 'Selected Lists', 'SELECT_ALL': 'Select All', 'SELECT_AN_ACTION_BELOW': 'Select an action below', 'SELECT_DATA_COLUMNS_TO_DISPLAY': 'Select Data Columns to Display', 'SELECT_LISTS': 'Select Lists', 'SELECT_TIME_UNIT': 'Select Time Unit', 'SELL': 'Sell', 'SELL_SHORT': 'Sell Short', 'SELLING_AND_MARKETING_EXPENSE': 'Selling & Marketing Expense', 'SELLING_GEN_ADMIN': 'Selling General and Administrative', 'SEMICONDUCTOR_BROAD_LINE': 'Semiconductor - Broad Line', 'SEMICONDUCTOR_BROAD_LINE_DESC': 'Semiconductor - Broad Line Stocks', 'SEMICONDUCTOR_EQUIPMENT_MATERIALS': 'Semiconductor Equipment & Materials', 'SEMICONDUCTOR_EQUIPMENT_MATERIALS_DESC': 'Semiconductor Equipment & Materials Stocks', 'SEMICONDUCTOR_INTEGRATED_CIRCUITS': 'Semiconductor - Integrated Circuits', 'SEMICONDUCTOR_INTEGRATED_CIRCUITS_DESC': 'Semiconductor - Integrated Circuits Stocks', 'SEMICONDUCTOR_MEMORY_CHIPS': 'Semiconductor- Memory Chips', 'SEMICONDUCTOR_MEMORY_CHIPS_DESC': 'Semiconductor- Memory Chips Stocks', 'SEMICONDUCTOR_SPECIALIZED': 'Semiconductor - Specialized', 'SEMICONDUCTOR_SPECIALIZED_DESC': 'Semiconductor - Specialized Stocks', 'SEND': 'Send', 'SENTIMENT_MSG_HELP': 'Neutral range is -14 to +5 while there is no limit on positive and negative ranges.', 'SENTIMENT_MSG_N': 'Neutral', 'SENTIMENT_MSG_NG': 'Negative', 'SENTIMENT_MSG_NG_TO_N': 'Negative to Neutral', 'SENTIMENT_MSG_NG_TO_P': 'Negative to Positive', 'SENTIMENT_MSG_N_TO_NG': 'Neutral to Negative', 'SENTIMENT_MSG_N_TO_P': 'Neutral to Positive', 'SENTIMENT_MSG_P': 'Positive', 'SENTIMENT_MSG_P_TO_N': 'Positive to Neutral', 'SENTIMENT_MSG_P_TO_NG': 'Positive to Negative', 'SEPARATE_ACCOUNT_ASSETS': 'Separate Account Assets', 'SEPARATE_ACCOUNT_BUSINESS': 'Separate Account Business', 'SERVER_URL': 'Server Url', 'SERVICES': 'Services', 'SERVICES-ET-DISTRIBUTION_TITLE': 'Retail', 'SERVICES_DESC': 'Services Stocks', 'SERVICE_CHARGE_ON_DEPOSITOR_ACCOUNTS': 'Service Charge on Depositor Accounts', 'SERVICOS-DIVERSOS_TITLE': 'Other services', 'SERVIZI-AL-CONSUMO_TITLE': 'Consumer Products & Media', 'SERVIZI-PUBBLICI_TITLE': 'Public Services', 'SETTINGS': 'Settings', 'SETTLEMENT_DATE': 'Settlement Date', 'SEVERE': 'Severe', 'SHARE': 'Share', 'SHARE_LIST': 'Share list', 'SHARES': 'Shares', 'SHARES_FLOAT': 'Float', 'SHARES_NUMBER': '{shares} shares', 'SHARES_OUTSTANDING': 'Shares Outstanding', 'SHARES_OWNED_AS_OF_TRANSACTION_DATE': 'Shares Owned as of Transaction Date', 'SHARES_PERCENT_SHARES_OUT': 'Short % of Shares Outstanding {date}', 'SHARES_SHORT': 'Shares Short {date}', 'SHARES_SHORT_PRIOR_MONTH': 'Shares Short (prior month {date})', 'SHARE_CHART': 'Share Chart', 'SHARE_ISSUED': 'Share Issued', 'SHARE_LINK': 'Or share this link', 'SHARE_LOTS': 'Share Lots', 'SHARE_MENU': 'Share Menu', 'SHARE_STATISTICS': 'Share Statistics', 'SHARPE_RATIO': 'Sharpe Ratio', 'SHIPPING': 'Shipping', 'SHIPPING_DESC': 'Shipping Stocks', 'SHOPPEN_TITLE': 'Shoppen', 'SHORT_CURRENT_LONG_TERM_DEBT': 'Short/Current Long Term Debt', 'SHORT_INTEREST': 'Short Interest', 'SHORT_PERCENT_OF_FLOAT': 'Short % of Float {date}', 'SHORT_RATIO': 'Short Ratio {date}', 'SHORT_RATIO_RAW': 'Short Ratio', 'SHORT_TERM_DEBT_ISSUANCE': 'Short Term Debt Issuance', 'SHORT_TERM_DEBT_PAYMENTS': 'Short Term Debt Payments', 'SHORT_TERM_INVESTMENTS_AVAILABLE_FOR_SALE': 'Short Term Investments Available for Sale', 'SHORT_TERM_INVESTMENTS_HELD_TO_MATURITY': 'Short Term Investments Held to Maturity', 'SHORT_TERM_INVESTMENTS_TRADING': 'Short Term Investments Trading', 'SHOW': 'Show', 'SHOW_ALL': 'Show all', 'SHOW_ALL_RECENT_EVENTS': 'Show All Events', 'SHOW_ALL_RESULTS_FOR': 'Show all results for {query}', 'SHOW_CROSSHAIR': 'Show crosshair', 'SHOW_EARNINGS_FOR': 'Showing Earnings for: {symbol}', 'SHOW_INFO': 'Show Info', 'SHOW_LESS': 'Show less', 'SHOW_LESS_LIST': 'Show less lists', 'SHOW_LESS_ADS': 'Show less ads like this', 'SHOW_LINES': 'Show lines:', 'SHOW_MORE': 'Show more', 'SHOW_MORE_LIST': 'Show more lists', 'SHOW_MORE_ADS': 'Show more ads like this', 'SHOW_N_ROWS': 'Show {count} rows', 'SHOW_OHLC': 'Show OHLC', 'SHOW_SHORTCUTS': 'Show shortcuts/hotkeys', 'SHOW_TOOLTIP': 'Show Tooltip', 'SHOWING_CASH': 'Showing {first}-{last} of {total} total cash holdings', 'SHOWING_DIVIDENDS': 'Showing {first}-{last} of {total} total dividends', 'SHOWING_LOTS': 'Showing {first}-{last} of {total} total lots', 'SHOWING_TRANSACTIONS': 'Showing {first}-{last} of {total} total transactions', 'SIGNALS': 'Signals', 'SIGNIFICANT': 'Significant', 'SIGNIFICANT_DEVELOPMENT': 'Premium Significant Development', 'SIGNIFICANT_DEVELOPMENTS': 'Significant Developments', 'SIGN_IN': 'Sign In', 'SIGN_IN_AGAIN': 'Sign in again', 'SIGN_IN_TO_VOTE': 'Sign in to cast your vote', 'SIGN_IN_TO_ADD_WATCHLIST': 'Sign in to add to watchlist', 'SIGN_IN_TO_ADD_WATCHLIST_TO_TICKER': 'Sign in to never miss news about {companyName}', 'SIGN_IN_TO_FOLLOW_WATCHLIST': 'Sign in to follow this watchlist', 'SIGN_IN_TO_SEE_LIVESTREAM': 'Sign in to watch live stream', 'SIGN_OUT_ALL': 'Sign out all', 'SIGN_UP_PREMIUM': 'Sign up for Yahoo Finance Premium to get access to this insight', 'SIGN_UP_YAHOO_FINANCE_PLUS': 'Sign up for Yahoo Finance Plus to get access to this insight', 'SIGNUP_FORM_LIVESTREAM_TITLE': 'Sign up as a Yahoo Finance Livestreamer', 'SIG_INV_AREAS': 'Product Involvement Areas', 'SILVER': 'Silver', 'SILVER_DESC': 'Silver Stocks', 'SIMILAR_STOCKS': 'Similar stocks', 'SIMILAR_SYMBOLS': \"Symbols similar to '{symbol}'\", 'SIMILAR_TO': 'Similar to {symbol}', 'SINGAPORE': 'Singapore', 'SMALL_BUSINESS_TITLE': 'Small Business', 'SMALL_CAP_GAINERS': 'Small cap gainers', 'SMALL_CAP_GAINERS_DESC': 'Small Caps with a 1 day price change of 5.0% or more.', 'SMALL_TOOLS_ACCESSORIES': 'Small Tools & Accessories', 'SMALL_TOOLS_ACCESSORIES_DESC': 'Small Tools & Accessories Stocks', 'SOCIAL': 'Social Risk Score', 'SOFTWARE_SERVICES_TITLE': 'Computer Software & Services', 'SOLID_LARGE_GROWTH_FUNDS': 'Solid Large Growth Funds', 'SOLID_LARGE_GROWTH_FUNDS_DESC': 'Large Growth Funds with Performance Rating of 4 & 5 and top-half returns', 'SOLID_MIDCAP_GROWTH_FUNDS': 'Solid Mid-Cap Growth Funds', 'SOLID_MIDCAP_GROWTH_FUNDS_DESC': 'Mid-Cap Growth Funds with Performance Rating of 4 & 5 and top-half returns', 'SORT': 'Sort', 'SP500': 'S&P 500', 'SP500_52_WEEK_CHANGE': 'S&P500 52-Week Change', 'SPAIN': 'Spain', 'SPECIALIZED_HEALTH_SERVICES': 'Specialized Health Services', 'SPECIALIZED_HEALTH_SERVICES_DESC': 'Specialized Health Services Stocks', 'SPECIALTY_CHEMICALS': 'Specialty Chemicals', 'SPECIALTY_CHEMICALS_DESC': 'Specialty Chemicals Stocks', 'SPECIALTY_EATERIES': 'Specialty Eateries', 'SPECIALTY_EATERIES_DESC': 'Specialty Eateries Stocks', 'SPECIALTY_RETAIL_OTHER': 'Specialty Retail, Other', 'SPECIALTY_RETAIL_OTHER_DESC': 'Specialty Retail, Other Stocks', 'SPECIAL_INCOME_CHARGES': 'Special Income Charges', 'SPECIAL_REPORT': 'Special report', 'SPLIT': 'Stock Split', 'SPONSORED': 'Sponsored', 'SPORTING_ACTIVITIES': 'Sporting Activities', 'SPORTING_ACTIVITIES_DESC': 'Sporting Activities Stocks', 'SPORTING_GOODS': 'Sporting Goods', 'SPORTING_GOODS_DESC': 'Sporting Goods Stocks', 'SPORTING_GOODS_STORES': 'Sporting Goods Stores', 'SPORTING_GOODS_STORES_DESC': 'Sporting Goods Stores Stocks', 'SPORTSBOOK_TITLE': 'Sportsbook', 'STAFFING_OUTSOURCING_SERVICES': 'Staffing & Outsourcing Services', 'STAFFING_OUTSOURCING_SERVICES_DESC': 'Staffing & Outsourcing Services Stocks', 'STANDARD_DEVIATION': 'Standard Deviation', 'START_DATE': 'Start Date', 'START_LIVESTREAM': 'Start Livestream', 'STATUS_DESCRIPTION': 'An Open status indicates you hold shares for this position. A Closed status indicates you no longer own any shares for this position (but previously have). A No Shares status indicates you do not currently and previously have not owned shares for this position.', 'STOP_LIVESTREAM': 'Stop Livestream', 'CRYPTO_START_TRADING_NOW': 'Start trading cryptos now', 'STATISTICS': 'Statistics', 'STATISTICS_HELP': 'Statistics Help', 'STEEL_IRON': 'Steel & Iron', 'STEEL_IRON_DESC': 'Steel & Iron Stocks', 'STICKY_CROSSHAIR': 'Sticky crosshair', 'STOCKHOLDERS_EQUITY': \"Stockholders' Equity\", 'STOCKS': 'Stocks', 'STOCK_BASED_COMPENSATION': 'Stock based compensation', 'STOCK_PRICE': 'Stock Price', 'STOCK_PRICE_HISTORY': 'Stock Price History', 'STOCK_SPLITS': 'Stock Splits', 'STOCKS_MOST_BOUGHT_BY_HEDGE_FUNDS': 'Stocks Most Bought by Hedge Funds', 'STOCKS_MOST_BOUGHT_BY_PENSION_FUND': 'Stocks Most Bought by Pension Fund', 'STOCKS_MOST_BOUGHT_BY_PRIVATE_EQUITY': 'Stocks Most Bought by Private Equity', 'STOCKS_MOST_BOUGHT_BY_SOVEREIGN_WEALTH_FUND': 'Stocks Most Bought by Sovereign Wealth Fund', 'STOCKS_WITH_MOST_INSTITUTIONAL_BUYERS': 'Stocks with Most Institutional Buyers', 'STOCKS_WITH_MOST_INSTITUTIONAL_SELLERS': 'Stocks with Most Institutional Sellers', 'STOP_LOSS': 'Stop loss', 'STREAMING_QUOTES': 'Streaming Quotes', 'STRIKE': 'Strike', 'STRONG': 'Strong', 'STRONG_BUY': 'Strong Buy', 'STRONG_UNDERVALUED_STOCKS': 'Strong Undervalued Stocks', 'STRONG_UNDERVALUED_STOCKS_DESC': 'Undervalued stocks with a robust and consistent history of earnings and revenue growth.', 'SUBMIT': 'Submit', 'SUBORDINATED_LIABILITIES': 'Subordinated Liabilities', 'SUBSCRIBERS_PER_PERIOD': '{period} subscribers', 'SUMMARY': 'Summary', 'SUMMARY_COMPANY_PROFILE': 'Company Profile', 'SUNSET_WATIF': 'This watchlist will no longer be available after Sept. 29. Please copy the ticker symbols into a new portfolio if you wish to continue tracking them.', 'SUNSET_WATIFV2': 'This watchlist is no longer available. Please unfollow this watchlist to remove it from your portfolio. Click here to see other watchlists.', 'SUNSET_WATIFV3': 'This watchlist is no longer available. Please unfollow this watchlist to remove it from your portfolio. Click here to see a similar watchlist.', 'SUPPORT': 'Support', 'SURETY_TITLE_INSURANCE': 'Surety & Title Insurance', 'SURETY_TITLE_INSURANCE_DESC': 'Surety & Title Insurance Stocks', 'SURPRISE_PERCENT': 'Surprise %', 'SUSTAINABILITY': 'Sustainability', 'SUSTAINABILITY_NO_DATA_MESSAGE': 'Sustainability data is currently not available for {ticker}.', 'SYMBOLS': 'Symbols', 'SYMBOLS_WITH_COUNT': '{count} Symbols', 'SYMBOLS_WITH_NAME_COUNT': '{name} ({count} Symbols)', 'SYMBOL_ALONE': '{symbol}', 'SYMBOL_COUNT': '{count} symbols', 'SYNTHETICS': 'Synthetics', 'SYNTHETICS_DESC': 'Synthetics Stocks', 'TABLE_VIEW': 'Table View', 'TAGS_PLACEHOLDER': 'Help people find your livestream room', 'TAKE_THE_TOUR': 'Take the tour', 'TANGIBLE_BOOK_VALUE': 'Tangible Book Value', 'TAXES_PAYABLE': 'Taxes payable', 'TAXES_RECEIVABLE': 'Taxes Receivable', 'TAXES_REFUND_PAID': 'Taxes Refund Paid', 'TAXES_REFUND_PAID_DIRECT': 'Taxes Refund Paid Direct', 'TAX_EFFECT_OF_UNUSUAL_ITEMS': 'Tax Effect of Unusual Items', 'TAX_LOSS_CARRYFORWARD_BASIC_EPS': 'Tax Loss Carryforward Basic EPS', 'TAX_LOSS_CARRYFORWARD_DILUTED_EPS': 'Tax Loss Carryforward Diluted EPS', 'TAX_PROVISION': 'Tax Provision', 'TAX_RATE_FOR_CALCS': 'Tax Rate for Calcs', 'TD_200_DAY_AVERAGE': '200 Day Average', 'TD_50_DAY_AVERAGE': '50 Day Average', 'TD_52_WK_HIGH': '52 Week High', 'TD_52_WK_LOW': '52 Week Low', 'TD_52_WK_RANGE': '52 Week Range', 'TD_ADDED_DELETED': 'Add/Remove(7D)', 'TD_AMOUNT_PER_SHARE': 'Amount per share', 'TD_ANALYST_RATING': 'Avg. Analyst Rating', 'TD_ASK': 'Ask', 'TD_ASK_SIZE': 'Ask Size', 'TD_BID': 'Bid', 'TD_BID_SIZE': 'Bid Size', 'TD_BOOK_VALUE': 'Book Val', 'TD_BULLISH_BEARISH': 'Bullish/Bearish(7D)', 'TD_CASH_AMOUNT': 'Amount', 'TD_CHANGE': 'Change', 'TD_CHANGE_1D': 'Change(1D)', 'TD_CHANGE_1M': 'Change(1M)', 'TD_CURRENCY': 'Currency', 'TD_DATE_CREATED': 'Date Created', 'TD_DAY_AMOUNT_CHANGE': 'Day Change', 'TD_DAY_HIGH': 'Day High', 'TD_DAY_LOW': 'Day Low', 'TD_DAY_RANGE': 'Intraday High/Low', 'TD_DIVIDENDS_PER_SHARE': 'Dividends / Share', 'TD_DIVIDEND_PAYMENT_DATE': 'Dividend Payment Date', 'TD_DIVIDEND_YIELD': 'Dividend Yield', 'TD_EBITDA': 'EBITDA', 'TD_EPS': 'EPS', 'TD_EPS_TRAILING': 'EPS Trailing', 'TD_EXCHANGE': 'Exchange', 'TD_FOLLOWERS': 'Followers', 'TD_HIGH_LIMIT': 'High Limit', 'TD_LAST_TRADE_DATE': 'Last Trade Date', 'TD_LAST_UPDATED': 'Last Updated', 'TD_LIFETIME_PERCENT_CHANGE': 'Total Return', 'TD_LONG_TERM_GAIN_LOSS': 'Long Term Gain/Loss', 'TD_LOT': 'Lot', 'TD_LOTS': 'Lots', 'TD_LOT_VALUE': 'Lot Value', 'TD_LOW_LIMIT': 'Low Limit', 'TD_MARKET_CAP': 'Market Cap', 'TD_MARKET_TIME': 'Market Time', 'TD_MARKET_VALUE': 'Market Value', 'TD_NOTE': 'Note', 'TD_NOTES': 'Notes', 'TD_ONE_DAY_PERCENT_CHANGE': 'Change Today', 'TD_ONE_MONTH_PERCENT_CHANGE': '1 Month Return', 'TD_ONE_YEAR_PERCENT_CHANGE': '1 Year Return', 'TD_OPEN': 'Open', 'TD_PAYMENT_DATE': 'Payment Date', 'TD_PERCENT_CHANGE': '% Change', 'TD_POST_MARKET_CHANGE': 'Post-Market Change', 'TD_POST_MARKET_CHANGE_PERCENT': 'Post-Market % Change', 'TD_POST_MARKET_PRICE': 'Post-Market Price', 'TD_POST_MARKET_TIME': 'Post-Market Time', 'TD_PREV_CLOSE': 'Prev Close', 'TD_PRE_MARKET_CHANGE': 'Pre-Market Change', 'TD_PRE_MARKET_CHANGE_PERCENT': 'Pre-Market % Change', 'TD_PRE_MARKET_PRICE': 'Pre-Market Price', 'TD_PRE_MARKET_TIME': 'Pre-Market Time', 'TD_PRICE': 'Last Price', 'TD_PRICE_PAID_PER_SHARE': 'Price Paid', 'TD_PUBLISHER': 'Publisher', 'TD_SHARES': 'Shares', 'TD_SHARES_OUTSTANDING': 'Shares Out', 'TD_SHORT_TERM_GAIN_LOSS': 'Short Term Gain/Loss', 'TD_SPARKLINE': 'Day Chart', 'TD_STATUS': 'Status', 'TD_SYMBOL': 'Symbol', 'TD_SYMBOLS': 'Symbols', 'TD_THREE_MONTH': '3-Mo Return', 'TD_TODAYS_GAIN_UNREALIZED': \"Today's Gain (Unrealized)\", 'TD_TODAYS_RETURN': \"Today's Return\", 'TD_TOTAL_AMOUNT': 'Total Amount', 'TD_TOTAL_AMOUNT_CHANGE': 'Total Change', 'TD_TOTAL_COST': 'Total Cost', 'TD_TOTAL_DIVIDEND_INCOME': 'Total Dividend Income', 'TD_TOTAL_GAIN_UNREALIZED': 'Total Gain (Unrealized)', 'TD_TOTAL_PERCENT_CHANGE': 'Total % Change', 'TD_TOTAL_RETURN': 'Total Return', 'TD_TOTAL_TRADES': 'Total Trades', 'TD_TRADE_DATE': 'Trade Date', 'TD_VOLUME': 'Volume', 'TD_VOLUME_24HR': 'Volume (24hr)', 'TD_VOLUME_24HR_ALLCURRENCY': 'Volume (24hr) All Currencies', 'TD_VOLUME_IN_CURRENCY': 'Volume in Currency (Since 0:00 UTC)', 'TD_WATCHLIST': 'Watchlist', 'TECHNICAL': 'Technical', 'TECHNICALS': 'Technicals', 'TECHNICAL_ANALYSIS': 'Technical analysis', 'TECHNICAL_EVENTS': 'Technical Events', 'TECHNICAL_OUTLOOK': 'Technical Outlook', 'TECHNICAL_PATTERNS': 'Technical Patterns', 'TECHNICAL_SERVICES': 'Technical Services', 'TECHNICAL_SERVICES_DESC': 'Technical Services Stocks', 'TECHNICAL_SYSTEM_SOFTWARE': 'Technical & System Software', 'TECHNICAL_SYSTEM_SOFTWARE_DESC': 'Technical & System Software Stocks', 'TECHNOLOGY': 'Technology', 'TECHNOLOGY_DESC': 'Technology Stocks', 'TECH_TITLE': 'Technology', 'TECNOLOGIA_TITLE': 'Technology', 'TECNOLOGICAS_TITLE': 'Technology', 'TELECOMS_TITLE': 'Telecoms', 'TELECOMUNICACIONES-Y-TECNOLOGIA_TITLE': 'Telecommunications & Technology', 'TELECOMUNICACIONES_TITLE': 'Telecommunications', 'TELECOMUNICACOES-TECNOLOGIA_TITLE': 'Telecommunications & Technology', 'TELECOMUNICAZIONI_TITLE': 'Telecommunications', 'TELECOM_SERVICES_DOMESTIC': 'Telecom Services - Domestic', 'TELECOM_SERVICES_DOMESTIC_DESC': 'Telecom Services - Domestic Stocks', 'TELECOM_SERVICES_FOREIGN': 'Telecom Services - Foreign', 'TELECOM_SERVICES_FOREIGN_DESC': 'Telecom Services - Foreign Stocks', 'TELECOM_UTILITIES_TITLE': 'Telecom & Utilities', 'TEN_YEAR': '10-Year', 'TEN_YEAR_EXPENSE_PROJECTION': '10 Yr Expense Projection', 'TERM': 'Term', 'TERM_INTERMEDIATE': 'Intermediate', 'TERM_LONG': 'Long', 'TERM_MAP': ' - {period} term', 'TERM_SHORT': 'Short', 'TERMS_CONDITIONS': 'terms and conditions(required).', 'TERMS_COPY_INTRO': 'By clicking on \"Create livestream profile\" you agree as follows:', 'TEXT': 'Text', 'TEXTILE_APPAREL_CLOTHING': 'Textile - Apparel Clothing', 'TEXTILE_APPAREL_CLOTHING_DESC': 'Textile - Apparel Clothing Stocks', 'TEXTILE_APPAREL_FOOTWEAR_ACCESSORIES': 'Textile - Apparel Footwear & Accessories', 'TEXTILE_APPAREL_FOOTWEAR_ACCESSORIES_DESC': 'Textile - Apparel Footwear & Accessories Stocks', 'TEXTILE_INDUSTRIAL': 'Textile Industrial', 'TEXTILE_INDUSTRIAL_DESC': 'Textile Industrial Stocks', 'TEXTIL_TITLE': 'Textile', 'THEMATIC_REPORT': 'Thematic report', 'THEME': 'Theme', 'THOUSAND_SHORT': '{num}k', 'THREE_MONTH': '3-Month', 'THREE_YEAR': '3-Year', 'THREE_YEAR_AVERAGE_RETURN': '3y Average Return', 'THREE_YEAR_DTR': '3-Year Daily Total Return', 'THREE_YEAR_EARNINGS_GROWTH': '3 Year Earnings Growth', 'THREE_YEAR_EXPENSE_PROJECTION': '3 Yr Expense Projection', 'TICKER_SHARE_EMAIL_TITLE': 'My shared ticker list on Yahoo Finance', 'TIME': 'Time', 'TIME_PERIOD': 'Time Period', 'TITLE': 'Title', 'TITLE_PLACEHOLDER': \"Let your audience know what you're talking about\", 'TICKERS_PLACEHOLDER': 'Provide related information when your audience watches your livestream', 'TO': 'To', 'TOBACCO_PRODUCTS_OTHER': 'Tobacco Products, Other', 'TOBACCO_PRODUCTS_OTHER_DESC': 'Tobacco Products, Other Stocks', 'TODAY': 'Today', 'TODAY_GAIN_DESCRIPTION': 'Today’s Gain is the gain on a portfolio position for the most recent trading day.', 'TOP': 'Top', 'TOP_ETFS': 'Top ETFs', 'TOP_ETFS_DESC': 'ETFs with Performance Rating of 4 & 5 ordered by Percent Change', 'TOP_HOLDINGS': 'Top Holdings', 'TOP_HOLDINGS_QUOTES': 'Get Quotes for Top Holdings', 'TOP_HOLDINGS_WITH_ASSETS': 'Top {count} Holdings ({asset}% of Total Assets)', 'TOP_MUTUAL_FUNDS': 'Top Mutual Funds', 'TOP_MUTUAL_FUNDS_DESC': 'Funds with Performance Rating of 4 & 5 ordered by Percent Change', 'TOP_STOCKS_OWNED_BY_CATHIE_WOOD': 'Top Stocks owned by Cathie Wood', 'TOP_STOCKS_OWNED_BY_GOLDMAN_SACHS': 'Top Stocks owned by Goldman Sachs', 'TOP_STOCKS_OWNED_BY_RAY_DALIO': 'Top Stocks owned by Ray Dalio', 'TOP_STOCKS_OWNED_BY_WARREN_BUFFET': 'Top Stocks owned by Warren Buffet', 'TOP_STORIES_TITLE': 'Top Stories', 'TOP_TEN_COMPONENTS': 'Top {limit} Components', 'TOTAL_ASSETS': 'Total Assets', 'TOTAL_CAPITALIZATION': 'Total Capitalization', 'TOTAL_CASH': 'Total Cash', 'TOTAL_CASH_FLOW_FROM_FIN_ACT': 'Total Cash Flows From Financing Activities', 'TOTAL_CASH_FLOW_FROM_INVEST_ACT': 'Total Cash Flows From Investing Activities', 'TOTAL_CASH_FLOW_FROM_OP_ACT': 'Total Cash Flow From Operating Activities', 'TOTAL_CASH_HOLDINGS': 'Total Cash Holdings', 'TOTAL_CASH_HOLDINGS_DESCRIPTION': 'Total Cash Holdings is your total cash on hand.', 'TOTAL_CASH_PER_SHARE': 'Total Cash Per Share', 'TOTAL_CHANGE': 'Total Chg', 'TOTAL_CHANGE_PCT': 'Total Chg %', 'TOTAL_CURRENT_ASSETS': 'Total Current Assets', 'TOTAL_CURRENT_LIABILITIES': 'Total Current Liabilities', 'TOTAL_DEBT': 'Total Debt', 'TOTAL_DEBT_TO_EQUITY': 'Total Debt/Equity', 'TOTAL_DEFERRED_CREDITS_AND_OTHER_NON_CURRENT_LIABILITIES': 'Total Deferred Credits & Other Non Current Liabilities', 'TOTAL_DEPOSITS': 'Total Deposits', 'TOTAL_EMPLOYMENT': 'Total \\nEmployment', 'TOTAL_EQUITY_GROSS_MINORITY_INTEREST': 'Total Equity Gross Minority Interest', 'TOTAL_EXPENSES': 'Total Expenses', 'TOTAL_GAIN': 'Total Gain', 'TOTAL_GAIN_DESCRIPTION': 'Total gain is the gain on a portfolio position across the entire period the stock has been held for.', 'TOTAL_HOLDINGS': 'Total Holdings', 'TOTAL_INSIDER_SHARES_HELD': 'Total Insider Shares Held', 'TOTAL_INVESTMENTS': 'Total Investments', 'TOTAL_LIABILITIES': 'Total Liabilities', 'TOTAL_LIABILITIES_AND_STOCKHOLDERS_EQUITY': \"Total liabilities and stockholders' equity\", 'TOTAL_LIABILITIES_NET_MINORITY_INTEREST': 'Total Liabilities Net Minority Interest', 'TOTAL_MARKET_VALUE': 'Total Market Value', 'TOTAL_MONEY_MARKET_INVESTMENTS': 'Total Money Market Investments', 'TOTAL_NET_ASSETS': 'Total Net Assets', 'TOTAL_NON_CURRENT_ASSETS': 'Total non-current assets', 'TOTAL_NON_CURRENT_LIABILITIES': 'Total non-current liabilities', 'TOTAL_NON_CURRENT_LIABILITIES_NET_MINORITY_INTEREST': 'Total Non Current Liabilities Net Minority Interest', 'TOTAL_OPERATING_EX': 'Total Operating Expenses', 'TOTAL_OPERATING_INCOME_AS_REPORTED': 'Total Operating Income as Reported', 'TOTAL_OTHER_FINANCE_COST': 'Total Other Finance Cost', 'TOTAL_OTHER_INCOME_EXPENSES_NET': 'Total Other Income/Expenses Net', 'TOTAL_PARTNERSHIP_CAPITAL': 'Total Partnership Capital', 'TOTAL_PERCENT_GAIN': 'Total % Gain', 'TOTAL_PREMIUMS_EARNED': 'Total Premiums Earned', 'TOTAL_RETURN_DESCRIPTION': 'Total Return indicates the total gain for a particular stock or portfolio.', 'TOTAL_REVENUE': 'Total Revenue', 'TOTAL_STOCKHOLDER_EQUITY': \"Total stockholders' equity\", 'TOTAL_TAX_PAYABLE': 'Total Tax Payable', 'TOTAL_UNUSUAL_ITEMS': 'Total Unusual Items', 'TOTAL_UNUSUAL_ITEMS_EXCLUDING_GOODWILL': 'Total Unusual Items Excluding Goodwill', 'TOYS_GAMES': 'Toys & Games', 'TOYS_GAMES_DESC': 'Toys & Games Stocks', 'TOY_HOBBY_STORES': 'Toy & Hobby Stores', 'TOY_HOBBY_STORES_DESC': 'Toy & Hobby Stores Stocks', 'TRACK_WATCHLIST_PERFORMANCE': 'Track Watchlist Performance', 'TRADE': 'Trade', 'TRADEAND_OTHER_PAYABLES_NON_CURRENT': 'Tradeand Other Payables Non Current', 'TRADE_IDEA': 'Premium Investment Idea', 'TRADE_IDEAS': 'Investment Ideas', 'TRADE_TYPE': 'Trade type', 'TRADING_ASSETS': 'Trading Assets', 'TRADING_GAIN_LOSS': 'Trading Gain Loss', 'TRADING_INFORMATION': 'Trading Information', 'TRADING_LIABILITIES': 'Trading Liabilities', 'TRADING_SECURITIES': 'Trading Securities', 'TRAILING_ANNUAL_DIVIDEND_RATE': 'Trailing Annual Dividend Rate', 'TRAILING_ANNUAL_DIVIDEND_YIELD': 'Trailing Annual Dividend Yield', 'TRAILING_PERFORMANCE': 'Trailing Performance', 'TRAILING_RETURNS': 'Trailing Returns (%) Vs. Benchmarks', 'TRANS': 'Trans', 'TRANSACTION': 'Transaction', 'TRANSACTION_TYPE': 'Transaction Type', 'TRANSACTIONS': 'Transactions', 'TRANSACTION_DATAILS': 'Transaction Details', 'TRANSACTION_UPDATED_SUCCESSFULLY': 'Transaction for {symbol} updated successfully. ', 'TRAVEL_TITLE': 'Travel', 'TREASURY_SHARES_NUMBER': 'Treasury Shares Number', 'TREASURY_STOCK': 'Treasury Stock', 'TREE_MAP_COLOR': 'Color:', 'TREE_MAP_SIZE': 'Size:', 'TRADINGCENTRAL_EVENT': 'Technical Event Screener', 'TRENDING_TICKERS_TITLE': 'Trending Tickers', 'TRENDING_TICKERS_DESC': \"See what's trending now in the markets\", 'TRENDING_TODAY': 'Trending Today', 'TREYNOR_RATIO': 'Treynor Ratio', 'TRIGGER_ALERT': 'Price Alert', 'TRILLION_SHORT': '{num}T', 'TRUCKING': 'Trucking', 'TRUCKING_DESC': 'Trucking Stocks', 'TRUCKS_OTHER_VEHICLES': 'Trucks & Other Vehicles', 'TRUCKS_OTHER_VEHICLES_DESC': 'Trucks & Other Vehicles Stocks', 'TRUMPONOMICS_ABOUT_HEADER': 'About this report card', 'TRUMPONOMICS_DESCRIPTION': 'Yahoo Finance is tracking the performance of the economy under President Donald Trump, compared with six prior presidents going back to Jimmy Carter. We’ve chosen six key economic indicators that directly affect the well-being of ordinary Americans, with data provided by {moody}. Know more about {methodology}, and click on the articles below to get the latest updates.', 'TRUMPONOMICS_HEADER': 'Yahoo Finance Trumponomics Report Card', 'TRUMPONOMICS_LAST_UPDATED': 'Last Updated: {date}', 'TRUMPONOMICS_META_DESCRIPTION': 'Yahoo Finance is tracking the performance of the economy under President Donald Trump, compared with six prior presidents going back to Jimmy Carter.', 'TRUMPONOMICS_META_KEYWORDS': 'Trump, Donald Trump, President Trump, Jobs, Economy, Manufacturing, Unemployment, Income, Incomes, Wages, Earnings, Pay, Trade, Exports, Imports, Stocks, Stock market, GDP, Economic growth, Growth, Obama, Bush, Clinton, Reagan, Carter, Trumponomics, Trumpenomics, Trumpanomics, Middle class, Wealth, Inequality, Living standards', 'TRUMPONOMICS_META_TITLE': 'Yahoo Finance - Trumponomics Report Card', 'TRUMPONOMICS_METHODOLOGY': 'our methodology', 'TRUMPONOMICS_NO_COL_DATA': '(No data yet)', 'TRUMPONOMICS_NO_DATA': 'Trumponomics data is currently not available.', 'TRUMPONOMICS_RAW_DATA': 'View raw data.', 'TRUST_FEESBY_COMMISSIONS': 'Trust Fees by Commissions', 'TRY_AGAIN': 'Try again', 'TRY_BETA_PORTFOLIOS': 'Try the new Portfolio Beta experience', 'TRY_NEW_CHART': 'Try the new and improved charts', 'TRY_IT_FREE': 'Try it free', 'TRY_LATER': 'Try later', 'TRY_NOW': 'Try now', 'TTM': 'ttm', 'TUMBLR': 'Tumblr', 'TUMBLR_SHARE': 'Reblog', 'TURISMO-Y-SERVICIOS_TITLE': 'Tourism and Services', 'TWITTER': 'Twitter', 'TWITTER_SHARE': 'Tweet', 'TYPE': 'Type', 'UH_SEARCH_FIND': 'Find a quote (e.g. VZ)', 'UH_SEARCH_MOBILE_WEB': 'Quote Lookup', 'UH_SEARCH_MOBILE_WEB_V2': 'Search for news or symbols', 'UH_SEARCH_WEB': 'Search for news, symbols or companies', 'UNADJUSTED_CLOSE': 'Close*', 'UNBILLED_RECEIVABLES': 'Unbilled Receivables', 'UNDER': 'Under', 'UNDERPERFORM': 'Underperform', 'UNDERVALUED': 'Undervalued', 'UNDERVALUED_GROWTH_STOCKS': 'Undervalued Growth Stocks', 'UNDERVALUED_GROWTH_STOCKS_DESC': 'Stocks with earnings growth rates better than 25% and relatively low PE and PEG ratios.', 'UNDERVALUED_LARGE_CAPS': 'Undervalued Large Caps', 'UNDERVALUED_LARGE_CAPS_DESC': 'Large cap stocks that are potentially undervalued.', 'UNDERVALUED_WIDE_MOAT_STOCKS': 'Undervalued Wide-Moat Stocks', 'UNDERVALUED_WIDE_MOAT_STOCKS_DESC': \"Morningstar's undervalued stocks with a sustainable competitive advantage. A company with a wide economic moat can fend off competition for at least 20 years and earn high returns on capital for years to come.\", 'UNDERWRITING_EXPENSES': 'Underwriting Expenses', 'UNDO': 'Undo', 'UNEARNED_INCOME': 'Unearned Income', 'UNEARNED_PREMIUMS': 'Unearned Premiums', 'UNIT': 'Unit', 'UNITED_KINGDOM': 'United Kingdom', 'UNKNOWN_QUOTE_TITLE': \"The symbol {symbol} doesn't exist. Try looking again!\", 'UNLINK_BROKER': 'Unlink Broker', 'UNLINK_BROKER_CONFIRM': 'Unlink Broker?', 'UNPAID_LOSS_AND_LOSS_RESERVE': 'Unpaid Loss & Loss Reserve', 'UNREALIZED_GAINS_LOSSES_ON_DERIVATIVES': 'Unrealized Gains Losses On Derivatives', 'UNREALIZED_GAIN_LOSS': 'Unrealized Gain Loss', 'UNREALIZED_GAIN_LOSS_ON_INVESTMENT_SECURITIES': 'Unrealized Gain Loss On Investment Securities', 'UNSELECT_ALL': 'Unselect All', 'UP': 'Up', 'UPDATE_YOUR_HOLDINGS_MSG': 'Please update your holdings to utilize premium portfolio features', 'UPDATE_YOUR_HOLDINGS': 'Update your holdings', 'UPCOMING_EVENTS': 'Upcoming Events', 'UPGRADE': 'Upgrade', 'UPGRADES_DOWNGRADES': 'Upgrades & Downgrades', 'UPSIDE_BREAKOUT_STOCKS_DAILY': 'Upside Breakout Stocks', 'UP_LAST_30_DAYS': 'Up Last 30 Days', 'UP_LAST_7_DAYS': 'Up Last 7 Days', 'USERNAME': 'Username', 'USERNAME_PLACEHOLDER': 'Enter your username showed to your followers', 'USER_INSIGHTS_MOST_VISITED_DESCRIPTION': 'See what users are checking out for insights and trade inspiration.', 'USER_INSIGHTS_VISITS_TREND_UP': 'User visits are up', 'USER_INSIGHTS_VISITS_TREND_DOWN': 'User visits are down', 'USER_INSIGHTS_MOST_VISITED_TITLE': 'Frequently visited sectors and companies', 'USER_INSIGHTS_VISITS_LAST_7D': 'over the last 7 days.', 'USER_VISITS_TREND_POSITIVE': 'There has been a {percent} increase in visits over the last 7 days.', 'USER_VISITS_TREND_NEGATIVE': 'There has been a {percent} decrease in visits over the last 7 days.', 'US_AND_CANADA': 'US & Canada', 'UPDATE_YOUR_SETTINGS': 'Update your settings here to see it.', 'UTILITIES': 'Utilities', 'UTILITIES_DESC': 'Utilities Stocks', 'VALUATION': 'Valuation', 'VALUATION_MEASURES': 'Valuation Measures', 'VALUATION_METRIC': 'Valuation Metric', 'VALUE': 'Value', 'VALUES_AND_PRACTICES': 'Products and Activities', 'VALUE_DESCRIPTION': 'Value Description', 'VAREJO_TITLE': 'Retail', 'VERTICAL': 'Vertical', 'VIDEOS': 'Videos', 'VIDEOS_TITLE': 'Featured Videos', 'VIDEO_UNSUPPORTED': 'Video Player is not supported by your current browser version.', 'VIEW': 'View', 'VIEW_ALL': 'View all', 'VIEW_ALL_CONVERSATIONS': 'View all conversations', 'VIEW_ALL_CONVERSATIONS_WITH_AMOUNT': 'View all {amount} conversations', 'VIEW_ALL_MATCHES': 'View all {totalCount} matches', 'VIEW_ALL_TRADE_IDEAS': 'View all investment ideas', 'VIEW_CHART': 'View Chart', 'VIEW_CONTENT_PRIVACY_MSG': 'This content is not available due to your privacy preferences.', 'VIEW_DETAILS': 'View details', 'VIEW_FEWER_CASH': 'View fewer cash holdings', 'VIEW_FEWER_DIVIDENDS': 'View fewer dividends', 'VIEW_FEWER_SHARE_LOTS': 'View fewer lots', 'VIEW_FEWER_TRANSACTIONS': 'View fewer transactions', 'VIEW_FILING': 'View Filing', 'VIEW_IN_CHART': 'View in chart', 'VIEW_LIST_PREVIEW': 'See list preview', 'VIEW_MORE': 'View more', 'VIEW_LESS': 'View less', 'VIEW_MORE_RELATED_FILINGS': 'View more related filings', 'VIEW_MORE_SUGGESTED_STOCK': 'View more suggested stocks', 'VIEW_OLDER_CASH': 'View older cash holdings', 'VIEW_OLDER_DIVIDENDS': 'View older dividends', 'VIEW_OLDER_SHARE_LOTS': 'View older lots', 'VIEW_OLDER_TRANSACTIONS': 'View older transactions', 'VIEW_ORDERS': 'View Orders', 'VIEW_QUOTE_SUMMARY': 'Go to Quote Summary Page', 'VISITORS_TREND': 'Visitors trend', 'VISITS': 'Visits', 'VOLUME_RANGE': '{0} x {1}', 'WALLET': 'Wallet', 'WAS_THIS_HELPFUL': 'Was this helpful?', 'WASTE_MANAGEMENT': 'Waste Management', 'WASTE_MANAGEMENT_DESC': 'Waste Management Stocks', 'WATCHLISTS': 'Watchlists', 'WATCHLIST_BY': 'Watchlist by {brand}', 'WATCHLIST_SIGNIN': 'Sign-in to view your list and add symbols.', 'WATCHLIST_SIGNIN_AGAIN': 'Sign-in again to view your list.', 'WATER_PRODUCTION': 'Water Production', 'WATER_UTILITIES': 'Water Utilities', 'WATER_UTILITIES_DESC': 'Water Utilities Stocks', 'WAVE_TEMPLATE': 'Wave Template:', 'WEBSITE': 'Website', 'WELCOME_BACK_USER': 'Welcome back {userid}!', 'WEEKLY': 'Weekly', 'WEEK_AHEAD': 'Earnings This Week', 'WEEK_UPDATE_MSG': '{status} by {value} points week by week', 'WEIGHTED_AVG_SHARE': 'Weighted average shares outstanding', 'WHOLESALE_OTHER': 'Wholesale, Other', 'WHOLESALE_OTHER_DESC': 'Wholesale, Other Stocks', 'WIRELESS_COMMUNICATIONS': 'Wireless Communications', 'WIRELESS_COMMUNICATIONS_DESC': 'Wireless Communications Stocks', 'WITHDRAWALS': 'Withdrawals', 'WORKING_CAPITAL': 'Working Capital', 'WORK_IN_PROCESS': 'Work in Process', 'WORLD_INDICES_TITLE': 'World Indices', 'WORLD_TITLE': 'World', 'WORST_ONE_YR_TOTAL_RETURN': 'Worst 1 Yr Total Return ({date})', 'WORST_THREE_YR_TOTAL_RETURN': 'Worst 3-Yr Total Return', 'WRITE_OFF': 'Write Off', 'YAHOO_FINANCE': 'Yahoo Finance', 'YAHOO_FINANCE_FULL': 'Yahoo Finance', 'YAHOO_FINANCE_PODCAST': 'Yahoo Finance Podcast', 'YAHOO_FINANCE_SCREENERS': 'Yahoo Finance Screeners', 'YAHOO_FINANCE_PLUS_SCREENERS': 'Yahoo Finance Plus Screeners', 'YAHOO_PLUS_SCREENERS': 'Yahoo Plus Screeners', 'YAHOO_SMALL_BUSINESS_TITLE': 'Yahoo Small Business', 'YEAR': 'Year', 'YEARS': '{n} Years', 'YEARLY': 'Yearly', 'YEAR_AGO_EPS': 'Year Ago EPS', 'YEAR_AGO_SALES': 'Year Ago Sales', 'YEAR_BORN': 'Year Born', 'YES': 'Yes', 'YO': '{age} yo.', 'YORIG_TITLE': 'Yahoo Originals', 'YOY': 'yoy', 'YTD': 'YTD', 'YTD_DTR': 'YTD Daily Total Return', 'YTD_RETURN': 'YTD Return', 'YTD_RETURN_MKT': 'Year-to-Date Return (Mkt)', 'YTD_RETURN_PCT': 'Year-to-Date Return', 'Y_AXIS_SCALE': 'Y-axis scale', 'YOU_MIGHT_ALSO_LIKE': 'You might also like', 'ZOOM_IN': 'Zoom in', 'ZOOM_OUT': 'Zoom out', '{0} - {1}': '{0} - {1}'}, 'tdv2-wafer-header': {'ABOUT': 'About', 'ABOUT_OUR_ADS': 'About Our Ads', 'ACCOUNT_LOGIN_CTA': 'Already have an account?', 'ACCOUNT_SIGN_UP_CTA': \"Don't have one?\", 'ACCOUNT_MANAGE': 'Manage Accounts', 'ADVERTISE': 'Advertise', 'ADVERTISE_CHOICES': 'Advertising Choices', 'AOL': 'Aol', 'ANSWERS': 'Answers', 'ATT': 'AT&T', 'ATT_ENVIVO': 'AT&T En Vivo', 'ATT_MY': 'myAT&T', 'ATT_MY_APP': 'myAT&T App', 'ATT_SHOP': 'Shop AT&T', 'ATT_SUPPORT': 'AT&T Customer Support', 'ATT_E1': 'En Espanol', 'ATT_E1_WEATHER': 'El Tiempo', 'ATT_SRVS': 'AT&T Services', 'ATT_DTV': 'DIRECTV', 'ATT_DTVN': 'DIRECTV STREAM', 'ATT_WIRELESS': 'AT&T Wireless', 'ATT_UPGRADE': 'Upgrade Your Device', 'ATT_ADD_LINE': 'Add a Line', 'ATT_FIBER': 'AT&T Fiber', 'ATT_INTERNET': 'AT&T Internet', 'ATT_BUSINESS': 'Phones & Devices', 'ATT_ADVERTISE_CHOICES': 'Advertising Choices', 'ATT_AUP': 'AUP', 'ATT_ADVERTISE': 'Advertise', 'ATT_FEEDBACK': 'Feedback', 'ATT_PRIVACY': 'Privacy', 'ATT_TERMS': 'Terms', 'ATT_HELP': 'Site Help', 'ATT_HOLIDAYS': 'Holidays', 'ATT_THISMONTH': 'This Month', 'AUCTION': 'Auction', 'AUP': 'AUP', 'BACK': 'Back', 'BLACKLIVESMATTER': 'Black Lives Matter', 'BLACK_HISTORY': 'Black History', 'BUILD': 'Build', 'BUY_CENTER': 'Shopping center', 'CANADA_EN': 'Canada (EN)', 'CANADA_FR': 'Canada (FR)', 'CANCEL': 'Cancel', 'CAREERS': 'Careers', 'CLEAR_SEARCH': 'Clear Search', 'COMPOSE': 'Compose', 'COMPOSE_EMAIL': 'Compose email', 'COMPOSE_RAQUO': 'Compose »', 'CORONAVIRUS': 'COVID-19', 'CELEBRITY': 'Celebrity', 'CRICKET': 'Cricket', 'DELAS': 'Group buy', 'DO_NOT_SHOW_MAIL': 'Do not show my mail', 'WEATHER': 'Weather', 'HEALTH': 'Health', 'VIDEO': 'Video', 'MOBILE': 'Mobile', 'ELECTION': '2020 Election', 'ENTERTAINMENT': 'Entertainment', 'DELETE': 'Delete', 'FEEDBACK': 'Feedback', 'FINANCE': 'Finance', 'FREE': 'FREE', 'FRONTIER': 'Frontier', 'FRONTIER_MAIL': 'Frontier Mail', 'FRONTIER_BILLPAY': 'Online Bill Pay', 'FRONTIER_COM': 'Frontier.com', 'FRONTIER_HELP': 'Frontier Help Center', 'FRONTIER_SRVS': 'Frontier Services', 'FRONTIER_BILLPAY_D': 'Bill Pay', 'FRONTIER_MAIL_D': 'FTR Mail', 'GAMES': 'Games', 'SOLITAIRE': 'Solitaire', 'CROSSWORD': 'Crossword', 'GET_ATT_MAIL': 'Get AT&T Mail', 'GO_TO_MAIL': 'Go To Mail', 'GO_TO_MAIL_RAQUO': 'Go To Mail »', 'GO_TO_YAHOO_MAIL': 'Go To Yahoo Mail »', 'GOOGLE_CUSTOM_SEARCH': 'Powered by Google search', 'HANDWRITE_TITLE': 'Input by hand write', 'HANDWRITE_SPONSOR': 'Powered by Penpower', 'HELP': 'Help', 'HOME': 'Home', 'HIDE_THIS_WIDGET': 'No thanks, hide this widget', 'INBOX': 'Inbox', 'INBOX_PREVIEW_SHOW_LESS': 'Show less', 'INBOX_PREVIEW_SHOW_MORE': 'Show more', 'INBOX_PREVIEW_SUBHEADER': 'Inbox Preview', 'IN_THE_KNOW': 'In The Know', 'INSPIRED_BY': 'Inspired By', 'LIFE': 'Life', 'LIFESTYLE': 'Lifestyle', 'LOADING': 'Loading', 'LOGIN': 'Login', 'LOGOUT': 'Logout', 'LOGO_OVERRIDE': 'Happy Lunar New Year', 'LOGO_VALENTINES_DAY': \"Happy Valentine's Day\", 'MAIL': 'Mail', 'MAIL_PREVIEW_PREF': 'mail preview preference', 'MAIL_FROM': 'Mail From: ', 'MAIL_SUBJECT': 'Subject: ', 'MAKERS': 'MAKERS', 'MALL': 'Mall', 'MARK_AS_SPAM': 'Mark as spam', 'MARKET_MOVERS': 'Market Movers', 'MORE': 'More...', 'MORE_PRODUCTS_SERVICES': 'More Products & Services', 'MOVIES': 'Movies', 'MY_CHANNEL': 'My Channel', 'MY_MAIL': 'My Mail', 'MY_VIDEO_CHANNEL': 'My Video Channel', 'MY_YAHOO_MAIL': 'My Yahoo Mail', 'MY_YAHOO_MAIL_SIGNED_OUT_INTRO': 'Check multiple mail accounts from one place', 'MY_YAHOO': 'My Yahoo', 'NEW_TEXT': 'New', 'NEWS': 'News', 'NOTIFICATIONS': 'Notifications', 'NO_MESSAGES_TO_DISPLAY': 'No messages to display', 'NO_NEW_NOTIFICATIONS': 'You have no new notifications.', 'NOTIF_ONBOARD_LABEL': 'Notify Me', 'NOTIF_ONBOARD_MSG': 'Get Notifications for Your Favorite Topics', 'OUR_BRANDS': 'Our brands', 'PLEASE_CHECK_BACK_LATER': 'Please check back later.', 'POLITICS': 'Politics', 'PROFILE': 'Profile', 'PRIVACY': 'Privacy', 'PRIVACY_ICON_ALT': 'Privacy rights icon', 'PRIVACY_UPDATED': 'Privacy (Updated)', 'PUBLISHER_MANAGEMENT': 'Manage Publishers', 'REFRESH': 'Refresh', 'REL_DAYS': '{0}d', 'REL_HOURS': '{0}h', 'REL_MINS': '{0}m', 'REL_MONTHS': '{0}mo', 'REL_SECS': '{0}s', 'REL_WEEKS': '{0}wk', 'REL_YEARS': '{0}yr', 'REPORT_BUG': 'Report a Bug', 'ROGERS': 'Rogers', 'ROGERSCA_CHATELAINE': 'Chatelaine', 'ROGERSCA_MACLEANS': 'Macleans', 'ROGERSCA_SPORTSNET': 'Sportsnet', 'ROGERS_COM': 'Rogers.com', 'ROGERSCA_SUPPORT': 'Rogers Support', 'ROGERSCA_SRVS': 'Rogers Services', 'ROGERSCA_FRENCH': 'French', 'ROGERSCA_ENGLISH': 'English', 'ROGERSCF_CHATELAINE': 'Châtelaine', 'ROGERSCF_LACTUALITE': \"L'actualité\", 'ROGERSCF_HELP': 'Soutien Rogers', 'ROGERSCF_SRVS': 'Services Rogers', 'PREMIUM_OFFERS': 'Premium Offers', 'TECH_TIPS': 'Tech Tips', 'YAHOO_PLUS': 'Yahoo Plus', 'SEARCH': 'Search', 'SELECT_MESSAGE': 'Select message', 'SETTINGS': 'Settings', 'SEND_FEEDBACK': 'Send Feedback', 'SHOPPING': 'Shopping', 'SIGNIN': 'Sign in', 'SIGNIN_TO_MAIL': 'Sign in to Yahoo Mail', 'SIGNOUT': 'Sign Out', 'SIGNUP': 'Sign Up', 'SHOW_ME_MY_MAIL': 'Yes, show me my mail', 'SKIP_TO_MAIN_CONTENT': 'Skip to Main Content', 'SKIP_TO_NAVIGATION': 'Skip to Navigation', 'SKIP_TO_RELATED_CONTENT': 'Skip to Related Content', 'SKULLDUGGERY': 'Skullduggery', 'SPORTS': 'Sports', 'STYLE': 'Style', 'STAYHOME': 'StayHome', 'STOCK': 'Stock', 'STORE': 'Store', 'SUBSCRIPTIONS': 'Premium Offers', 'SUPPLY_CHAIN': 'Supply Chain Transparency', 'SWITCH_BACK_TO_CLASSIC': 'Switch Back to Classic Yahoo', 'TERMS': 'Terms', 'TERMS_UPDATED': 'Terms (Updated)', 'THE_RUSH': 'The Rush', 'TO_VIEW_YOUR_MAIL': 'To view your Yahoo Mail, you need to sign in to your account', 'TOP_SEARCH': 'Top Search:', 'TOPICS_MANAGEMENT': 'Manage Topics', 'TV': 'TV', 'FINANCE_UH_SEARCH_WEB': 'Search for news, symbols or companies', 'SPORTS_UH_SEARCH_WEB': 'Search Players and Teams', 'UNABLE_TO_PREVIEW': 'We are unable to preview your mail.', 'VERIZON': 'Verizon', 'VIEW_INBOX': 'View inbox', 'VIEW_YOUR_MAIL_TEXT': 'To view your Yahoo Mail, you need to sign in to your account', 'VIEW_YOUR_MAIL': \"Sign in to view your mail\", 'VIEW_YOUR_MAIL_MORE': \"Sign in to view your mail, and more\", 'WOMEN': 'Women', 'WOMENS_HISTORY': \"Women's History\", 'WOULD_YOU_LIKE_TO_SEE': 'Would you like to see a preview of your Yahoo Mail inbox here?', 'YAHOO': 'Yahoo', 'YAHOO_POWERED': 'Powered by Yahoo', 'YAHOO_SPORTS': 'Yahoo Sports', 'YAHOO_FANTASY': 'Yahoo Fantasy', 'YOU_CAN_MANAGE_YOUR_FEED': 'You can manage your feed here'}, 'react-finance': {'200_DAY_MOVING_AVG': '200-Day Moving Average', 'AD': 'Ad', 'ADVERTISE_WITH_US': 'Advertise with us', 'ADFB_CLOSE': 'Close', 'ADFB_DISLIKE_AD_HIDDEN': 'This ad has been hidden', 'ADFB_DISLIKE_AD_HIDDEN_DETAIL': 'Improve your future experience.', 'ADFB_DISLIKE_AD_HIDDEN_DETAIL_LONG': 'You can give additional feedback on this ad to improve your future experience.', 'ADFB_HEADING': \"Why don't you like this ad?\", 'ADFB_REVIEW': \"We'll review and make changes needed\", 'ADFB_SEND_FEEDBACK': 'Send Feedback', 'ADFB_SOMETHING_ELSE_PLACEHOLDER': \"Why don't you like this ad\", 'ADFB_THANKYOU': 'Thanks for your feedback!', 'ADFB_UNDO': 'Undo', 'AD_DISLIKE': \"I don't like this ad\", 'AD_DISLIKE_DETAIL': 'Show fewer ads like this', 'AD_FEEDBACK': 'Ad Feedback', 'AD_FEEDBACK_ADLITE_PROMO': 'Try Yahoo Finance Plus', 'AD_GIVE_FEEDBACK': 'Give Feedback', 'AD_LIKE': 'I like this ad', 'AD_LIKE_DETAIL': 'Show more ads like this', 'AD_TERMS': 'Why this ad?', 'ADD_SYMBOL': 'Add Symbol', 'ADD_TO_WATCHLIST': 'Add to Watchlist', 'ADVERTISEMENT': 'Advertisement', 'AERONAUTICS_TITLE': 'Aeronautics', 'ALGO_WATCHLIST': 'Watchlist', 'AND': 'and', 'APP_PROMO_OPEN_APP': 'Open in App', 'AUDIOVISUAL_MEDIA_TITLE': 'Audiovisual and Media', 'AUTO_TITLE': 'Auto', 'AUTOCOMPLETE_PLACEHOLDER': 'VZ, AAPL, TSLA', 'AUTOS_TITLE': 'Autos', 'AUTOS_TRANSPORTATION_TITLE': 'Autos & Transportation', 'AVG_VOL_10_DAY': 'Avg Vol (10 day)', 'AVG_VOL_3_MONTH': 'Avg Vol (3 month)', 'BANKING_INSURANCE_TITLE': 'Banking & Insurance', 'BASIC_MATERIALS_TITLE': 'Basic Materials', 'BETA': 'Beta', 'BONDS_TITLE': 'US Treasury Bonds Rates', 'BREXIT_TITLE': 'Brexit', 'BUSINESS_SERVICES_TITLE': 'Business Services', 'CALENDARS_TITLE': 'Calendars', 'CANCEL': 'Cancel', 'CAREERS_TITLE': 'Careers', 'CHART': 'Chart', 'CHEMICAL_BASIC_MATERIALS_TITLE': 'Chemical and Basic Materials', 'CHEMIE_TITLE': 'Chemie', 'CLOSE': 'Close', 'COIN_MARKET_CAP': 'CoinMarketCap', 'COMMODITIES': 'Futures', 'COMPARE_PRODUCTS_TITLE': 'Compare Products', 'COMPONENTS': 'Components', 'CONFIRM_DELETE': 'Confirm Delete', 'CONFIRM_DELETE_MSG': 'Are you sure you want to delete {pfName} watchlist?', 'CONFIRM_DELETE_TICKER': 'Are you sure you want to remove {symbol}?', 'CONFIRM_NO': 'No', 'CONFIRM_YES': 'Yes', 'CONFIRMED_CASES': 'Confirmed Cases', 'CONSTRUCTION_TITLE': 'Construction', 'CONSUMER_DURABLES_TITLE': 'Consumer Durables', 'CONSUMER_GOODS_TITLE': 'Consumer Goods', 'CONSUMER_PRODUCTS_MEDIA_TITLE': 'Consumer Products & Media', 'CONTRIBUTORS_TITLE': 'Contributors', 'COVID_19': 'COVID-19', 'CREATE_NEW_LIST': 'Create a new list', 'CURRENCIES': 'Currencies', 'CURRENCIES_TITLE': 'Currencies', 'CURRENCY_CONVERTER_TITLE': 'Currency Converter', 'DEFAULT_MESSAGE': 'We are experiencing some temporary issues. The market data on this page are currently delayed. Please bear with us as we address this and restore your personalized lists.', 'DELAYED': 'Delayed Price', 'DELETE_BTN': 'Delete', 'DELETE_TICKER_INFO': 'Delete symbol from watchlist', 'DELETE_WATCHLIST': 'Delete Watchlist', 'DISLIKE_AD': \"I don't like this ad\", 'DIVERSIFIED_BUSINESS_TITLE': 'Diversified Business', 'DIVIDEND': 'Dividend', 'EARNINGS_REPORT': 'Earnings Report', 'EDIT': 'Edit', 'END': 'End', 'ENERGY_TITLE': 'Energy', 'ENTER_LIST_NAME': 'Enter List name', 'ETFS_TITLE': 'Top ETFs', 'EX_DIVIDEND': 'Ex-Dividend', 'EX_DIVIDEND_DATE': 'Ex-Dividend Date', 'FAILSAFE_CACHE_MESSAGE': 'We are experiencing some temporary issues. The market data on this page are currently delayed. Please bear with us as we address this and restore your personalized lists.', 'FEEDBACK_TITLE': 'Feedback', 'FINAL_ROUND_TITLE': 'The Final Round', 'FINANCIAL_TITLE': 'Financial', 'FMCG_TITLE': 'FMCG', 'FOODS_TITLE': 'Foods', 'FOOTER_ABOUT_TEXT': 'About Our Ads', 'FOOTER_COMPANY_TEXT': '{copyright}. All rights reserved.', 'FOOTER_DISCLAIMER_TEXT': 'Data Disclaimer', 'FOOTER_FB_FOLLOW_TEXT': 'Follow on Facebook', 'FOOTER_HELP_TEXT': 'Help', 'FOOTER_LI_FOLLOW_TEXT': 'Follow on LinkedIn', 'FOOTER_PRIVACY_POLICY_TEXT': 'Privacy Policy', 'FOOTER_PRIVACY_TEXT': 'Privacy', 'FOOTER_PRIVACY_TEXT_UPDATED': 'Privacy (Updated)', 'FOOTER_SITEMAP_TEXT': 'Sitemap', 'FOOTER_SUGGEST_TEXT': 'Suggestions', 'FOOTER_TERMS_TEXT': 'Terms', 'FOOTER_TW_FOLLOW_TEXT': 'Follow on Twitter', 'FORWARD_PE': 'Forward P/E', 'FREE_REALTIME': 'Real Time Price', 'FULL_SCREEN': 'Full screen', 'GAINERS_TITLE': 'Stocks: Gainers', 'GENERAL': 'Breaking News', 'GLOBAL': 'Global', 'GOOD_LIFE_NAV_TITLE': 'The Good Life', 'GOTO_TEXT': 'Go to {text}', 'HARDWARE_ELECTRONICS_TITLE': 'Computer Hardware & Electronics', 'HEALTHCARE_TITLE': 'Healthcare', 'HIGH': 'High', 'IN_WATCHLIST': 'In Watchlist', 'INDUSTRIALS_TITLE': 'Industrials', 'INDUSTRY_NAV_TITLE': 'Industry News', 'INTERNET_TITLE': 'Internet', 'JUMP_FIRST_PAGE': 'Jump to first page', 'JUMP_LAST_PAGE': 'Jump to last page', 'LAST_MONTH': 'Last Mo.', 'LEARN_MORE': 'Learn more', 'LEISURE_INDUSTRIES_TITLE': 'Leisure Industries', 'LIFESTYLE_TITLE': 'Lifestyle', 'LIKE_AD': 'I like this ad', 'LISTS': 'Lists', 'LIVE_VIDEO': 'Live Video', 'LOADING': 'Loading...', 'LOOKUP_FOOTER_TIP': 'Tip: Use comma to separate multiple quotes', 'LOSERS_TITLE': 'Stocks: Losers', 'LOW': 'Low', 'MAIL': 'Mail', 'MANAGE_SUBSCRIPTION': 'Manage Subscription', 'MANUFACTURING_MATERIALS_TITLE': 'Manufacturing & Materials', 'MARKET_BLOGS_TITLE': 'Market Blogs', 'MARKET_MOVERS_TITLE': 'Market Movers', 'MARKET_SUMMARY': 'Market Summary', 'MARKET_SUMMARY_CAROUSEL': 'Market summary containing a list of {size} items', 'MARKET_SUMMARY_CAROUSEL_ITEM_DECREASED': '{name} has decreased by {changePercent} or {change} points to {price} points', 'MARKET_SUMMARY_CAROUSEL_ITEM_INCREASED': '{name} has increased by {changePercent} or {change} points to {price} points', 'MARKET_SUMMARY_CAROUSEL_ITEM_UNCHANGED': '{name} is unchanged at {price}', 'MARKET_TIME_NOTICE_CLOSED_SHORT': 'At close: {date} {time}', 'MARKET_TIME_NOTICE_CLOSED': 'As of {date} {time}. {marketState}', 'MARKETS_OPEN': 'Market open.', 'MONEY_GUIDES_TITLE': 'Money Guides', 'MORE_SYMBOLS': 'More symbols', 'MORNING_BRIEF': 'Morning Brief', 'MOST_ACTIVE_TITLE': 'Stocks: Most Actives', 'MSG_EMPTY_LIST': 'Your list is empty.', 'MSG_EMPTY_PF': \"You don't have any symbols in this list.\", 'MSG_EMPTY_RQ': 'Your Recently Viewed list is empty.', 'MSG_EMPTY_YFINLIST': \"We're sorry, but we were unable to retrieve this data. Please try again.\", 'MSG_NO_LISTS': 'No lists found', 'MSG_NO_NEWS': 'No news found', 'MSG_NO_SEARCH_RESULTS': \"No matching results for '{query}'\", 'MSG_NO_SYMBOLS': 'No symbols found', 'MUTUALFUNDS_TITLE': 'Top Mutual Funds', 'MY_PORTFOLIO_NAV_TITLE': 'My Portfolio', 'MY_WATCHLIST': 'My Watchlist', 'NA': 'N/A', 'NAME_NEW_WATCHLIST': 'Name your new watchlist', 'NASDAQ_REALTIME_PRICE': 'Nasdaq Realtime Price', 'NEWS_NAV_TITLE': 'News', 'NEWS': 'News', 'NEW_HIGH': 'Price Alert', 'NEW_LOW': 'Price Alert', 'NOTIFICATIONS': 'Notifications', 'NO_NOTIFICATION_DATA': 'Notification data is not available', 'NO_MARKET_DATA': 'No Market Data', 'OIL_NATURAL_GAS_TITLE': 'Oil and Natural Gas', 'YAHOO_FINANCE_APP': 'Yahoo Finance App', 'OLDER': 'Older', 'OPTIONS': 'Options', 'OPTIONS_TITLE': 'Most Traded Options by Volume', 'ORIGINALS_TITLE': 'Yahoo Originals', 'PEG_RATIO_5_YR': 'PEG Ratio (5 yr expected)', 'PERSONAL_FINANCE_NAV_TITLE': 'Personal Finance', 'PHARMACEUTICAL_TITLE': 'Pharmaceutical', 'POST_MARKET_NOTICE': 'After hours:', 'POWER_TITLE': 'Power', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST': 'ADDED TO WATCHLIST', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_1': 'You will now see', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_2': ' more {ticker} news ', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_3': 'in your Yahoo feed', 'PREMIUM_UPSELL_CHART_PATTERN': 'Pattern', 'PREMIUM_UPSELL_CTA': 'Start your free trial today. >>', 'PREMIUM_UPSELL_DIFF_ONE_DAY_AGO': '1 day ago', 'PREMIUM_UPSELL_DIFF_D': '{days}d', 'PREMIUM_UPSELL_DIFF_DAYS_AGO': '{days} days ago', 'PREMIUM_UPSELL_DIFF_ONE_MONTH_AGO': '1 month ago', 'PREMIUM_UPSELL_NEW_FEATURE': 'NEW FEATURE', 'PREMIUM_UPSELL_NEW_FEATURE_LOGGED_IN': 'Stay up-to-date with news and stock price for {ticker}', 'PREMIUM_UPSELL_NEW_FEATURE_LOGGED_OUT': 'Sign in to keep track of {ticker} news and performance', 'PREMIUM_UPSELL_PATTERN_DETAIL': 'View bullish/bearish technical chart patterns with one click.', 'PREMIUM_UPSELL_PATTERN_TITLE': '{type} Pattern Detected', 'PREMIUM_UPSELL_PERFORMANCE_DETAIL': 'Conduct technical analysis for the short, mid, or long term.', 'PREMIUM_UPSELL_PERFORMANCE_TITLE': 'Performance Outlook', 'PREMIUM_UPSELL_RECOMMENDATION_TITLE': 'Recommendation rating', 'PREMIUM_UPSELL_REPORTS_DETAIL': 'Analyst reports and guidance from Morningstar and Argus.', 'PREMIUM_UPSELL_REPORTS_TITLE': 'Recent Research', 'PREMIUM_UPSELL_SIG_DEVS_DETAIL': 'Plot company events on charts to view impact on performance.', 'PREMIUM_UPSELL_SIG_DEVS_TITLE': 'Significant Event Occurred', 'PREMIUM_UPSELL_SIG_DEVS_TITLE_SHORT': 'Significant Event', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_CTA': 'Research report available', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_HEADER': 'Unlock premium independent research on this stock.', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_1': 'You’ve read ', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_2': '{usedCount} of your {maxCount} ', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_3': 'free research reports this quarter', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_CTA': 'Upgrade to read report', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_TOOLTIP_HEADER': 'Get unlimited reports with Yahoo Finance Plus.', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_TOOLTIP_DETAIL': 'You’ve read all your free reports this quarter.', 'PREMIUM_UPSELL_VALUATION_DETAIL': 'Determine the fair value of any stock with Premium.', 'PREMIUM_UPSELL_VALUATION_TITLE': 'Fair Value Estimate', 'PREMIUM_UPSELL_FEATURED_IN_TITLE': 'Featured in', 'PREMIUM_UPSELL_FEATURED_IN_PUBLISHER': 'Publisher', 'PREMIUM_UPSELL_FEATURED_IN_DAYCHNG': 'Day Change', 'PREMIUM_UPSELL_FEATURED_IN_FOLLOWERS': 'Followers', 'PRE_MARKET_NOTICE': 'Pre-Market:', 'PREDEFINED_SCREENER': 'Screener', 'PRESS_RELEASE': 'Press Releases', 'PRICE_TO_BOOK': 'Price/Book', 'PRICE_ALERT_UP': 'Price Alert', 'PRICE_ALERT_DOWN': 'Price Alert', 'PRIVATE': 'PRIVATE', 'PROFILE': 'Profile', 'PROPERTIES_TITLE': 'Properties', 'PROPERTY_TITLE': 'Property', 'PUBLIC_SERVICES_TITLE': 'Public Services', 'PORTFOLIO_DAILY_SUMMARY': 'Portfolio Summary', 'QUICK_VIDEO': 'Quick Video', 'QUOTE_LOOKUP': 'Quote Lookup', 'QUOTE_PRICE_NOTICE': '{exchangeName} {marketSource}. Currency in {currency}', 'RATES': 'Rates', 'RAW_MATERIALS_TITLE': 'Raw Materials', 'REAL_ESTATE_TITLE': 'Real Estate', 'REALTY_TITLE': 'Realty', 'RESEARCH_REPORTS': 'Research Reports', 'RESEARCH_REPORT': 'Premium Research Report', 'RECOMMEND_STOCKS': 'Recommended Stocks', 'RENAME': 'Rename', 'RENAME_MODAL_ERROR_MESSAGE': 'Please enter a valid watchlist name.', 'RENAME_MODAL_MESSAGE': 'Enter a new name for {pfName}.', 'RENAME_MODAL_TITLE': 'Rename your watchlist', 'RETAILING_HOSPITALITY_TITLE': 'Retailing & Hospitality', 'RETIREMENT_TITLE': 'Retirement', 'RQ_TITLE': 'Recently Viewed', 'RELATED_QUOTES': 'Related Quotes', 'SAVE': 'Save', 'SAVING_SPENDING_TITLE': 'Saving & Spending', 'SCREENER': 'Screener', 'SEARCH': 'Search', 'SEARCH_FEEDBACK_MSG': 'Give feedback on the new search experience', 'SEARCH_FEEDBACK_CURRENT_MSG': 'Give feedback on the search experience', 'SEARCH_PRIVATE_COMPANIES_PROMOTION': 'Now you can search stock related news and private companies such as Airbnb.', 'SEARCH_SCREENER_LINK': 'Screener for stocks & more', 'SEARCH_TIP': 'Tip: Try a valid symbol or a specific company name for relevant results', 'SEE_WHY': 'See why', 'SHARE': 'Share', 'SHARES_FLOAT': 'Float', 'SHORT_RATIO': 'Short Ratio', 'SHOW_ALL_RESULTS_FOR': 'Show all results for {query}', 'SHOW_MORE': 'Show more', 'SHOW_LESS': 'Show less', 'SIGN_IN': 'Sign In', 'SIGN_IN_TO_ADD_WATCHLIST': 'Sign in to add to watchlist', 'SIGN_IN_TO_ADD_WATCHLIST_TO_TICKER': 'Sign in to never miss news about {companyName}', 'SIGN_UP_PREMIUM': 'Sign up for Yahoo Finance Premium to get access to this insight', 'SIGN_UP_YAHOO_FINANCE_PLUS': 'Sign up for Yahoo Finance Plus to get access to this insight', 'SIGNIFICANT_DEVELOPMENT': 'Premium Significant Development', 'SIGNIFICANT_DEVELOPMENTS': 'Significant Developments', 'SMALL_BUSINESS_TITLE': 'Small Business', 'SOFTWARE_SERVICES_TITLE': 'Computer Software & Services', 'SPLIT': 'Split', 'SPORTSBOOK_TITLE': 'Sportsbook', 'START': 'Start', 'SUGGESTIONS': 'Suggestions', 'SUMMARY': 'Summary', 'SYMBOLS': 'Symbols', 'TAXES_TITLE': 'Taxes', 'TD_52_WK_HIGH': '52 Week High', 'TD_52_WK_LOW': '52 Week Low', 'TD_52_WK_RANGE': '52 Week Range', 'TD_ALERTS': 'Alerts', 'TD_ASK': 'Ask', 'TD_ASK_SIZE': 'Ask Size', 'TD_BID': 'Bid', 'TD_BID_SIZE': 'Bid Size', 'TD_BOOK_VALUE': 'Book Val', 'TD_CASH_AMOUNT': 'Amount', 'TD_CHANGE': 'Change', 'TD_COST_BASIS': 'Cost Basis', 'TD_CURRENCY': 'Currency', 'TD_DAY_GAIN': 'Day Gain $', 'TD_DAY_GAIN_PERCENT': 'Day Gain %', 'TD_DAY_HIGH': 'Day High', 'TD_DAY_LOW': 'Day Low', 'TD_DAY_RANGE': 'Intraday High/Low', 'TD_DIVIDEND_PAYMENT_DATE': 'Dividend Payment Date', 'TD_DIVIDEND_YIELD': 'Dividend Yield', 'TD_EBITDA': 'EBITDA', 'TD_EPS': 'EPS', 'TD_EXCHANGE': 'Exchange', 'TD_FIVE_YEAR': '5-Yr Return', 'TD_FUND_CATEGORY': 'Category', 'TD_HIGH_LIMIT': 'High Limit', 'TD_LAST_MONTH': 'Last Month', 'TD_LAST_NAV': 'Last NAV', 'TD_LAST_WEEK': 'Last Week', 'TD_LOT_VALUE': 'Lot Value', 'TD_LOW_LIMIT': 'Low Limit', 'TD_MARKET': 'Intraday Return', 'TD_MARKET_CAP': 'Market Cap', 'TD_MARKET_TIME': 'Market Time', 'TD_MARKET_VALUE': 'Market Value', 'TD_MATURITY': 'Maturity', 'TD_NAV_CHANGE': 'NAV $ Change', 'TD_NAV_PERCENT_CHANGE': 'NAV % Change', 'TD_NOTES': 'Notes', 'TD_OPEN': 'Open', 'TD_OPEN_INTEREST': 'Open Interest', 'TD_OPTION_NAME': 'Option', 'TD_PE_RATIO': 'PE Ratio', 'TD_PERCENT_CHANGE': '% Change', 'TD_PREV_CLOSE': 'Prev Close', 'TD_PRICE': 'Last Price', 'TD_PRICE_PAID_PER_SHARE': 'Price Paid', 'TD_SHARES': 'Shares', 'TD_SHARES_OUTSTANDING': 'Shares Out', 'TD_SPARKLINE': 'Day Chart', 'TD_SYMBOL': 'Symbol', 'TD_THREE_MONTH': '3-Mo Return', 'TD_THREE_YEAR': '3-Yr Return', 'TD_TOTAL_GAIN': 'Total Gain $', 'TD_TOTAL_GAIN_PERCENT': 'Total Gain %', 'TD_TRADE_DATE': 'Trade Date', 'TD_VOLUME': 'Volume', 'TD_YEAR_TO_DATE': 'YTD Return', 'TD_YESTERDAY': 'Yesterday', 'TD_YIELD': 'Yield', 'TDG_BASIC': 'Basic Columns', 'TDG_DETAILS': 'Details Columns', 'TDG_FUNDAMENTALS': 'Fundamentals Columns', 'TDG_MARKET': 'Share Statistics', 'TDG_MOVERS': 'Moving Averages Columns', 'TDG_PORTFOLIOS': 'Portfolios Columns', 'TDG_SHARE_STATS': 'Share Statistics', 'TECH_NAV_TITLE': 'Tech', 'TECHNOLOGY_TITLE': 'Technology', 'TELECOM_UTILITIES_TITLE': 'Telecom & Utilities', 'TEXTILES_TITLE': 'Textiles', 'TOP_STORIES_TITLE': 'Top Stories', 'TOURISM_SERVICES_TITLE': 'Tourism and Services', 'TRADE_IDEAS': 'Investment Ideas', 'TRADE_IDEA': 'Premium Investment Idea', 'TRAILING_PE': 'Trailing P/E', 'TRAVEL_TITLE': 'Travel', 'TRENDING_TICKERS_TITLE': 'Trending Tickers', 'TRENDING_TODAY': 'Trending Today', 'TRIGGER_ALERT': 'Price Alert', 'TRY_IT_FREE': 'Try it free', 'TODAY': 'Today', 'UH_SEARCH_MOBILE_WEB': 'Quote Lookup', 'UH_SEARCH_MOBILE_WEB_V2': 'Search for news or symbols', 'UH_SEARCH_WEB': 'Search for news, symbols or companies', 'UNDO': 'Undo', 'UNITED_STATES': 'United States', 'UPDATE_YOUR_SETTINGS': 'Update your settings here to see it.', 'VIDEO_TITLE': 'Video', 'VIEW_CHART': 'View Chart', 'VIEW_QUOTE_DETAILS': 'View quote details', 'WANT_FEWER_ADS': 'Go ad-free*', 'WHY_THIS_AD': 'Why this ad?', 'WATCHLISTS_NAV_TITLE': 'Watchlists', 'WEEK_AHEAD': 'Earnings This Week', 'WORLD_INDICES': 'World Indices', 'WORLD_TITLE': 'World', 'YAHOO_FINANCE': 'Yahoo Finance', 'YF_TITLE': 'Yahoo Finance Lists'}, 'tdv2-applet-swisschamp': {'BROWSER_UPGRADE': 'Some parts of this page is not supported on your current browser version. Please upgrade the browser to the latest.', 'CLOSE': 'Close'}, 'td-ads': {'AD': 'AD', 'ADVERTISEMENT': 'Advertisement', 'SCROLL_TO_CONTINUE': 'Scroll to continue with content'}, 'tdv2-applet-featurebar': {'BREAKING_NEWS': 'Breaking News', 'HIGH_LIGHT': 'Highlight'}, 'tdv2-applet-navrail': {'ABOUT': 'About', 'ACCOUNT_INFO': 'Account Info', 'APPS': 'Apps', 'APPS_ATT': 'AT&T Apps', 'BACK': 'Back', 'FOLLOW': 'Follow', 'FOLLOW_US': 'Follow Us', 'MORE': 'More', 'MORE_NAVLINKS': 'More Navlinks', 'MORE_SITES': 'More Sites', 'PROFILE': 'Profile', 'PROPERTY_HOME': '{property} Home', 'SERVICES_ATT': 'AT&T Services', 'SETTINGS': 'Settings', 'SHOW_LESS': 'Show less', 'SHOW_MORE': 'Show More', 'SHOW_X_MORE': 'Show {number} More', 'SIGNIN': 'Sign in', 'SIGNOUT': 'Sign out', 'SIGNOUT_ALL': 'Sign out all', 'STORYLINES': 'Storylines', 'TOOLS': 'Tools', 'WEATHER_FORECAST': 'Weather Forecast', 'WELCOME_BACK': 'Welcome back', 'VIEW_ON_INSTAGRAM': 'View on Instagram', 'YAHOO': 'Yahoo', 'YAHOO_SITES': 'Yahoo Sites'}, 'tdv2-applet-account-switch': {'ACCOUNT_INFO': 'Account Info', 'MANAGE_PUBLISHERS_SHORT': 'Manage Publishers', 'ACCOUNT_MANAGEMENT': 'Add or Manage accounts', 'ADD_ACCOUNT': 'Add account', 'BACKYARD': 'Backyard', 'SIGNOUT': 'Sign Out', 'SIGNOUT_ALL': 'Sign out all', 'WELCOME': 'Welcome back'}}, 'intlConfig': {'formats': {'date': {'timeStyle': {'hour': 'numeric', 'minute': 'numeric'}, 'short': {'day': 'numeric', 'month': 'short', 'year': 'numeric'}}, 'number': {'twoDecimal': {'minimumFractionDigits': 2, 'maximumFractionDigits': 2}, 'fourDecimal': {'minimumFractionDigits': 4, 'maximumFractionDigits': 4}}}}}, 'BeaconStore': {'beaconConfig': {'enableBatch': True, 'batchInterval': 1000, 'sampleSize': 1, 'pathPrefix': '/_td_api/beacon', 'beaconUncaughtJSError': True, 'sampleSizeUncaughtJSError': 1, 'context': {'prid': 'egr5m41hu29if', 'authed': '0', 'ynet': '0', 'ssl': '1', 'spdy': '0', 'ytee': '0', 'mode': 'normal', 'site': 'finance', 'region': 'US', 'lang': 'en-US', 'dir': 'ltr', 'bucket': 'finance-US-en-US-def', 'colo': 'bf1', 'device': 'desktop', 'bot': '1', 'browser': 'unknown', 'app': 'unknown', 'ecma': 'default', 'environment': 'prod', 'intl': 'us', 'partner': 'none', 'time': 1675699791902, 'tpConsent': True, 'tz': 'America/New_York', 'usercountry': 'US', 'feature': ['adsMigration', 'canvassOffnet', 'ccOnMute', 'disableCommentsMessage', 'debouncesearch100', 'deferDarla', 'disableMegaModalSa', 'ecmaModern', 'enable3pConsent', 'enableCCPAFooter', 'enableNewCCPAFooter', 'enableCMP', 'enableCompanyInsights', 'enableConsentData', 'enableCorporateActions', 'enableEncryption', 'enableFBRedirect', 'enableFeatureTours', 'enableFinancialsTemplate', 'enableFreeFinRichSearch', 'enableGuceJs', 'enableGuceJsOverlay', 'enableNewChartBeta', 'enablePfSummaryForEveryone', 'enablePlusRedesign', 'enablePrivacyUpdate', 'enableUpgradeLeafPage', 'enableVideoURL', 'enableXrayCardsFollowButton', 'enableXrayHyperloopCards', 'enableXrayNcp', 'enableXrayTickerEntities', 'enableYahooSans', 'enableYodleeErrorMsgCriOS', 'ncpListStream', 'ncpPortfolioStream', 'ncpQspStream', 'ncpQspStreamV2', 'ncpStream', 'ncpStreamIntl', 'ncpTopicStream', 'newContentAttribution', 'newLogo', 'notificationsServiceWorker', 'oathPlayer', 'optimizeSearch', 'premium35', 'rightRailLatestReports', 'rightRailPortfolioReports', 'relatedVideoFeature', 'threeAmigos', 'threeAmigosVideoExperienceEnabled', 'waferHeader', 'useNextGenHistory', 'videoNativePlaylist', 'sunsetMotif2', 'enableMarketingModal', 'enableUserPrefAPI', 'enableCustomSymbolsTotalGain', 'livecoverage', 'darlaFirstRenderingVisible', 'enableAdlite', 'enableTradeit', 'enableFeatureBar', 'enableSearchEnhancement', 'enableUserSentiment', 'enableBankrateWidget', 'enableYodlee', 'canvassReplies', 'enablePremiumFinancials', 'enableNewResearchFilterMW', 'enableMonalixaFreqCapping', 'showExpiredIdeas', 'enableSingleRail', 'enableAmexOffer', 'enableNewCategories', 'enablePremiumScreenerNav2', 'exposePredefinedScreener', 'enableEnhanceScreener', 'enableSECFiling', 'enableFastlink4', 'enableHyperLoop', 'enableScreenerCarousel', 'enablePlusUserInsights', 'enableMegathonFollowQSP', 'enableMegathonFollowCue', 'enableHubPage', 'openWeb', 'enhanceAddToWL', 'article2_csn', 'sponsoredAds', 'enableStageAds', 'enableTradeItLinkBrokerSecondaryPromo', 'enableQspPremiumPromoSmall', 'clientDelayNone', 'threeAmigosMabEnabled', 'threeAmigosAdsEnabledAndStreamIndex0', 'enableRelatedTickers', 'enableTasteMaker', 'enableNotification', 'enableNativeBillboard', 'enableJSErrorBeacon', 'enableQuoteTypeKV', 'enableMonalixaBodySlot', 'enableLiveDynamicData', 'enablePremiumUpsell', 'enableTMD', 'enableBannerOnQuote', 'enableInsightEnhancement', 'enableMonalixaPortfolioHoldings3Day', 'enableMonalixaPortfolioHoldingsOnLoad3Day', 'enableMonalixaFreeTrialResearchReports', 'enableMonalixaFreeTrialPlusDashboard', 'enableMonalixaAdBlockerOverlay', 'enableOnboardingPhaseOne', 'enablePlusRedesignOnboarding', 'enableMegathonFollowEntryPoint'], 'adblock': '0', 'theme': 'none', 'nps': {}}}}, 'AdStore': {'appConfig': {'base': {'debug': False, 'dm': 1, 'disableDocDomain': True, 'aboveFoldPositions': 'WPS,MAST,LDRB,SPRZ,SPL,LREC,BTN,BTN-1,BTN-2,BTN-3,BTN1,BTNA,BTNB,BTNC,BTND,FB2,FB2-1,FB2-2,FB2-3,FB2A,FB2B,FB2C,FB2D,NE4,NE4-1,NE4-2,NE4-3,NE4A,NE4B,NE4C,NE4D', 'allowHostUrlAsReferrer': True, 'autoRotation': 10000, 'autoadrender': True, 'darlaJsAtTop': True, 'darlaVersion': '4-7-1', 'darlaAssetFetch': True, 'cacheDarlaAsset': True, 'darlaConfigFetch': True, 'cacheDarlaConfig': True, 'checkForModalClose': True, 'multipleRenderTargets': True, 'rotationTimingDisabled': False, 'k2': {'res': {'rate': 5, 'pos': ['BTN', 'BTN-1', 'BTN-2', 'BTN-3', 'BTN1', 'LREC', 'LREC2', 'LREC3', 'LDRB', 'MAST']}}, 'positions': {'DEFAULT': {'name': 'DEFAULT', 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False}, 'WPS': {'id': 'WPS', 'clean': 'cleanWPS', 'dest': 'destWPS', 'metaSize': True, 'w': 320, 'h': 50}, 'BTN1': {'id': 'BTN1', 'clean': 'cleanBTN1', 'dest': 'destBTN1', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN1-1': {'id': 'BTN1', 'clean': 'cleanBTN1-1', 'dest': 'destBTN1-1', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN': {'id': 'BTN', 'clean': 'cleanBTN', 'dest': 'destBTN', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-1': {'id': 'BTN-1', 'clean': 'cleanBTN-1', 'dest': 'destBTN-1', 'w': 120, 'h': 60}, 'BTN-2': {'id': 'BTN-2', 'clean': 'cleanBTN-2', 'dest': 'destBTN-2', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-3': {'id': 'BTN-3', 'clean': 'cleanBTN-3', 'dest': 'destBTN-3', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-5': {'id': 'BTN-5', 'clean': 'cleanBTN-5', 'dest': 'destBTN-5', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-6': {'id': 'BTN-6', 'clean': 'cleanBTN-6', 'dest': 'destBTN-6', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-7': {'id': 'BTN-7', 'clean': 'cleanBTN-7', 'dest': 'destBTN-7', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-8': {'id': 'BTN-8', 'clean': 'cleanBTN-8', 'dest': 'destBTN-8', 'metaSize': True, 'w': 120, 'h': 60}, 'BTNA': {'id': 'BTNA', 'clean': 'cleanBTNA', 'dest': 'destBTNA', 'metaSize': True, 'w': 120, 'h': 60}, 'BTNB': {'id': 'BTNB', 'clean': 'cleanBTNB', 'dest': 'destBTNB', 'metaSize': True, 'w': 120, 'h': 60}, 'BTNC': {'id': 'BTNC', 'clean': 'cleanBTNC', 'dest': 'destBTNC', 'metaSize': True, 'w': 120, 'h': 60}, 'BTND': {'id': 'BTND', 'clean': 'cleanBTND', 'dest': 'destBTND', 'metaSize': True, 'w': 120, 'h': 60}, 'WIDGET': {'id': 'WIDGET', 'clean': 'cleanWIDGET', 'dest': 'destWIDGET', 'metaSize': False, 'w': 650, 'h': 635, 'flex': {'w': {'min': 600, 'max': 800}}}, 'WIDGETA': {'id': 'WIDGETA', 'clean': 'cleanWIDGETA', 'dest': 'destWIDGETA', 'metaSize': False, 'w': 758, 'h': 198, 'fdb': True, 'supports': {'exp-ovr': 1, 'exp-push': 1}}, 'WIDGET-1': {'id': 'WIDGET-1', 'metaSize': False, 'w': 300, 'h': 340}, 'FOOT': {'id': 'FOOT', 'clean': 'cleanFOOT', 'dest': 'destFOOT', 'fr': 'expIfr_exp'}, 'FSRVY': {'id': 'FSRVY', 'clean': 'cleanFSRVY', 'dest': 'destFSRVY', 'fr': 'expIfr_exp'}, 'SCREC': {'id': 'SCREC', 'clean': 'cleanSCREC', 'dest': 'destSCREC', 'supports': {'exp-push': 1}, 'w': 300, 'h': 65}, 'LREC': {'id': 'LREC', 'clean': 'cleanLREC', 'dest': 'destLREC', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC-9': {'id': 'LREC-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC2': {'id': 'LREC2', 'clean': 'cleanLREC2', 'dest': 'destLREC2', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC2-4': {'id': 'LREC2-4', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-5': {'id': 'LREC2-5', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-6': {'id': 'LREC2-6', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-7': {'id': 'LREC2-7', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-8': {'id': 'LREC2-8', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-9': {'id': 'LREC2-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC3': {'id': 'LREC3', 'clean': 'cleanLREC3', 'dest': 'destLREC3', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC3-4': {'id': 'LREC3-4', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-5': {'id': 'LREC3-5', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-6': {'id': 'LREC3-6', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-7': {'id': 'LREC3-7', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-8': {'id': 'LREC3-8', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-9': {'id': 'LREC3-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC4': {'id': 'LREC4', 'clean': 'cleanLREC4', 'dest': 'destLREC4', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'overrides': {'doubleBuffering': True}}, 'LREC4-9': {'id': 'LREC4-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB': {'id': 'LDRB', 'clean': 'cleanLDRB', 'dest': 'destLDRB', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB-9': {'id': 'LDRB-9', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2': {'id': 'LDRB2', 'clean': 'cleanLDRB2', 'dest': 'destLDRB2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2-1': {'id': 'LDRB2-1', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2-2': {'id': 'LDRB2-2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2-3': {'id': 'LDRB2-3', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2-4': {'id': 'LDRB2-4', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'MAST': {'id': 'MAST', 'clean': 'cleanMAST', 'dest': 'destMAST', 'w': 970, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1, 'resize-to': 1}, 'fdb': False, 'closeBtn': {'mode': 2, 'useShow': 1, 'adc': 0}, 'metaSize': True}, 'MAST-9': {'id': 'MAST-9', 'w': 970, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1, 'resize-to': 1}, 'fdb': False, 'closeBtn': {'mode': 2, 'useShow': 1, 'adc': 0}, 'metaSize': True}, 'MON': {'id': 'MON', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'MON-1': {'id': 'MON-1', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'MON2': {'id': 'MON2', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'MON2-9': {'id': 'MON2-9', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'MOMENTS': {'id': 'MOMENTS', 'w': 375, 'h': 667, 'flex': {'ratio': '1x1.78', 'w': {'min': 320}, 'h': {'min': 568}}, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 1, 'exp-push': 1, 'resize-to': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3}, 'FB2': {'id': 'FB2', 'clean': 'cleanFB2', 'dest': 'destFB2', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2-1': {'id': 'FB2-1', 'clean': 'cleanFB2-1', 'dest': 'destFB2-1', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2-2': {'id': 'FB2-2', 'clean': 'cleanFB2-2', 'dest': 'destFB2-2', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2-3': {'id': 'FB2-3', 'clean': 'cleanFB2-3', 'dest': 'destFB2-3', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2A': {'id': 'FB2A', 'clean': 'cleanFB2A', 'dest': 'destFB2A', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2B': {'id': 'FB2B', 'clean': 'cleanFB2B', 'dest': 'destFB2B', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2C': {'id': 'FB2C', 'clean': 'cleanFB2C', 'dest': 'destFB2C', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2D': {'id': 'FB2D', 'clean': 'cleanFB2D', 'dest': 'destFB2D', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4': {'id': 'NE4', 'clean': 'cleanNE4', 'dest': 'destNE4', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4-1': {'id': 'NE4-1', 'clean': 'cleanNE4-1', 'dest': 'destNE4-1', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4-2': {'id': 'NE4-2', 'clean': 'cleanNE4-2', 'dest': 'destNE4-2', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4-3': {'id': 'NE4-3', 'clean': 'cleanNE4-3', 'dest': 'destNE4-3', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4A': {'id': 'NE4A', 'clean': 'cleanNE4A', 'dest': 'destNE4A', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4B': {'id': 'NE4B', 'clean': 'cleanNE4B', 'dest': 'destNE4B', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4C': {'id': 'NE4C', 'clean': 'cleanNE4C', 'dest': 'destNE4C', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4D': {'id': 'NE4D', 'clean': 'cleanNE4D', 'dest': 'destNE4D', 'metaSize': True, 'w': 120, 'h': 60}, 'UBALDRB': {'id': 'UBALDRB', 'w': 728, 'h': 90, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'UBALDRB-9': {'id': 'UBALDRB-9', 'w': 728, 'h': 90, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'UBALDRB2': {'id': 'UBALDRB2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALDRB2-1': {'id': 'UBALDRB2-1', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALDRB2-2': {'id': 'UBALDRB2-2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALDRB2-3': {'id': 'UBALDRB2-3', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALDRB2-4': {'id': 'UBALDRB2-4', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALREC': {'id': 'UBALREC', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3}, 'UBALREC-1': {'id': 'UBALREC-1', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3}, 'UBALREC-9': {'id': 'UBALREC-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3}, 'UBALREC2-9': {'id': 'UBALREC2-9', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBALREC2': {'id': 'UBALREC2', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBALREC3': {'id': 'UBALREC3', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBALREC3-9': {'id': 'UBALREC3-9', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBAMON': {'id': 'UBAMON', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBAMON-9': {'id': 'UBAMON-9', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBAMON2': {'id': 'UBAMON2', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'WFPAD': {'id': 'WFPAD', 'w': 320, 'h': 50, 'autoFetch': False, 'enable': True, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1, 'lyr': 1, 'resize-to': 1}, 'metaSize': True, 'staticLayout': False, 'fdb': False}, 'WFPAD2': {'id': 'WFPAD2', 'w': 320, 'h': 50, 'autoFetch': False, 'enable': True, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1, 'lyr': 1, 'resize-to': 1}, 'metaSize': True, 'staticLayout': False, 'fdb': False}, 'SPL': {'id': 'SPL', 'flex': 'both', 'enable': True, 'autoFetch': False, 'staticLayout': False, 'fdb': False, 'supports': {'cmsg': 1}, 'uhslot': '.YDC-UH', 'meta': {'type': 'stream'}, 'css': '.Mags-FontA{font-family:\"HelveticaNeue\",Helvetica,Arial,sans-serif;font-weight:300;}.Mags-FontA.Size1{font-size:13px;}.Mags-FontA.Size2{font-size:16px;}.Mags-FontA.Size3{font-size:20px;}.Mags-FontA.Size4{font-size:22px;}.Mags-FontA.Size5{font-size:33px;}.Mags-FontA.Size6{font-size:35px;}.Mags-FontA.Size7{font-size:58px;}.Mags-FontA.Size8{font-size:70px;}.Mags-FontA.Size9{font-size:100px;}.Mags-FontB{font-family:Georgia,Times,serif;font-weight:400;}.Mags-FontB.Size1{font-size:18px;}.Mags-FontC{font-family:\"HelveticaNeue\",Helvetica,Arial,sans-serif;font-weight:400;}.Mags-FontC.Size1{font-size:11px;}.Mags-FontC.Size2{font-size:14px;}.Mags-FontC.Size3{font-size:16px;}.Mags-FontC.Size4{font-size:20px;}.Mags-FontC.Size5{font-size:30px;}.Mags-FontC.Size6{font-size:32px;}.Mags-FontC.Size7{font-size:52px;}'}, 'TRADENOW': {'id': 'TRADENOW', 'clean': 'cleanTRADENOW', 'dest': 'destTRADENOW', 'w': 280, 'h': 55, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'TRADENOW-1': {'id': 'TRADENOW', 'clean': 'cleanTRADENOW-1', 'dest': 'destTRADENOW-1', 'fr': 'expIfr_exp', 'w': 320, 'h': 114, 'supports': {'exp-ovr': 1, 'exp-push': 1, 'resize-to': 1}, 'flex': {'ratio': '3.28x1', 'h': {'min': 114, 'max': 280}}, 'staticLayout': True, 'fdb': True}, 'INARTICLE': {'id': 'INARTICLE', 'w': 375, 'h': 211, 'autoFetch': False, 'fr': 'expIfr_exp', 'flex': {'ratio': '1.78x1', 'w': {'min': 10}, 'h': {'min': 5}}, 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'z': 9}}, 'events': {'DEFAULT': {'sp': 1183300002, 'ssl': 1, 'secure': 1}, 'adFetch': {'name': 'adFetch', 'dynamic': True, 'viewportOnly': 'MAST,LDRB,LDRB2,LREC,LREC2,MON,FB2,FB2-1,FB2-2,FB2-3,BTN,BTN-1,BTN-2,BTN-3,BTN1,NE4,NE4-1,NE4-2,NE4-3'}, 'AUTO': {'ddd': 0, 'name': 'AUTO', 'autoStart': 1, 'autoMax': 25, 'autoIV': 1, 'autoRT': 10000, 'autoDDG': 1, 'npv': 1, 'ps': {'BTN': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNA': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNB': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTND': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2A': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2B': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2C': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2D': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC4-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': '35000'}, 'MAST': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'MAST-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'MON': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'MON-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4A': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4B': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4C': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4D': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'SCREC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'SPL': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'WIDGETA': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'TRADENOW': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'TRADENOW-1': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'WPS': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'MON2': {'autoRT': 10000}, 'MON2-9': {'autoRT': 10000}}, 'groups': {'LREC3': 'MON2', 'LREC4': 'MON2', 'MON2': 'LREC3,LREC4', 'LREC3-9': 'MON2-9', 'LREC4-9': 'MON2-9', 'MON2-9': 'LREC3-9,LREC4-9'}}}, 'firstRenderingVisible': True, 'viewerAdboost': True, 'timeout': 500, 'adblockPos': 1, 'detectAdblock': True, 'enableUBAMON': True, 'nukeAds': 'LREC,LREC2,LREC-9,LREC2-9,LREC3-9,LREC4-9,LDRB-9,MAST-9,MON-1,SPL', 'enableAdPlaceHolder': True, 'adBoostGroupConf': {'LREC3': {'inview': 'LREC4', 'extrapositions': ['MON2']}, 'LREC4': {'inview': 'LREC3', 'extrapositions': ['MON2']}, 'MON2': {'extrapositions': ['LREC3', 'LREC4']}, 'LREC3-9': {'inview': 'LREC4-9', 'extrapositions': ['MON2-9']}, 'LREC4-9': {'inview': 'LREC3-9', 'extrapositions': ['MON2-9']}, 'MON2-9': {'extrapositions': ['LREC3-9', 'LREC4-9']}}}}, 'pageConfig': {'base': {'events': {'adFetch': {'ps': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,LREC2,FOOT,FSRVY,TRADENOW', 'firstRender': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,TRADENOW', 'sponsoredAds': '', 'sponsoredAdsClass': ''}, 'AUTO': {'autoDDG': 0, 'groups': {'LREC3': 'LREC3', 'LREC4': None, 'MON2': 'LREC3'}, 'ps': {'MON2': {'autoRT': 10000}}}}, 'deferRender': True, 'positions': {'MAST': {'fclose': 2, 'fdb': {'on': '1', 'where': 'inside'}}, 'MAST-9': {'fclose': 2, 'fdb': {'on': '1', 'where': 'inside'}}}, 'removeFSRVY': True, 'enableAdboost': True, 'adBoostGroupConf': {'LREC3': None, 'LREC4': None, 'MON2': {'extrapositions': ['LREC3']}}}, 'header': None}, 'routeConfig': {}, 'failedPositions': {'positions': {'FB2B': {'failed': True}, 'FB2C': {'failed': True}, 'FB2D': {'failed': True}, 'MON': {'failed': True}, 'FOOT': {'failed': True}, 'TRADENOW': {'failed': True}}}, 'darlaConfig': {'debug': False, 'dm': 1, 'aboveFoldPositions': 'WPS,MAST,LDRB,SPRZ,SPL,LREC,BTN,BTN-1,BTN-2,BTN-3,BTN1,BTNA,BTNB,BTNC,BTND,FB2,FB2-1,FB2-2,FB2-3,FB2A,FB2B,FB2C,FB2D,NE4,NE4-1,NE4-2,NE4-3,NE4A,NE4B,NE4C,NE4D', 'autoRotation': 10000, 'rotationTimingDisabled': False, 'k2': {'res': {'rate': 5, 'pos': ['BTN', 'BTN-1', 'BTN-2', 'BTN-3', 'BTN1', 'LREC', 'LREC2', 'LREC3', 'LDRB', 'MAST']}}, 'positions': {'DEFAULT': {'name': 'DEFAULT', 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'clean': 'cleanDEFAULT', 'dest': 'destDEFAULT', 'id': 'DEFAULT', 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'WPS': {'id': 'WPS', 'clean': 'cleanWPS', 'dest': 'destWPS', 'metaSize': True, 'w': 320, 'h': 50, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN1': {'id': 'BTN1', 'clean': 'cleanBTN1', 'dest': 'destBTN1', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN1-1': {'id': 'BTN1', 'clean': 'cleanBTN1-1', 'dest': 'destBTN1-1', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN': {'id': 'BTN', 'clean': 'cleanBTN', 'dest': 'destBTN', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN-1': {'id': 'BTN-1', 'clean': 'cleanBTN-1', 'dest': 'destBTN-1', 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN-2': {'id': 'BTN-2', 'clean': 'cleanBTN-2', 'dest': 'destBTN-2', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN-3': {'id': 'BTN-3', 'clean': 'cleanBTN-3', 'dest': 'destBTN-3', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN-5': {'id': 'BTN-5', 'clean': 'cleanBTN-5', 'dest': 'destBTN-5', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN-6': {'id': 'BTN-6', 'clean': 'cleanBTN-6', 'dest': 'destBTN-6', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN-7': {'id': 'BTN-7', 'clean': 'cleanBTN-7', 'dest': 'destBTN-7', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN-8': {'id': 'BTN-8', 'clean': 'cleanBTN-8', 'dest': 'destBTN-8', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTNA': {'id': 'BTNA', 'clean': 'cleanBTNA', 'dest': 'destBTNA', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTNB': {'id': 'BTNB', 'clean': 'cleanBTNB', 'dest': 'destBTNB', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTNC': {'id': 'BTNC', 'clean': 'cleanBTNC', 'dest': 'destBTNC', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTND': {'id': 'BTND', 'clean': 'cleanBTND', 'dest': 'destBTND', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'WIDGET': {'id': 'WIDGET', 'clean': 'cleanWIDGET', 'dest': 'destWIDGET', 'metaSize': False, 'w': 650, 'h': 635, 'flex': {'w': {'min': 600, 'max': 800}}, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'WIDGETA': {'id': 'WIDGETA', 'clean': 'cleanWIDGETA', 'dest': 'destWIDGETA', 'metaSize': False, 'w': 758, 'h': 198, 'fdb': True, 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'WIDGET-1': {'id': 'WIDGET-1', 'metaSize': False, 'w': 300, 'h': 340, 'clean': 'cleanWIDGET-1', 'dest': 'destWIDGET-1', 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FOOT': {'id': 'FOOT', 'clean': 'cleanFOOT', 'dest': 'destFOOT', 'fr': 'expIfr_exp', 'failed': True, 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FSRVY': {'id': 'FSRVY', 'clean': 'cleanFSRVY', 'dest': 'destFSRVY', 'fr': 'expIfr_exp', 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'SCREC': {'id': 'SCREC', 'clean': 'cleanSCREC', 'dest': 'destSCREC', 'supports': {'exp-push': 1}, 'w': 300, 'h': 65, 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC': {'id': 'LREC', 'clean': 'cleanLREC', 'dest': 'destLREC', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'doubleBuffering': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC-9': {'id': 'LREC-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLREC-9', 'dest': 'destLREC-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC2': {'id': 'LREC2', 'clean': 'cleanLREC2', 'dest': 'destLREC2', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC2-4': {'id': 'LREC2-4', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-4', 'dest': 'destLREC2-4', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC2-5': {'id': 'LREC2-5', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-5', 'dest': 'destLREC2-5', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC2-6': {'id': 'LREC2-6', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-6', 'dest': 'destLREC2-6', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC2-7': {'id': 'LREC2-7', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-7', 'dest': 'destLREC2-7', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC2-8': {'id': 'LREC2-8', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-8', 'dest': 'destLREC2-8', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC2-9': {'id': 'LREC2-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLREC2-9', 'dest': 'destLREC2-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC3': {'id': 'LREC3', 'clean': 'cleanLREC3', 'dest': 'destLREC3', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC3-4': {'id': 'LREC3-4', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-4', 'dest': 'destLREC3-4', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC3-5': {'id': 'LREC3-5', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-5', 'dest': 'destLREC3-5', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC3-6': {'id': 'LREC3-6', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-6', 'dest': 'destLREC3-6', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC3-7': {'id': 'LREC3-7', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-7', 'dest': 'destLREC3-7', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC3-8': {'id': 'LREC3-8', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-8', 'dest': 'destLREC3-8', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC3-9': {'id': 'LREC3-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLREC3-9', 'dest': 'destLREC3-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC4': {'id': 'LREC4', 'clean': 'cleanLREC4', 'dest': 'destLREC4', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'overrides': {'doubleBuffering': True}, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC4-9': {'id': 'LREC4-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLREC4-9', 'dest': 'destLREC4-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LDRB': {'id': 'LDRB', 'clean': 'cleanLDRB', 'dest': 'destLDRB', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LDRB-9': {'id': 'LDRB-9', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB-9', 'dest': 'destLDRB-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LDRB2': {'id': 'LDRB2', 'clean': 'cleanLDRB2', 'dest': 'destLDRB2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LDRB2-1': {'id': 'LDRB2-1', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB2-1', 'dest': 'destLDRB2-1', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LDRB2-2': {'id': 'LDRB2-2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB2-2', 'dest': 'destLDRB2-2', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LDRB2-3': {'id': 'LDRB2-3', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB2-3', 'dest': 'destLDRB2-3', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LDRB2-4': {'id': 'LDRB2-4', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB2-4', 'dest': 'destLDRB2-4', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'MAST': {'id': 'MAST', 'clean': 'cleanMAST', 'dest': 'destMAST', 'w': 970, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1, 'resize-to': 1}, 'fdb': {'on': '1', 'where': 'inside'}, 'closeBtn': {'mode': 2, 'useShow': 1, 'adc': 0}, 'metaSize': True, 'fclose': 2, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'MAST-9': {'id': 'MAST-9', 'w': 970, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1, 'resize-to': 1}, 'fdb': {'on': '1', 'where': 'inside'}, 'closeBtn': {'mode': 2, 'useShow': 1, 'adc': 0}, 'metaSize': True, 'fclose': 2, 'clean': 'cleanMAST-9', 'dest': 'destMAST-9', 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'MON': {'id': 'MON', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'failed': True, 'clean': 'cleanMON', 'dest': 'destMON', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'MON-1': {'id': 'MON-1', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanMON-1', 'dest': 'destMON-1', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'MON2': {'id': 'MON2', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanMON2', 'dest': 'destMON2', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'MON2-9': {'id': 'MON2-9', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanMON2-9', 'dest': 'destMON2-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'MOMENTS': {'id': 'MOMENTS', 'w': 375, 'h': 667, 'flex': {'ratio': '1x1.78', 'w': {'min': 320}, 'h': {'min': 568}}, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 1, 'exp-push': 1, 'resize-to': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3, 'clean': 'cleanMOMENTS', 'dest': 'destMOMENTS', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FB2': {'id': 'FB2', 'clean': 'cleanFB2', 'dest': 'destFB2', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FB2-1': {'id': 'FB2-1', 'clean': 'cleanFB2-1', 'dest': 'destFB2-1', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FB2-2': {'id': 'FB2-2', 'clean': 'cleanFB2-2', 'dest': 'destFB2-2', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FB2-3': {'id': 'FB2-3', 'clean': 'cleanFB2-3', 'dest': 'destFB2-3', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FB2A': {'id': 'FB2A', 'clean': 'cleanFB2A', 'dest': 'destFB2A', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FB2B': {'id': 'FB2B', 'clean': 'cleanFB2B', 'dest': 'destFB2B', 'metaSize': True, 'w': 120, 'h': 60, 'failed': True, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FB2C': {'id': 'FB2C', 'clean': 'cleanFB2C', 'dest': 'destFB2C', 'metaSize': True, 'w': 120, 'h': 60, 'failed': True, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FB2D': {'id': 'FB2D', 'clean': 'cleanFB2D', 'dest': 'destFB2D', 'metaSize': True, 'w': 120, 'h': 60, 'failed': True, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'NE4': {'id': 'NE4', 'clean': 'cleanNE4', 'dest': 'destNE4', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'NE4-1': {'id': 'NE4-1', 'clean': 'cleanNE4-1', 'dest': 'destNE4-1', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'NE4-2': {'id': 'NE4-2', 'clean': 'cleanNE4-2', 'dest': 'destNE4-2', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'NE4-3': {'id': 'NE4-3', 'clean': 'cleanNE4-3', 'dest': 'destNE4-3', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'NE4A': {'id': 'NE4A', 'clean': 'cleanNE4A', 'dest': 'destNE4A', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'NE4B': {'id': 'NE4B', 'clean': 'cleanNE4B', 'dest': 'destNE4B', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'NE4C': {'id': 'NE4C', 'clean': 'cleanNE4C', 'dest': 'destNE4C', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'NE4D': {'id': 'NE4D', 'clean': 'cleanNE4D', 'dest': 'destNE4D', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALDRB': {'id': 'UBALDRB', 'w': 728, 'h': 90, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB', 'dest': 'destUBALDRB', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALDRB-9': {'id': 'UBALDRB-9', 'w': 728, 'h': 90, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB-9', 'dest': 'destUBALDRB-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALDRB2': {'id': 'UBALDRB2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2', 'dest': 'destUBALDRB2', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALDRB2-1': {'id': 'UBALDRB2-1', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2-1', 'dest': 'destUBALDRB2-1', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALDRB2-2': {'id': 'UBALDRB2-2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2-2', 'dest': 'destUBALDRB2-2', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALDRB2-3': {'id': 'UBALDRB2-3', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2-3', 'dest': 'destUBALDRB2-3', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALDRB2-4': {'id': 'UBALDRB2-4', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2-4', 'dest': 'destUBALDRB2-4', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALREC': {'id': 'UBALREC', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3, 'clean': 'cleanUBALREC', 'dest': 'destUBALREC', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALREC-1': {'id': 'UBALREC-1', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3, 'clean': 'cleanUBALREC-1', 'dest': 'destUBALREC-1', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALREC-9': {'id': 'UBALREC-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3, 'clean': 'cleanUBALREC-9', 'dest': 'destUBALREC-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALREC2-9': {'id': 'UBALREC2-9', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBALREC2-9', 'dest': 'destUBALREC2-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALREC2': {'id': 'UBALREC2', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBALREC2', 'dest': 'destUBALREC2', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALREC3': {'id': 'UBALREC3', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBALREC3', 'dest': 'destUBALREC3', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALREC3-9': {'id': 'UBALREC3-9', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBALREC3-9', 'dest': 'destUBALREC3-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBAMON': {'id': 'UBAMON', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBAMON', 'dest': 'destUBAMON', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBAMON-9': {'id': 'UBAMON-9', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBAMON-9', 'dest': 'destUBAMON-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBAMON2': {'id': 'UBAMON2', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBAMON2', 'dest': 'destUBAMON2', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'WFPAD': {'id': 'WFPAD', 'w': 320, 'h': 50, 'autoFetch': False, 'enable': True, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1, 'lyr': 1, 'resize-to': 1}, 'metaSize': True, 'staticLayout': False, 'fdb': False, 'clean': 'cleanWFPAD', 'dest': 'destWFPAD', 'fallback': None, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'WFPAD2': {'id': 'WFPAD2', 'w': 320, 'h': 50, 'autoFetch': False, 'enable': True, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1, 'lyr': 1, 'resize-to': 1}, 'metaSize': True, 'staticLayout': False, 'fdb': False, 'clean': 'cleanWFPAD2', 'dest': 'destWFPAD2', 'fallback': None, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'SPL': {'id': 'SPL', 'flex': 'both', 'enable': True, 'autoFetch': False, 'staticLayout': False, 'fdb': False, 'supports': {'cmsg': 1}, 'uhslot': '.YDC-UH', 'meta': {'type': 'stream', 'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}, 'css': '.Mags-FontA{font-family:\"HelveticaNeue\",Helvetica,Arial,sans-serif;font-weight:300;}.Mags-FontA.Size1{font-size:13px;}.Mags-FontA.Size2{font-size:16px;}.Mags-FontA.Size3{font-size:20px;}.Mags-FontA.Size4{font-size:22px;}.Mags-FontA.Size5{font-size:33px;}.Mags-FontA.Size6{font-size:35px;}.Mags-FontA.Size7{font-size:58px;}.Mags-FontA.Size8{font-size:70px;}.Mags-FontA.Size9{font-size:100px;}.Mags-FontB{font-family:Georgia,Times,serif;font-weight:400;}.Mags-FontB.Size1{font-size:18px;}.Mags-FontC{font-family:\"HelveticaNeue\",Helvetica,Arial,sans-serif;font-weight:400;}.Mags-FontC.Size1{font-size:11px;}.Mags-FontC.Size2{font-size:14px;}.Mags-FontC.Size3{font-size:16px;}.Mags-FontC.Size4{font-size:20px;}.Mags-FontC.Size5{font-size:30px;}.Mags-FontC.Size6{font-size:32px;}.Mags-FontC.Size7{font-size:52px;}', 'clean': 'cleanSPL', 'dest': 'destSPL', 'fallback': None, 'metaSize': False}, 'TRADENOW': {'id': 'TRADENOW', 'clean': 'cleanTRADENOW', 'dest': 'destTRADENOW', 'w': 280, 'h': 55, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'failed': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'TRADENOW-1': {'id': 'TRADENOW', 'clean': 'cleanTRADENOW-1', 'dest': 'destTRADENOW-1', 'fr': 'expIfr_exp', 'w': 320, 'h': 114, 'supports': {'exp-ovr': 1, 'exp-push': 1, 'resize-to': 1}, 'flex': {'ratio': '3.28x1', 'h': {'min': 114, 'max': 280}}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'INARTICLE': {'id': 'INARTICLE', 'w': 375, 'h': 211, 'autoFetch': False, 'fr': 'expIfr_exp', 'flex': {'ratio': '1.78x1', 'w': {'min': 10}, 'h': {'min': 5}}, 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'z': 9, 'clean': 'cleanINARTICLE', 'dest': 'destINARTICLE', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}}, 'events': {'DEFAULT': {'sp': 1183300002, 'ssl': 1, 'secure': 1}, 'adFetch': {'name': 'adFetch', 'dynamic': True, 'viewportOnly': 'MAST,LDRB,LDRB2,LREC,LREC2,MON,FB2,FB2-1,FB2-2,FB2-3,BTN,BTN-1,BTN-2,BTN-3,BTN1,NE4,NE4-1,NE4-2,NE4-3', 'ps': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,LREC2,FOOT,FSRVY,TRADENOW', 'firstRender': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,TRADENOW', 'sponsoredAds': '', 'sponsoredAdsClass': ''}, 'AUTO': {'ddd': 0, 'name': 'AUTO', 'autoStart': 1, 'autoMax': 25, 'autoIV': 1, 'autoRT': 10000, 'autoDDG': 0, 'npv': 1, 'ps': {'BTN': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNA': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNB': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTND': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2A': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2B': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2C': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2D': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC4-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': '35000'}, 'MAST': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'MAST-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'MON': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'MON-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4A': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4B': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4C': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4D': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'SCREC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'SPL': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'WIDGETA': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'TRADENOW': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'TRADENOW-1': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'WPS': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'MON2': {'autoRT': 10000}, 'MON2-9': {'autoRT': 10000}}, 'groups': {'LREC3': 'LREC3', 'LREC4': None, 'MON2': 'LREC3', 'LREC3-9': 'MON2-9', 'LREC4-9': 'MON2-9', 'MON2-9': 'LREC3-9,LREC4-9'}}}, 'firstRenderingVisible': True}, 'adFetchEvent': {'ps': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,LREC2,FOOT,TRADENOW', 'sp': 95993639, 'sa': ' ticker=AAPL Y-BUCKET=finance-US-en-US-def LREC=300x250,1x1 rs=\"pt:utility;site:finance;ver:ydotcom;pct:qsp;lu:0\" migration=1 quote_type=EQUITY', 'optionalps': '', 'launchViewportAdSlot': [], 'site': 'finance'}, 'siteAttrs': ' ticker=AAPL Y-BUCKET=finance-US-en-US-def LREC=300x250,1x1 rs=\"pt:utility;site:finance;ver:ydotcom;pct:qsp;lu:0\" migration=1 quote_type=EQUITY', 'autoAdRender': True, 'supportMultipleRenderTargets': True, 'darlaJsAtTop': True, 'delayedRender': False, 'darlaVersion': '4-7-1', 'disableDarla': False, 'detectAdblock': True, 'inarticleTextEnable': False, 'adblockPos': True, 'disableDocDomain': True, 'removeFSRVY': True, 'enableAdboost': True, 'enableUBAMON': True, 'adBoostGroupConf': {'LREC3': None, 'LREC4': None, 'MON2': {'extrapositions': ['LREC3', 'LREC4']}, 'LREC3-9': {'inview': 'LREC4-9', 'extrapositions': ['MON2-9']}, 'LREC4-9': {'inview': 'LREC3-9', 'extrapositions': ['MON2-9']}, 'MON2-9': {'extrapositions': ['LREC3-9', 'LREC4-9']}}, 'viewerAdboost': True, 'tabswitchRotateTime': 3000, 'deferRender': True, 'keepPerfEntries': False, 'darlaAssetFetch': True, 'cacheDarlaAsset': True, 'darlaConfigFetch': True, 'cacheDarlaConfig': True, 'prefetchedPositions': {'FB2A': {'hasError': False, 'error': 'none', 'size': '120x60', 'slotData': {'trusted_custom': 'false', 'freqcapped': 'false', 'delivery': '-1', 'pacing': '-1', 'expires': '1946948', 'companion': 'false', 'exclusive': 'true', 'redirect': 'false', 'pvid': 'yRVphDc0LjZ0BaGH_kLmwgKiMTI4LgAAAABC3AdF'}, 'serveType': '6'}, 'FB2B': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}, 'FB2C': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}, 'FB2D': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}, 'LDRB': {'hasError': False, 'error': 'none', 'size': '728x90', 'slotData': {}, 'serveType': '7'}, 'LDRB2': {'hasError': False, 'error': 'none', 'size': '728x90', 'slotData': {}, 'serveType': '7'}, 'MON': {'hasError': True, 'error': 'fnad', 'size': 'unknown', 'slotData': None, 'serveType': '0'}, 'LREC': {'hasError': False, 'error': 'none', 'size': '300x250', 'slotData': {}, 'serveType': '7'}, 'LREC2': {'hasError': False, 'error': 'none', 'size': '300x250', 'slotData': {}, 'serveType': '7'}, 'FOOT': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}, 'TRADENOW': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}}, '_newPageRendered': False, 'checkForModalClose': True, 'nukeAds': ['LREC', 'LREC2', 'LREC-9', 'LREC2-9', 'LREC3-9', 'LREC4-9', 'LDRB-9', 'MAST-9', 'MON-1', 'SPL'], 'adfetchTimeout': 500, 'forceSsl': False, 'customPositionEnabled': False, 'customPositionConf': {}, 'reactjsDisabled': False, 'prefetchDisabled': False, 'displayMomentsScroller': False, 'enableJac': False, 'adsMeta': None, 'nonNativeBillboardConf': {'positions': {}}, 'nativeBillboardConf': {'positions': {}}, 'allowHostUrlAsReferrer': True, 'detectExpandEvent': False, 'launchViewportFetch': False, 'checkPrefetchedAdHidden': False, 'enableAdPlaceHolder': True, 'darlaAdBlockExp': False, 'hiddenPrefetchedAds': [], '_childCompositeReady': {}}, 'VideoStore': {'videos': {}, 'microdata': {}, '_cdnBase': 'https://s.yimg.com'}, 'ComponentConfigStore': {'configs': {'Nav-0-DesktopNav': {'enablePremiumNav': True, 'navItems': [{'name': 'Personal Finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}]}], 'ui': {'navCache': True, 'remoteAdapter': True, 'makeSticky': False, 'isNavLink': True, 'relativeLinks': True, 'navFont': 'Ff($yahooSansFinanceFont)!', 'headerTitle': 'finance', 'highlightPropertyHome': False, 'dividerClasses': 'H(0)!', 'offsetHack': 'Pt(2px) Bgc(t)!', 'navMainLeftClasses': 'Mend(80px)', 'leftNavClasses': 'Pstart(10px) Mstart(-10px) nr-applet-main-nav-right_Ov(inh)!', 'navTitleClasses': 'Pstart(10px) Mstart(-10px)!', 'linkItemClasses': 'Bgc($linkColor):h W(230px)!', 'subnavLinkClasses': 'Tt(n)! C($primaryColor) C(white)!:h Maw(200px)!', 'darkTheme': False, 'selectColor': 'C($finNavBlueText)! Bdbw(0px) H(42px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'subnavClasses': 'Bgc($lv3BgColor)!', 'hoverColor': 'C($finNavBlueText):h', 'overrideColor': 'C($finNavBlueText)', 'propertyHomeSelectColor': 'Bdbc($linkColor) Bdbs(s)! Bdbw(4px) H(38px)', 'propertyHomeClasses': 'Tt(c)! Bdbc($linkColor):h Bdbs(s):h Bdbw(4px):h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkClasses': 'Tt(n)!', 'navLinkClassesOnHover': 'Bdbc($linkColor)!:h Bdbs(s)!:h Bdbw(4px)!:h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkNonHoverClasses': 'C($topNavLinkGray) Bdbs(n)', 'highlightTriangleColor': 'transparent transparent #fff', 'navMainRightClasses': 'Bdc(t) Bdrs(1.5px) Bdbs(s):h Px(10px)!'}, 'featureSwitches': {'useNavSelectLogic': True, 'disableDivider': True, 'followButtons': False, 'navLogoAlign': False, 'navrailCollapse': False, 'enableHighlightTriangle': True, 'useSubnavTitleSlk': True}, 'i13n': {'itc': 0, 'sec': 'navrail'}, 'site': 'finance', 'mrt': {'static': False}, 'renderSecondaryNav': True, 'defaultRowNum': 10, 'components': {'finance': {'linkWidth': 230, 'linksRight': ['feature_promo']}}, 'linkMeta': {'feature_promo': {'bundles': {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'isPremium': True, 'autoStart': True, 'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'checkStoreBeforeCall': True, 'placement': 'finance-eyebrow-index'}}}}}, 'Nav-1-NavHelper': {'enablePremiumNav': True, 'navItems': [{'name': 'Yahoo Finance Plus', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}, 'requiresPremiumExperience': True}, {'name': 'Screeners', 'children': [{'name': 'Saved Screeners', 'url': 'https://finance.yahoo.com/screener'}, {'name': 'Equity Screener', 'url': 'https://finance.yahoo.com/screener/new'}, {'name': 'Mutual Fund Screener', 'url': 'https://finance.yahoo.com/screener/mutualfund/new'}, {'name': 'ETF Screener', 'url': 'https://finance.yahoo.com/screener/etf/new'}, {'name': 'Futures Screener', 'url': 'https://finance.yahoo.com/screener/future/new'}, {'name': 'Index Screener', 'url': 'https://finance.yahoo.com/screener/index/new'}, {'name': 'Analyst Rating Screener', 'url': 'https://finance.yahoo.com/screener/analyst_ratings/new?ncid=dcm_320339942_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Technical Events Screener', 'url': 'https://finance.yahoo.com/screener/tradingcentral_event/new?ncid=dcm_320544712_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Smart Money Screener', 'url': 'https://finance.yahoo.com/screener/institutional_interest/new?ncid=dcm_320344326_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Top Holdings Screener', 'url': 'https://finance.yahoo.com/screener/institutional_holdings/new?ncid=dcm_320545006_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}], 'requiresPremiumExperience': True}]}, 'SecondaryNav-0-SecondaryNav': {'enablePremiumNav': True, 'ui': {'enableRelativeUrl': True, 'navCache': True, 'remoteAdapter': True, 'makeSticky': False, 'isNavLink': True, 'relativeLinks': True}, 'featureSwitches': {'useNavSelectLogic': True}, 'i13n': {'itc': 0, 'sec': 'subnav'}, 'site': 'finance', 'navItems': [{'name': 'Screeners', 'children': [{'name': 'Saved Screeners', 'url': 'https://finance.yahoo.com/screener'}, {'name': 'Equity Screener', 'url': 'https://finance.yahoo.com/screener/new'}, {'name': 'Mutual Fund Screener', 'url': 'https://finance.yahoo.com/screener/mutualfund/new'}, {'name': 'ETF Screener', 'url': 'https://finance.yahoo.com/screener/etf/new'}, {'name': 'Futures Screener', 'url': 'https://finance.yahoo.com/screener/future/new'}, {'name': 'Index Screener', 'url': 'https://finance.yahoo.com/screener/index/new'}, {'name': 'Analyst Rating Screener', 'url': 'https://finance.yahoo.com/screener/analyst_ratings/new?ncid=dcm_320339942_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Technical Events Screener', 'url': 'https://finance.yahoo.com/screener/tradingcentral_event/new?ncid=dcm_320544712_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Smart Money Screener', 'url': 'https://finance.yahoo.com/screener/institutional_interest/new?ncid=dcm_320344326_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Top holdings screener', 'url': 'https://finance.yahoo.com/screener/institutional_holdings/new?ncid=dcm_320545006_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}], 'requiresPremiumExperience': True}]}, 'Lead-2-FinanceHeader': {'messaging': {'enabled': False, 'textId': 'DEFAULT_MESSAGE', 'testMsg': ''}}, 'Lead-3-FeatureBar': {'contentSite': '', 'convertContentUrl': True, 'imageSize': {'width': 272, 'height': 144}, 'scoobyCompat': False, 'ui': {'container_classnames': 'W(100%) Bxz(bb) Bdrs(2px) Maw($maxModuleWidth) Mx(a) D(n)--print', 'strictViewMatch': False, 'wrapper_classnames': 'Bgc(white) Pos(r) Bxz(bb) Maw($newGridWidth) Miw($minGridWidth) Miw(a)!--tab768 Miw(a)!--tab1024 Mstart(a) Mend(a) Px(20px) Pb(10px) D(n)--print', 'prerender': {'enabled': False, 'renderTargetId': 'modal'}, 'link_component': 'WaferLink'}, 'useNCP': True, 'site': 'finance'}, 'Lead-5-QuoteHeader': {'cryptocurrency': {'title': 'CoinMarketCap', 'imgUrl': 'https://s.yimg.com/uc/fin/img/19/10/1990f37.png', 'url': 'https://coinmarketcap.com/', 'className': 'W(110px) H(19px) Va(m)!'}, 'updateQuoteDataOnCheck': False, 'enhanceAddToWL': True, 'displayPageviews': True}, 'Lead-6-QuoteNav': {'tabs': {'CHART': True, 'SUSTAINABILITY': True, 'COMPANY_INSIGHTS': True, 'COMPANY_OUTLOOK': False}, 'tickerConfig': {'^FTSE': {'tabs': {'HISTORICAL_DATA': False}}, '^FTAS': {'tabs': {'HISTORICAL_DATA': False}}, '^FTAI': {'tabs': {'HISTORICAL_DATA': False}}, '^FTMC': {'tabs': {'HISTORICAL_DATA': False}}, '^FTLC': {'tabs': {'HISTORICAL_DATA': False}}, '^STI': {'tabs': {'HISTORICAL_DATA': False}}, '^KLSE': {'tabs': {'HISTORICAL_DATA': False}}, 'FTSEMIB.MI': {'tabs': {'HISTORICAL_DATA': False}}}}, 'Lead-7-Rmp': {'headers': {}, 'useDynamicHostHeader': False, 'passBucket': False, 'usePageSpaceId': False, 'assets': {'critical': True, 'dependencies': {'css': [], 'js': []}, 'name': 'SmartAdDynamicData', 'm_id': 'smart-ad-dynamic-data', 'ctrl': 'SmartAdDynamicData'}, 'endpoint': {'query': {'ctrl': 'SmartAdDynamicData', 'm_id': 'smart-ad-dynamic-data'}, 'path': '/_rcv/remote', 'method': 'POST', 'body': {'m_id': 'smart-ad-dynamic-data', 'ctrl': 'SmartAdDynamicData', 'm_mode': 'json', 'site': 'finance', 'config': {'apiVersion': '2', 'adPositions': ['FB2A', 'FB2B', 'FB2C', 'FB2D', 'LDRB', 'LREC', 'MON', 'LREC2', 'MON2', 'LREC3']}}}, 'httpOptions': {'timeout': 1000, 'cacheTTL': 60000, 'fallbackTTL': 3600000, 'fallbackTimeout': 4000, 'fallbackPerfLabel': '', 'cacheEnabled': False, 'verboseDebug': False, 'perfLabel': 'read_smart_dynamic_data_rmp'}, 'mappedDevice': 'desktop', 'disableEndpoint': False, 'wrapperDiv': {'wrapperDivClass': '', 'wrapperDivId': ''}, 'serviceId': 'nel_ms', 'enableNonIstioFallback': False, 'pathParamsToForward': ['symbol']}, 'Col1-1-Financials': {'canvass': {'tickerTagging': True, 'enableRelatedTags': False, 'messagesPerPage': 20, 'oauthConsumerKey': 'finance.oauth.client.canvass.prod.consumerKey', 'oauthConsumerSecret': 'finance.oauth.client.canvass.prod.consumerSecret', 'uploadOptions': 'TEXT,SMARTLINKS,GIF', 'rankingProfile': 'canvassPCRDProfile', 'ui': {'userLabels': {'enable': True, 'labels': {'BULLISH': {'title': 'Bullish', 'icon': {'name': 'traffic', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle'}}}, 'NEUTRAL': {'title': 'Neutral', 'icon': {'name': 'arrow-right', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle', 'transform': 'translateY(-1px)'}}}, 'BEARISH': {'title': 'Bearish', 'icon': {'name': 'traffic', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle', 'transform': 'scaleY(-1)'}}}}}, 'enableRepliesToggle': True}}, 'videoConfig': {'videoFetchCount': 10, 'videoProps': {'expName': 'qsp', 'endscreen': {'show': False}, 'docking': {'enableOnScrollDown': False, 'enableOnScrollUp': False, 'fadeInAnimation': True, 'position': {'left': 'ref', 'right': 0, 'bottom': 55}}, 'vpaidTimeout': 10}}, 'adReTargetBeacon': {'enabled': True, 'url': 'https://sp.analytics.yahoo.com/spp.pl?a=10000&.yp=428726'}, 'chart': {'urlImagePrefix': 'https://s.yimg.com/uc', 'isChartTab': True, 'toolBarItems': ['indicators', 'comparisons', 'separator', 'ranges', 'separator', 'intervals', 'chartTypes', 'drawButton', 'events'], 'font': '500 11px Yahoo Sans Finance, Helvetica Neue, Helvetica, sans-serif', 'rightBarItems': ['settings', 'share', 'reset'], 'useNextGenHistory': True}, 'cryptocurrency': {'title': 'CoinMarketCap', 'imgUrl': 'https://s.yimg.com/uc/fin/img/19/10/1990f37.png', 'url': 'https://coinmarketcap.com/', 'className': 'W(110px) H(19px) Va(m)!'}, 'classNames': {'emptyState': 'Ta(c) D(tb) W(100%) Bgc($lv4BgColor) H($company360EmptyHeight) smartphone_H(220px)'}, 'subtabNavItems': {'CURRENCY': [], 'EQUITY': [{'category': 'summary', 'title': 'ALL', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'all news'}}, {'category': 'news', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'latest news'}}, {'category': 'press-releases', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'press releases'}}], 'ETF': [], 'FUTURE': [], 'INDEX': [], 'MUTUALFUND': [], 'OPTION': [], 'MONEYMARKET': [], 'CRYPTOCURRENCY': []}, 'bundleName': 'tdv2-applet-rmp', 'name': 'Rmp', 'compositeConfig': {'serviceId': 'nel_ms', 'assets': {'m_id': 'spotIm', 'ctrl': 'SpotImJAC'}, 'endpoint': {'method': 'POST', 'path': '/_rcv/remote', 'body': {'ctrl': 'SpotImJAC', 'm_id': 'spotIm', 'm_mode': 'json', 'site': 'finance', 'config': {'conversationEnabled': True, 'leftRailWidth': '', 'messages_cnt': 10, 'passiveReactionEnabled': True, 'showCommentCount': True, 'stageSpotId': 'sp_n93tLsKu', 'spotId': 'sp_Rba9aFpG', 'useStageToken': False, 'useCase': 'qsp', 'xhrPathPrefix': '/nel_ms/_rcv/remote'}}}, 'wrapperDiv': {'wrapperDivClass': 'wafer-rapid-module', 'wrapperDivId': 'openweb-community'}}, 'fredTickerConfig': {'A191RP1Q027SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RP1A027NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RL1Q225SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RL1A225NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDP.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDPA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDPC1.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDPCA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'CPIAUCSL.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'CUUS0000SA0.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'PAYEMS.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'NPPTTL.I': {'dataSource': 'Automatic Data Processing, Inc.'}, 'PPIFIS.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'HOUST.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MSPNHSUS.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MSPUS.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MEHOINUSA646N.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MEHOINUSA672N.I': {'dataSource': 'U.S. Bureau of the Census'}, 'UNRATE.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'A939RX0Q048SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A939RC0A052NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A939RC0Q052SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'AMTMTI.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MNFCTRMPCSMSA.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MNFCTRSMSA.I': {'dataSource': 'U.S. Bureau of the Census'}, 'BOPGSTB.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}}, 'promoConfig': {'imgUrl': 'https://s.yimg.com/cv/apiv2/default/StockPicks_-_E0E4E9_border-1@2x.png', 'enabled': True, 'hideFromHighValueUsers': True, 'liveTitle': 'Yahoo Finance Plus', 'eventUrl': 'https://ad.doubleclick.net/ddm/trackclk/N360801.1913355YAHOOADMANAGER/B23644564.298415483;dc_trk_aid=490172245;dc_trk_cid=127172993;dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;tfua=;gdpr=${GDPR};gdpr_consent=${GDPR_CONSENT_755};ltd='}, 'promoImgUrl': {'src': 'https://s.yimg.com/cv/apiv2/yahoo_finance/yf_company360.png'}}, 'Col2-1-MonalixaComponent': {'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'placement': 'finance-desktop-web-qsp-rightrail'}, 'Col2-6-Footer': {'footer': {'aboutUrl': 'https://policies.oath.com/us/en/oath/privacy/adinfo/index.html', 'companyName': 'Yahoo', 'disclaimerUrl': 'https://help.yahoo.com/kb/finance-for-web/SLN2310.html?locale=en_US', 'helpUrl': 'https://help.yahoo.com/kb/finance-for-web', 'privacyText': 'FOOTER_PRIVACY_TEXT', 'privacyUrl': 'https://policies.oath.com/us/en/oath/privacy/index.html', 'suggestUrl': 'https://yahoo.uservoice.com/forums/382977', 'termsUrl': 'https://legal.yahoo.com/us/en/yahoo/terms/otos/index.html', 'sitemapUrl': 'https://finance.yahoo.com/sitemap/'}, 'followbutton': {'twitter_follow': 'https://twitter.com/YahooFinance', 'linkedin_follow': 'https://www.linkedin.com/company/yahoo-finance', 'facebook_follow': 'https://facebook.com/yahoofinance'}, 'logoUrl': 'https://s.yimg.com/os/finance/dd-site/img/Oath_YFin_Logo_EN.svg'}, 'Nav-0-DesktopNav-0-DesktopNav': {'closeBtn': False, 'renderMobileOnServer': False, 'renderSecondaryNav': True, 'i13n': {'sec': 'navrail', 'itc': 0}, 'i13n_follow': {'sec': 'social-flw', 'elm': 'follow', 'outcm': 'follow', 'itc': 0, 'mpos': ''}, 'ui': {'bgColor': 'Bgc(#f9f9f9)', 'darkTheme': False, 'displayGroupTitle': False, 'headerTitle': 'finance', 'highlightPropertyHome': False, 'isNavLink': True, 'mailBadgeClass': 'Bgc($c-fuji-red-1-a) Bdrs(11px) Bdc(#fff) Bdw(2px) Bds(s) W(8px) H(8px) Pos(a) T(8px) Start(26px)', 'makeSticky': False, 'navCache': True, 'navSections': 'property', 'relativeLinks': True, 'remoteAdapter': True, 'renderLogoNav': False, 'renderPropertyNav': True, 'sections': ['property'], 'showMailCount': False, 'showPropertyHome': True, 'navFont': 'Ff($yahooSansFinanceFont)!', 'dividerClasses': 'H(0)!', 'offsetHack': 'Pt(2px) Bgc(t)!', 'navMainLeftClasses': 'Mend(80px)', 'leftNavClasses': 'Pstart(10px) Mstart(-10px) nr-applet-main-nav-right_Ov(inh)!', 'navTitleClasses': 'Pstart(10px) Mstart(-10px)!', 'linkItemClasses': 'Bgc($linkColor):h W(230px)!', 'subnavLinkClasses': 'Tt(n)! C($primaryColor) C(white)!:h Maw(200px)!', 'selectColor': 'C($finNavBlueText)! Bdbw(0px) H(42px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'subnavClasses': 'Bgc($lv3BgColor)!', 'hoverColor': 'C($finNavBlueText):h', 'overrideColor': 'C($finNavBlueText)', 'propertyHomeSelectColor': 'Bdbc($linkColor) Bdbs(s)! Bdbw(4px) H(38px)', 'propertyHomeClasses': 'Tt(c)! Bdbc($linkColor):h Bdbs(s):h Bdbw(4px):h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkClasses': 'Tt(n)!', 'navLinkClassesOnHover': 'Bdbc($linkColor)!:h Bdbs(s)!:h Bdbw(4px)!:h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkNonHoverClasses': 'C($topNavLinkGray) Bdbs(n)', 'highlightTriangleColor': 'transparent transparent #fff', 'navMainRightClasses': 'Bdc(t) Bdrs(1.5px) Bdbs(s):h Px(10px)!'}, 'theme': {'daaPrivacyRightsIcon': 'https://s.yimg.com/cv/apiv2/default/20200109/Privacy_Rights_icon.png', 'daaPrivacyRightsIconClasses': 'Mstart(1px) Va(m) W(20px) H(20px)', 'mobileIconHeight': 60, 'mobileIconWidth': 150, 'mobileSectionBorder': {}}, 'account_switch': {'isEnabled': True}, 'featureSwitches': {'cobrandLogo': False, 'followButtons': False, 'navLogoAlign': False, 'navrailCollapse': False, 'uhMagDesign': True, 'useNavSelectLogic': True, 'disableDivider': True, 'enableHighlightTriangle': True, 'useSubnavTitleSlk': True}, 'profile': {'mode': 'client', 'avatarSize': '36px', 'loginBaseUrl': 'https://login.yahoo.com/config/login', 'settingUrl': 'https://edit.yahoo.com/config/eval_profile', 'urls': {'signed_in': {'protocol': 'https', 'hostname': 'login.yahoo.com', 'pathname': '/config/login', 'query': {}}, 'signed_out': {'protocol': 'https', 'hostname': 'login.yahoo.com', 'pathname': '/config/login', 'query': {'.direct': 2, 'logout': 1}}, 'signed_out_as': {'protocol': 'https', 'hostname': 'login.yahoo.com', 'pathname': '/config/login', 'query': {'.direct': 1, 'logout_all': 1}}, 'account_info': {'protocol': 'https', 'hostname': 'edit.yahoo.com', 'pathname': '/config/eval_profile', 'query': {}}}}, 'mobileSectionMeta': {'property': {}, 'yahooSites': {'listMeta': {}}, 'services': {}, 'apps': {'listMeta': {}}, 'tools': {'listMeta': {}}}, 'components': {'propertyHome': {'title': 'PROPERTY_HOME', 'dragonFlyKey': 'PROPERTY_HOME'}, 'finance': {'title': 'Finance', 'link': 'https://finance.yahoo.com', 'collapse': True, 'type': 'finance', 'linkWidth': 230, 'i13n': {}, 'links': True, 'propertyColor': '#efefef', 'linksRight': ['feature_promo']}}, 'linkMeta': {'finance': {'link': 'https://finance.yahoo.com'}, 'feature_promo': {'bundles': {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'isPremium': True, 'autoStart': True, 'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'checkStoreBeforeCall': True, 'placement': 'finance-eyebrow-index'}}}}, 'enablePremiumNav': True, 'navItems': [{'name': 'Personal Finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}]}], 'site': 'finance', 'mrt': {'static': False}, 'defaultRowNum': 10}, 'Nav-0-DesktopNav-0-DesktopNav-acct-switch-0-AccountSwitch': {'isEnabled': True, 'clientRender': True, 'accountListLength': 3, 'enableAlphatar': True, 'host': 'login.yahoo.com', 'urlReplacements': {'CRUMB': {'.crumb': '{crumb}'}, 'DONE': {'.done': '{doneUrl}'}, 'DONE_YAHOO': {'.done': '{doneUrlYahoo}'}}, 'urls': {'accountInfo': {'protocol': 'https', 'path': '/account/personalinfo/', 'query': ['DONE', {'.intl': '{intl}'}, {'.lang': '{lang}'}, {'.partner': '{partner}'}, {'.src': '{site}'}, {'activity': 'uh-acctinfo'}]}, 'switchUrl': {'protocol': 'https', 'path': '/d', 'query': ['CRUMB', {'.intl': '{intl}'}, {'.lang': '{lang}'}, {'.partner': '{partner}'}, {'.src': '{site}'}, {'login': '{alias}'}, {'as': '1'}, 'DONE']}, 'manageUrl': {'protocol': 'https', 'path': '/manage_account', 'query': ['CRUMB', {'.intl': '{intl}'}, {'.lang': '{lang}'}, {'.partner': '{partner}'}, {'.src': '{site}'}, {'activity': 'uh-addacct'}, 'DONE']}, 'logoutUrl': {'protocol': 'https', 'path': '/account/logout', 'query': ['CRUMB', {'.src': '{site}'}, {'.intl': '{intl}'}, {'.lang': '{lang}'}, {'.partner': '{partner}'}, {'logout_all': '1'}, {'.direct': '1'}, 'DONE_YAHOO']}, 'requestUrl': {'protocol': 'https', 'path': '/w/device_users', 'query': ['CRUMB']}}, 'styles': {'account_switch_main': {'wrapper': 'Py(16px)', 'account_info': 'C($c-fuji-grey-l) C(asLinkHoverColor):h Td(n) Td(n):h D(ib) Mstart(asIconWidth) Pend(asEndPadding) Whs(nw)'}, 'signed_out': {'wrapper': 'Py(14px) Ta(c) Bdt(asMenuBorder)', 'content': 'C($c-fuji-grey-l) C(asLinkHoverColor):h Td(n) Td(n):h'}, 'add_accounts': {'icon_wrapper': 'W(asIconWidth) D(ib) Va(t) Ta(c)', 'icon_content': 'C($c-fuji-grey-l) Fz(30px) Fw(200) Lh(1.5)', 'text': 'Pt(16px) D(ib) C($c-fuji-grey-l) Zoom Fz(15px)', 'wrapper': 'Bdt(asMenuBorder) Td(n) Td(n):h D(b) Whs(nw) Bgc(asMenuHoverBgc):h H(50px) Pend(asEndPadding)'}, 'avatar': {'size': 40, 'color': '#400090', 'content': 'Bdrs(100px) Bgz(cv) D(ib)', 'panel_content': 'D(ib) Va(m) Bgz(cv) Bdrs(100px)', 'name': 'D(n) Lh(2.6) Mstart(4px)', 'wrapper': 'Zoom Va(t) Ta(c) Fl(start) W(asIconWidth)'}, 'main_account': {'alias': 'C(asLightTextColor) Ell Pt(2px)', 'alias_wrapper': 'Ell C(#000) Fz(13px)', 'content': 'C($c-fuji-grey-l) D(ib) Fz(13px) Pt(10px)', 'name': 'C($c-fuji-grey-l) Ell Fz(15px)', 'name_wrapper': 'Fz(15px) Ell', 'user_info_wrapper': 'W(2/3) D(ib) Zoom Lts(n) Tren(a) Va(t)', 'wrapper': 'Cf'}, 'secondary_accounts': {'list': 'Pos(r) M(0) P(0) List(n)', 'list_item': 'Bdt(asMenuBorder)', 'anchor': 'Td(n) Td(n):h Py(16px) D(b) Cf C(#000) Bgc(asMenuHoverBgc):h'}}}}}, 'CrumbStore': {'crumb': 'fzC.ZBI.dx1'}, 'CompositeStore': {'_instances': {'UH-0-HeaderDesktop': {'status': 'initialized'}, 'Nav-0-DesktopNav': {'status': 'initialized'}, 'SecondaryNav-0-SecondaryNav': {'status': 'initialized'}, 'Lead-2-FinanceHeader': {'status': 'initialized'}, 'Lead-3-FeatureBar': {'status': 'initialized'}, 'Lead-5-QuoteHeader': {'status': 'initialized'}, 'Lead-7-Rmp': {'status': 'initialized'}, 'Col1-1-Financials': {'status': 'initialized'}, 'Col2-1-MonalixaComponent': {'status': 'initialized'}, 'Nav-0-DesktopNav-0-DesktopNav': {'status': 'initialized'}, 'Nav-0-DesktopNav-0-DesktopNav-acct-switch-0-AccountSwitch': {'status': 'initialized'}}}, 'MonalixaStore': {'placements': {}, 'freqCappingEnabled': True}, 'StreamStore': {'articleCategory': {'term': '', 'label': ''}, 'pageCategory': 'YFINANCE:AAPL', 'fallbackCategory': 'YFINANCE:AAPL', 'pageSubsite': ''}, 'UserStore': {'guid': '', 'login': '', 'alias': '', 'firstName': '', 'comscoreParams': {'c14': -1}, 'isSignedIn': False, 'isRecognized': False, 'isLoaded': True}, 'ProfileStore': {'err': {}, 'guid': '', 'profileUrl': '', 'userProfile': {'nickName': '', 'imageUrl': ''}, '_isLoaded': False, '_isRecognized': False, '_isSignedIn': False}, 'QuotePageStore': {'error': None, 'isPageComplete': True, 'pageData': {'componentConfig': {'compositeConfig': {'serviceId': 'nel_ms', 'assets': {'m_id': 'spotIm', 'ctrl': 'SpotImJAC'}, 'endpoint': {'method': 'POST', 'path': '/_rcv/remote', 'body': {'ctrl': 'SpotImJAC', 'm_id': 'spotIm', 'm_mode': 'json', 'site': 'finance', 'config': {'useStageToken': False, 'leftRailWidth': '', 'showCommentCount': True, 'passiveReactionEnabled': True, 'messages_cnt': 10, 'useCase': 'qsp', 'xhrPathPrefix': '/nel_ms/_rcv/remote', 'stageSpotId': 'sp_n93tLsKu', 'spotId': 'sp_Rba9aFpG', 'conversationEnabled': True}}}, 'wrapperDiv': {'wrapperDivClass': 'wafer-rapid-module', 'wrapperDivId': 'openweb-community'}}, 'adReTargetBeacon': {'enabled': True, 'url': 'https://sp.analytics.yahoo.com/spp.pl?a=10000&.yp=428726'}, 'name': 'Rmp', 'bundleName': 'tdv2-applet-rmp', 'classNames': {'emptyState': 'Ta(c) D(tb) W(100%) Bgc($lv4BgColor) H($company360EmptyHeight) smartphone_H(220px)'}, 'promoConfig': {'imgUrl': 'https://s.yimg.com/cv/apiv2/default/StockPicks_-_E0E4E9_border-1@2x.png', 'enabled': True, 'hideFromHighValueUsers': True, 'liveTitle': 'Yahoo Finance Plus', 'eventUrl': 'https://ad.doubleclick.net/ddm/trackclk/N360801.1913355YAHOOADMANAGER/B23644564.298415483;dc_trk_aid=490172245;dc_trk_cid=127172993;dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;tfua=;gdpr=${GDPR};gdpr_consent=${GDPR_CONSENT_755};ltd='}, 'subtabNavItems': {'FUTURE': [], 'EQUITY': [{'category': 'summary', 'title': 'ALL', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'all news'}}, {'category': 'news', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'latest news'}}, {'category': 'press-releases', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'press releases'}}], 'CURRENCY': [], 'INDEX': [], 'CRYPTOCURRENCY': [], 'OPTION': [], 'ETF': [], 'MUTUALFUND': [], 'MONEYMARKET': []}, 'cryptocurrency': {'title': 'CoinMarketCap', 'imgUrl': 'https://s.yimg.com/uc/fin/img/19/10/1990f37.png', 'url': 'https://coinmarketcap.com/', 'className': 'W(110px) H(19px) Va(m)!'}, 'fredTickerConfig': {'PPIFIS.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'MSPUS.I': {'dataSource': 'U.S. Bureau of the Census'}, 'A939RC0Q052SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'CPIAUCSL.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'MNFCTRMPCSMSA.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MSPNHSUS.I': {'dataSource': 'U.S. Bureau of the Census'}, 'GDPA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'HOUST.I': {'dataSource': 'U.S. Bureau of the Census'}, 'A191RP1A027NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDPCA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'CUUS0000SA0.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'GDP.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RL1A225NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'MEHOINUSA646N.I': {'dataSource': 'U.S. Bureau of the Census'}, 'UNRATE.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'AMTMTI.I': {'dataSource': 'U.S. Bureau of the Census'}, 'A939RX0Q048SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RP1Q027SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'MEHOINUSA672N.I': {'dataSource': 'U.S. Bureau of the Census'}, 'A939RC0A052NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'BOPGSTB.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RL1Q225SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'NPPTTL.I': {'dataSource': 'Automatic Data Processing, Inc.'}, 'GDPC1.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'PAYEMS.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'MNFCTRSMSA.I': {'dataSource': 'U.S. Bureau of the Census'}}, 'promoImgUrl': {'src': 'https://s.yimg.com/cv/apiv2/yahoo_finance/yf_company360.png'}, 'canvass': {'tickerTagging': True, 'enableRelatedTags': False, 'messagesPerPage': 20, 'oauthConsumerKey': 'finance.oauth.client.canvass.prod.consumerKey', 'oauthConsumerSecret': 'finance.oauth.client.canvass.prod.consumerSecret', 'uploadOptions': 'TEXT,SMARTLINKS,GIF', 'rankingProfile': 'canvassPCRDProfile', 'ui': {'userLabels': {'enable': True, 'labels': {'BULLISH': {'title': 'Bullish', 'icon': {'name': 'traffic', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle'}}}, 'NEUTRAL': {'title': 'Neutral', 'icon': {'name': 'arrow-right', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle', 'transform': 'translateY(-1px)'}}}, 'BEARISH': {'title': 'Bearish', 'icon': {'name': 'traffic', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle', 'transform': 'scaleY(-1)'}}}}}, 'enableRepliesToggle': True}}, 'videoConfig': {'videoFetchCount': 10, 'videoProps': {'expName': 'qsp', 'endscreen': {'show': False}, 'docking': {'enableOnScrollDown': False, 'enableOnScrollUp': False, 'fadeInAnimation': True, 'position': {'left': 'ref', 'right': 0, 'bottom': 55}}, 'vpaidTimeout': 10}}, 'chart': {'urlImagePrefix': 'https://s.yimg.com/uc', 'isChartTab': True, 'toolBarItems': ['indicators', 'comparisons', 'separator', 'ranges', 'separator', 'intervals', 'chartTypes', 'drawButton', 'events'], 'font': '500 11px Yahoo Sans Finance, Helvetica Neue, Helvetica, sans-serif', 'rightBarItems': ['settings', 'share', 'reset'], 'useNextGenHistory': True}}}}, 'FinancialTemplateStore': {'template': [{'key': 'TotalRevenue', 'title': 'TOTAL_REVENUE', 'children': [{'key': 'OperatingRevenue', 'title': 'OPERATING_REVENUE'}, {'key': 'ExciseTaxes', 'title': 'EXCISE_TAXES'}]}, {'key': 'CostOfRevenue', 'title': 'COST_OF_REVENUE'}, {'key': 'GrossProfit', 'title': 'GROSS_PROFIT'}, {'key': 'OperatingExpense', 'title': 'OPERATING_EXPENSE', 'children': [{'key': 'SellingGeneralAndAdministration', 'title': 'SELLING_GEN_ADMIN', 'children': [{'key': 'GeneralAndAdministrativeExpense', 'title': 'GENERAL_AND_ADMINISTRATIVE_EXPENSE', 'children': [{'key': 'SalariesAndWages', 'title': 'SALARIES_AND_WAGES'}, {'key': 'RentAndLandingFees', 'title': 'RENT_AND_LANDING_FEES'}, {'key': 'InsuranceAndClaims', 'title': 'INSURANCE_AND_CLAIMS'}, {'key': 'OtherGandA', 'title': 'OTHER_GAND_A'}]}, {'key': 'SellingAndMarketingExpense', 'title': 'SELLING_AND_MARKETING_EXPENSE'}]}, {'key': 'ResearchAndDevelopment', 'title': 'RESEARCH_AND_DEVELOPMENT'}, {'key': 'DepreciationAmortizationDepletionIncomeStatement', 'title': 'DEPRECIATION_AMORTIZATION_DEPLETION', 'children': [{'key': 'DepreciationAndAmortizationInIncomeStatement', 'title': 'DEPRECIATION_AND_AMORTIZATION', 'children': [{'key': 'DepreciationIncomeStatement', 'title': 'DEPRECIATION'}, {'key': 'Amortization', 'title': 'AMORTIZATION', 'children': [{'key': 'AmortizationOfIntangiblesIncomeStatement', 'title': 'AMORTIZATION_OF_INTANGIBLES'}]}]}, {'key': 'DepletionIncomeStatement', 'title': 'DEPLETION'}]}, {'key': 'ProvisionForDoubtfulAccounts', 'title': 'PROVISION_FOR_DOUBTFUL_ACCOUNTS'}, {'key': 'OtherTaxes', 'title': 'OTHER_TAXES'}, {'key': 'OtherOperatingExpenses', 'title': 'OTHER_OPERATING_EXPENSES'}]}, {'key': 'OperatingIncome', 'title': 'OPERATING_INCOME'}, {'key': 'NetNonOperatingInterestIncomeExpense', 'title': 'NET_NON_OPERATING_INTEREST_INCOME_EXPENSE', 'children': [{'key': 'InterestIncomeNonOperating', 'title': 'INTEREST_INCOME_NON_OPERATING'}, {'key': 'InterestExpenseNonOperating', 'title': 'INTEREST_EXPENSE_NON_OPERATING'}, {'key': 'TotalOtherFinanceCost', 'title': 'TOTAL_OTHER_FINANCE_COST'}]}, {'key': 'OtherIncomeExpense', 'title': 'OTHER_INCOME_EXPENSE', 'children': [{'key': 'GainOnSaleOfSecurity', 'title': 'GAIN_ON_SALE_OF_SECURITY'}, {'key': 'EarningsFromEquityInterest', 'title': 'EARNINGS_FROM_EQUITY_INTEREST'}, {'key': 'SecuritiesAmortization', 'title': 'SECURITIES_AMORTIZATION'}, {'key': 'SpecialIncomeCharges', 'title': 'SPECIAL_INCOME_CHARGES', 'children': [{'key': 'RestructuringAndMergernAcquisition', 'title': 'RESTRUCTURING_AND_MERGERN_ACQUISITION'}, {'key': 'ImpairmentOfCapitalAssets', 'title': 'IMPAIRMENT_OF_CAPITAL_ASSETS'}, {'key': 'WriteOff', 'title': 'WRITE_OFF'}, {'key': 'OtherSpecialCharges', 'title': 'OTHER_SPECIAL_CHARGES'}, {'key': 'GainOnSaleOfBusiness', 'title': 'GAIN_ON_SALE_OF_BUSINESS'}, {'key': 'GainOnSaleOfPPE', 'title': 'GAIN_ON_SALE_OF_PPE'}]}, {'key': 'OtherNonOperatingIncomeExpenses', 'title': 'OTHER_NON_OPERATING_INCOME_EXPENSES'}]}, {'key': 'PretaxIncome', 'title': 'PRETAX_INCOME'}, {'key': 'TaxProvision', 'title': 'TAX_PROVISION'}, {'key': 'EarningsFromEquityInterestNetOfTax', 'title': 'EARNINGS_FROM_EQUITY_INTEREST_NET_OF_TAX'}, {'key': 'NetIncomeCommonStockholders', 'title': 'NET_INCOME_COMMON_STOCKHOLDERS', 'children': [{'key': 'NetIncome', 'title': 'NET_INCOME', 'children': [{'key': 'NetIncomeIncludingNoncontrollingInterests', 'title': 'NET_INCOME_INCLUDING_NONCONTROLLING_INTERESTS', 'children': [{'key': 'NetIncomeContinuousOperations', 'title': 'NET_INCOME_CONTINUOUS_OPERATIONS'}, {'key': 'NetIncomeDiscontinuousOperations', 'title': 'NET_INCOME_DISCONTINUOUS_OPERATIONS'}, {'key': 'NetIncomeExtraordinary', 'title': 'NET_INCOME_EXTRAORDINARY'}, {'key': 'NetIncomeFromTaxLossCarryforward', 'title': 'NET_INCOME_FROM_TAX_LOSS_CARRYFORWARD'}]}, {'key': 'MinorityInterests', 'title': 'MINORITY_INTERESTS'}]}, {'key': 'PreferredStockDividends', 'title': 'PREFERRED_STOCK_DIVIDENDS'}, {'key': 'OtherunderPreferredStockDividend', 'title': 'OTHERUNDER_PREFERRED_STOCK_DIVIDEND'}]}, {'key': 'AverageDilutionEarnings', 'title': 'AVERAGE_DILUTION_EARNINGS'}, {'key': 'DilutedNIAvailtoComStockholders', 'title': 'DILUTED_NI_AVAILTO_COM_STOCKHOLDERS'}, {'key': 'BasicEPS', 'title': 'BASIC_EPS', 'useRaw': False, 'children': [{'key': 'BasicContinuousOperations', 'title': 'BASIC_CONTINUOUS_OPERATIONS'}, {'key': 'BasicDiscontinuousOperations', 'title': 'BASIC_DISCONTINUOUS_OPERATIONS'}, {'key': 'BasicExtraordinary', 'title': 'BASIC_EXTRAORDINARY'}, {'key': 'BasicAccountingChange', 'title': 'BASIC_ACCOUNTING_CHANGE'}, {'key': 'TaxLossCarryforwardBasicEPS', 'title': 'TAX_LOSS_CARRYFORWARD_BASIC_EPS'}, {'key': 'BasicEPSOtherGainsLosses', 'title': 'BASIC_EPS_OTHER_GAINS_LOSSES'}]}, {'key': 'DilutedEPS', 'title': 'DILUTED_EPS', 'useRaw': False, 'children': [{'key': 'DilutedContinuousOperations', 'title': 'DILUTED_CONTINUOUS_OPERATIONS'}, {'key': 'DilutedDiscontinuousOperations', 'title': 'DILUTED_DISCONTINUOUS_OPERATIONS'}, {'key': 'DilutedExtraordinary', 'title': 'DILUTED_EXTRAORDINARY'}, {'key': 'DilutedAccountingChange', 'title': 'DILUTED_ACCOUNTING_CHANGE'}, {'key': 'TaxLossCarryforwardDilutedEPS', 'title': 'TAX_LOSS_CARRYFORWARD_DILUTED_EPS'}, {'key': 'DilutedEPSOtherGainsLosses', 'title': 'DILUTED_EPS_OTHER_GAINS_LOSSES'}]}, {'key': 'BasicAverageShares', 'title': 'BASIC_AVERAGE_SHARES'}, {'key': 'DilutedAverageShares', 'title': 'DILUTED_AVERAGE_SHARES'}, {'key': 'DividendPerShare', 'title': 'DIVIDEND_PER_SHARE'}, {'key': 'TotalOperatingIncomeAsReported', 'title': 'TOTAL_OPERATING_INCOME_AS_REPORTED'}, {'key': 'ReportedNormalizedBasicEPS', 'title': 'REPORTED_NORMALIZED_BASIC_EPS'}, {'key': 'ReportedNormalizedDilutedEPS', 'title': 'REPORTED_NORMALIZED_DILUTED_EPS'}, {'key': 'RentExpenseSupplemental', 'title': 'RENT_EXPENSE_SUPPLEMENTAL'}, {'key': 'TotalExpenses', 'title': 'TOTAL_EXPENSES'}, {'key': 'NetIncomeFromContinuingAndDiscontinuedOperation', 'title': 'NET_INCOME_FROM_CONTINUING_AND_DISCONTINUED_OPERATION'}, {'key': 'NormalizedIncome', 'title': 'NORMALIZED_INCOME'}, {'key': 'ContinuingAndDiscontinuedBasicEPS', 'title': 'CONTINUING_AND_DISCONTINUED_BASIC_EPS'}, {'key': 'ContinuingAndDiscontinuedDilutedEPS', 'title': 'CONTINUING_AND_DISCONTINUED_DILUTED_EPS'}, {'key': 'InterestIncome', 'title': 'INTEREST_INCOME'}, {'key': 'InterestExpense', 'title': 'INTEREST_EXPENSE'}, {'key': 'NetInterestIncome', 'title': 'NET_INTEREST_INCOME'}, {'key': 'EBIT', 'title': 'EBIT'}, {'key': 'EBITDA', 'title': 'EBITDA'}, {'key': 'ReconciledCostOfRevenue', 'title': 'RECONCILED_COST_OF_REVENUE'}, {'key': 'ReconciledDepreciation', 'title': 'RECONCILED_DEPRECIATION'}, {'key': 'NetIncomeFromContinuingOperationNetMinorityInterest', 'title': 'NET_INCOME_FROM_CONTINUING_OPERATION_NET_MINORITY_INTEREST'}, {'key': 'TotalUnusualItemsExcludingGoodwill', 'title': 'TOTAL_UNUSUAL_ITEMS_EXCLUDING_GOODWILL'}, {'key': 'TotalUnusualItems', 'title': 'TOTAL_UNUSUAL_ITEMS'}, {'key': 'NormalizedBasicEPS', 'title': 'NORMALIZED_BASIC_EPS'}, {'key': 'NormalizedDilutedEPS', 'title': 'NORMALIZED_DILUTED_EPS'}, {'key': 'NormalizedEBITDA', 'title': 'NORMALIZED_EBITDA'}, {'key': 'TaxRateForCalcs', 'title': 'TAX_RATE_FOR_CALCS'}, {'key': 'TaxEffectOfUnusualItems', 'title': 'TAX_EFFECT_OF_UNUSUAL_ITEMS'}]}, 'QuoteTimeSeriesStore': {'timeSeries': {'annualNetIncomeContinuousOperations': [{'dataId': 20094, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 55256000000, 'fmt': '55.26B'}}, {'dataId': 20094, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57411000000, 'fmt': '57.41B'}}, {'dataId': 20094, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 94680000000, 'fmt': '94.68B'}}, {'dataId': 20094, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualTaxEffectOfUnusualItems': [{'dataId': 20419, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0, 'fmt': '0.00'}}, {'dataId': 20419, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0, 'fmt': '0.00'}}, {'dataId': 20419, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0, 'fmt': '0.00'}}, {'dataId': 20419, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0, 'fmt': '0.00'}}], 'trailingTotalOperatingIncomeAsReported': [{'dataId': 20435, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 119437000000, 'fmt': '119.44B'}}], 'annualNetIncomeFromContinuingOperationNetMinorityInterest': [{'dataId': 20331, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 55256000000, 'fmt': '55.26B'}}, {'dataId': 20331, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57411000000, 'fmt': '57.41B'}}, {'dataId': 20331, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 94680000000, 'fmt': '94.68B'}}, {'dataId': 20331, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualTotalOperatingIncomeAsReported': [{'dataId': 20435, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 63930000000, 'fmt': '63.93B'}}, {'dataId': 20435, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 66288000000, 'fmt': '66.29B'}}, {'dataId': 20435, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 108949000000, 'fmt': '108.95B'}}, {'dataId': 20435, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 119437000000, 'fmt': '119.44B'}}], 'annualBasicAverageShares': [{'dataId': 29010, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 18471336000, 'fmt': '18.47B'}}, {'dataId': 29010, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 17352119000, 'fmt': '17.35B'}}, {'dataId': 29010, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16701272000, 'fmt': '16.70B'}}, None], 'annualReconciledDepreciation': [{'dataId': 20315, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 12547000000, 'fmt': '12.55B'}}, {'dataId': 20315, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 11056000000, 'fmt': '11.06B'}}, {'dataId': 20315, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 11284000000, 'fmt': '11.28B'}}, {'dataId': 20315, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 11104000000, 'fmt': '11.10B'}}], 'trailingNetIncomeFromContinuingOperationNetMinorityInterest': [{'dataId': 20331, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'trailingTaxEffectOfUnusualItems': [{'dataId': 20419, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 0, 'fmt': '0.00'}}], 'annualDepreciationAndAmortizationInIncomeStatement': [], 'annualEarningsFromEquityInterest': [], 'annualNetIncomeFromTaxLossCarryforward': [], 'annualTotalOtherFinanceCost': [], 'trailingReconciledDepreciation': [{'dataId': 20315, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 11104000000, 'fmt': '11.10B'}}], 'annualRestructuringAndMergernAcquisition': [], 'trailingNormalizedEBITDA': [{'dataId': 20420, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 133138000000, 'fmt': '133.14B'}}], 'trailingOperatingRevenue': [{'dataId': 20112, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 394328000000, 'fmt': '394.33B'}}], 'annualOperatingExpense': [{'dataId': 20108, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 34462000000, 'fmt': '34.46B'}}, {'dataId': 20108, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 38668000000, 'fmt': '38.67B'}}, {'dataId': 20108, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 43887000000, 'fmt': '43.89B'}}, {'dataId': 20108, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 51345000000, 'fmt': '51.34B'}}], 'trailingNetIncomeIncludingNoncontrollingInterests': [{'dataId': 20346, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'trailingSellingGeneralAndAdministration': [{'dataId': 20159, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 25094000000, 'fmt': '25.09B'}}], 'trailingOtherNonOperatingIncomeExpenses': [{'dataId': 20412, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': -228000000, 'fmt': '-228.00M'}}], 'trailingInterestIncome': [{'dataId': 20177, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 2825000000, 'fmt': '2.83B'}}], 'annualTotalRevenue': [{'dataId': 20100, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 260174000000, 'fmt': '260.17B'}}, {'dataId': 20100, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 274515000000, 'fmt': '274.51B'}}, {'dataId': 20100, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 365817000000, 'fmt': '365.82B'}}, {'dataId': 20100, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 394328000000, 'fmt': '394.33B'}}], 'trailingResearchAndDevelopment': [{'dataId': 20151, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 26251000000, 'fmt': '26.25B'}}], 'annualResearchAndDevelopment': [{'dataId': 20151, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16217000000, 'fmt': '16.22B'}}, {'dataId': 20151, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 18752000000, 'fmt': '18.75B'}}, {'dataId': 20151, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 21914000000, 'fmt': '21.91B'}}, {'dataId': 20151, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 26251000000, 'fmt': '26.25B'}}], 'trailingCostOfRevenue': [{'dataId': 20013, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 223546000000, 'fmt': '223.55B'}}], 'annualInterestExpense': [{'dataId': 20057, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 3576000000, 'fmt': '3.58B'}}, {'dataId': 20057, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2873000000, 'fmt': '2.87B'}}, {'dataId': 20057, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2645000000, 'fmt': '2.65B'}}, {'dataId': 20057, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2931000000, 'fmt': '2.93B'}}], 'annualDilutedNIAvailtoComStockholders': [{'dataId': 20424, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 55256000000, 'fmt': '55.26B'}}, {'dataId': 20424, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57411000000, 'fmt': '57.41B'}}, {'dataId': 20424, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 94680000000, 'fmt': '94.68B'}}, {'dataId': 20424, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualNetIncomeIncludingNoncontrollingInterests': [{'dataId': 20346, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 55256000000, 'fmt': '55.26B'}}, {'dataId': 20346, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57411000000, 'fmt': '57.41B'}}, {'dataId': 20346, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 94680000000, 'fmt': '94.68B'}}, {'dataId': 20346, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'trailingDilutedNIAvailtoComStockholders': [{'dataId': 20424, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualNormalizedEBITDA': [{'dataId': 20420, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 81860000000, 'fmt': '81.86B'}}, {'dataId': 20420, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 81020000000, 'fmt': '81.02B'}}, {'dataId': 20420, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 123136000000, 'fmt': '123.14B'}}, {'dataId': 20420, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 133138000000, 'fmt': '133.14B'}}], 'trailingNetIncome': [{'dataId': 20091, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualOtherOperatingExpenses': [], 'annualBasicEPS': [{'dataId': 29004, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2.9925, 'fmt': '2.99'}}, {'dataId': 29004, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 3.31, 'fmt': '3.31'}}, {'dataId': 29004, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 5.67, 'fmt': '5.67'}}, None], 'annualGrossProfit': [{'dataId': 20046, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 98392000000, 'fmt': '98.39B'}}, {'dataId': 20046, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 104956000000, 'fmt': '104.96B'}}, {'dataId': 20046, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 152836000000, 'fmt': '152.84B'}}, {'dataId': 20046, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 170782000000, 'fmt': '170.78B'}}], 'annualOtherNonOperatingIncomeExpenses': [{'dataId': 20412, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 422000000, 'fmt': '422.00M'}}, {'dataId': 20412, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -87000000, 'fmt': '-87.00M'}}, {'dataId': 20412, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 60000000, 'fmt': '60.00M'}}, {'dataId': 20412, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -228000000, 'fmt': '-228.00M'}}], 'annualDepreciationAmortizationDepletionIncomeStatement': [], 'trailingEBIT': [{'dataId': 20189, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 122034000000, 'fmt': '122.03B'}}], 'annualOperatingRevenue': [{'dataId': 20112, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 260174000000, 'fmt': '260.17B'}}, {'dataId': 20112, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 274515000000, 'fmt': '274.51B'}}, {'dataId': 20112, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 365817000000, 'fmt': '365.82B'}}, {'dataId': 20112, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 394328000000, 'fmt': '394.33B'}}], 'trailingOperatingExpense': [{'dataId': 20108, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 51345000000, 'fmt': '51.34B'}}], 'annualOtherSpecialCharges': [], 'trailingNetIncomeContinuousOperations': [{'dataId': 20094, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualInterestIncome': [{'dataId': 20177, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 4961000000, 'fmt': '4.96B'}}, {'dataId': 20177, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 3763000000, 'fmt': '3.76B'}}, {'dataId': 20177, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2843000000, 'fmt': '2.84B'}}, {'dataId': 20177, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2825000000, 'fmt': '2.83B'}}], 'trailingNormalizedIncome': [{'dataId': 20316, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualNetNonOperatingInterestIncomeExpense': [{'dataId': 20077, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 1385000000, 'fmt': '1.39B'}}, {'dataId': 20077, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 890000000, 'fmt': '890.00M'}}, {'dataId': 20077, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 198000000, 'fmt': '198.00M'}}, {'dataId': 20077, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -106000000, 'fmt': '-106.00M'}}], 'annualReconciledCostOfRevenue': [{'dataId': 20314, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 161782000000, 'fmt': '161.78B'}}, {'dataId': 20314, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 169559000000, 'fmt': '169.56B'}}, {'dataId': 20314, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 212981000000, 'fmt': '212.98B'}}, {'dataId': 20314, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 223546000000, 'fmt': '223.55B'}}], 'trailingNetIncomeCommonStockholders': [{'dataId': 20093, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'trailingTaxRateForCalcs': [{'dataId': 20418, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 0.162, 'fmt': '0.16'}}], 'trailingNetNonOperatingInterestIncomeExpense': [{'dataId': 20077, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': -106000000, 'fmt': '-106.00M'}}], 'trailingTotalExpenses': [{'dataId': 20164, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 274891000000, 'fmt': '274.89B'}}], 'annualTaxRateForCalcs': [{'dataId': 20418, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0.159, 'fmt': '0.16'}}, {'dataId': 20418, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0.144, 'fmt': '0.14'}}, {'dataId': 20418, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0.133, 'fmt': '0.13'}}, {'dataId': 20418, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0.162, 'fmt': '0.16'}}], 'annualNetIncomeCommonStockholders': [{'dataId': 20093, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 55256000000, 'fmt': '55.26B'}}, {'dataId': 20093, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57411000000, 'fmt': '57.41B'}}, {'dataId': 20093, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 94680000000, 'fmt': '94.68B'}}, {'dataId': 20093, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualDilutedAverageShares': [{'dataId': 29011, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 18595652000, 'fmt': '18.60B'}}, {'dataId': 29011, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 17528214000, 'fmt': '17.53B'}}, {'dataId': 29011, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16864919000, 'fmt': '16.86B'}}, None], 'trailingReconciledCostOfRevenue': [{'dataId': 20314, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 223546000000, 'fmt': '223.55B'}}], 'annualGainOnSaleOfSecurity': [], 'annualSpecialIncomeCharges': [], 'trailingPretaxIncome': [{'dataId': 20136, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 119103000000, 'fmt': '119.10B'}}], 'annualNetIncome': [{'dataId': 20091, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 55256000000, 'fmt': '55.26B'}}, {'dataId': 20091, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57411000000, 'fmt': '57.41B'}}, {'dataId': 20091, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 94680000000, 'fmt': '94.68B'}}, {'dataId': 20091, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualEBIT': [{'dataId': 20189, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 69313000000, 'fmt': '69.31B'}}, {'dataId': 20189, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 69964000000, 'fmt': '69.96B'}}, {'dataId': 20189, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 111852000000, 'fmt': '111.85B'}}, {'dataId': 20189, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 122034000000, 'fmt': '122.03B'}}], 'trailingNetInterestIncome': [{'dataId': 20095, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': -106000000, 'fmt': '-106.00M'}}], 'trailingInterestIncomeNonOperating': [{'dataId': 20075, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 2825000000, 'fmt': '2.83B'}}], 'annualNormalizedIncome': [{'dataId': 20316, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 55256000000, 'fmt': '55.26B'}}, {'dataId': 20316, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57411000000, 'fmt': '57.41B'}}, {'dataId': 20316, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 94680000000, 'fmt': '94.68B'}}, {'dataId': 20316, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualTotalUnusualItems': [], 'trailingGrossProfit': [{'dataId': 20046, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 170782000000, 'fmt': '170.78B'}}], 'trailingEBITDA': [{'dataId': 20190, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 133138000000, 'fmt': '133.14B'}}], 'annualCostOfRevenue': [{'dataId': 20013, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 161782000000, 'fmt': '161.78B'}}, {'dataId': 20013, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 169559000000, 'fmt': '169.56B'}}, {'dataId': 20013, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 212981000000, 'fmt': '212.98B'}}, {'dataId': 20013, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 223546000000, 'fmt': '223.55B'}}], 'trailingOperatingIncome': [{'dataId': 20109, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 119437000000, 'fmt': '119.44B'}}], 'trailingInterestExpenseNonOperating': [{'dataId': 20064, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 2931000000, 'fmt': '2.93B'}}], 'trailingOtherIncomeExpense': [{'dataId': 20117, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': -228000000, 'fmt': '-228.00M'}}], 'trailingNetIncomeFromContinuingAndDiscontinuedOperation': [{'dataId': 20309, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'trailingTotalRevenue': [{'dataId': 20100, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 394328000000, 'fmt': '394.33B'}}], 'annualPretaxIncome': [{'dataId': 20136, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 65737000000, 'fmt': '65.74B'}}, {'dataId': 20136, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 67091000000, 'fmt': '67.09B'}}, {'dataId': 20136, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 109207000000, 'fmt': '109.21B'}}, {'dataId': 20136, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 119103000000, 'fmt': '119.10B'}}], 'annualTaxProvision': [{'dataId': 20145, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 10481000000, 'fmt': '10.48B'}}, {'dataId': 20145, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 9680000000, 'fmt': '9.68B'}}, {'dataId': 20145, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 14527000000, 'fmt': '14.53B'}}, {'dataId': 20145, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 19300000000, 'fmt': '19.30B'}}], 'trailingInterestExpense': [{'dataId': 20057, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 2931000000, 'fmt': '2.93B'}}], 'annualInterestIncomeNonOperating': [{'dataId': 20075, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 4961000000, 'fmt': '4.96B'}}, {'dataId': 20075, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 3763000000, 'fmt': '3.76B'}}, {'dataId': 20075, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2843000000, 'fmt': '2.84B'}}, {'dataId': 20075, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2825000000, 'fmt': '2.83B'}}], 'annualSellingGeneralAndAdministration': [{'dataId': 20159, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 18245000000, 'fmt': '18.25B'}}, {'dataId': 20159, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 19916000000, 'fmt': '19.92B'}}, {'dataId': 20159, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 21973000000, 'fmt': '21.97B'}}, {'dataId': 20159, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 25094000000, 'fmt': '25.09B'}}], 'trailingTaxProvision': [{'dataId': 20145, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 19300000000, 'fmt': '19.30B'}}], 'annualOtherIncomeExpense': [{'dataId': 20117, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 422000000, 'fmt': '422.00M'}}, {'dataId': 20117, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -87000000, 'fmt': '-87.00M'}}, {'dataId': 20117, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 60000000, 'fmt': '60.00M'}}, {'dataId': 20117, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -228000000, 'fmt': '-228.00M'}}], 'annualOperatingIncome': [{'dataId': 20109, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 63930000000, 'fmt': '63.93B'}}, {'dataId': 20109, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 66288000000, 'fmt': '66.29B'}}, {'dataId': 20109, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 108949000000, 'fmt': '108.95B'}}, {'dataId': 20109, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 119437000000, 'fmt': '119.44B'}}], 'annualNetIncomeFromContinuingAndDiscontinuedOperation': [{'dataId': 20309, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 55256000000, 'fmt': '55.26B'}}, {'dataId': 20309, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57411000000, 'fmt': '57.41B'}}, {'dataId': 20309, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 94680000000, 'fmt': '94.68B'}}, {'dataId': 20309, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualNetInterestIncome': [{'dataId': 20095, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 1385000000, 'fmt': '1.39B'}}, {'dataId': 20095, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 890000000, 'fmt': '890.00M'}}, {'dataId': 20095, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 198000000, 'fmt': '198.00M'}}, {'dataId': 20095, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -106000000, 'fmt': '-106.00M'}}], 'annualTotalExpenses': [{'dataId': 20164, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 196244000000, 'fmt': '196.24B'}}, {'dataId': 20164, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 208227000000, 'fmt': '208.23B'}}, {'dataId': 20164, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 256868000000, 'fmt': '256.87B'}}, {'dataId': 20164, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 274891000000, 'fmt': '274.89B'}}], 'annualInterestExpenseNonOperating': [{'dataId': 20064, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 3576000000, 'fmt': '3.58B'}}, {'dataId': 20064, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2873000000, 'fmt': '2.87B'}}, {'dataId': 20064, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2645000000, 'fmt': '2.65B'}}, {'dataId': 20064, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2931000000, 'fmt': '2.93B'}}], 'annualNetIncomeExtraordinary': [], 'annualDilutedEPS': [{'dataId': 29009, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2.9725, 'fmt': '2.97'}}, {'dataId': 29009, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 3.28, 'fmt': '3.28'}}, {'dataId': 29009, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 5.61, 'fmt': '5.61'}}, None], 'annualTotalUnusualItemsExcludingGoodwill': [], 'trailingGainOnSaleOfPPE': [], 'annualNormalizedDilutedEPS': [], 'annualBasicExtraordinary': [], 'trailingNormalizedBasicEPS': [], 'trailingNormalizedDilutedEPS': [], 'trailingOtherunderPreferredStockDividend': [], 'trailingTotalUnusualItemsExcludingGoodwill': [], 'trailingGainOnSaleOfSecurity': [], 'trailingAmortization': [], 'trailingReportedNormalizedDilutedEPS': [], 'trailingOtherGandA': [], 'annualMinorityInterests': [], 'trailingWriteOff': [], 'trailingOtherTaxes': [], 'trailingProvisionForDoubtfulAccounts': [], 'annualNormalizedBasicEPS': [], 'annualReportedNormalizedDilutedEPS': [], 'trailingPreferredStockDividends': [], 'trailingImpairmentOfCapitalAssets': [], 'trailingReportedNormalizedBasicEPS': [], 'annualBasicEPSOtherGainsLosses': [], 'trailingExciseTaxes': [], 'trailingNetIncomeDiscontinuousOperations': [], 'trailingDilutedExtraordinary': [], 'trailingDepreciationAmortizationDepletionIncomeStatement': [], 'annualAmortizationOfIntangiblesIncomeStatement': [], 'annualDilutedContinuousOperations': [], 'trailingSecuritiesAmortization': [], 'trailingDilutedEPSOtherGainsLosses': [], 'trailingDepreciationIncomeStatement': [], 'annualPreferredStockDividends': [], 'annualDilutedExtraordinary': [], 'trailingTaxLossCarryforwardDilutedEPS': [], 'trailingDepreciationAndAmortizationInIncomeStatement': [], 'annualGainOnSaleOfPPE': [], 'trailingDividendPerShare': [], 'annualBasicContinuousOperations': [], 'trailingBasicContinuousOperations': [], 'annualProvisionForDoubtfulAccounts': [], 'trailingBasicAccountingChange': [], 'annualDilutedDiscontinuousOperations': [], 'trailingOtherOperatingExpenses': [], 'trailingTotalOtherFinanceCost': [], 'trailingRentAndLandingFees': [], 'trailingGeneralAndAdministrativeExpense': [], 'trailingAverageDilutionEarnings': [], 'annualDilutedEPSOtherGainsLosses': [], 'trailingInsuranceAndClaims': [], 'annualDividendPerShare': [], 'trailingSellingAndMarketingExpense': [], 'trailingGainOnSaleOfBusiness': [], 'annualBasicAccountingChange': [], 'trailingRestructuringAndMergernAcquisition': [], 'trailingBasicAverageShares': [], 'trailingRentExpenseSupplemental': [], 'annualSalariesAndWages': [], 'trailingSpecialIncomeCharges': [], 'trailingNetIncomeExtraordinary': [], 'annualRentAndLandingFees': [], 'annualContinuingAndDiscontinuedDilutedEPS': [], 'trailingMinorityInterests': [], 'annualAmortization': [], 'annualTaxLossCarryforwardDilutedEPS': [], 'trailingEarningsFromEquityInterestNetOfTax': [], 'trailingAmortizationOfIntangiblesIncomeStatement': [], 'trailingBasicDiscontinuousOperations': [], 'annualSellingAndMarketingExpense': [], 'annualOtherTaxes': [], 'trailingSalariesAndWages': [], 'annualReportedNormalizedBasicEPS': [], 'annualAverageDilutionEarnings': [], 'annualDilutedAccountingChange': [], 'trailingTaxLossCarryforwardBasicEPS': [], 'trailingTotalUnusualItems': [], 'annualGeneralAndAdministrativeExpense': [], 'annualWriteOff': [], 'annualOtherGandA': [], 'annualDepreciationIncomeStatement': [], 'annualSecuritiesAmortization': [], 'annualDepletionIncomeStatement': [], 'annualInsuranceAndClaims': [], 'trailingBasicEPS': [], 'trailingBasicExtraordinary': [], 'trailingDilutedDiscontinuousOperations': [], 'trailingBasicEPSOtherGainsLosses': [], 'trailingEarningsFromEquityInterest': [], 'annualNetIncomeDiscontinuousOperations': [], 'trailingNetIncomeFromTaxLossCarryforward': [], 'annualEarningsFromEquityInterestNetOfTax': [], 'trailingContinuingAndDiscontinuedBasicEPS': [], 'annualRentExpenseSupplemental': [], 'annualTaxLossCarryforwardBasicEPS': [], 'trailingDilutedAverageShares': [], 'annualImpairmentOfCapitalAssets': [], 'annualExciseTaxes': [], 'trailingContinuingAndDiscontinuedDilutedEPS': [], 'annualGainOnSaleOfBusiness': [], 'trailingOtherSpecialCharges': [], 'trailingDilutedEPS': [], 'trailingDilutedAccountingChange': [], 'annualOtherunderPreferredStockDividend': [], 'annualBasicDiscontinuousOperations': [], 'trailingDepletionIncomeStatement': [], 'trailingDilutedContinuousOperations': [], 'annualContinuingAndDiscontinuedBasicEPS': [], 'timestamp': [1569801600, 1601424000, 1632960000, 1664496000]}, 'meta': {'symbol': 'AAPL', 'start': 493590046, 'end': 1675699792, 'timeUnit': 'annual'}, 'loading': False, 'errorList': []}, 'MarketTimeStore': {'data': {'mins': 51, 'hrs': 4, 'message': 'U.S. markets close in 4 hours 51 minutes'}, 'metadata': {'status': 'YFT_MARKET_WILL_CLOSE', 'time': '2023-02-06T16:09:51Z'}}, 'RmpStore': {'data': {'Lead-7-Rmp': {'isStatic': False, 'css': [], 'html': '
', 'js': [], 'mode': 'json', 'assets': {'css': [{'location': 'top', 'value': '/aaq/nel/css/smart-ad-dynamic-data.SmartAdDynamicData.atomic.ltr.88115735231490dcb5680ea5084fb4e1.min.css', 'name': 'smart-ad-dynamic-data.SmartAdDynamicData.atomic'}]}, 'data': {}}}}, 'MarketSummaryStore': {'data': [{'symbol': '^GSPC', 'name': 'S&P 500'}, {'symbol': '^DJI', 'name': 'Dow 30'}, {'symbol': '^IXIC', 'name': 'Nasdaq'}, {'symbol': '^RUT', 'name': 'Russell 2000'}, {'symbol': 'CL=F', 'name': 'Crude Oil'}, {'symbol': 'GC=F', 'name': 'Gold'}, {'symbol': 'SI=F', 'name': 'Silver'}, {'symbol': 'EURUSD=X', 'name': 'EUR/USD'}, {'symbol': '^TNX', 'name': '10-Yr Bond'}, {'symbol': 'GBPUSD=X', 'name': 'GBP/USD'}, {'symbol': 'JPY=X', 'name': 'USD/JPY'}, {'symbol': 'BTC-USD'}, {'symbol': '^CMC200', 'name': 'CMC Crypto 200'}, {'symbol': '^FTSE', 'name': 'FTSE 100'}, {'symbol': '^N225', 'name': 'Nikkei 225'}]}, 'RecommendationStore': {'recommendedSymbols': {'AAPL': [{'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 102.925, 'fmt': '102.93'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699790, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '81.43 - 170.8315', 'fmt': '81.43 - 170.83'}, 'sharesOutstanding': {'raw': 10201700352, 'fmt': '10.202B', 'longFmt': '10,201,700,352'}, 'regularMarketDayHigh': {'raw': 103.9484, 'fmt': '103.95'}, 'shortName': 'Amazon.com, Inc.', 'longName': 'Amazon.com, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -1.8150024, 'fmt': '-1.82'}, 'regularMarketPreviousClose': {'raw': 103.39, 'fmt': '103.39'}, 'fiftyTwoWeekHighChange': {'raw': -69.2565, 'fmt': '-69.26'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 20.144997, 'fmt': '20.14'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 100.65, 'fmt': '100.65'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 101.575, 'fmt': '101.57'}, 'regularMarketVolume': {'raw': 34760911, 'fmt': '34.761M', 'longFmt': '34,760,911'}, 'isLoading': False, 'score': 0.328489, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 863703000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1036237668352, 'fmt': '1.036T', 'longFmt': '1,036,237,668,352'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'AMZN', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.24739036, 'fmt': '24.74%'}, 'regularMarketDayRange': {'raw': '100.65 - 103.9484', 'fmt': '100.65 - 103.95'}, 'messageBoardId': 'finmb_18749', 'fiftyTwoWeekHigh': {'raw': 170.8315, 'fmt': '170.83'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.40540826, 'fmt': '-40.54%'}, 'uuid': '261fd26b-0151-3813-b0d0-97e4ed4c6505', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 81.43, 'fmt': '81.43'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.7554913, 'fmt': '-1.76%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 193.01, 'fmt': '193.01'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699791, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '101.81 - 384.29', 'fmt': '101.81 - 384.29'}, 'sharesOutstanding': {'raw': 3164100096, 'fmt': '3.164B', 'longFmt': '3,164,100,096'}, 'regularMarketDayHigh': {'raw': 198.16, 'fmt': '198.16'}, 'shortName': 'Tesla, Inc.', 'longName': 'Tesla, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 4.7882996, 'fmt': '4.79'}, 'regularMarketPreviousClose': {'raw': 189.98, 'fmt': '189.98'}, 'fiftyTwoWeekHighChange': {'raw': -189.52171, 'fmt': '-189.52'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 92.9583, 'fmt': '92.96'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 189.92, 'fmt': '189.92'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 194.7683, 'fmt': '194.77'}, 'regularMarketVolume': {'raw': 86488569, 'fmt': '86.489M', 'longFmt': '86,488,569'}, 'isLoading': False, 'score': 0.308594, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1277818200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 616266399744, 'fmt': '616.266B', 'longFmt': '616,266,399,744'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'TSLA', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.9130567, 'fmt': '91.31%'}, 'regularMarketDayRange': {'raw': '189.92 - 198.16', 'fmt': '189.92 - 198.16'}, 'messageBoardId': 'finmb_27444752', 'fiftyTwoWeekHigh': {'raw': 384.29, 'fmt': '384.29'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.49317366, 'fmt': '-49.32%'}, 'uuid': 'ec367bc4-f92c-397c-ac81-bf7b43cffaf7', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 101.81, 'fmt': '101.81'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 2.520423, 'fmt': '2.52%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 102.685, 'fmt': '102.68'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699788, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '83.45 - 144.1625', 'fmt': '83.45 - 144.16'}, 'sharesOutstanding': {'raw': 5968000000, 'fmt': '5.968B', 'longFmt': '5,968,000,000'}, 'regularMarketDayHigh': {'raw': 104.69, 'fmt': '104.69'}, 'shortName': 'Alphabet Inc.', 'longName': 'Alphabet Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.5699997, 'fmt': '-2.57'}, 'regularMarketPreviousClose': {'raw': 105.22, 'fmt': '105.22'}, 'fiftyTwoWeekHighChange': {'raw': -41.512505, 'fmt': '-41.51'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 19.200005, 'fmt': '19.20'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 102.21, 'fmt': '102.21'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 102.65, 'fmt': '102.65'}, 'regularMarketVolume': {'raw': 9844592, 'fmt': '9.845M', 'longFmt': '9,844,592'}, 'isLoading': False, 'score': 0.290421, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1092922200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1311702777856, 'fmt': '1.312T', 'longFmt': '1,311,702,777,856'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'GOOG', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.23007795, 'fmt': '23.01%'}, 'regularMarketDayRange': {'raw': '102.21 - 104.69', 'fmt': '102.21 - 104.69'}, 'messageBoardId': 'finmb_29096', 'fiftyTwoWeekHigh': {'raw': 144.1625, 'fmt': '144.16'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.28795633, 'fmt': '-28.80%'}, 'uuid': 'ee8cce8c-2475-31c0-8436-ecdf889cbfbd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 83.45, 'fmt': '83.45'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -2.442501, 'fmt': '-2.44%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 186.53, 'fmt': '186.53'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699788, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '88.09 - 238.3', 'fmt': '88.09 - 238.30'}, 'sharesOutstanding': {'raw': 2255320064, 'fmt': '2.255B', 'longFmt': '2,255,320,064'}, 'regularMarketDayHigh': {'raw': 190.7, 'fmt': '190.70'}, 'shortName': 'Meta Platforms, Inc.', 'longName': 'Meta Platforms, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 1.6800079, 'fmt': '1.68'}, 'regularMarketPreviousClose': {'raw': 186.53, 'fmt': '186.53'}, 'fiftyTwoWeekHighChange': {'raw': -50.089996, 'fmt': '-50.09'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 100.12001, 'fmt': '100.12'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 185.8, 'fmt': '185.80'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 188.21, 'fmt': '188.21'}, 'regularMarketVolume': {'raw': 17709651, 'fmt': '17.71M', 'longFmt': '17,709,651'}, 'isLoading': False, 'score': 0.290181, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1337347800000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 493524287488, 'fmt': '493.524B', 'longFmt': '493,524,287,488'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'META', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 1.1365651, 'fmt': '113.66%'}, 'regularMarketDayRange': {'raw': '185.8 - 190.7', 'fmt': '185.80 - 190.70'}, 'messageBoardId': 'finmb_20765463', 'fiftyTwoWeekHigh': {'raw': 238.3, 'fmt': '238.30'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.21019721, 'fmt': '-21.02%'}, 'uuid': 'e59f1c4f-b1aa-3d70-a8c3-eb59ff3e461b', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 88.09, 'fmt': '88.09'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.9006637, 'fmt': '0.90%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 363.642, 'fmt': '363.64'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699786, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '162.71 - 412.98', 'fmt': '162.71 - 412.98'}, 'sharesOutstanding': {'raw': 445347008, 'fmt': '445.347M', 'longFmt': '445,347,008'}, 'regularMarketDayHigh': {'raw': 368.45, 'fmt': '368.45'}, 'shortName': 'Netflix, Inc.', 'longName': 'Netflix, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.7799072, 'fmt': '-2.78'}, 'regularMarketPreviousClose': {'raw': 365.9, 'fmt': '365.90'}, 'fiftyTwoWeekHighChange': {'raw': -49.859924, 'fmt': '-49.86'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 200.41008, 'fmt': '200.41'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 360.7, 'fmt': '360.70'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 363.1201, 'fmt': '363.12'}, 'regularMarketVolume': {'raw': 1893254, 'fmt': '1.893M', 'longFmt': '1,893,254'}, 'isLoading': False, 'score': 0.219644, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1022160600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 161714438144, 'fmt': '161.714B', 'longFmt': '161,714,438,144'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'NFLX', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 1.231701, 'fmt': '123.17%'}, 'regularMarketDayRange': {'raw': '360.7 - 368.45', 'fmt': '360.70 - 368.45'}, 'messageBoardId': 'finmb_32012', 'fiftyTwoWeekHigh': {'raw': 412.98, 'fmt': '412.98'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.120732054, 'fmt': '-12.07%'}, 'uuid': '1a1cddac-4d41-374d-b202-739314177b67', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 162.71, 'fmt': '162.71'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.75974506, 'fmt': '-0.76%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}]}, 'recommendedSimilarSymbols': {'AAPL': [{'0': 'S', '1': 'O', '2': 'N', '3': 'Y', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 90.86, 'fmt': '90.86'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675699786, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '61.72 - 111.98', 'fmt': '61.72 - 111.98'}, 'sharesOutstanding': {'raw': 1234690048, 'fmt': '1.235B', 'longFmt': '1,234,690,048'}, 'regularMarketDayHigh': {'raw': 90.84, 'fmt': '90.84'}, 'shortName': 'Sony Group Corporation', 'longName': 'Sony Group Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -3.3899994, 'fmt': '-3.39'}, 'regularMarketPreviousClose': {'raw': 93.13, 'fmt': '93.13'}, 'fiftyTwoWeekHighChange': {'raw': -22.240005, 'fmt': '-22.24'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 28.019997, 'fmt': '28.02'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 89.6211, 'fmt': '89.62'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 89.74, 'fmt': '89.74'}, 'regularMarketVolume': {'raw': 235981, 'fmt': '235,981', 'longFmt': '235,981'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 99153000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 110801084416, 'fmt': '110.801B', 'longFmt': '110,801,084,416'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SONY', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.4539857, 'fmt': '45.40%'}, 'regularMarketDayRange': {'raw': '89.6211 - 90.84', 'fmt': '89.62 - 90.84'}, 'messageBoardId': 'finmb_23021', 'fiftyTwoWeekHigh': {'raw': 111.98, 'fmt': '111.98'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.19860694, 'fmt': '-19.86%'}, 'uuid': '51ec1656-6a66-39d0-8159-ed49cf2f2289', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 61.72, 'fmt': '61.72'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.6400726, 'fmt': '-3.64%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, {'0': 'G', '1': 'P', '2': 'R', '3': 'O', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.64, 'fmt': '5.64'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699789, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.5 - 9.42', 'fmt': '4.50 - 9.42'}, 'sharesOutstanding': {'raw': 129668000, 'fmt': '129.668M', 'longFmt': '129,668,000'}, 'regularMarketDayHigh': {'raw': 5.76, 'fmt': '5.76'}, 'shortName': 'GoPro, Inc.', 'longName': 'GoPro, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.19000006, 'fmt': '-0.19'}, 'regularMarketPreviousClose': {'raw': 5.69, 'fmt': '5.69'}, 'fiftyTwoWeekHighChange': {'raw': -3.92, 'fmt': '-3.92'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1, 'fmt': '1.00'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.475, 'fmt': '5.47'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.5, 'fmt': '5.50'}, 'regularMarketVolume': {'raw': 1028969, 'fmt': '1.029M', 'longFmt': '1,028,969'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1403789400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 857598528, 'fmt': '857.599M', 'longFmt': '857,598,528'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'GPRO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.22222222, 'fmt': '22.22%'}, 'regularMarketDayRange': {'raw': '5.475 - 5.76', 'fmt': '5.47 - 5.76'}, 'messageBoardId': 'finmb_113665065', 'fiftyTwoWeekHigh': {'raw': 9.42, 'fmt': '9.42'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.41613588, 'fmt': '-41.61%'}, 'uuid': 'd831d8ea-3a6d-36de-af60-081896d375cd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.5, 'fmt': '4.50'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.3391926, 'fmt': '-3.34%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'0': 'S', '1': 'O', '2': 'N', '3': 'O', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 18.66, 'fmt': '18.66'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699680, 'fmt': '11:08AM EST'}, 'fiftyTwoWeekRange': {'raw': '13.65 - 31.22', 'fmt': '13.65 - 31.22'}, 'sharesOutstanding': {'raw': 127345000, 'fmt': '127.345M', 'longFmt': '127,345,000'}, 'regularMarketDayHigh': {'raw': 18.66, 'fmt': '18.66'}, 'shortName': 'Sonos, Inc.', 'longName': 'Sonos, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.7350006, 'fmt': '-0.74'}, 'regularMarketPreviousClose': {'raw': 18.91, 'fmt': '18.91'}, 'fiftyTwoWeekHighChange': {'raw': -13.045, 'fmt': '-13.05'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 4.5249996, 'fmt': '4.52'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 18.14, 'fmt': '18.14'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 18.175, 'fmt': '18.17'}, 'regularMarketVolume': {'raw': 510481, 'fmt': '510,481', 'longFmt': '510,481'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1533216600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 2314495232, 'fmt': '2.314B', 'longFmt': '2,314,495,232'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SONO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.3315018, 'fmt': '33.15%'}, 'regularMarketDayRange': {'raw': '18.14 - 18.66', 'fmt': '18.14 - 18.66'}, 'messageBoardId': 'finmb_10654809', 'fiftyTwoWeekHigh': {'raw': 31.22, 'fmt': '31.22'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.41784114, 'fmt': '-41.78%'}, 'uuid': '98c419db-3a58-3f86-8eb4-a664481f7d12', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 13.65, 'fmt': '13.65'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.8868356, 'fmt': '-3.89%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'0': 'V', '1': 'U', '2': 'Z', '3': 'I', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.66, 'fmt': '5.66'}, 'exchange': 'NCM', 'regularMarketTime': {'raw': 1675699642, 'fmt': '11:07AM EST'}, 'fiftyTwoWeekRange': {'raw': '3.27 - 10.49', 'fmt': '3.27 - 10.49'}, 'sharesOutstanding': {'raw': 63739600, 'fmt': '63.74M', 'longFmt': '63,739,600'}, 'regularMarketDayHigh': {'raw': 5.8, 'fmt': '5.80'}, 'shortName': 'Vuzix Corporation', 'longName': 'Vuzix Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.14069986, 'fmt': '-0.14'}, 'regularMarketPreviousClose': {'raw': 5.75, 'fmt': '5.75'}, 'fiftyTwoWeekHighChange': {'raw': -4.8806996, 'fmt': '-4.88'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.3393002, 'fmt': '2.34'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.49, 'fmt': '5.49'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.6093, 'fmt': '5.61'}, 'regularMarketVolume': {'raw': 367816, 'fmt': '367,816', 'longFmt': '367,816'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1270474200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 357534560, 'fmt': '357.535M', 'longFmt': '357,534,560'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'VUZI', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.71538234, 'fmt': '71.54%'}, 'regularMarketDayRange': {'raw': '5.49 - 5.8', 'fmt': '5.49 - 5.80'}, 'messageBoardId': 'finmb_13610016', 'fiftyTwoWeekHigh': {'raw': 10.49, 'fmt': '10.49'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.46527165, 'fmt': '-46.53%'}, 'uuid': 'b42c8863-c6d0-341b-9d51-442783839350', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 3.27, 'fmt': '3.27'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -2.4469543, 'fmt': '-2.45%'}, 'fullExchangeName': 'NasdaqCM', 'tradeable': False}, {'0': 'P', '1': 'C', '2': 'R', '3': 'F', '4': 'Y', 'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 8.62, 'fmt': '8.62'}, 'exchange': 'PNK', 'regularMarketTime': {'raw': 1675698716, 'fmt': '10:51AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.66 - 10.89', 'fmt': '6.66 - 10.89'}, 'sharesOutstanding': {'raw': 2334089984, 'fmt': '2.334B', 'longFmt': '2,334,089,984'}, 'regularMarketDayHigh': {'raw': 8.745, 'fmt': '8.74'}, 'shortName': 'PANASONIC HOLDINGS CORP ADR-EAC', 'longName': 'Panasonic Holdings Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.08000088, 'fmt': '-0.08'}, 'regularMarketPreviousClose': {'raw': 8.77, 'fmt': '8.77'}, 'fiftyTwoWeekHighChange': {'raw': -2.2000008, 'fmt': '-2.20'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.0299997, 'fmt': '2.03'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketDayLow': {'raw': 8.62, 'fmt': '8.62'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 8.69, 'fmt': '8.69'}, 'regularMarketVolume': {'raw': 47805, 'fmt': '47,805', 'longFmt': '47,805'}, 'isLoading': False, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 322151400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 20283240448, 'fmt': '20.283B', 'longFmt': '20,283,240,448'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'PCRFY', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.30480477, 'fmt': '30.48%'}, 'regularMarketDayRange': {'raw': '8.62 - 8.745', 'fmt': '8.62 - 8.74'}, 'messageBoardId': 'finmb_320433', 'fiftyTwoWeekHigh': {'raw': 10.89, 'fmt': '10.89'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.20202027, 'fmt': '-20.20%'}, 'uuid': '01e8db59-6c12-3ae1-a223-b71412148081', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.66, 'fmt': '6.66'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.91221064, 'fmt': '-0.91%'}, 'fullExchangeName': 'Other OTC', 'tradeable': False}, {'0': 'H', '1': 'E', '2': 'A', '3': 'R', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 9.29, 'fmt': '9.29'}, 'exchange': 'NGM', 'regularMarketTime': {'raw': 1675699651, 'fmt': '11:07AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.22 - 25.33', 'fmt': '6.22 - 25.33'}, 'sharesOutstanding': {'raw': 16557000, 'fmt': '16.557M', 'longFmt': '16,557,000'}, 'regularMarketDayHigh': {'raw': 9.29, 'fmt': '9.29'}, 'shortName': 'Turtle Beach Corporation', 'longName': 'Turtle Beach Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.28999996, 'fmt': '-0.29'}, 'regularMarketPreviousClose': {'raw': 9.33, 'fmt': '9.33'}, 'fiftyTwoWeekHighChange': {'raw': -16.29, 'fmt': '-16.29'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.8200002, 'fmt': '2.82'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 8.94, 'fmt': '8.94'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 9.04, 'fmt': '9.04'}, 'regularMarketVolume': {'raw': 23439, 'fmt': '23,439', 'longFmt': '23,439'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1289831400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 149675280, 'fmt': '149.675M', 'longFmt': '149,675,280'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'HEAR', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.45337626, 'fmt': '45.34%'}, 'regularMarketDayRange': {'raw': '8.94 - 9.29', 'fmt': '8.94 - 9.29'}, 'messageBoardId': 'finmb_851282', 'fiftyTwoWeekHigh': {'raw': 25.33, 'fmt': '25.33'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.643111, 'fmt': '-64.31%'}, 'uuid': '58194bdb-92f1-3b95-b21e-5b66d5d67f2f', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.22, 'fmt': '6.22'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.1082525, 'fmt': '-3.11%'}, 'fullExchangeName': 'NasdaqGM', 'tradeable': False}, {'0': 'K', '1': 'O', '2': 'S', '3': 'S', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.82, 'fmt': '5.82'}, 'exchange': 'NCM', 'regularMarketTime': {'raw': 1675697530, 'fmt': '10:32AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.44 - 12.86', 'fmt': '4.44 - 12.86'}, 'sharesOutstanding': {'raw': 9189800, 'fmt': '9.19M', 'longFmt': '9,189,800'}, 'regularMarketDayHigh': {'raw': 5.88, 'fmt': '5.88'}, 'shortName': 'Koss Corporation', 'longName': 'Koss Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0.01999998, 'fmt': '0.02'}, 'regularMarketPreviousClose': {'raw': 5.8, 'fmt': '5.80'}, 'fiftyTwoWeekHighChange': {'raw': -7.0399995, 'fmt': '-7.04'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1.3800001, 'fmt': '1.38'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.8, 'fmt': '5.80'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.82, 'fmt': '5.82'}, 'regularMarketVolume': {'raw': 2746, 'fmt': '2,746', 'longFmt': '2,746'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 322151400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 53484636, 'fmt': '53.485M', 'longFmt': '53,484,636'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'KOSS', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.31081083, 'fmt': '31.08%'}, 'regularMarketDayRange': {'raw': '5.8 - 5.88', 'fmt': '5.80 - 5.88'}, 'messageBoardId': 'finmb_283448', 'fiftyTwoWeekHigh': {'raw': 12.86, 'fmt': '12.86'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.54743385, 'fmt': '-54.74%'}, 'uuid': 'ad708ee0-5672-30f5-85f6-bbbcb3e0eccd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.44, 'fmt': '4.44'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.34482723, 'fmt': '0.34%'}, 'fullExchangeName': 'NasdaqCM', 'tradeable': False}, {'0': 'S', '1': 'S', '2': 'N', '3': 'L', '4': 'F', 'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 40.5999, 'fmt': '40.60'}, 'exchange': 'PNK', 'regularMarketTime': {'raw': 1664306331, 'fmt': '3:18PM EDT'}, 'fiftyTwoWeekRange': {'raw': '40.5999 - 57.75', 'fmt': '40.60 - 57.75'}, 'sharesOutstanding': {'raw': 5969780224, 'fmt': '5.97B', 'longFmt': '5,969,780,224'}, 'regularMarketDayHigh': {'raw': 40.5999, 'fmt': '40.60'}, 'shortName': 'SAMSUNG ELECTRONICS CO', 'longName': 'Samsung Electronics Co., Ltd.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0, 'fmt': '0.00'}, 'regularMarketPreviousClose': {'raw': 40.5999, 'fmt': '40.60'}, 'fiftyTwoWeekHighChange': {'raw': -17.1501, 'fmt': '-17.15'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 0, 'fmt': '0.00'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketDayLow': {'raw': 40.5999, 'fmt': '40.60'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 40.5999, 'fmt': '40.60'}, 'regularMarketVolume': {'raw': 200, 'fmt': '200', 'longFmt': '200'}, 'isLoading': False, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 997104600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 301846429696, 'fmt': '301.846B', 'longFmt': '301,846,429,696'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SSNLF', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0, 'fmt': '0.00%'}, 'regularMarketDayRange': {'raw': '40.5999 - 40.5999', 'fmt': '40.60 - 40.60'}, 'messageBoardId': 'finmb_91868', 'fiftyTwoWeekHigh': {'raw': 57.75, 'fmt': '57.75'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.29697144, 'fmt': '-29.70%'}, 'uuid': '5f5ae02b-3a86-367d-b20b-055520cea9ae', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 40.5999, 'fmt': '40.60'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0, 'fmt': '0.00%'}, 'fullExchangeName': 'Other OTC', 'tradeable': False}, {'0': 'V', '1': 'Z', '2': 'I', '3': 'O', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 9.44, 'fmt': '9.44'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675699688, 'fmt': '11:08AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.47 - 15.42', 'fmt': '6.47 - 15.42'}, 'sharesOutstanding': {'raw': 117636000, 'fmt': '117.636M', 'longFmt': '117,636,000'}, 'regularMarketDayHigh': {'raw': 9.505, 'fmt': '9.51'}, 'shortName': 'VIZIO Holding Corp.', 'longName': 'VIZIO Holding Corp.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.34999943, 'fmt': '-0.35'}, 'regularMarketPreviousClose': {'raw': 9.57, 'fmt': '9.57'}, 'fiftyTwoWeekHighChange': {'raw': -6.2, 'fmt': '-6.20'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.7500005, 'fmt': '2.75'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 9.13, 'fmt': '9.13'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 9.22, 'fmt': '9.22'}, 'regularMarketVolume': {'raw': 45393, 'fmt': '45,393', 'longFmt': '45,393'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1616765400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1792829056, 'fmt': '1.793B', 'longFmt': '1,792,829,056'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'VZIO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.42503873, 'fmt': '42.50%'}, 'regularMarketDayRange': {'raw': '9.13 - 9.505', 'fmt': '9.13 - 9.51'}, 'messageBoardId': 'finmb_27650657', 'fiftyTwoWeekHigh': {'raw': 15.42, 'fmt': '15.42'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.4020752, 'fmt': '-40.21%'}, 'uuid': '98dc8f95-157e-3c62-b8f9-ea5c671822cd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.47, 'fmt': '6.47'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.6572564, 'fmt': '-3.66%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, {'0': 'L', '1': 'P', '2': 'L', 'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 5.52, 'fmt': '5.52'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675698891, 'fmt': '10:54AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.08 - 8.53', 'fmt': '4.08 - 8.53'}, 'sharesOutstanding': {'raw': 715630976, 'fmt': '715.631M', 'longFmt': '715,630,976'}, 'regularMarketDayHigh': {'raw': 5.52, 'fmt': '5.52'}, 'shortName': 'LG Display Co, Ltd AMERICAN DEP', 'longName': 'LG Display Co., Ltd.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.1949997, 'fmt': '-0.19'}, 'regularMarketPreviousClose': {'raw': 5.68, 'fmt': '5.68'}, 'fiftyTwoWeekHighChange': {'raw': -3.0449996, 'fmt': '-3.04'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1.4050002, 'fmt': '1.41'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.46, 'fmt': '5.46'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.485, 'fmt': '5.49'}, 'regularMarketVolume': {'raw': 76348, 'fmt': '76,348', 'longFmt': '76,348'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1090503000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 3925235968, 'fmt': '3.925B', 'longFmt': '3,925,235,968'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'LPL', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.3443628, 'fmt': '34.44%'}, 'regularMarketDayRange': {'raw': '5.46 - 5.52', 'fmt': '5.46 - 5.52'}, 'messageBoardId': 'finmb_5471044', 'fiftyTwoWeekHigh': {'raw': 8.53, 'fmt': '8.53'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.35697535, 'fmt': '-35.70%'}, 'uuid': '78df0a6f-207d-3a77-adfe-657f86e6d5c9', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.08, 'fmt': '4.08'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.4330933, 'fmt': '-3.43%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}]}, 'errorList': []}, 'NavServiceStore': {'nav': {}, 'finance': {'sections': ['property'], 'nav': [{'statusCode': 200, 'message': 'ok', 'data': {'items': [{'name': 'Watchlists', 'url': 'https://finance.yahoo.com/watchlists/', 'children': [], 'id': 'root_1'}, {'name': 'My Portfolio', 'url': 'https://finance.yahoo.com/portfolios/', 'children': [], 'id': 'root_2'}, {'name': 'Crypto', 'url': 'https://finance.yahoo.com/crypto/', 'children': [], 'id': 'root_3'}, {'name': 'Yahoo Finance Plus', 'url': 'https://finance.yahoo.com/plus-dashboard?ncid=dcm_306158762_490172245_127172993', 'children': [{'name': 'Dashboard', 'url': 'https://finance.yahoo.com/plus-dashboard?ncid=dcm_306158759_490172245_127172993', 'id': 'root_4_1'}, {'name': 'Research Reports', 'url': 'https://finance.yahoo.com/research?ncid=dcm_306158756_490172245_127172993', 'id': 'root_4_2'}, {'name': 'Investment Ideas', 'url': 'https://finance.yahoo.com/research/trade-ideas?ncid=dcm_306158753_490172245_127172993', 'id': 'root_4_3'}, {'name': 'Community Insights', 'url': 'https://finance.yahoo.com/user-insights?ncid=dcm_306158750_490172245_127172993', 'id': 'root_4_4'}, {'name': 'Webinars', 'url': 'https://finance.yahoo.com/webinars', 'id': 'root_4_5'}, {'name': 'Blog', 'url': 'https://finance.yahoo.com/topic/plus', 'id': 'root_4_6'}], 'id': 'root_4'}, {'name': 'News', 'url': 'https://finance.yahoo.com/news/', 'children': [{'name': 'Latest News', 'url': 'https://finance.yahoo.com/news/', 'id': 'root_5_1'}, {'name': 'Yahoo Finance Originals', 'url': 'https://finance.yahoo.com/topic/yahoo-finance-originals', 'id': 'root_5_2'}, {'name': 'Stock Market News', 'url': 'https://finance.yahoo.com/topic/stock-market-news/', 'id': 'root_5_3'}, {'name': 'Earnings', 'url': 'https://finance.yahoo.com/topic/earnings', 'id': 'root_5_4'}, {'name': 'Politics', 'url': 'https://finance.yahoo.com/live/politics/', 'id': 'root_5_5'}, {'name': 'Economic News', 'url': 'https://finance.yahoo.com/topic/economic-news', 'id': 'root_5_6'}, {'name': 'Morning Brief', 'url': 'https://finance.yahoo.com/topic/morning-brief/', 'id': 'root_5_7'}, {'name': 'Personal Finance', 'url': 'https://finance.yahoo.com/topic/personal-finance', 'id': 'root_5_8'}, {'name': 'Crypto News', 'url': 'https://finance.yahoo.com/topic/crypto/', 'id': 'root_5_9'}, {'name': 'Bidenomics Report Card', 'url': 'https://finance.yahoo.com/bidenomics/', 'id': 'root_5_10'}], 'id': 'root_5'}, {'name': 'Screeners', 'url': 'https://finance.yahoo.com/screener/', 'children': [{'name': 'Saved Screeners', 'url': 'https://finance.yahoo.com/screener', 'id': 'root_6_1'}, {'name': 'Equity Screener', 'url': 'https://finance.yahoo.com/screener/new', 'id': 'root_6_2'}, {'name': 'Mutual Fund Screener', 'url': 'https://finance.yahoo.com/screener/mutualfund/new', 'id': 'root_6_3'}, {'name': 'ETF Screener', 'url': 'https://finance.yahoo.com/screener/etf/new', 'id': 'root_6_4'}, {'name': 'Futures Screener', 'url': 'https://finance.yahoo.com/screener/future/new', 'id': 'root_6_5'}, {'name': 'Index Screener', 'url': 'https://finance.yahoo.com/screener/index/new', 'id': 'root_6_6'}], 'id': 'root_6'}, {'name': 'Markets', 'url': 'https://finance.yahoo.com/calendar/', 'children': [{'name': 'Calendars', 'url': 'https://finance.yahoo.com/calendar', 'id': 'root_7_1'}, {'name': 'Trending Tickers', 'url': 'https://finance.yahoo.com/trending-tickers', 'id': 'root_7_2'}, {'name': 'Stocks: Most Actives', 'url': 'https://finance.yahoo.com/most-active', 'id': 'root_7_3'}, {'name': 'Stocks: Gainers', 'url': 'https://finance.yahoo.com/gainers', 'id': 'root_7_4'}, {'name': 'Stocks: Losers', 'url': 'https://finance.yahoo.com/losers', 'id': 'root_7_5'}, {'name': 'Top ETFs', 'url': 'https://finance.yahoo.com/etfs', 'id': 'root_7_6'}, {'name': 'Futures', 'url': 'https://finance.yahoo.com/commodities', 'id': 'root_7_7'}, {'name': 'World Indices', 'url': 'https://finance.yahoo.com/world-indices', 'id': 'root_7_8'}, {'name': 'Currencies', 'url': 'https://finance.yahoo.com/currencies', 'id': 'root_7_9'}, {'name': 'Top Mutual Funds', 'url': 'https://finance.yahoo.com/mutualfunds', 'id': 'root_7_10'}, {'name': 'Options: Highest Open Interest', 'url': 'https://finance.yahoo.com/options/highest-open-interest', 'id': 'root_7_11'}, {'name': 'Options: Highest Implied Volatility', 'url': 'https://finance.yahoo.com/options/highest-implied-volatility', 'id': 'root_7_12'}, {'name': 'US Treasury Bonds Rates', 'url': 'https://finance.yahoo.com/bonds', 'id': 'root_7_13'}, {'name': 'Currency Converter', 'url': 'https://finance.yahoo.com/currency-converter', 'id': 'root_7_14'}], 'id': 'root_7'}, {'name': 'Videos', 'url': 'https://finance.yahoo.com/videos/', 'children': [{'name': 'Company of the Year', 'url': 'https://finance.yahoo.com/live/company-of-the-year/', 'id': 'root_8_1'}, {'name': 'Yahoo Finance Live', 'url': 'https://finance.yahoo.com/videos', 'id': 'root_8_2'}, {'name': 'Yahoo Finance Presents', 'url': 'https://finance.yahoo.com/live/yahoo-finance-presents', 'id': 'root_8_3'}, {'name': 'All Markets Summit', 'url': 'https://finance.yahoo.com/live/allmarketssummit', 'id': 'root_8_4'}, {'name': 'Financing Your Future', 'url': 'https://finance.yahoo.com/topic/financing-your-future', 'id': 'root_8_5'}, {'name': 'Real Estate Report', 'url': 'https://finance.yahoo.com/topic/real-estate-report', 'id': 'root_8_6'}, {'name': 'Retirement', 'url': 'https://finance.yahoo.com/topic/retirement', 'id': 'root_8_7'}, {'name': 'ETF Report', 'url': 'https://finance.yahoo.com/topic/etf-report', 'id': 'root_8_8'}, {'name': 'FA Corner', 'url': 'https://finance.yahoo.com/topic/fa-corner', 'id': 'root_8_9'}, {'name': 'Events', 'url': 'https://finance.yahoo.com/show/events', 'id': 'root_8_10'}, {'name': 'Crypto Corner', 'url': 'https://finance.yahoo.com/topic/crypto-corner', 'id': 'root_8_11'}], 'id': 'root_8'}, {'name': 'Personal Finance', 'url': 'https://finance.yahoo.com/topic/personal-finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/', 'id': 'root_9_1'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/', 'id': 'root_9_2'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/', 'id': 'root_9_3'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes', 'id': 'root_9_4'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}], 'id': 'root_9'}, {'name': 'Industries', 'url': 'https://finance.yahoo.com/screener/predefined/ms_basic_materials/', 'children': [{'name': 'Basic Materials', 'url': 'https://finance.yahoo.com/screener/predefined/ms_basic_materials/', 'id': 'root_10_1'}, {'name': 'Communication Services', 'url': 'https://finance.yahoo.com/screener/predefined/ms_communication_services/', 'id': 'root_10_2'}, {'name': 'Consumer Cyclical', 'url': 'https://finance.yahoo.com/screener/predefined/ms_consumer_cyclical/', 'id': 'root_10_3'}, {'name': 'Consumer Defensive', 'url': 'https://finance.yahoo.com/screener/predefined/ms_consumer_defensive/', 'id': 'root_10_4'}, {'name': 'Energy', 'url': 'https://finance.yahoo.com/screener/predefined/ms_energy/', 'id': 'root_10_5'}, {'name': 'Financial Services', 'url': 'https://finance.yahoo.com/screener/predefined/ms_financial_services/', 'id': 'root_10_6'}, {'name': 'Healthcare', 'url': 'https://finance.yahoo.com/screener/predefined/ms_healthcare/', 'id': 'root_10_7'}, {'name': 'Industrials', 'url': 'https://finance.yahoo.com/screener/predefined/ms_industrials/', 'id': 'root_10_8'}, {'name': 'Real Estate', 'url': 'https://finance.yahoo.com/screener/predefined/ms_real_estate/', 'id': 'root_10_9'}, {'name': 'Technology', 'url': 'https://finance.yahoo.com/screener/predefined/ms_technology/', 'id': 'root_10_10'}, {'name': 'Utilities', 'url': 'https://finance.yahoo.com/screener/predefined/ms_utilities/', 'id': 'root_10_11'}], 'id': 'root_10'}, {'name': 'Contact Us', 'url': 'https://yahoo.uservoice.com/forums/382977', 'children': [], 'id': 'root_11'}]}}, None]}}, 'UHAccountSwitchStore': {'site': 'finance', 'crumb': 'Bc2KDXwL9.6', 'sendRequest': False, 'isEnabled': True}, 'MobileHeaderStore': {'navTitle': 'finance', 'useNavTitle': False}}, 'https://finance.yahoo.com/quote/AAPL/balance-sheet?p=AAPL&lang=en-US®ion=US': {'PageStore': {'currentPageName': 'quote', 'currentEvent': {'eventName': 'NEW_PAGE_SUCCESS'}, 'currentRenderTargetId': 'default', 'pagesConfigRaw': {'base': {'quote': {'layout': {'bundleName': 'yahoodotcom-layout.TwoColumnLayout', 'name': 'TwoColumnLayout', 'config': {'enableHeaderCollapse': True, 'additionalBodyWrapperClasses': 'Bgc($layoutBgColor)!', 'contentWrapperClasses': 'Bgc($lv2BgColor)!', 'Header': {'isFixed': True, 'uhContainerClasses': 'Bgi($uhGrayGradient) D(n)--print', 'navContainerClasses': 'Bgi($navrailGrayGradient) Bxsh($navrailShadow) Pos(r) hasScrolled_Bxsh(headerShadow) Panel-open_Bxsh(headerShadow)', 'navTransitionClasses': 'HideNavrail_Translate3d(0,-46px,0) Panel-open_Translate3d(0,-46px,0)', 'secondaryNavContainerClasses': 'hasScrolled_Bdbw(0px) Bgc($lv3BgColor) Bxsh($navrailShadow) D(n)--print', 'height': 135}, 'fetchNewAttribution': True, 'Col1': {'containerClasses': 'Z(1)'}}, 'meta': {'property': {'twitter:site': '@YahooFinance'}}}, 'meta': {'property': {'twitter:site': '@YahooFinance', 'fb:pages': '458584288257241', 'og:image': 'https://s.yimg.com/cv/apiv2/social/images/yahoo_default_logo.png'}}, 'enablePremium': True, 'isHighValueUser': False, 'enableTrading': True, 'cryptoUser': False, 'videoOverrides': {'enableOathPlayer': True}, 'regions': {'UH': [{'bundleName': 'tdv2-wafer-header.finance', 'name': 'HeaderDesktop', 'perfLabel': 'WaferHeaderDesktop', 'critical': True, 'config': {'logo': {'brandName': 'YAHOO_FINANCE', 'enableHeading': False, 'link': 'https://finance.yahoo.com', 'imageUri': 'https://s.yimg.com/rz/p/yahoo_finance_en-US_s_f_pw_351X40_finance_2x.png', 'theme': {'heading': 'Fz(0) Pstart(15px) Pos(a) Miw(190px)', 'link': 'Bgp(0) Bgr(nr) Bgz(702px) D(b) H(35px) W(92px) Bgz(702px)!--sm1024 Cur(p) Mx(a)', 'linkLabel': 'Hidden'}}, 'mailMenu': {'i13n': {'sec': 'uh', 'subsec': 'mail', 't1': None, 't2': None, 'slk': 'mail', 'elm': 'btn', 'itc': '0'}, 'mailLink': '', 'signInUrl': 'https://login.yahoo.com/config/login?.src=finance&.intl=us&.lang=en-US&.done=https://finance.yahoo.com&activity=uh-mail', 'xhrPathPrefix': '/_finance_doubledown', 'theme': {'button': 'C(#4d00ae) D(b) H(22px) Lh(22px) Py(7px) Pos(r) Td(n)', 'buttonLabel': 'D(ib) Fz(14px) Fw(b) Lh(24px) Pstart(38px)', 'icon': 'Pos(a) T(4px)', 'loadingImage': 'D(b) M(a) P(20px)', 'menuElement': 'D(ib) H(46px) Mstart(14px) Mt(7px) O(n) Va(t)', 'menuPanel': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) P(0) Pos(a) End(0) Trs($fastMenuTransition) V(h) W(382px) active_Mah(478px) active_Op(1) active_V(v)', 'menuPanelSignIn': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) P(0) Pos(a) End(0) Trs($menuTransition) V(h) W(382px) active_Mah(614px) active_Op(1) active_V(v)', 'menuPanelSignedOut': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Bxz(bb) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) Px(24px) Py(20px) Pos(a) End(0) Ta(c) Trs($menuTransition) V(h) W(382px) active_Mah(60px) active_Op(1) active_V(v)', 'menuPanelPromoSignedOut': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Bxz(bb) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) Px(24px) Py(20px) Pos(a) End(0) Ta(c) Trs($menuTransition) V(h) W(382px) active_Mah(172px) active_Op(1) active_V(v)', 'signInLink': 'C(#0078ff) Fw(b) Td(n)', 'promoContainer': 'D(f) Ta(start) Ai(c) Pt(20px) Pb(10px) Pos(r)', 'promoImg': 'W(53px) H(59px) Mend(14px)', 'promoHeader': 'Fz(13px) Fw(b) Mb(0) C($c-fuji-inkwell)', 'promoContent': 'Fz(13px) C(#59636d) Mt(5px) Mb(5px)', 'promoLink': 'Fz(13px) C($c-fuji-smurfette) Fw(b) Td(n)', '_iconColor': '#6001d2', '_iconHeight': '30', '_iconWidth': '30'}}, 'mrt': {'cache': False, 'static': True, 'enableStaticI13nTracking': False}, 'navigationBar': {'enabled': False}, 'notificationMenu': {'enabled': True, 'badge': {'data-wf-state-text': '[state.financeNotification.unreadCount]', 'data-wf-toggle-class': 'stateChange:toggle:D(n)', 'data-wf-state-key': '[state.financeNotification.hideBadge]'}, 'menuPanel': {'data-wf-trigger': 'onLoad', 'data-wf-url': '/_finance_doubledown/remote?m_id=react-finance.rmp&ctrl=NotificationAlert&includeAssets=0&m_mode=json&config=%7B%22mrt%22%3A%7B%22static%22%3Atrue%7D%7D'}, 'theme': {'button': 'Bgc(t) Bd(0) Cur(p) P(10px) H(36px) Pos(r) W(30px)', 'buttonLabel': 'D(ib) Fz(1orpx) Fw(b) Lh(37px) Mstart(6px) Va(t)', 'countWrapper': 'Pos(r) Z(1)', 'count': 'Bg($fujiGradient) Bgc($c-fuji-red-2-b) Bdrs(24px) C(#fff) D(n) Fz(14px) Fw(b) H(17px) Op(.9) Pb(4px) Pt(3px) Pos(a) Start(16px) Ta(c) T(-8px) W(24px) Ff($yahooSansFinanceFont)! wafer-text wafer-toggle', 'icon': 'Pos(a) Start(2px) T(4px)', 'loadingImage': 'D(b) M(a) P(20px)', 'menuElement': 'D(ib) Mx(8px) Va(t) Mt(7px) O(n):f', 'menuPanel': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) Ov(a) P(0) Pos(a) End(0) Trs($fastMenuTransition) V(h) W(382px) active_Mah(478px) active_Op(1) active_V(v) wafer-fetch', 'messageList': 'Fz(13px) List(n) My(0) P(0) W(100%)', 'messageLink': 'C(#000) D(b) Px(24px) Py(16px) Pos(r) Td(n) Bgc(#c2deff):h', 'newMessageIndicator': 'Bgc(#0078ff) Bdrs(10px) H(6px) Pos(a) Start(9px) T(21px) W(6px)', 'messageTimestamp': 'C(#b2b2b2) Fl(end) Fz(12px)', 'messageSender': 'Ell Fw(b)', 'messageSenderRead': 'Ell Fw(n)', 'messageSubject': 'Cl(b) Ell Pt(4px)', 'panelFooterWrapper': 'Bgc(#f9f9f9) Bdrs(6px) Bdtc(#f2f2f2) Bdts(s) Bdtw(1px) Px(24px) Py(20px)', 'composeLink': 'C(#000) Fl(end) Td(n) C(#0078ff):h', 'composeLinkLabel': 'Va(t)', 'inboxLink': 'C(#000) Ta(start) Td(n) C(#0078ff):h', 'errorMessage': 'Px(20px) Py(20px) Ta(c)', '_iconColor': '#6001d2', '_iconHeight': '26'}}, 'profileMenu': {'accountSwitch': {'enabled': True, 'profileLink': 'https://login.yahoo.com/d?.intl=us&.lang=en-US&.src=finance&login=${ALIAS}&as=1', 'i13n': {'sec': 'uh', 'slk': 'acctswitch', 'subsec': 'profile', 'itc': '0'}}, 'i13nSignInBtn': {'sec': 'uh', 'slk': 'acct-info', 'subsec': 'profile', 'itc': '0'}, 'items': [{'id': 'profile-settings-link', 'i13n': {'sec': 'uh', 'slk': 'acct-info', 'subsec': 'profile', 'itc': '0'}, 'label': 'ACCOUNT_INFO', 'link': 'https://login.yahoo.com/account/personalinfo/?.intl=us&.lang=en-US&.src=finance&.done={PAGE_URL}&activity=uh-acctinfo&pspid={PAGE_SPACEID}', 'theme': {'accordionMenu': 'Bgc(t) Bdw(0) C($c-fuji-grey-l)! D(b) Ell Fz(14px) P(0) Pos(r) O(n) Td(n) W(100%) accordionBtn wafer-toggle', 'icon': 'H(45px) Fl(start) Mstart(2px) Ta(c) panelIcon', 'listItem': ' Cl(b) Cur(p) List(n) Pstart(42px) Fz(13px) Pb(5px) Pt(25px) Mt(-40px)', 'listItemButton': 'Bgc(t) Bdw(0) C($c-fuji-grey-l) Cur(p) D(b) Ell Fz(14px) P(0) W(100%)', 'listItemLink': 'C($c-fuji-grey-l) D(b) Ell Td(n) C($c-fuji-blue-1-c):h', 'listItemLabel': 'Fl(start) Pstart(30px) My(15px) panelIcon+Pstart(10px) panelIcon+Mb(0)', '_iconColor': '#6001d2', '_iconHeight': '18'}, 'type': 'SimplePanelItem'}, {'type': 'AccountSwitch'}, {'icon': 'PlusIcon', 'i13n': {'sec': 'uh', 'slk': 'add-acct', 'subsec': 'profile', 'itc': '0'}, 'id': 'profile-accounts-link', 'label': 'ADD_MANAGE_ACCOUNTS', 'link': 'https://login.yahoo.com/manage_account?.intl=us&.lang=en-US&.src=finance&.done={PAGE_URL}&activity=uh-addacct&pspid={PAGE_SPACEID}', 'type': 'SimplePanelItem'}, {'id': 'profile-signout-link', 'icon': 'LogOut', 'i13n': {'sec': 'uh', 'slk': 'usersigno', 'subsec': 'profile', 'itc': '0'}, 'label': 'SIGN_OUT_ALL', 'link': 'https://login.yahoo.com/config/login/?.intl=us&.lang=en-US&.src=finance&logout_all=1&.direct=1&.done=https://www.yahoo.com', 'signedInOnly': True, 'type': 'SimplePanelItem'}], 'signInUrl': 'https://login.yahoo.com/config/login?.src=finance&.intl=us&.lang=en-US&.done={PAGE_URL}&activity=uh-signin', 'simpleSignOut': {'enabled': False}, 'theme': {'accountSwitchItem': 'Bdtc($c-fuji-grey-c) Bdts(s) Bdtw(1px) Cl(b) Cur(p) Bgc(#c2deff):h', 'accountSwitchLink': 'C($c-fuji-grey-l)! D(b) Ell Mstart(18px) Mih(50px) Pb(5px) Pt(15px) Td(n)', 'alias': 'C($c-fuji-grey-8) Ell Fz(13px) Mend(40px) Mstart(54px)', 'downCaret': 'D(b) Fl(end) H(50px) Mend(40px) accordionOpen_D(n)!', 'firstName': 'Ell Fz(15px) Lh(1.4) Mend(40px) Mstart(54px)', 'icon': '', 'listItem': 'Bdtc($c-fuji-grey-c) Bdts(s) Bdtw(1px) Cl(b) Cur(p) Bgc(#c2deff):h', 'listItemLabel': 'Fl(start) Mstart(10px) Mt(15px)', 'menuElement': 'D(ib) H(46px) Mx(14px) O(n) Va(t)', 'menuPanel': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Fz(14px) List(n) Mt(10px) Mih(200px) Op(0) P(0) Pos(a) End(0) Trs($fastMenuTransition) V(h) W(382px) active_Op(1) active_V(v)', 'notifAccordionList': 'D(n) P(0) header-notification-panel accordionOpen_D(b)!', 'profileText': 'D(ib) H(30px) Mstart(55px) Pt(10px) Ta(c)', 'signInButton': 'Bgc(#fff) Bdc($c-fuji-grape-jelly) Bdrs(3px) Bds(s) Bdw(2px) C(#4d00ae) D(ib) Ell Fz(13px) Fw(b) H(19px) Lh(19px) Mend(5px) Mt(10px) Miw(66px) Px(6px) Py(2px) Ta(c) Td(n) active_Bgc($c-fuji-grape-jelly) active_C(#fff)', 'signInLink': 'C($c-fuji-grey-l)! D(b) Ell Mstart(18px) Mih(50px) Pb(0px) Pt(20px) Td(n)', 'signInText': 'Fz(18px) Mend(40px) Mstart(54px) Pt(10px)', 'signOutLink': 'C($c-fuji-grey-l) D(b) Ell My(15px) Mstart(45px) Td(n)', 'simpleSignOutLink': 'Miw(a)', 'upCaret': 'D(n) Fl(end) H(50px) Mend(40px) accordionOpen_D(b)!', 'userAvatar': 'Bgz(cv) Bgr(nr) Bdrs(45%) H(40px) Pos(a) W(40px)', 'button': 'Bgc(t) Bd(0) Cur(p) H(36px) Mend(5px) Mt(5px) Miw(28px) P(0) Pos(r) Z(1)', 'buttonFirstName': 'C(#4d00ae) Ell Fz(14px) Fw(b) Lh(36px) Mstart(42px) Maw(100px)', 'buttonUserAvatar': 'Bgr(nr) Bgz(34px) Bdrs(45%) H(34px) Pos(a) Start(1px) T(2px) W(34px)', 'signInIcon': 'Pos(a)', 'signOutIcon': 'Pos(a) Start(1px) T(4px)', '_iconColor': '#4d00ae', '_iconHeight': '28', '_signInIconColor': '#C0C0C0', '_signInIconDimension': '40'}}, 'skipLinks': {'enabled': True, 'items': [{'label': 'SKIP_TO_NAVIGATION', 'link': 'Nav-0-DesktopNav'}, {'label': 'SKIP_TO_MAIN_CONTENT', 'link': 'market-summary'}, {'label': 'SKIP_TO_RELATED_CONTENT', 'link': 'Aside'}]}, 'topBar': {'enabled': True, 'flexHeight': True, 'i13n': {'sec': 'uh', 't1': None, 't2': None, 't3': None}}, 'webNotifications': {'enabled': False}, 'searchAssist': {'enabled': False}, 'searchBox': {'addFormAttrs': {'data-finsrch': 'researchReports'}, 'i13nForm': {'tar': 'finance.yahoo.com'}, 'i13nSubmitBtn': {'tar': 'finance.yahoo.com'}, 'inputId': 'yfin-usr-qry', 'formAction': '/quote/', 'placeholder': 'UH_SEARCH_WEB', 'searchQueryParam': 'yfin-usr-qry', 'searchExtraQueryParams': [{'name': 'fr', 'value': 'uh3_finance_vert'}, {'name': 'fr2', 'value': 'p:finvsrp,m:sb'}], 'theme': {'form': 'D(tb) H(35px) Pos(r) Va(m) W(100%) finsrch-enable-perf', 'innerWrapper': 'D(tb) W(100%)', 'input': 'Bgc(t) Bd Bdrsbstart(2px)! Bdc(#b0b0b0) Bdendw(0) Bdrs(0) Bdrststart(2px)! Bxsh(n) Bxz(bb) D(b) Fz(15px) H(inh) M(0) O(0) Px(10px) W(100%) Bdc($c-fuji-blue-1-c):f Bdc(#949494):h finsrch-inpt', 'inputLabel': 'Hidden', 'splitLogo': 'Va(m) D(tbc) W(120px)', 'splitLogoLink': 'Mstart(10px) D(ib) H(32px) W(110px) Bgz(221px) Bgr(nr)', 'submitButton': 'Bgc($c-fuji-blue-1-b) Bd(n) Bdrsbend(2px) Bdrstend(2px) D(b) H(100%) M(0) P(0) rapid-noclick-resp W(100%) Bgc($actionBlueHover):h submit-btn finsrch-btn', 'submitButtonWrapper': 'D(tbc) H(100%) Ta(c) Va(t) W(90px)', 'voiceButton': 'Bgc(t) Bd(n) Cur(p) P(0) D(n) O(n)', 'voiceButtonWrapper': 'Pos(a) T(13px) End(92px) Z(2)', 'wrapper': 'H(35px) Mend(396px) Mstart(255px) Maw(647px) Pos(r) Mstart(200px)--sm1024 Va(t)', '_submitIconColor': '#fff'}}, 'theme': {'fixedHeight': 'fixed-space H(127px) modal-open_H(90px) modal-open_Mb($bottomBarHideMargin)', 'flexHeight': 'fixed-space H(85px) modal-open_H(85px) modal-open_Mb($bottomBarHideMargin)', 'innerWrapper': 'Bgc(t) M(a) Maw(1301px) Miw(1000px) Pb(12px) Pt(15px) Pos(r) TranslateZ(0) Z(6)', 'logoWrapper': 'D(tbc) Va(m)', 'menuList': 'End(48px) List(n) Mt(0) Pos(a) T(10px) header-menu', 'profileButtonWrapper': 'D(tbc) Pstart(12px) Va(m)', 'searchButtonWrapper': 'D(tbc) Pstart(14px) Va(m) W(100%)', 'searchScreen': 'Bgc(#fff) D(n) H(100%) Ov(s) Pos(f) Start(0) T(0) W(100%) Z(2) search-open_D(b)', 'wrapper': 'Bgc(t) Bdbc(t) Bdbs(s) Bdbw(1px) D(tb) Pos(f) Tbl(f) W(100%) Z(10) has-scrolled_Bdc($c-fuji-grey-d) Scrolling_Bdc($c-fuji-grey-d) has-scrolled_Bxsh($headerShadow) Scrolling_Bxsh($headerShadow) Bxz(bb) Mx(a) Miw(1007px) Start(0) wafer-rapid-module'}}, 'props': {'key': 'UH-0-HeaderDesktop', 'id': 'UH-0-HeaderDesktop'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'WaferHeaderHelper', 'config': {'inlineFinSearchInit': True, 'mrt': {'static': True, 'enableStaticI13nTracking': False}, 'finSearchConfig': {'researchReportsCount': 2, 'newsCount': 2}}, 'props': {'key': 'UH-1-WaferHeaderHelper', 'id': 'UH-1-WaferHeaderHelper'}, 'isPageComposite': True}], 'Nav': [{'bundleName': 'react-finance', 'name': 'DesktopNav', 'perfLabel': 'NavLite', 'config': {'ui': {'navCache': True, 'remoteAdapter': True, 'makeSticky': False, 'isNavLink': True, 'relativeLinks': True, 'navFont': 'Ff($yahooSansFinanceFont)!', 'headerTitle': 'finance', 'highlightPropertyHome': False, 'dividerClasses': 'H(0)!', 'offsetHack': 'Pt(2px) Bgc(t)!', 'navMainLeftClasses': 'Mend(80px)', 'leftNavClasses': 'Pstart(10px) Mstart(-10px) nr-applet-main-nav-right_Ov(inh)!', 'navTitleClasses': 'Pstart(10px) Mstart(-10px)!', 'linkItemClasses': 'Bgc($linkColor):h W(230px)!', 'subnavLinkClasses': 'Tt(n)! C($primaryColor) C(white)!:h Maw(200px)!', 'darkTheme': False, 'selectColor': 'C($finNavBlueText)! Bdbw(0px) H(42px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'subnavClasses': 'Bgc($lv3BgColor)!', 'hoverColor': 'C($finNavBlueText):h', 'overrideColor': 'C($finNavBlueText)', 'propertyHomeSelectColor': 'Bdbc($linkColor) Bdbs(s)! Bdbw(4px) H(38px)', 'propertyHomeClasses': 'Tt(c)! Bdbc($linkColor):h Bdbs(s):h Bdbw(4px):h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkClasses': 'Tt(n)!', 'navLinkClassesOnHover': 'Bdbc($linkColor)!:h Bdbs(s)!:h Bdbw(4px)!:h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkNonHoverClasses': 'C($topNavLinkGray) Bdbs(n)', 'highlightTriangleColor': 'transparent transparent #fff', 'navMainRightClasses': 'Bdc(t) Bdrs(1.5px) Bdbs(s):h Px(10px)!'}, 'featureSwitches': {'useNavSelectLogic': True, 'disableDivider': True, 'followButtons': False, 'navLogoAlign': False, 'navrailCollapse': False, 'enableHighlightTriangle': True, 'useSubnavTitleSlk': True}, 'i13n': {'itc': 0, 'sec': 'navrail'}, 'site': 'finance', 'mrt': {'static': False}, 'renderSecondaryNav': True, 'defaultRowNum': 10, 'components': {'finance': {'linkWidth': 230, 'linksRight': ['feature_promo']}}, 'linkMeta': {'feature_promo': {'bundles': {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'isPremium': True, 'autoStart': True, 'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'checkStoreBeforeCall': True, 'placement': 'finance-eyebrow-index'}}}}, 'navItems': [{'name': 'Personal Finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}]}]}, 'props': {'key': 'Nav-0-DesktopNav', 'id': 'Nav-0-DesktopNav'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'NavHelper', 'config': {'navItems': [{'name': 'Yahoo Finance Plus', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}, 'requiresPremiumExperience': True}, {'name': 'Screeners', 'children': [{'name': 'Saved Screeners', 'url': 'https://finance.yahoo.com/screener'}, {'name': 'Equity Screener', 'url': 'https://finance.yahoo.com/screener/new'}, {'name': 'Mutual Fund Screener', 'url': 'https://finance.yahoo.com/screener/mutualfund/new'}, {'name': 'ETF Screener', 'url': 'https://finance.yahoo.com/screener/etf/new'}, {'name': 'Futures Screener', 'url': 'https://finance.yahoo.com/screener/future/new'}, {'name': 'Index Screener', 'url': 'https://finance.yahoo.com/screener/index/new'}, {'name': 'Analyst Rating Screener', 'url': 'https://finance.yahoo.com/screener/analyst_ratings/new?ncid=dcm_320339942_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Technical Events Screener', 'url': 'https://finance.yahoo.com/screener/tradingcentral_event/new?ncid=dcm_320544712_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Smart Money Screener', 'url': 'https://finance.yahoo.com/screener/institutional_interest/new?ncid=dcm_320344326_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Top Holdings Screener', 'url': 'https://finance.yahoo.com/screener/institutional_holdings/new?ncid=dcm_320545006_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}], 'requiresPremiumExperience': True}]}, 'props': {'key': 'Nav-1-NavHelper', 'id': 'Nav-1-NavHelper'}, 'isPageComposite': True}], 'SecondaryNav': [{'bundleName': 'react-finance', 'name': 'SecondaryNav', 'config': {'ui': {'enableRelativeUrl': True}}, 'props': {'key': 'SecondaryNav-0-SecondaryNav', 'id': 'SecondaryNav-0-SecondaryNav'}, 'isPageComposite': True}], 'Overlay': [{'bundleName': 'react-lightbox', 'name': 'Lightbox', 'props': {'key': 'Overlay-0-Lightbox', 'id': 'Overlay-0-Lightbox'}, 'isPageComposite': True}, {'bundleName': 'tdv2-applet-swisschamp', 'name': 'Empty', 'props': {'key': 'Overlay-1-Empty', 'id': 'Overlay-1-Empty'}, 'isPageComposite': True}], 'Lead': [{'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'LDRB', 'className': 'D(n)--print', 'style': {'marginBottom': '8px', 'paddingTop': '0px', 'marginLeft': 'auto', 'marginRight': 'auto', 'textAlign': 'center', 'lineHeight': '0px', 'position': 'relative', 'zIndex': '5'}, 'key': 'Lead-0-Ad', 'id': 'Lead-0-Ad'}, 'isPageComposite': True}, {'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'MAST', 'style': {'marginBottom': '8px', 'paddingTop': '10px', 'marginLeft': '20px', 'marginRight': '20px', 'textAlign': 'center', 'position': 'relative', 'zIndex': '5'}, 'key': 'Lead-1-Ad', 'id': 'Lead-1-Ad'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'FinanceHeader', 'props': {'className': 'Bgc($lv2BgColor) Bxz(bb) Ovx(a) Pos(r) Maw($newGridWidth) Miw($minGridWidth) Miw(a)!--tab768 Miw(a)!--tab1024 Mstart(a) Mend(a) Px(20px) Py(10px) D(n)--print', 'showAds': True, 'adsConfig': {'positions': ['FB2A', 'FB2B', 'FB2C', 'FB2D']}, 'key': 'Lead-2-FinanceHeader', 'id': 'Lead-2-FinanceHeader'}, 'isPageComposite': True}, {'bundleName': 'tdv2-applet-featurebar', 'name': 'FeatureBar', 'props': {'useWrapper': True, 'key': 'Lead-3-FeatureBar', 'id': 'Lead-3-FeatureBar'}, 'config': {'ui': {'wrapper_classnames': 'Bgc(white) Pos(r) Bxz(bb) Maw($newGridWidth) Miw($minGridWidth) Miw(a)!--tab768 Miw(a)!--tab1024 Mstart(a) Mend(a) Px(20px) Pb(10px) D(n)--print', 'container_classnames': 'W(100%) Bxz(bb) Bdrs(2px) Maw($maxModuleWidth) Mx(a) D(n)--print', 'prerender': {'enabled': False, 'renderTargetId': 'modal'}, 'link_component': 'WaferLink'}, 'site': 'finance', 'useNCP': True}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'DcmPixelIFrame', 'props': {'src': 'https://s.yimg.com/jk/gtm/gtm_ns.html?id=GTM-K85MQ6N&cat=wlistclk&u1={u1}', 'hashStr': 'AON9sUIjs65VG3Q0JA40l601TPeUJ097', 'iFrameId': 'quote-dcm-pixel-iframe', 'key': 'Lead-4-DcmPixelIFrame', 'id': 'Lead-4-DcmPixelIFrame'}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteHeader', 'props': {'key': 'Lead-5-QuoteHeader', 'id': 'Lead-5-QuoteHeader'}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteNav', 'props': {'key': 'Lead-6-QuoteNav', 'id': 'Lead-6-QuoteNav'}, 'isPageComposite': True}, {'bundleName': 'tdv2-applet-rmp', 'name': 'Rmp', 'config': {'serviceId': 'nel_ms', 'assets': {'name': 'SmartAdDynamicData', 'm_id': 'smart-ad-dynamic-data', 'ctrl': 'SmartAdDynamicData'}, 'endpoint': {'method': 'POST', 'path': '/_rcv/remote', 'query': {'ctrl': 'SmartAdDynamicData', 'm_id': 'smart-ad-dynamic-data'}, 'body': {'m_id': 'smart-ad-dynamic-data', 'ctrl': 'SmartAdDynamicData', 'm_mode': 'json', 'site': 'finance', 'config': {'apiVersion': '2', 'adPositions': ['FB2A', 'FB2B', 'FB2C', 'FB2D', 'LDRB', 'LREC', 'MON', 'LREC2', 'MON2', 'LREC3']}}}, 'enableNonIstioFallback': False, 'httpOptions': {'perfLabel': 'read_smart_dynamic_data_rmp', 'timeout': 1000, 'cacheTTL': 60000, 'fallbackTTL': 3600000, 'fallbackTimeout': 4000, 'cacheEnabled': False}, 'pathParamsToForward': ['symbol']}, 'props': {'key': 'Lead-7-Rmp', 'id': 'Lead-7-Rmp'}, 'isPageComposite': True}], 'Col1': [{'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'LDRB2', 'style': {'marginBottom': '8px', 'marginTop': '8px', 'marginLeft': 'auto', 'marginRight': 'auto', 'textAlign': 'center', 'lineHeight': '0px', 'position': 'relative', 'zIndex': '4'}, 'key': 'Col1-0-Ad', 'id': 'Col1-0-Ad'}, 'isPageComposite': True}, {'bundleName': 'Quote.financials', 'name': 'Financials', 'props': {'key': 'Col1-1-Financials', 'id': 'Col1-1-Financials'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'AdUnitWithTdAds', 'props': {'className': 'ad-foot', 'positions': ['FOOT'], 'key': 'Col1-2-AdUnitWithTdAds', 'id': 'Col1-2-AdUnitWithTdAds'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'AdUnitWithTdAds', 'props': {'className': 'ad-fsrvy', 'positions': ['FSRVY'], 'key': 'Col1-3-AdUnitWithTdAds', 'id': 'Col1-3-AdUnitWithTdAds'}, 'isPageComposite': True}], 'Col2': [{'bundleName': 'td-ads', 'name': 'ComboAd', 'props': {'adparseStyle': {'marginBottom': '20px'}, 'finishedStyle': {'marginBottom': '20px'}, 'children': [{'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'LREC', 'id': 'cmbLREC', 'key': 'cmbLREC'}}, {'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'MON', 'id': 'cmbMON', 'key': 'cmbMON'}}], 'serverHeight': True, 'key': 'Col2-0-ComboAd', 'id': 'Col2-0-ComboAd'}, 'isPageComposite': True}, {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'type': 'eventPromo', 'key': 'Col2-1-MonalixaComponent', 'id': 'Col2-1-MonalixaComponent'}, 'config': {'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'placement': 'finance-desktop-web-qsp-rightrail'}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteModule', 'props': {'type': 'similarCompanies', 'key': 'Col2-2-QuoteModule', 'id': 'Col2-2-QuoteModule'}, 'initMode': {'deferRender': True}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteModule', 'props': {'type': 'earningsChart', 'key': 'Col2-3-QuoteModule', 'id': 'Col2-3-QuoteModule'}, 'initMode': {'deferRender': True}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteModule', 'props': {'type': 'financialsChart', 'key': 'Col2-4-QuoteModule', 'id': 'Col2-4-QuoteModule'}, 'initMode': {'deferRender': True}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'AdUnitWithTdAds', 'props': {'className': 'ad-lrec2', 'positions': ['LREC2'], 'key': 'Col2-5-AdUnitWithTdAds', 'id': 'Col2-5-AdUnitWithTdAds'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'Footer', 'props': {'className': 'Pb(15px)', 'isNewCCPAEnabled': True, 'isCCPAEnabled': True, 'key': 'Col2-6-Footer', 'id': 'Col2-6-Footer'}, 'isPageComposite': True}]}, 'spaceid': 95993639, 'enableRmpAssets': True, 'ads': {'events': {'adFetch': {'ps': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,LREC2,FOOT,FSRVY,TRADENOW', 'firstRender': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,TRADENOW', 'sponsoredAds': '', 'sponsoredAdsClass': ''}, 'AUTO': {'autoDDG': 0, 'groups': {'LREC3': 'LREC3', 'LREC4': None, 'MON2': 'LREC3'}, 'ps': {'MON2': {'autoRT': 10000}}}}, 'deferRender': True, 'positions': {'MAST': {'fclose': 2, 'fdb': {'on': '1', 'where': 'inside'}}, 'MAST-9': {'fclose': 2, 'fdb': {'on': '1', 'where': 'inside'}}}, 'removeFSRVY': True, 'enableAdboost': True, 'adBoostGroupConf': {'LREC3': None, 'LREC4': None, 'MON2': {'extrapositions': ['LREC3']}}}, 'initializeAction': 'initQuotePage', 'enableNewResearchInsights': True, 'enableTemplates': True, 'regionOrder': ['UH', 'Nav', 'SecondaryNav', 'Overlay', 'Lead', 'Col1', 'Col2'], '_context': {'pageType': 'quote', 'subscribed': '0', 'enablePremium': '1', 'eventName': '', 'topicName': '', 'category': 'balance-sheet', 'quoteType': 'EQUITY', 'calendarType': '', 'screenerType': '', 'inTrial': '0', 'cryptoUser': '', 'enableTrading': '1'}}}, 'headerOverride': {}, 'queryOverride': {}}, 'compositeConfig': {'Nav-0-DesktopNav': {'name': 'Nav-0-DesktopNav', 'components': [{'bundleName': 'tdv2-applet-navrail', 'name': 'DesktopNav', 'config': {'enablePremiumNav': True, 'navItems': [{'name': 'Personal Finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}]}], 'ui': {'navCache': True, 'remoteAdapter': True, 'makeSticky': False, 'isNavLink': True, 'relativeLinks': True, 'navFont': 'Ff($yahooSansFinanceFont)!', 'headerTitle': 'finance', 'highlightPropertyHome': False, 'dividerClasses': 'H(0)!', 'offsetHack': 'Pt(2px) Bgc(t)!', 'navMainLeftClasses': 'Mend(80px)', 'leftNavClasses': 'Pstart(10px) Mstart(-10px) nr-applet-main-nav-right_Ov(inh)!', 'navTitleClasses': 'Pstart(10px) Mstart(-10px)!', 'linkItemClasses': 'Bgc($linkColor):h W(230px)!', 'subnavLinkClasses': 'Tt(n)! C($primaryColor) C(white)!:h Maw(200px)!', 'darkTheme': False, 'selectColor': 'C($finNavBlueText)! Bdbw(0px) H(42px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'subnavClasses': 'Bgc($lv3BgColor)!', 'hoverColor': 'C($finNavBlueText):h', 'overrideColor': 'C($finNavBlueText)', 'propertyHomeSelectColor': 'Bdbc($linkColor) Bdbs(s)! Bdbw(4px) H(38px)', 'propertyHomeClasses': 'Tt(c)! Bdbc($linkColor):h Bdbs(s):h Bdbw(4px):h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkClasses': 'Tt(n)!', 'navLinkClassesOnHover': 'Bdbc($linkColor)!:h Bdbs(s)!:h Bdbw(4px)!:h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkNonHoverClasses': 'C($topNavLinkGray) Bdbs(n)', 'highlightTriangleColor': 'transparent transparent #fff', 'navMainRightClasses': 'Bdc(t) Bdrs(1.5px) Bdbs(s):h Px(10px)!'}, 'featureSwitches': {'useNavSelectLogic': True, 'disableDivider': True, 'followButtons': False, 'navLogoAlign': False, 'navrailCollapse': False, 'enableHighlightTriangle': True, 'useSubnavTitleSlk': True}, 'i13n': {'itc': 0, 'sec': 'navrail'}, 'site': 'finance', 'mrt': {'static': False}, 'renderSecondaryNav': True, 'defaultRowNum': 10, 'components': {'finance': {'linkWidth': 230, 'linksRight': ['feature_promo']}}, 'linkMeta': {'feature_promo': {'bundles': {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'isPremium': True, 'autoStart': True, 'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'checkStoreBeforeCall': True, 'placement': 'finance-eyebrow-index'}}}}}, 'props': {'key': 'Nav-0-DesktopNav-0-DesktopNav', 'id': 'Nav-0-DesktopNav-0-DesktopNav'}}]}, 'Nav-0-DesktopNav-0-DesktopNav-acct-switch': {'name': 'Nav-0-DesktopNav-0-DesktopNav-acct-switch', 'components': [{'bundleName': 'tdv2-applet-account-switch', 'name': 'AccountSwitch', 'config': {'isEnabled': True}, 'props': {'key': 'Nav-0-DesktopNav-0-DesktopNav-acct-switch-0-AccountSwitch', 'id': 'Nav-0-DesktopNav-0-DesktopNav-acct-switch-0-AccountSwitch'}}]}}, 'compositeStatus': {'Nav-0-DesktopNav': 1, 'Nav-0-DesktopNav-0-DesktopNav-acct-switch': 1}, 'pageData': {'title': 'Apple Inc. (AAPL) Balance Sheet - Yahoo Finance', 'description': \"Get the annual and quarterly balance sheet of Apple Inc. (AAPL) including details of assets, liabilities and shareholders' equity.\", 'keywords': 'balance sheet,asset,liabilities,shareholders equity,return on equity,cash equivalents,retained earning', 'symbol': 'AAPL', 'category': 'balance-sheet', 'meta': {'property': {'twitter:site': '@YahooFinance', 'fb:pages': '458584288257241', 'og:image': 'https://s.yimg.com/cv/apiv2/social/images/yahoo_default_logo.png', 'og:description': \"Get the annual and quarterly balance sheet of Apple Inc. (AAPL) including details of assets, liabilities and shareholders' equity.\", 'og:title': 'Apple Inc. (AAPL) Balance Sheet - Yahoo Finance', 'twitter:description': \"Get the annual and quarterly balance sheet of Apple Inc. (AAPL) including details of assets, liabilities and shareholders' equity.\", 'twitter:title': 'Apple Inc. (AAPL) Balance Sheet - Yahoo Finance', 'al:ios:app_store_id': '328412701', 'al:ios:app_name': 'Yahoo Finance', 'al:android:url': 'intent://quote/AAPL/#Intent;scheme=yfinance;action=android.intent.action.VIEW;package=com.yahoo.mobile.client.android.finance;S.browser_fallback_url=https%3A%2F%2Fplay.google.com%2Fstore%2Fapps%2Fdetails%3Fid%3Dcom.yahoo.mobile.client.android.finance;end', 'al:android:app_name': 'Yahoo Finance', 'al:android:package': 'com.yahoo.mobile.client.android.finance'}, 'name': {'apple-itunes-app': 'app-id=328412701, app-clip-bundle-id=com.yahoo.finance.clip-qsp, affiliate-data=ct=us.fin.mbl.smart-banner&pt=9029, app-argument=https://finance.yahoo.com/quote/AAPL', 'oath:guce:consent-host': 'guce.yahoo.com'}}}, 'spaceid': 95993639, 'status': {'code': 200, 'headers': {'Cache-Control': 'private, no-store, no-cache, max-age=0'}}, 'appConfig': {'timeouts': {'navigate': 10000}, 'spaceid': 1183300002, 'renderTargets': [{'classNames': 'render-target-default Pos(a) W(100%)', 'id': 'default'}, {'classNames': 'render-target-modal O(n)!:f Bdtw(1px) D(n) H(a)! Mih(100%) modal-postopen_Op(1) Pos(a) T(76px) CollapsibleUh_T(60px) Start(0) End(0) Maw(1230px) Miw(984px) Mx(a) modal-open_D(b) modal-postopen_D(b) W(100%) H(100%) Z(9)', 'id': 'modal'}]}, 'routeConfig': {}, 'renderTargets': {'default': {'id': 'default', 'guid': 0, 'classNames': 'render-target-default Pos(a) W(100%)', 'owner': 'app', 'elementId': 'render-target-default', 'url': ''}, 'modal': {'classNames': 'render-target-modal O(n)!:f Bdtw(1px) D(n) H(a)! Mih(100%) modal-postopen_Op(1) Pos(a) T(76px) CollapsibleUh_T(60px) Start(0) End(0) Maw(1230px) Miw(984px) Mx(a) modal-open_D(b) modal-postopen_D(b) W(100%) H(100%) Z(9)', 'id': 'modal', 'guid': 1, 'elementId': 'render-target-modal', 'owner': 'app', 'url': ''}}, 'renderTargetsInited': True}, 'MRTStore': {'mrtConfigRaw': {'app': {'enable': True, 'loadStaticBundles': False}, 'page': {}, 'route': {}}, 'originRenderTargetId': 'default', 'originUrl': '/quote/AAPL/balance-sheet?p=AAPL&lang=en-US®ion=US', 'staticComponents': {'UH-0-HeaderDesktop': {'cache': False, 'static': True, 'enableStaticI13nTracking': False}, 'UH-1-WaferHeaderHelper': {'static': True, 'enableStaticI13nTracking': False}}}, 'RouteStore': {'currentNavigate': {'transactionId': 3338374560538526, 'url': '/quote/AAPL/balance-sheet?p=AAPL&lang=en-US®ion=US', 'method': 'GET', 'body': {}, 'externalUrl': 'https://finance.yahoo.com/quote/AAPL/balance-sheet?p=AAPL&lang=en-US®ion=US', 'route': None, 'error': None, 'isComplete': True}, 'routes': {'status500': {'path': '/__status500', 'method': 'get', 'page': 'status500', 'action': 'loadConfigAndPage'}, 'status404': {'path': '/__status404', 'method': 'get', 'page': 'status404', 'action': 'loadConfigAndPage'}, 'home': {'path': '/', 'method': 'get', 'page': 'home', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'home', 'ver': 'ydotcom'}}}}, 'personalFinance': {'path': '/personal-finance', 'method': 'get', 'page': 'personalFinance', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'personal-finance', 'ver': 'ydotcom'}}}}, 'earnings': {'path': '/topics/:symbol-:quarter-:full(full-year-)?:year-earnings', 'method': 'get', 'page': 'earnings', 'action': 'loadSubscriptionAndConfig', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'earnings', 'ver': 'ydotcom'}}}}, 'shareholdersMeeting': {'path': '/topics/:symbol(yahoo)-:year-shareholders-meeting', 'method': 'get', 'page': 'shareholdersMeeting', 'action': 'loadSubscriptionAndConfig', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'shareholdersmeeting', 'ver': 'ydotcom'}}}}, 'brkLiveStream': {'path': '/:symbol(brk)livestream', 'method': 'get', 'page': 'brkLiveStream', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'initMarketing': False, 'rapid': {'keys': {'pt': 'minihome', 'pct': 'brklivestream', 'pg_name': 'brklivestream', 'ver': 'ydotcom'}}, 'marketing': {'activity_id': 792877}}}, 'liveStream': {'path': '/live/:eventName', 'method': 'get', 'page': 'liveStream', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'initMarketing': False, 'rapid': {'keys': {'pt': 'minihome', 'pct': 'livestream', 'pg_name': ':eventName', 'ver': 'ydotcom'}}, 'marketing': {'activity_id': 792877}}}, 'quote': {'path': '/quote/:symbol/:category?', 'method': 'get', 'page': 'quote', 'action': 'loadQuotePage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'quoteLeaf': {'path': '/__quoteleaf/:symbol/:quoteType/:category', 'method': 'get', 'page': 'quoteLeaf', 'action': 'loadQuotePage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp-leaf', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'quoteLeaf2': {'path': '/__quoteleaf/:symbol/:category', 'method': 'get', 'page': 'quoteLeaf', 'action': 'loadQuotePage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp-leaf', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'quoteECD': {'path': '/__quoteecd/:symbol', 'method': 'get', 'page': 'quoteECD', 'action': 'loadQuotePage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp-ecd', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'quoteECD2': {'path': '/__quoteecd/:symbol', 'method': 'head', 'page': 'quoteECD', 'action': 'loadQuotePage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp-ecd', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'moduleDetails': {'path': '/__moduleDetails/:type/:id', 'method': 'get', 'page': 'moduleDetails', 'action': 'loadConfigAndPage', 'contentSite': 'finance', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'portal-ecd', 'pstcat': ':type', 'pg_name': ':type', 'rvt': ':id', 'ver': 'ydotcom'}}}}, 'companyInsightsWebview': {'path': '/__companyInsights/:symbol/:category', 'method': 'get', 'page': 'companyInsightsWebview', 'action': 'loadQuotePage', 'contentSite': 'finance', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'comp-ins-webview', 'pstcat': ':category', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'fullScreenChart': {'path': '/chart/:symbol', 'method': 'get', 'page': 'fullScreenChartIQ', 'action': 'loadSubscriptionAndConfig', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'chart', 'pstcat': ':quoteType', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'fullScreenChartWebView': {'path': '/__chart/:symbol', 'method': 'get', 'page': 'chartIQWebView', 'action': 'loadSubscriptionAndConfig', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'chart-webview', 'pstcat': ':quoteType', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'embedStockChartWebView': {'path': '/__embed-chart-v1', 'method': 'get', 'page': 'embedChartWebView', 'pageType': 'embedChartWebView', 'action': 'loadConfigAndPage', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'embchart-webview', 'ver': 'ydotcom'}}}}, 'currencies': {'path': '/currencies', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'listName': 'currencies', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'currencies', 'ver': 'ydotcom'}}}, 'spaceid': 2146786654}, 'bonds': {'path': '/bonds', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'bonds', 'ver': 'ydotcom'}}}, 'spaceid': 42328446}, 'trending_tickers': {'path': '/trending-tickers', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'listName': 'trending-tickers', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'trending', 'ver': 'ydotcom'}}}, 'spaceid': 1183331958}, 'world_indices': {'path': '/world-indices', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'listName': 'world-indices', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'indices', 'ver': 'ydotcom'}}}, 'spaceid': 1183331958}, 'commodities': {'path': '/commodities', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'listName': 'commodities', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'commodities', 'ver': 'ydotcom'}}}, 'spaceid': 97327075}, 'recentQuotes': {'path': '/recent-quotes', 'method': 'get', 'page': 'recentlyViewedList', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'recents', 'ver': 'ydotcom'}}}}, 'screenerLanding': {'path': '/screener', 'method': 'get', 'page': 'screener', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'landing'}}}}, 'plusScreenerLanding': {'path': '/screener/predefined-plus', 'method': 'get', 'page': 'plusScreeners', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'plusScreeners'}}}}, 'screenerDetail': {'path': '/screener/:prefix(predefined|unsaved|equity|mutualfund|insider|etf|future|index|analyst_ratings|tradingcentral_event|institutional_interest|institutional_holdings)?/:screenerId', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'rowCount': 25, 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'detail'}}}}, 'screenerDetail2': {'path': '/screener/:prefix(predefined|analyst_ratings|unsaved|equity|mutualfund|insider|etf)?/:screenerId/:view(heatmap)', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'rowCount': 250, 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'detail'}}}}, 'screenerTypesPage': {'path': '/screeners/types', 'method': 'get', 'page': 'screenerTypesPage', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'types'}}}}, 'portfolios': {'path': '/:prefix(__portfoliow|portfolio|portafoglio|cartera|portafolio|portefeuille)s', 'method': 'get', 'page': 'portfolios', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'watchlist', 'pg_name': 'landing', 'ver': 'ydotcom'}}}}, 'portfolioDetail': {'path': '/:prefix(__portfoliow|portfolio|portafoglio|cartera|portafolio|portefeuille)/:pfId', 'method': 'get', 'page': 'portfolioDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'watchlist', 'pg_name': 'detail', 'ver': 'ydotcom'}}}}, 'portfolioDetail2': {'path': '/:prefix(__portfoliow|portfolio|portafoglio|cartera|portafolio|portefeuille)/:pfId/:viewPrefix(view|visualizzazione|ansicht|vista|visualizacao|vue)/:viewId?', 'method': 'get', 'page': 'portfolioDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'watchlist', 'pg_name': 'detail', 'ver': 'ydotcom'}}}}, 'multiQuote': {'path': '/:prefix(quotes|cotizaciones|cotations|quotazioni|kurse)/:quotes', 'method': 'get', 'page': 'multiQuote', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'multiquotes', 'pg_name': 'multiquotes', 'ver': 'ydotcom'}}}}, 'multiQuote2': {'path': '/:prefix(quotes|cotizaciones|cotations|quotazioni|kurse)/:quotes?/:viewPrefix(view|visualizzazione|ansicht|vista|visualizacao|vue)/:viewId?', 'method': 'get', 'page': 'multiQuote', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'multiquotes', 'pg_name': 'multiquotes', 'ver': 'ydotcom'}}}}, 'quoteLookUp': {'path': '/lookup', 'method': 'get', 'page': 'lookup', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'lookUp', 'ver': 'ydotcom', 'pg_name': 'lookup'}}}}, 'quoteLookUpTabs': {'path': '/lookup/:type(all|equity|mutualfund|etf|index|future|currency)', 'method': 'get', 'page': 'lookup', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'lookUp', 'ver': 'ydotcom', 'pg_name': 'lookup'}}}}, 'calendar': {'path': '/calendar/:calendarType(earnings|splits|ipo|economic)?', 'method': 'get', 'page': 'calendar', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'calendar', 'ver': 'ydotcom', 'pg_name': 'earnings'}}}}, 'currencyConverterECD': {'path': '/__currency-converter', 'method': 'get', 'page': 'currencyConverterECD', 'action': 'loadConfigAndPage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'currency-converter-ecd', 'ver': 'ydotcom'}}}}, 'currencyConverter': {'path': '/currency-converter', 'method': 'get', 'page': 'currencyConverter', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'currency-converter', 'ver': 'ydotcom'}}}}, 'cryptoScreener': {'path': '/crypto/:view(heatmap)?', 'underlyingScrId': 'all_cryptocurrencies_us', 'method': 'get', 'page': 'cryptoLanding', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'cryptocurrency', 'pg_name': 'predefined'}}}}, 'most_activeScreener': {'path': '/:screenerId(most-active)/:view(heatmap)?', 'underlyingScrId': 'most_actives', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'most-active', 'pg_name': 'detail'}}}, 'spaceid': 1183331958}, 'gainersScreener': {'path': '/:screenerId(gainers)/:view(heatmap)?', 'underlyingScrId': 'day_gainers', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'gainers', 'pg_name': 'detail'}}}, 'spaceid': 1183331958}, 'losersScreener': {'path': '/:screenerId(losers)/:view(heatmap)?', 'underlyingScrId': 'day_losers', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'losers', 'pg_name': 'detail'}}}, 'spaceid': 1183331958}, 'mutualfundsScreener': {'path': '/:screenerId(mutualfunds)', 'underlyingScrId': 'top_mutual_funds', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'funds', 'pg_name': 'detail'}}}, 'spaceid': 1183331884}, 'etfsScreener': {'path': '/:screenerId(etfs)', 'underlyingScrId': 'top_etfs_us', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'etfs', 'pg_name': 'detail'}}}, 'spaceid': 1183331881}, 'categoryWatchlists': {'path': '/watchlists/category/:categorySlug', 'method': 'get', 'page': 'categoryWatchlists', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'categoryWatchlists', 'pg_name': ':categorySlug', 'ver': 'ydotcom'}}}}, 'watchlists': {'path': '/watchlists', 'method': 'get', 'page': 'watchlists', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'watchlists', 'pg_name': 'watchlists', 'ver': 'ydotcom'}}}}, 'watchlist': {'path': '/u/:provider/watchlists/:watchlistSlug', 'method': 'get', 'page': 'watchlist', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'watchlist', 'pg_name': ':watchlistSlug', 'ver': 'ydotcom'}}}}, 'eventSplash': {'path': '/splash/:eventName', 'method': 'get', 'page': 'eventSplash', 'action': 'loadConfigAndPage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'initMarketing': False, 'rapid': {'keys': {'pt': 'utility', 'pct': 'event-splash', 'pg_name': ':eventName', 'ver': 'ydotcom'}}}}, 'userInsights': {'path': '/user-insights', 'method': 'get', 'page': 'userInsights', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'user-insights', 'pg_name': 'user_insights', 'ver': 'ydotcom'}}}, 'spaceid': 1197811689}, 'secFilingDetail': {'path': '/sec-filing/:symbol/:secFilingId', 'method': 'get', 'page': 'secFilingDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'secFilingDetail', 'pg_name': 'secFilingDetail', 'ver': 'ydotcom'}}}}, 'videos': {'path': '/videos/:alias?', 'method': 'get', 'page': 'videos', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'video', 'pg_name': 'landing', 'ver': 'ydotcom'}}}}, 'videoDetails': {'path': '/show/:showName', 'method': 'get', 'page': 'videoDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'video', 'pg_name': ':showName', 'ver': 'ydotcom'}}}}, 'rates1': {'path': '/rates/auto/insurance/:state(florida|california|texas|newyork|ohio)', 'method': 'get', 'page': 'rates', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'rates', 'pstcat': 'insurance', 'pg_name': 'insurance', 'ver': 'ydotcom'}}}}, 'rates2': {'path': '/rates/:category(auto|home-equity|credit-card|deposit|mortgage)/:subpath(48-month-new-car-loan|60-month-new-car-loan|72-month-new-car-loan|36-month-used-car-loan|48-month-used-car-loan|60-month-used-car-loan|75k-heloc|50k-heloc|30k-heloc|75k-home-equity-loan|50k-home-equity-loan|30k-home-equity-loan|credit-cards-for-bad-credit|instant-approval-credit-cards|cash-back-credit-cards|reward-credit-cards|airline-credit-cards|student-credit-cards|business-credit-cards|balance-transfer-credit-cards|low-interest-credit-cards|credit|bank|type|jumbo-mma|jumbo-cd|ira-mma|savings|10k-mma|mma|2-year-cd|1-year-cd|6-month-cd|5-1-arm-refinance|30-year-jumbo|15-year-fixed-refinance|30-year-fixed-refinance|15-year-fixed|30-year-fixed|insurance)', 'method': 'get', 'page': 'rates', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'rates', 'pstcat': 'loan', 'pg_name': ':category', 'ver': 'ydotcom'}}}}, 'rates3': {'path': '/rates', 'method': 'get', 'page': 'rates', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'rates', 'pg_name': 'rates', 'ver': 'ydotcom'}}}}, 'personalFinanceStream': {'path': '/personal-finance/:eventName', 'method': 'get', 'page': 'personalFinanceStream', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'initMarketing': False, 'rapid': {'keys': {'pt': 'minihome', 'pct': 'personal-finance', 'pg_name': ':eventName', 'ver': 'ydotcom'}}, 'marketing': {'activity_id': 792877}}}, 'topic': {'path': '/:topic(topic|search|news|budget)/(provider-|):topicName([a-zA-Z0-9-%_]+)', 'method': 'get', 'page': 'topic', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pg_name': ':topicName', 'ver': 'ydotcom'}}}}, 'techTopic': {'path': '/tech', 'method': 'get', 'page': 'techTopic', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'tech', 'pg_name': 'tech', 'ver': 'ydotcom'}}}}, 'techSubpage': {'path': '/:listitem(tech|business)/:topicName', 'method': 'get', 'page': 'techSubpage', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': ':topicName', 'pg_name': ':topicName', 'ver': 'ydotcom'}}}}, 'industries': {'path': '/industries', 'method': 'get', 'page': 'industry', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'industries', 'ver': 'ydotcom', 'pg_name': 'industries'}}}, 'spaceid': 1183335957}, 'industry': {'path': '/industries/:sector(all|financial|healthcare|services|utilities|industrial_goods|basic_materials|conglomerates|consumer_goods|technology)', 'method': 'get', 'page': 'industry', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': ':sector', 'ver': 'ydotcom', 'pg_name': 'industry'}}}, 'spaceid': 1183335957}, 'minihomeNews': {'path': '/news', 'method': 'get', 'page': 'minihomeNews', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'news', 'pg_name': 'news', 'ver': 'ydotcom'}}}}, 'optionsOIScreener': {'path': '/options/:screenerId(highest-open-interest)', 'underlyingScrId': '65f51cea-8dc8-4e56-9f99-6ef7720eb69c', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'options_highest_open_interest', 'pg_name': 'detail'}}}, 'spaceid': 1183331888}, 'optionsScreener': {'path': '/options/:screenerId(highest-implied-volatility)', 'underlyingScrId': '671c40b0-5ea8-4063-89b9-9db45bf9edf0', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'options_highest_implied_volatility', 'pg_name': 'detail'}}}, 'spaceid': 1183331888}, 'companySummary': {'path': '/company/:entitySlug', 'method': 'get', 'page': 'companySummary', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'company', 'pg_name': 'summary', 'rvt': ':entitySlug', 'ver': 'ydotcom'}}}}, 'trumponomics': {'path': '/:presidentOmics(trumponomics|bidenomics)', 'method': 'get', 'page': 'trumponomics', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'trumponomics', 'ver': 'ydotcom'}}}}, 'premiumPortalECD': {'path': '/__premium', 'method': 'get', 'page': 'premiumPortalECD', 'action': 'loadPremiumPortalPage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'premium', 'ver': 'ydotcom', 'pg_name': 'premium_portal'}}}}, 'reportDetail': {'path': '/research/:category(reports)/:contentId', 'method': 'get', 'page': 'reportDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'reportDetail', 'pg_name': ':category', 'ver': 'ydotcom'}}}}, 'seo_research': {'path': '/research/:category(stock-forecast)/:symbol', 'method': 'get', 'page': 'research', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'research', 'pg_name': 'landing', 'ver': 'ydotcom'}}}}, 'plusPortal': {'path': '/plus-dashboard', 'method': 'get', 'page': 'plusDashboard', 'action': 'loadPremiumPortalPage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'premium', 'ver': 'ydotcom', 'pg_name': 'premium_portal'}}}}, 'webinar': {'path': '/webinars', 'method': 'get', 'action': 'loadSubscriptionAndConfig', 'page': 'webinar', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'webinar', 'pg_name': 'webinar', 'ver': 'ydotcom'}}}}, 'hub': {'path': '/taxes', 'method': 'get', 'page': 'hub', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance'}, 'portfolioDetailWebView': {'path': '/:prefix(__portfolio)/:pfId/:viewPrefix(view)/:viewId?', 'method': 'get', 'page': 'portfolioDetailWebView', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'pf-webview', 'pstcat': 'watchlist', 'pg_name': 'detail', 'ver': 'ydotcom'}}}}, 'blogpost': {'path': '/blogs/:contentBlog/:alias.html', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'blogpost', 'pageType': 'content', 'renderTarget': 'modal'}, 'cavideo': {'path': '/video/:alias.html', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'cavideo', 'pageType': 'content', 'renderTarget': 'modal'}, 'preview': {'path': '/m/:uuid([a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12})/:alias.html', 'action': 'loadSubscriptionAndConfig', 'contentType': 'story', 'method': 'get', 'page': 'content', 'pageType': 'content', 'renderTarget': 'modal'}, 'slideshow': {'path': '/photos/:alias', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'slideshow', 'pageType': 'content', 'renderTarget': 'modal'}, 'slideshowPhoto': {'path': '/photos/:alias/:photoAlias.html', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'slideshow', 'pageType': 'content', 'renderTarget': 'modal'}, 'story': {'path': '/:prefix(news)/:alias.html', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'story', 'pageType': 'content', 'renderTarget': 'modal'}, 'premiumPortal': {'path': '/premium', 'method': 'get', 'page': 'premiumPortal', 'action': 'loadPremiumPortalPage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'premium', 'ver': 'ydotcom', 'pg_name': 'premium_portal'}}}}, 'research': {'path': '/research/:category(trade-ideas)?', 'method': 'get', 'page': 'research', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'research', 'pg_name': 'landing', 'ver': 'ydotcom'}}}}}}, 'I13nStore': {'appConfig': {'base': {'initComscore': True, 'initRapid': True, 'enableNielsenBeacon': False, 'enablePartneradobeBeacon': False, 'adobeProp53': '', 'enableDeTrackingBeacon': False, 'enableDcmPixel': False, 'rootModelData': {'sec': 'app'}, 'rapid': {'async_all_clicks': True, 'click_timeout': 300, 'client_only': 1, 'compr_type': 'deflate', 'keys': {'ver': 'ydotcom', 'navtype': 'server'}, 'pageview_on_init': True, 'query_parameters': True, 'test_id': '', 'tracked_mods_viewability': [], 'track_right_click': True, 'viewability': True, 'dwell_on': True, 'perf_navigationtime': 2, 'perf_resourcetime': 1, 'webworker_file': '/__rapidworker-1.2.js'}, 'serverPageview': {'enable': True, 'type': 'nonClassified'}, 'secMapping': {'AddSymbolBtn': 'datautility', 'Analyst.PriceTargets': 'qsp-analyst-price-target', 'Analyst.Ratings': 'qsp-recom-trends', 'Analyst.RecommendationRating': 'qsp-recom-rating', 'Analyst.UpgradeDowngradeHistory': 'analyst-history', 'AnalystsUpsell': 'analysts-upsell', 'AssetProfile': 'qsp-assetprofile', 'BrokerCenter': 'brokercenter-landingpage-table', 'CalCarousel': 'cal-carousel', 'CalDatePicker': 'cal-date-picker', 'CalEvents': 'cal-evnts', 'CalTable': 'cal-table', 'ChartIQChartType': 'chartiq-chart_type', 'ChartIQComparison': 'chartiq-comparison', 'ChartIQDrawingTool': 'chartiq-drawing-tool', 'ChartIQInterval': 'chartiq-interval', 'ChartIQLegend': 'chartiq-legend', 'ChartIQRange': 'chartiq-range', 'ChartIQEvents': 'chartiq-events', 'ChartIQShare': 'chartiq-social-share', 'ColorPicker': 'color-picker', 'CompanyInsights': 'company-insights', 'company-insights': 'company-insights', 'corporate-events': 'company-insights-corp', 'research-reports': 'company-insights-research', 'fair-value': 'company-insights-fair', 'dividends': 'company-insights-divid', 'innovation': 'company-insights-innov', 'hiring-trends': 'company-insights-hiring', 'insider-sentiment': 'company-insights-sentiment', 'CompanyProfile': 'qsp-profile', 'CompanySnapshot': 'company-snapshot', 'ColumnItemEditorial': 'editorial-news', 'ColumnItemImage': 'editorial-image', 'ColumnItemLatestNews': 'latest-news', 'ColumnItem.Featured': 'featured-news-item', 'CommunityProfile': 'community-profile', 'Company': 'company', 'Company360': 'company360', 'Company360Drilldown': 'company360-drilldown', 'CryptoAbout': 'crypto-about', 'CryptoAccountManagement': 'crypto-acct-mgmt', 'CryptoDeactivate': 'crypto-deactivate', 'CryptoDeposit': 'crypto-deposit', 'CryptoWithdrawal': 'crypto-withdrawal', 'CryptoHome': 'crypto-home', 'CryptoKYC': 'crypto-create-account', 'CryptoPortfolio': 'crypto-portfolio', 'CryptoPortfolioFinTab': 'crypto-fin-subtab', 'CryptoTradable': 'crypto-tradable', 'CryptoTrade': 'crypto-trade', 'CuratedWatchlists': 'curated-watchlists', 'CWLCategoryTable': 'cwl-category', 'CWLDetail': 'cwl-detail', 'Earnings': 'earnings', 'EditorialNews': 'editorial-news', 'ColumnItem.Video': 'editorial-video', 'CorporateGovernance': 'qsp-corporate', 'CustomColumns': 'toolbar', 'DataUtility': 'datautility', 'DataUtilityHeader': 'datautility-hdr', 'EarningsRevenueBarChart': 'qsp-revenue-chart', 'EarningsScatterChart': 'qsp-earnings-chart', 'ESGMiniScore': 'qsp-esg-mini-score', 'EditColumns': 'toolbar', 'Sustainability.PeerScoresTable': 'sustainability-peer-scores-table', 'EventPromo': 'event-promo', 'FeaturePromo': 'feature-promo', 'FinancialsLeafPage': 'qsp-financials', 'FinancialStatement': 'qsp-statement', 'Footer': 'footer', 'FredHistoricalDataTable': 'fred-qsp-historical', 'FullScreenChart': 'chart', 'FullScreenChartMW': 'fullscreen-chart-mw', 'FuturesChain': 'futures-chain', 'Following': 'megathon-follow', 'HistoricalDataTable': 'qsp-historical', 'Holders': 'qsp-holders', 'Holders.Insiders': 'qsp-insiders', 'Holders.InsiderTransaction': 'qsp-insider-transaction', 'Holders.InsiderRoster': 'qsp-insider-roster', 'Holders.Summary': 'qsp-holdings', 'IndexComponents': 'top-components', 'IndustryLanding': 'industry-landing', 'KeyStatistics': 'qsp-key-stats', 'KeyStatisticsLeafPage': 'qsp-keystatistics', 'LineWidthSelector': 'line-width-selector', 'MarketDataTable': 'datautility', 'MarketSummary': 'mrkt-sum', 'MarketSummaryItem': 'mrkt-sum', 'MustRead': 'must-read', 'NewsStreamMyQuoteNews': 'my-quote-news-stream', 'NewsSummary': 'news-summary', 'MyMarketNews': 'my-quote-news', 'MarketNews': 'market-news', 'OptionContracts': 'qsp-options', 'OptionContractsTable': 'qsp-option-table', 'OptionContract:ResultItem': 'qsp-options', 'OptOutBtn': 'opt-out', 'PortfolioBreadcrumb': 'pf-breadcrumb', 'PortfolioControls': 'pf-controls', 'PortfolioHeader': 'pf-summary', 'PortfolioNewsStream': 'pf-news', 'PortfolioTable': 'pf-table', 'PortfolioToolbar': 'toolbar', 'PositionRow': 'datautility', 'PlusDashboard': 'plus-dashboard', 'PremiumPortal': 'prm-prtl', 'PremiumPromoHeader': 'prm-prmo-hdr', 'PremiumPromoFooter': 'prm-prmo-ftr', 'PressRelease': 'press-releases', 'QSP.FeaturedNews': 'qsp-featured-news', 'QSPSubNav': 'qsp-subnav', 'QSP.News': 'qsp-news', 'QSP.Section': 'qsp-section', 'QSPAddToWatchlist': 'qsp-hdr', 'Quote': 'qsp', 'QuoteContainer': 'qsp', 'QuoteHeader': 'quote-header', 'QuoteNews': 'quote-news', 'QuotesNews': 'quotes-news', 'QuotePill': 'quote-pill', 'QuoteRelated': 'qsp-related', 'QuoteRelatedVideo': 'related-video', 'QuoteSearchAd': 'qsp-search-ad', 'RecommendationsBySymbol': 'recommended-symbols', 'RecommendationsBySymbolSimilar': 'similar-symbols', 'ReportDetail': 'report-detail', 'Research': 'research', 'ResearchInsights': 'research-insights', 'QSPResearchReports': 'qsp-research-reports', 'ScreenerLanding': 'screener-landing', 'ScreenerPlusList': 'screener-plus-list', 'ScreenerCriteria': 'screener-criteria', 'ScreenerFilter': 'screener-filter', 'ScreenerNewFilter': 'screener-new-filter', 'ScreenerResults': 'screener-results', 'ScreenerSaveModal': 'screener-save-modal', 'ScreenerShare': 'screener-share', 'SecFilings': 'qsp-filings', 'SymbolRemoval': 'datautility', 'VideosLeftNav': 'videos-left-nav', 'SwitchVideo': 'video-switch', 'TableHead': 'datautility', 'TableRow': 'datautility', 'TickerNews': 'ticker-news', 'Trumponomics': 'trumponomics', 'UserInsights': 'user-insights', 'Virgo:ResultItem': 'chart', 'VideoPlayerWithLangSelector': 'video-player', 'YFinListTable': 'yfin-list-table'}, 'enableConsentData': True}}, 'comscoreC7Keyword': '', 'currentUrl': '/quote/AAPL/balance-sheet?p=AAPL&lang=en-US®ion=US', 'i13nConfig': {'initComscore': True, 'initRapid': True, 'enableNielsenBeacon': False, 'enablePartneradobeBeacon': False, 'adobeProp53': '', 'enableDeTrackingBeacon': False, 'enableDcmPixel': False, 'rootModelData': {'sec': 'app'}, 'rapid': {'async_all_clicks': True, 'click_timeout': 300, 'client_only': 1, 'compr_type': 'deflate', 'keys': {'ver': 'ydotcom', 'navtype': 'server', 'pt': 'utility', 'pct': 'qsp', 'pstcat': 'equities', 'pg_name': 'balance-sheet', 'rvt': 'AAPL', 'ticker': 'AAPL', 'pl1': 'us_market', 'pl2': 'NMS', 'mrkt': 'us', 'site': 'finance', 'lang': 'en-US', 'colo': 'bf1', '_yrid': 'bae2cj5hu29in', '_rid': 'bae2cj5hu29in', 'abk': ''}, 'pageview_on_init': True, 'query_parameters': True, 'test_id': 'finance-US-en-US-def', 'tracked_mods_viewability': [], 'track_right_click': True, 'viewability': True, 'dwell_on': True, 'perf_navigationtime': 2, 'perf_resourcetime': 1, 'webworker_file': '/__rapidworker-1.2.js', 'spaceid': 95993639}, 'serverPageview': {'enable': True, 'type': 'nonClassified'}, 'secMapping': {'AddSymbolBtn': 'datautility', 'Analyst.PriceTargets': 'qsp-analyst-price-target', 'Analyst.Ratings': 'qsp-recom-trends', 'Analyst.RecommendationRating': 'qsp-recom-rating', 'Analyst.UpgradeDowngradeHistory': 'analyst-history', 'AnalystsUpsell': 'analysts-upsell', 'AssetProfile': 'qsp-assetprofile', 'BrokerCenter': 'brokercenter-landingpage-table', 'CalCarousel': 'cal-carousel', 'CalDatePicker': 'cal-date-picker', 'CalEvents': 'cal-evnts', 'CalTable': 'cal-table', 'ChartIQChartType': 'chartiq-chart_type', 'ChartIQComparison': 'chartiq-comparison', 'ChartIQDrawingTool': 'chartiq-drawing-tool', 'ChartIQInterval': 'chartiq-interval', 'ChartIQLegend': 'chartiq-legend', 'ChartIQRange': 'chartiq-range', 'ChartIQEvents': 'chartiq-events', 'ChartIQShare': 'chartiq-social-share', 'ColorPicker': 'color-picker', 'CompanyInsights': 'company-insights', 'company-insights': 'company-insights', 'corporate-events': 'company-insights-corp', 'research-reports': 'company-insights-research', 'fair-value': 'company-insights-fair', 'dividends': 'company-insights-divid', 'innovation': 'company-insights-innov', 'hiring-trends': 'company-insights-hiring', 'insider-sentiment': 'company-insights-sentiment', 'CompanyProfile': 'qsp-profile', 'CompanySnapshot': 'company-snapshot', 'ColumnItemEditorial': 'editorial-news', 'ColumnItemImage': 'editorial-image', 'ColumnItemLatestNews': 'latest-news', 'ColumnItem.Featured': 'featured-news-item', 'CommunityProfile': 'community-profile', 'Company': 'company', 'Company360': 'company360', 'Company360Drilldown': 'company360-drilldown', 'CryptoAbout': 'crypto-about', 'CryptoAccountManagement': 'crypto-acct-mgmt', 'CryptoDeactivate': 'crypto-deactivate', 'CryptoDeposit': 'crypto-deposit', 'CryptoWithdrawal': 'crypto-withdrawal', 'CryptoHome': 'crypto-home', 'CryptoKYC': 'crypto-create-account', 'CryptoPortfolio': 'crypto-portfolio', 'CryptoPortfolioFinTab': 'crypto-fin-subtab', 'CryptoTradable': 'crypto-tradable', 'CryptoTrade': 'crypto-trade', 'CuratedWatchlists': 'curated-watchlists', 'CWLCategoryTable': 'cwl-category', 'CWLDetail': 'cwl-detail', 'Earnings': 'earnings', 'EditorialNews': 'editorial-news', 'ColumnItem.Video': 'editorial-video', 'CorporateGovernance': 'qsp-corporate', 'CustomColumns': 'toolbar', 'DataUtility': 'datautility', 'DataUtilityHeader': 'datautility-hdr', 'EarningsRevenueBarChart': 'qsp-revenue-chart', 'EarningsScatterChart': 'qsp-earnings-chart', 'ESGMiniScore': 'qsp-esg-mini-score', 'EditColumns': 'toolbar', 'Sustainability.PeerScoresTable': 'sustainability-peer-scores-table', 'EventPromo': 'event-promo', 'FeaturePromo': 'feature-promo', 'FinancialsLeafPage': 'qsp-financials', 'FinancialStatement': 'qsp-statement', 'Footer': 'footer', 'FredHistoricalDataTable': 'fred-qsp-historical', 'FullScreenChart': 'chart', 'FullScreenChartMW': 'fullscreen-chart-mw', 'FuturesChain': 'futures-chain', 'Following': 'megathon-follow', 'HistoricalDataTable': 'qsp-historical', 'Holders': 'qsp-holders', 'Holders.Insiders': 'qsp-insiders', 'Holders.InsiderTransaction': 'qsp-insider-transaction', 'Holders.InsiderRoster': 'qsp-insider-roster', 'Holders.Summary': 'qsp-holdings', 'IndexComponents': 'top-components', 'IndustryLanding': 'industry-landing', 'KeyStatistics': 'qsp-key-stats', 'KeyStatisticsLeafPage': 'qsp-keystatistics', 'LineWidthSelector': 'line-width-selector', 'MarketDataTable': 'datautility', 'MarketSummary': 'mrkt-sum', 'MarketSummaryItem': 'mrkt-sum', 'MustRead': 'must-read', 'NewsStreamMyQuoteNews': 'my-quote-news-stream', 'NewsSummary': 'news-summary', 'MyMarketNews': 'my-quote-news', 'MarketNews': 'market-news', 'OptionContracts': 'qsp-options', 'OptionContractsTable': 'qsp-option-table', 'OptionContract:ResultItem': 'qsp-options', 'OptOutBtn': 'opt-out', 'PortfolioBreadcrumb': 'pf-breadcrumb', 'PortfolioControls': 'pf-controls', 'PortfolioHeader': 'pf-summary', 'PortfolioNewsStream': 'pf-news', 'PortfolioTable': 'pf-table', 'PortfolioToolbar': 'toolbar', 'PositionRow': 'datautility', 'PlusDashboard': 'plus-dashboard', 'PremiumPortal': 'prm-prtl', 'PremiumPromoHeader': 'prm-prmo-hdr', 'PremiumPromoFooter': 'prm-prmo-ftr', 'PressRelease': 'press-releases', 'QSP.FeaturedNews': 'qsp-featured-news', 'QSPSubNav': 'qsp-subnav', 'QSP.News': 'qsp-news', 'QSP.Section': 'qsp-section', 'QSPAddToWatchlist': 'qsp-hdr', 'Quote': 'qsp', 'QuoteContainer': 'qsp', 'QuoteHeader': 'quote-header', 'QuoteNews': 'quote-news', 'QuotesNews': 'quotes-news', 'QuotePill': 'quote-pill', 'QuoteRelated': 'qsp-related', 'QuoteRelatedVideo': 'related-video', 'QuoteSearchAd': 'qsp-search-ad', 'RecommendationsBySymbol': 'recommended-symbols', 'RecommendationsBySymbolSimilar': 'similar-symbols', 'ReportDetail': 'report-detail', 'Research': 'research', 'ResearchInsights': 'research-insights', 'QSPResearchReports': 'qsp-research-reports', 'ScreenerLanding': 'screener-landing', 'ScreenerPlusList': 'screener-plus-list', 'ScreenerCriteria': 'screener-criteria', 'ScreenerFilter': 'screener-filter', 'ScreenerNewFilter': 'screener-new-filter', 'ScreenerResults': 'screener-results', 'ScreenerSaveModal': 'screener-save-modal', 'ScreenerShare': 'screener-share', 'SecFilings': 'qsp-filings', 'SymbolRemoval': 'datautility', 'VideosLeftNav': 'videos-left-nav', 'SwitchVideo': 'video-switch', 'TableHead': 'datautility', 'TableRow': 'datautility', 'TickerNews': 'ticker-news', 'Trumponomics': 'trumponomics', 'UserInsights': 'user-insights', 'Virgo:ResultItem': 'chart', 'VideoPlayerWithLangSelector': 'video-player', 'YFinListTable': 'yfin-list-table'}, 'enableConsentData': True}, 'pageConfig': {'headerOverride': None}, 'routeConfig': {'base': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'runtimeConfig': {'rapid': {'keys': {'rvt': 'AAPL', 'ticker': 'AAPL', 'pl1': 'us_market', 'pl2': 'NMS', 'pstcat': 'equities', 'pg_name': 'balance-sheet'}}}}, 'PageTransitionStore': {'_appConfig': {'pageTransition': {'enabled': True, 'handleSameTarget': False, 'pluginName': 'modal-fade'}}, '_currentRoute': {'path': '/quote/:symbol/:category?', 'method': 'get', 'page': 'quote', 'action': 'loadQuotePage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}, 'name': 'quote', 'url': '/quote/AAPL/balance-sheet?p=AAPL&lang=en-US®ion=US', 'params': {'symbol': 'AAPL', 'category': 'balance-sheet', 'quoteType': 'EQUITY', 'subscribed': '0', 'inTrial': '0', 'enablePremium': '1', 'enableTrading': '1'}, 'query': {'lang': 'en-US', 'p': 'AAPL', 'region': 'US'}}, '_currentRenderTarget': {'referrer': {'route': {}}, 'id': 'default', 'guid': 0, 'classNames': 'render-target-default', 'owner': 'app', 'elementId': 'render-target-default', 'url': ''}, '_renderTargets': {'default': {'referrer': {'route': {}}, 'id': 'default', 'guid': 0, 'classNames': 'render-target-default', 'owner': 'app', 'elementId': 'render-target-default', 'url': ''}}}, 'VideoPlayerStore': {'_config': {'docking': {'enableOnScrollDown': False, 'enableOnScrollUp': False, 'fadeInAnimation': True, 'position': {'left': 'ref', 'right': 0, 'bottom': 45}, 'ref': '.modal-open .render-target-modal .modalRight', 'width': 300, 'height': 168.75, 'threshold': 60, 'enableOnMuted': True, 'showInfoCard': False}, 'enableRestoreOnNavigate': True, 'enableUndockOnNavigate': True, 'refreshDockingOnNavigate': True, 'totalInactivePlayers': 10, 'videoClickSrc': ['video-click', 'startScreen']}, '_playerConfig': {}}, 'QuoteAutoCompleteStore': {'clear': True}, 'NavrailStore': {'showNavrail': False, 'navTitle': 'finance', 'navSections': '', 'currentUrl': '/quote/AAPL/balance-sheet?p=AAPL&lang=en-US®ion=US', 'pageType': {}, 'navSectionsDisplayTitle': {}, 'site': 'finance'}, 'StreamDataStore': {'quoteData': {'^TNX': {'sourceInterval': 30, 'exchange': 'NYB', 'regularMarketTime': {'raw': 1675698889, 'fmt': '10:54AM EST'}, 'shortName': '10-Yr Bond', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0.085999966, 'fmt': '0.0860'}, 'regularMarketPreviousClose': {'raw': 3.532, 'fmt': '3.5320'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 10, 'customPriceAlertConfidence': 'LOW', 'priceHint': 4, 'regularMarketPrice': {'raw': 3.618, 'fmt': '3.6180'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': -252356400000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^TNX', 'language': 'en-US', 'market': 'us24_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 2.43488, 'fmt': '2.43%'}, 'fullExchangeName': 'ICE Futures', 'tradeable': False}, 'AMZN': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 102.925, 'fmt': '102.93'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699798, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '81.43 - 170.8315', 'fmt': '81.43 - 170.83'}, 'sharesOutstanding': {'raw': 10201700352, 'fmt': '10.202B', 'longFmt': '10,201,700,352'}, 'regularMarketDayHigh': {'raw': 103.9484, 'fmt': '103.95'}, 'shortName': 'Amazon.com, Inc.', 'longName': 'Amazon.com, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -1.8696976, 'fmt': '-1.87'}, 'regularMarketPreviousClose': {'raw': 103.39, 'fmt': '103.39'}, 'fiftyTwoWeekHighChange': {'raw': -69.311195, 'fmt': '-69.31'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 20.090302, 'fmt': '20.09'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 100.65, 'fmt': '100.65'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 101.5203, 'fmt': '101.52'}, 'regularMarketVolume': {'raw': 34788052, 'fmt': '34.788M', 'longFmt': '34,788,052'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 863703000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1035679694848, 'fmt': '1.036T', 'longFmt': '1,035,679,694,848'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'AMZN', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.24671867, 'fmt': '24.67%'}, 'regularMarketDayRange': {'raw': '100.65 - 103.9484', 'fmt': '100.65 - 103.95'}, 'messageBoardId': 'finmb_18749', 'fiftyTwoWeekHigh': {'raw': 170.8315, 'fmt': '170.83'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.40572843, 'fmt': '-40.57%'}, 'uuid': '261fd26b-0151-3813-b0d0-97e4ed4c6505', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 81.43, 'fmt': '81.43'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.808393, 'fmt': '-1.81%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'GOOG': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 102.685, 'fmt': '102.68'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699797, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '83.45 - 144.1625', 'fmt': '83.45 - 144.16'}, 'sharesOutstanding': {'raw': 5968000000, 'fmt': '5.968B', 'longFmt': '5,968,000,000'}, 'regularMarketDayHigh': {'raw': 104.69, 'fmt': '104.69'}, 'shortName': 'Alphabet Inc.', 'longName': 'Alphabet Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.5599976, 'fmt': '-2.56'}, 'regularMarketPreviousClose': {'raw': 105.22, 'fmt': '105.22'}, 'fiftyTwoWeekHighChange': {'raw': -41.502502, 'fmt': '-41.50'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 19.210007, 'fmt': '19.21'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 102.21, 'fmt': '102.21'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 102.66, 'fmt': '102.66'}, 'regularMarketVolume': {'raw': 9848287, 'fmt': '9.848M', 'longFmt': '9,848,287'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1092922200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1311830573056, 'fmt': '1.312T', 'longFmt': '1,311,830,573,056'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'GOOG', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.23019782, 'fmt': '23.02%'}, 'regularMarketDayRange': {'raw': '102.21 - 104.69', 'fmt': '102.21 - 104.69'}, 'messageBoardId': 'finmb_29096', 'fiftyTwoWeekHigh': {'raw': 144.1625, 'fmt': '144.16'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.28788695, 'fmt': '-28.79%'}, 'uuid': 'ee8cce8c-2475-31c0-8436-ecdf889cbfbd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 83.45, 'fmt': '83.45'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -2.432995, 'fmt': '-2.43%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'NFLX': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 363.642, 'fmt': '363.64'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699796, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '162.71 - 412.98', 'fmt': '162.71 - 412.98'}, 'sharesOutstanding': {'raw': 445347008, 'fmt': '445.347M', 'longFmt': '445,347,008'}, 'regularMarketDayHigh': {'raw': 368.45, 'fmt': '368.45'}, 'shortName': 'Netflix, Inc.', 'longName': 'Netflix, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.81958, 'fmt': '-2.82'}, 'regularMarketPreviousClose': {'raw': 365.9, 'fmt': '365.90'}, 'fiftyTwoWeekHighChange': {'raw': -49.899597, 'fmt': '-49.90'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 200.3704, 'fmt': '200.37'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 360.7, 'fmt': '360.70'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 363.0804, 'fmt': '363.08'}, 'regularMarketVolume': {'raw': 1894217, 'fmt': '1.894M', 'longFmt': '1,894,217'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1022160600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 161696776192, 'fmt': '161.697B', 'longFmt': '161,696,776,192'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'NFLX', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 1.2314572, 'fmt': '123.15%'}, 'regularMarketDayRange': {'raw': '360.7 - 368.45', 'fmt': '360.70 - 368.45'}, 'messageBoardId': 'finmb_32012', 'fiftyTwoWeekHigh': {'raw': 412.98, 'fmt': '412.98'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.120828114, 'fmt': '-12.08%'}, 'uuid': '1a1cddac-4d41-374d-b202-739314177b67', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 162.71, 'fmt': '162.71'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.7705876, 'fmt': '-0.77%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'KOSS': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.82, 'fmt': '5.82'}, 'exchange': 'NCM', 'regularMarketTime': {'raw': 1675697530, 'fmt': '10:32AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.44 - 12.86', 'fmt': '4.44 - 12.86'}, 'sharesOutstanding': {'raw': 9189800, 'fmt': '9.19M', 'longFmt': '9,189,800'}, 'regularMarketDayHigh': {'raw': 5.88, 'fmt': '5.88'}, 'shortName': 'Koss Corporation', 'longName': 'Koss Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0.01999998, 'fmt': '0.02'}, 'regularMarketPreviousClose': {'raw': 5.8, 'fmt': '5.80'}, 'fiftyTwoWeekHighChange': {'raw': -7.0399995, 'fmt': '-7.04'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1.3800001, 'fmt': '1.38'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.8, 'fmt': '5.80'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.82, 'fmt': '5.82'}, 'regularMarketVolume': {'raw': 2746, 'fmt': '2,746', 'longFmt': '2,746'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 322151400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 53484636, 'fmt': '53.485M', 'longFmt': '53,484,636'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'KOSS', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.31081083, 'fmt': '31.08%'}, 'regularMarketDayRange': {'raw': '5.8 - 5.88', 'fmt': '5.80 - 5.88'}, 'messageBoardId': 'finmb_283448', 'fiftyTwoWeekHigh': {'raw': 12.86, 'fmt': '12.86'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.54743385, 'fmt': '-54.74%'}, 'uuid': 'ad708ee0-5672-30f5-85f6-bbbcb3e0eccd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.44, 'fmt': '4.44'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.34482723, 'fmt': '0.34%'}, 'fullExchangeName': 'NasdaqCM', 'tradeable': False}, '^N225': {'sourceInterval': 20, 'quoteSourceName': 'Delayed Quote', 'exchange': 'OSA', 'regularMarketTime': {'raw': 1675664103, 'fmt': '3:15PM JST'}, 'shortName': 'Nikkei 225', 'exchangeTimezoneName': 'Asia/Tokyo', 'regularMarketChange': {'raw': 184.18945, 'fmt': '184.19'}, 'regularMarketPreviousClose': {'raw': 27509.46, 'fmt': '27,509.46'}, 'exchangeTimezoneShortName': 'JST', 'exchangeDataDelayedBy': 20, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 27693.65, 'fmt': '27,693.65'}, 'triggerable': False, 'gmtOffSetMilliseconds': 32400000, 'firstTradeDateMilliseconds': -157420800000, 'region': 'US', 'marketState': 'PREPRE', 'quoteType': 'INDEX', 'symbol': '^N225', 'language': 'en-US', 'market': 'jp_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.6695495, 'fmt': '0.67%'}, 'fullExchangeName': 'Osaka', 'tradeable': False}, 'GC=F': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CMX', 'regularMarketTime': {'raw': 1675699198, 'fmt': '10:59AM EST'}, 'shortName': 'Gold', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 2.2000732, 'fmt': '2.20'}, 'regularMarketPreviousClose': {'raw': 1862.9, 'fmt': '1,862.90'}, 'contractSymbol': False, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 10, 'customPriceAlertConfidence': 'NONE', 'regularMarketPrice': {'raw': 1878.8, 'fmt': '1,878.80'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 967608000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'FUTURE', 'symbol': 'GC=F', 'language': 'en-US', 'headSymbol': True, 'headSymbolAsString': 'GC=F', 'market': 'us24_market', 'typeDisp': 'Futures', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.117237195, 'fmt': '0.12%'}, 'fullExchangeName': 'COMEX', 'tradeable': False}, 'META': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 186.53, 'fmt': '186.53'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699798, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '88.09 - 238.3', 'fmt': '88.09 - 238.30'}, 'sharesOutstanding': {'raw': 2255320064, 'fmt': '2.255B', 'longFmt': '2,255,320,064'}, 'regularMarketDayHigh': {'raw': 190.7, 'fmt': '190.70'}, 'shortName': 'Meta Platforms, Inc.', 'longName': 'Meta Platforms, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 1.7200012, 'fmt': '1.72'}, 'regularMarketPreviousClose': {'raw': 186.53, 'fmt': '186.53'}, 'fiftyTwoWeekHighChange': {'raw': -50.050003, 'fmt': '-50.05'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 100.16, 'fmt': '100.16'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 185.8, 'fmt': '185.80'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 188.25, 'fmt': '188.25'}, 'regularMarketVolume': {'raw': 17715095, 'fmt': '17.715M', 'longFmt': '17,715,095'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1337347800000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 493629177856, 'fmt': '493.629B', 'longFmt': '493,629,177,856'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'META', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 1.137019, 'fmt': '113.70%'}, 'regularMarketDayRange': {'raw': '185.8 - 190.7', 'fmt': '185.80 - 190.70'}, 'messageBoardId': 'finmb_20765463', 'fiftyTwoWeekHigh': {'raw': 238.3, 'fmt': '238.30'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.21002938, 'fmt': '-21.00%'}, 'uuid': 'e59f1c4f-b1aa-3d70-a8c3-eb59ff3e461b', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 88.09, 'fmt': '88.09'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.92210436, 'fmt': '0.92%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, '^DJI': {'sourceInterval': 120, 'quoteSourceName': 'Free Realtime Quote', 'exchange': 'DJI', 'regularMarketTime': {'raw': 1675699798, 'fmt': '11:09AM EST'}, 'shortName': 'Dow 30', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -102.76172, 'fmt': '-102.76'}, 'regularMarketPreviousClose': {'raw': 33926.01, 'fmt': '33,926.01'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 33823.25, 'fmt': '33,823.25'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 694362600000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^DJI', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.30289948, 'fmt': '-0.30%'}, 'fullExchangeName': 'DJI', 'tradeable': False}, 'GPRO': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.64, 'fmt': '5.64'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699789, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.5 - 9.42', 'fmt': '4.50 - 9.42'}, 'sharesOutstanding': {'raw': 129668000, 'fmt': '129.668M', 'longFmt': '129,668,000'}, 'regularMarketDayHigh': {'raw': 5.76, 'fmt': '5.76'}, 'shortName': 'GoPro, Inc.', 'longName': 'GoPro, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.19000006, 'fmt': '-0.19'}, 'regularMarketPreviousClose': {'raw': 5.69, 'fmt': '5.69'}, 'fiftyTwoWeekHighChange': {'raw': -3.92, 'fmt': '-3.92'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1, 'fmt': '1.00'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.475, 'fmt': '5.47'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.5, 'fmt': '5.50'}, 'regularMarketVolume': {'raw': 1031197, 'fmt': '1.031M', 'longFmt': '1,031,197'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1403789400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 857598528, 'fmt': '857.599M', 'longFmt': '857,598,528'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'GPRO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.22222222, 'fmt': '22.22%'}, 'regularMarketDayRange': {'raw': '5.475 - 5.76', 'fmt': '5.47 - 5.76'}, 'messageBoardId': 'finmb_113665065', 'fiftyTwoWeekHigh': {'raw': 9.42, 'fmt': '9.42'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.41613588, 'fmt': '-41.61%'}, 'uuid': 'd831d8ea-3a6d-36de-af60-081896d375cd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.5, 'fmt': '4.50'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.3391926, 'fmt': '-3.34%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'SONY': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 90.86, 'fmt': '90.86'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675699786, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '61.72 - 111.98', 'fmt': '61.72 - 111.98'}, 'sharesOutstanding': {'raw': 1234690048, 'fmt': '1.235B', 'longFmt': '1,234,690,048'}, 'regularMarketDayHigh': {'raw': 90.84, 'fmt': '90.84'}, 'shortName': 'Sony Group Corporation', 'longName': 'Sony Group Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -3.3899994, 'fmt': '-3.39'}, 'regularMarketPreviousClose': {'raw': 93.13, 'fmt': '93.13'}, 'fiftyTwoWeekHighChange': {'raw': -22.240005, 'fmt': '-22.24'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 28.019997, 'fmt': '28.02'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 89.6211, 'fmt': '89.62'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 89.74, 'fmt': '89.74'}, 'regularMarketVolume': {'raw': 236011, 'fmt': '236,011', 'longFmt': '236,011'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 99153000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 110801084416, 'fmt': '110.801B', 'longFmt': '110,801,084,416'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SONY', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.4539857, 'fmt': '45.40%'}, 'regularMarketDayRange': {'raw': '89.6211 - 90.84', 'fmt': '89.62 - 90.84'}, 'messageBoardId': 'finmb_23021', 'fiftyTwoWeekHigh': {'raw': 111.98, 'fmt': '111.98'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.19860694, 'fmt': '-19.86%'}, 'uuid': '51ec1656-6a66-39d0-8159-ed49cf2f2289', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 61.72, 'fmt': '61.72'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.6400726, 'fmt': '-3.64%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, '^IXIC': {'sourceInterval': 15, 'quoteSourceName': 'Free Realtime Quote', 'exchange': 'NIM', 'regularMarketTime': {'raw': 1675699797, 'fmt': '11:09AM EST'}, 'shortName': 'Nasdaq', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -88.2666, 'fmt': '-88.27'}, 'regularMarketPreviousClose': {'raw': 12006.955, 'fmt': '12,006.96'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 11918.688, 'fmt': '11,918.69'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 34612200000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^IXIC', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.73512894, 'fmt': '-0.74%'}, 'fullExchangeName': 'Nasdaq GIDS', 'tradeable': False}, 'LPL': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 5.52, 'fmt': '5.52'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675698891, 'fmt': '10:54AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.08 - 8.53', 'fmt': '4.08 - 8.53'}, 'sharesOutstanding': {'raw': 715630976, 'fmt': '715.631M', 'longFmt': '715,630,976'}, 'regularMarketDayHigh': {'raw': 5.52, 'fmt': '5.52'}, 'shortName': 'LG Display Co, Ltd AMERICAN DEP', 'longName': 'LG Display Co., Ltd.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.1949997, 'fmt': '-0.19'}, 'regularMarketPreviousClose': {'raw': 5.68, 'fmt': '5.68'}, 'fiftyTwoWeekHighChange': {'raw': -3.0449996, 'fmt': '-3.04'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1.4050002, 'fmt': '1.41'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.46, 'fmt': '5.46'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.485, 'fmt': '5.49'}, 'regularMarketVolume': {'raw': 76349, 'fmt': '76,349', 'longFmt': '76,349'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1090503000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 3925235968, 'fmt': '3.925B', 'longFmt': '3,925,235,968'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'LPL', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.3443628, 'fmt': '34.44%'}, 'regularMarketDayRange': {'raw': '5.46 - 5.52', 'fmt': '5.46 - 5.52'}, 'messageBoardId': 'finmb_5471044', 'fiftyTwoWeekHigh': {'raw': 8.53, 'fmt': '8.53'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.35697535, 'fmt': '-35.70%'}, 'uuid': '78df0a6f-207d-3a77-adfe-657f86e6d5c9', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.08, 'fmt': '4.08'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.4330935, 'fmt': '-3.43%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, 'SSNLF': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 40.5999, 'fmt': '40.60'}, 'exchange': 'PNK', 'regularMarketTime': {'raw': 1664306331, 'fmt': '3:18PM EDT'}, 'fiftyTwoWeekRange': {'raw': '40.5999 - 57.75', 'fmt': '40.60 - 57.75'}, 'sharesOutstanding': {'raw': 5969780224, 'fmt': '5.97B', 'longFmt': '5,969,780,224'}, 'regularMarketDayHigh': {'raw': 40.5999, 'fmt': '40.60'}, 'shortName': 'SAMSUNG ELECTRONICS CO', 'longName': 'Samsung Electronics Co., Ltd.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0, 'fmt': '0.00'}, 'regularMarketPreviousClose': {'raw': 40.5999, 'fmt': '40.60'}, 'fiftyTwoWeekHighChange': {'raw': -17.1501, 'fmt': '-17.15'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 0, 'fmt': '0.00'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketDayLow': {'raw': 40.5999, 'fmt': '40.60'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 40.5999, 'fmt': '40.60'}, 'regularMarketVolume': {'raw': 200, 'fmt': '200', 'longFmt': '200'}, 'isLoading': False, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 997104600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 301846429696, 'fmt': '301.846B', 'longFmt': '301,846,429,696'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SSNLF', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0, 'fmt': '0.00%'}, 'regularMarketDayRange': {'raw': '40.5999 - 40.5999', 'fmt': '40.60 - 40.60'}, 'messageBoardId': 'finmb_91868', 'fiftyTwoWeekHigh': {'raw': 57.75, 'fmt': '57.75'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.29697144, 'fmt': '-29.70%'}, 'uuid': '5f5ae02b-3a86-367d-b20b-055520cea9ae', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 40.5999, 'fmt': '40.60'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0, 'fmt': '0.00%'}, 'fullExchangeName': 'Other OTC', 'tradeable': False}, 'VZIO': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 9.44, 'fmt': '9.44'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675699688, 'fmt': '11:08AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.47 - 15.42', 'fmt': '6.47 - 15.42'}, 'sharesOutstanding': {'raw': 117636000, 'fmt': '117.636M', 'longFmt': '117,636,000'}, 'regularMarketDayHigh': {'raw': 9.505, 'fmt': '9.51'}, 'shortName': 'VIZIO Holding Corp.', 'longName': 'VIZIO Holding Corp.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.34999943, 'fmt': '-0.35'}, 'regularMarketPreviousClose': {'raw': 9.57, 'fmt': '9.57'}, 'fiftyTwoWeekHighChange': {'raw': -6.2, 'fmt': '-6.20'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.7500005, 'fmt': '2.75'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 9.13, 'fmt': '9.13'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 9.22, 'fmt': '9.22'}, 'regularMarketVolume': {'raw': 45393, 'fmt': '45,393', 'longFmt': '45,393'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1616765400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1792829056, 'fmt': '1.793B', 'longFmt': '1,792,829,056'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'VZIO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.42503873, 'fmt': '42.50%'}, 'regularMarketDayRange': {'raw': '9.13 - 9.505', 'fmt': '9.13 - 9.51'}, 'messageBoardId': 'finmb_27650657', 'fiftyTwoWeekHigh': {'raw': 15.42, 'fmt': '15.42'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.4020752, 'fmt': '-40.21%'}, 'uuid': '98dc8f95-157e-3c62-b8f9-ea5c671822cd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.47, 'fmt': '6.47'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.6572564, 'fmt': '-3.66%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, 'BTC-USD': {'sourceInterval': 15, 'quoteSourceName': 'CoinMarketCap', 'exchange': 'CCC', 'regularMarketTime': {'raw': 1675699620, 'fmt': '4:07PM UTC'}, 'exchangeTimezoneName': 'UTC', 'regularMarketChange': {'raw': -65.80469, 'fmt': '-65.80'}, 'regularMarketPreviousClose': {'raw': 22959.066, 'fmt': '22,959.07'}, 'exchangeTimezoneShortName': 'UTC', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketPrice': {'raw': 23061.99, 'fmt': '23,061.99'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 1410912000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'CRYPTOCURRENCY', 'symbol': 'BTC-USD', 'language': 'en-US', 'market': 'ccc_market', 'typeDisp': 'Cryptocurrency', 'cryptoTradeable': True, 'regularMarketChangePercent': {'raw': -0.284531, 'fmt': '-0.28%'}, 'fullExchangeName': 'CCC', 'tradeable': False}, 'GBPUSD=X': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CCY', 'regularMarketTime': {'raw': 1675699793, 'fmt': '4:09PM GMT'}, 'shortName': 'GBP/USD', 'exchangeTimezoneName': 'Europe/London', 'regularMarketChange': {'raw': -0.0043450594, 'fmt': '-0.0043'}, 'regularMarketPreviousClose': {'raw': 1.2056472, 'fmt': '1.2056'}, 'exchangeTimezoneShortName': 'GMT', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 4, 'currency': 'USD', 'regularMarketPrice': {'raw': 1.2013022, 'fmt': '1.2013'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 1070236800000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'CURRENCY', 'symbol': 'GBPUSD=X', 'language': 'en-US', 'market': 'ccy_market', 'typeDisp': 'Currency', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.36039317, 'fmt': '-0.36%'}, 'fullExchangeName': 'CCY', 'tradeable': False}, 'HEAR': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 9.29, 'fmt': '9.29'}, 'exchange': 'NGM', 'regularMarketTime': {'raw': 1675699651, 'fmt': '11:07AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.22 - 25.33', 'fmt': '6.22 - 25.33'}, 'sharesOutstanding': {'raw': 16557000, 'fmt': '16.557M', 'longFmt': '16,557,000'}, 'regularMarketDayHigh': {'raw': 9.29, 'fmt': '9.29'}, 'shortName': 'Turtle Beach Corporation', 'longName': 'Turtle Beach Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.28999996, 'fmt': '-0.29'}, 'regularMarketPreviousClose': {'raw': 9.33, 'fmt': '9.33'}, 'fiftyTwoWeekHighChange': {'raw': -16.29, 'fmt': '-16.29'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.8200002, 'fmt': '2.82'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 8.94, 'fmt': '8.94'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 9.04, 'fmt': '9.04'}, 'regularMarketVolume': {'raw': 23439, 'fmt': '23,439', 'longFmt': '23,439'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1289831400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 149675280, 'fmt': '149.675M', 'longFmt': '149,675,280'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'HEAR', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.45337626, 'fmt': '45.34%'}, 'regularMarketDayRange': {'raw': '8.94 - 9.29', 'fmt': '8.94 - 9.29'}, 'messageBoardId': 'finmb_851282', 'fiftyTwoWeekHigh': {'raw': 25.33, 'fmt': '25.33'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.643111, 'fmt': '-64.31%'}, 'uuid': '58194bdb-92f1-3b95-b21e-5b66d5d67f2f', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.22, 'fmt': '6.22'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.1082525, 'fmt': '-3.11%'}, 'fullExchangeName': 'NasdaqGM', 'tradeable': False}, 'VUZI': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.66, 'fmt': '5.66'}, 'exchange': 'NCM', 'regularMarketTime': {'raw': 1675699794, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '3.27 - 10.49', 'fmt': '3.27 - 10.49'}, 'sharesOutstanding': {'raw': 63739600, 'fmt': '63.74M', 'longFmt': '63,739,600'}, 'regularMarketDayHigh': {'raw': 5.8, 'fmt': '5.80'}, 'shortName': 'Vuzix Corporation', 'longName': 'Vuzix Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.17000008, 'fmt': '-0.17'}, 'regularMarketPreviousClose': {'raw': 5.75, 'fmt': '5.75'}, 'fiftyTwoWeekHighChange': {'raw': -4.91, 'fmt': '-4.91'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.31, 'fmt': '2.31'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.49, 'fmt': '5.49'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.58, 'fmt': '5.58'}, 'regularMarketVolume': {'raw': 367918, 'fmt': '367,918', 'longFmt': '367,918'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1270474200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 355666976, 'fmt': '355.667M', 'longFmt': '355,666,976'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'VUZI', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.70642203, 'fmt': '70.64%'}, 'regularMarketDayRange': {'raw': '5.49 - 5.8', 'fmt': '5.49 - 5.80'}, 'messageBoardId': 'finmb_13610016', 'fiftyTwoWeekHigh': {'raw': 10.49, 'fmt': '10.49'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.4680648, 'fmt': '-46.81%'}, 'uuid': 'b42c8863-c6d0-341b-9d51-442783839350', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 3.27, 'fmt': '3.27'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -2.956523, 'fmt': '-2.96%'}, 'fullExchangeName': 'NasdaqCM', 'tradeable': False}, 'JPY=X': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CCY', 'regularMarketTime': {'raw': 1675699797, 'fmt': '4:09PM GMT'}, 'shortName': 'USD/JPY', 'exchangeTimezoneName': 'Europe/London', 'regularMarketChange': {'raw': 1.7030029, 'fmt': '1.7030'}, 'regularMarketPreviousClose': {'raw': 131.15, 'fmt': '131.1500'}, 'exchangeTimezoneShortName': 'GMT', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 4, 'currency': 'JPY', 'regularMarketPrice': {'raw': 132.853, 'fmt': '132.8530'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 846633600000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'CURRENCY', 'symbol': 'JPY=X', 'language': 'en-US', 'market': 'ccy_market', 'typeDisp': 'Currency', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 1.2985154, 'fmt': '1.30%'}, 'fullExchangeName': 'CCY', 'tradeable': False}, 'PCRFY': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 8.62, 'fmt': '8.62'}, 'exchange': 'PNK', 'regularMarketTime': {'raw': 1675698716, 'fmt': '10:51AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.66 - 10.89', 'fmt': '6.66 - 10.89'}, 'sharesOutstanding': {'raw': 2334089984, 'fmt': '2.334B', 'longFmt': '2,334,089,984'}, 'regularMarketDayHigh': {'raw': 8.745, 'fmt': '8.74'}, 'shortName': 'PANASONIC HOLDINGS CORP ADR-EAC', 'longName': 'Panasonic Holdings Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.08000088, 'fmt': '-0.08'}, 'regularMarketPreviousClose': {'raw': 8.77, 'fmt': '8.77'}, 'fiftyTwoWeekHighChange': {'raw': -2.2000008, 'fmt': '-2.20'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.0299997, 'fmt': '2.03'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketDayLow': {'raw': 8.62, 'fmt': '8.62'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 8.69, 'fmt': '8.69'}, 'regularMarketVolume': {'raw': 47805, 'fmt': '47,805', 'longFmt': '47,805'}, 'isLoading': False, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 322151400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 20283240448, 'fmt': '20.283B', 'longFmt': '20,283,240,448'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'PCRFY', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.30480477, 'fmt': '30.48%'}, 'regularMarketDayRange': {'raw': '8.62 - 8.745', 'fmt': '8.62 - 8.74'}, 'messageBoardId': 'finmb_320433', 'fiftyTwoWeekHigh': {'raw': 10.89, 'fmt': '10.89'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.20202027, 'fmt': '-20.20%'}, 'uuid': '01e8db59-6c12-3ae1-a223-b71412148081', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.66, 'fmt': '6.66'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.91221064, 'fmt': '-0.91%'}, 'fullExchangeName': 'Other OTC', 'tradeable': False}, 'CL=F': {'sourceInterval': 30, 'quoteSourceName': 'Delayed Quote', 'exchange': 'NYM', 'regularMarketTime': {'raw': 1675699198, 'fmt': '10:59AM EST'}, 'shortName': 'Crude Oil', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.94999695, 'fmt': '-0.95'}, 'regularMarketPreviousClose': {'raw': 73.39, 'fmt': '73.39'}, 'contractSymbol': False, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 10, 'customPriceAlertConfidence': 'NONE', 'regularMarketPrice': {'raw': 72.44, 'fmt': '72.44'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 967003200000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'FUTURE', 'symbol': 'CL=F', 'language': 'en-US', 'headSymbol': True, 'headSymbolAsString': 'CL=F', 'market': 'us24_market', 'typeDisp': 'Futures', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.2944502, 'fmt': '-1.29%'}, 'fullExchangeName': 'NY Mercantile', 'tradeable': False}, '^RUT': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'WCB', 'regularMarketTime': {'raw': 1675698895, 'fmt': '10:54AM EST'}, 'shortName': 'Russell 2000', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -23.100708, 'fmt': '-23.10'}, 'regularMarketPreviousClose': {'raw': 1985.5343, 'fmt': '1,985.53'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 15, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 1962.4336, 'fmt': '1,962.43'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 558279000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^RUT', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.1634505, 'fmt': '-1.16%'}, 'fullExchangeName': 'Chicago Options', 'tradeable': False}, 'TSLA': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 193.01, 'fmt': '193.01'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699798, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '101.81 - 384.29', 'fmt': '101.81 - 384.29'}, 'sharesOutstanding': {'raw': 3164100096, 'fmt': '3.164B', 'longFmt': '3,164,100,096'}, 'regularMarketDayHigh': {'raw': 198.16, 'fmt': '198.16'}, 'shortName': 'Tesla, Inc.', 'longName': 'Tesla, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 4.720108, 'fmt': '4.72'}, 'regularMarketPreviousClose': {'raw': 189.98, 'fmt': '189.98'}, 'fiftyTwoWeekHighChange': {'raw': -189.5899, 'fmt': '-189.59'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 92.89011, 'fmt': '92.89'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 189.92, 'fmt': '189.92'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 194.7001, 'fmt': '194.70'}, 'regularMarketVolume': {'raw': 86577340, 'fmt': '86.577M', 'longFmt': '86,577,340'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1277818200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 616050589696, 'fmt': '616.051B', 'longFmt': '616,050,589,696'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'TSLA', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.9123869, 'fmt': '91.24%'}, 'regularMarketDayRange': {'raw': '189.92 - 198.16', 'fmt': '189.92 - 198.16'}, 'messageBoardId': 'finmb_27444752', 'fiftyTwoWeekHigh': {'raw': 384.29, 'fmt': '384.29'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.4933511, 'fmt': '-49.34%'}, 'uuid': 'ec367bc4-f92c-397c-ac81-bf7b43cffaf7', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 101.81, 'fmt': '101.81'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 2.484529, 'fmt': '2.48%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, '^CMC200': {'sourceInterval': 15, 'quoteSourceName': 'Free Realtime Quote', 'exchange': 'NIM', 'regularMarketTime': {'raw': 1675699637, 'fmt': '11:07AM EST'}, 'shortName': 'CMC Crypto 200', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 4.818054, 'fmt': '4.82'}, 'regularMarketPreviousClose': {'raw': 525.1342, 'fmt': '525.13'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 529.9523, 'fmt': '529.95'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1546266600000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^CMC200', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.91749, 'fmt': '0.92%'}, 'fullExchangeName': 'Nasdaq GIDS', 'tradeable': False}, 'AAPL': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 152.575, 'fmt': '152.57'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699797, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '124.17 - 179.61', 'fmt': '124.17 - 179.61'}, 'sharesOutstanding': {'raw': 15821899776, 'fmt': '15.822B', 'longFmt': '15,821,899,776'}, 'regularMarketDayHigh': {'raw': 153.1, 'fmt': '153.10'}, 'shortName': 'Apple Inc.', 'longName': 'Apple Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.2700043, 'fmt': '-2.27'}, 'regularMarketPreviousClose': {'raw': 154.5, 'fmt': '154.50'}, 'fiftyTwoWeekHighChange': {'raw': -27.380005, 'fmt': '-27.38'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 28.059998, 'fmt': '28.06'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 150.9, 'fmt': '150.90'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 152.23, 'fmt': '152.23'}, 'regularMarketVolume': {'raw': 27886696, 'fmt': '27.887M', 'longFmt': '27,886,696'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 345479400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 2408567799808, 'fmt': '2.409T', 'longFmt': '2,408,567,799,808'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [{'header': 'Dividend', 'message': 'AAPL announced a cash dividend of 0.23 with an ex-date of Feb. 10, 2023', 'meta': {'eventType': 'DIVIDEND', 'dateEpochMs': 1675969200000}}], 'symbol': 'AAPL', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.22598049, 'fmt': '22.60%'}, 'regularMarketDayRange': {'raw': '150.9 - 153.1', 'fmt': '150.90 - 153.10'}, 'messageBoardId': 'finmb_24937', 'fiftyTwoWeekHigh': {'raw': 179.61, 'fmt': '179.61'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.15244143, 'fmt': '-15.24%'}, 'uuid': '8b10e4ae-9eeb-3684-921a-9ab27e4d87aa', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 124.17, 'fmt': '124.17'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.4692584, 'fmt': '-1.47%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'SONO': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 18.66, 'fmt': '18.66'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699680, 'fmt': '11:08AM EST'}, 'fiftyTwoWeekRange': {'raw': '13.65 - 31.22', 'fmt': '13.65 - 31.22'}, 'sharesOutstanding': {'raw': 127345000, 'fmt': '127.345M', 'longFmt': '127,345,000'}, 'regularMarketDayHigh': {'raw': 18.66, 'fmt': '18.66'}, 'shortName': 'Sonos, Inc.', 'longName': 'Sonos, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.7350006, 'fmt': '-0.74'}, 'regularMarketPreviousClose': {'raw': 18.91, 'fmt': '18.91'}, 'fiftyTwoWeekHighChange': {'raw': -13.045, 'fmt': '-13.05'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 4.5249996, 'fmt': '4.52'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 18.14, 'fmt': '18.14'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 18.175, 'fmt': '18.17'}, 'regularMarketVolume': {'raw': 510481, 'fmt': '510,481', 'longFmt': '510,481'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1533216600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 2314495232, 'fmt': '2.314B', 'longFmt': '2,314,495,232'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SONO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.3315018, 'fmt': '33.15%'}, 'regularMarketDayRange': {'raw': '18.14 - 18.66', 'fmt': '18.14 - 18.66'}, 'messageBoardId': 'finmb_10654809', 'fiftyTwoWeekHigh': {'raw': 31.22, 'fmt': '31.22'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.41784114, 'fmt': '-41.78%'}, 'uuid': '98c419db-3a58-3f86-8eb4-a664481f7d12', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 13.65, 'fmt': '13.65'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.8868356, 'fmt': '-3.89%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, '^GSPC': {'sourceInterval': 15, 'quoteSourceName': 'Free Realtime Quote', 'exchange': 'SNP', 'regularMarketTime': {'raw': 1675699797, 'fmt': '11:09AM EST'}, 'shortName': 'S&P 500', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -23.339844, 'fmt': '-23.34'}, 'regularMarketPreviousClose': {'raw': 4136.48, 'fmt': '4,136.48'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 4113.14, 'fmt': '4,113.14'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': -1325583000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^GSPC', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.5642441, 'fmt': '-0.56%'}, 'fullExchangeName': 'SNP', 'tradeable': False}, '^FTSE': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'FGI', 'regularMarketTime': {'raw': 1675698897, 'fmt': '3:54PM GMT'}, 'shortName': 'FTSE 100', 'exchangeTimezoneName': 'Europe/London', 'regularMarketChange': {'raw': -70.36963, 'fmt': '-70.37'}, 'regularMarketPreviousClose': {'raw': 7901.8, 'fmt': '7,901.80'}, 'exchangeTimezoneShortName': 'GMT', 'exchangeDataDelayedBy': 15, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 7831.43, 'fmt': '7,831.43'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 441964800000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^FTSE', 'language': 'en-US', 'market': 'gb_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.89055187, 'fmt': '-0.89%'}, 'fullExchangeName': 'FTSE Index', 'tradeable': False}, 'SI=F': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CMX', 'regularMarketTime': {'raw': 1675699198, 'fmt': '10:59AM EST'}, 'shortName': 'Silver', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.125, 'fmt': '-0.12'}, 'regularMarketPreviousClose': {'raw': 22.405, 'fmt': '22.41'}, 'contractSymbol': False, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 10, 'customPriceAlertConfidence': 'NONE', 'regularMarketPrice': {'raw': 22.28, 'fmt': '22.28'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 967608000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'FUTURE', 'symbol': 'SI=F', 'language': 'en-US', 'headSymbol': True, 'headSymbolAsString': 'SI=F', 'market': 'us24_market', 'typeDisp': 'Futures', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.55791116, 'fmt': '-0.56%'}, 'fullExchangeName': 'COMEX', 'tradeable': False}, 'EURUSD=X': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CCY', 'regularMarketTime': {'raw': 1675699793, 'fmt': '4:09PM GMT'}, 'shortName': 'EUR/USD', 'exchangeTimezoneName': 'Europe/London', 'regularMarketChange': {'raw': -0.0061432123, 'fmt': '-0.0061'}, 'regularMarketPreviousClose': {'raw': 1.0796804, 'fmt': '1.0797'}, 'exchangeTimezoneShortName': 'GMT', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 4, 'currency': 'USD', 'regularMarketPrice': {'raw': 1.0735372, 'fmt': '1.0735'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 1070236800000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'CURRENCY', 'symbol': 'EURUSD=X', 'language': 'en-US', 'market': 'ccy_market', 'typeDisp': 'Currency', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.5689796, 'fmt': '-0.57%'}, 'fullExchangeName': 'CCY', 'tradeable': False}}, 'mktmData': {}}, 'QuoteSummaryStore': {'financialsTemplate': {'code': 'N', 'maxAge': 1}, 'cashflowStatementHistory': {'cashflowStatements': [{'investments': {'raw': -9560000000, 'fmt': '-9.56B', 'longFmt': '-9,560,000,000'}, 'changeToLiabilities': {'raw': 9926000000, 'fmt': '9.93B', 'longFmt': '9,926,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -22354000000, 'fmt': '-22.35B', 'longFmt': '-22,354,000,000'}, 'netBorrowings': {'raw': -123000000, 'fmt': '-123M', 'longFmt': '-123,000,000'}, 'totalCashFromFinancingActivities': {'raw': -110749000000, 'fmt': '-110.75B', 'longFmt': '-110,749,000,000'}, 'changeToOperatingActivities': {'raw': -8387000000, 'fmt': '-8.39B', 'longFmt': '-8,387,000,000'}, 'netIncome': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}, 'changeInCash': {'raw': -10952000000, 'fmt': '-10.95B', 'longFmt': '-10,952,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'repurchaseOfStock': {'raw': -95625000000, 'fmt': '-95.62B', 'longFmt': '-95,625,000,000'}, 'totalCashFromOperatingActivities': {'raw': 122151000000, 'fmt': '122.15B', 'longFmt': '122,151,000,000'}, 'depreciation': {'raw': 11104000000, 'fmt': '11.1B', 'longFmt': '11,104,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -1780000000, 'fmt': '-1.78B', 'longFmt': '-1,780,000,000'}, 'dividendsPaid': {'raw': -14841000000, 'fmt': '-14.84B', 'longFmt': '-14,841,000,000'}, 'changeToInventory': {'raw': 1484000000, 'fmt': '1.48B', 'longFmt': '1,484,000,000'}, 'changeToAccountReceivables': {'raw': -1823000000, 'fmt': '-1.82B', 'longFmt': '-1,823,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -160000000, 'fmt': '-160M', 'longFmt': '-160,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 10044000000, 'fmt': '10.04B', 'longFmt': '10,044,000,000'}, 'capitalExpenditures': {'raw': -10708000000, 'fmt': '-10.71B', 'longFmt': '-10,708,000,000'}}, {'investments': {'raw': -3075000000, 'fmt': '-3.08B', 'longFmt': '-3,075,000,000'}, 'changeToLiabilities': {'raw': 14002000000, 'fmt': '14B', 'longFmt': '14,002,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -14545000000, 'fmt': '-14.54B', 'longFmt': '-14,545,000,000'}, 'netBorrowings': {'raw': 12665000000, 'fmt': '12.66B', 'longFmt': '12,665,000,000'}, 'totalCashFromFinancingActivities': {'raw': -93353000000, 'fmt': '-93.35B', 'longFmt': '-93,353,000,000'}, 'changeToOperatingActivities': {'raw': -6146000000, 'fmt': '-6.15B', 'longFmt': '-6,146,000,000'}, 'netIncome': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}, 'changeInCash': {'raw': -3860000000, 'fmt': '-3.86B', 'longFmt': '-3,860,000,000'}, 'endDate': {'raw': 1632528000, 'fmt': '2021-09-25'}, 'repurchaseOfStock': {'raw': -92527000000, 'fmt': '-92.53B', 'longFmt': '-92,527,000,000'}, 'totalCashFromOperatingActivities': {'raw': 104038000000, 'fmt': '104.04B', 'longFmt': '104,038,000,000'}, 'depreciation': {'raw': 11284000000, 'fmt': '11.28B', 'longFmt': '11,284,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -352000000, 'fmt': '-352M', 'longFmt': '-352,000,000'}, 'dividendsPaid': {'raw': -14467000000, 'fmt': '-14.47B', 'longFmt': '-14,467,000,000'}, 'changeToInventory': {'raw': -2642000000, 'fmt': '-2.64B', 'longFmt': '-2,642,000,000'}, 'changeToAccountReceivables': {'raw': -10125000000, 'fmt': '-10.12B', 'longFmt': '-10,125,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': 976000000, 'fmt': '976M', 'longFmt': '976,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 2985000000, 'fmt': '2.98B', 'longFmt': '2,985,000,000'}, 'capitalExpenditures': {'raw': -11085000000, 'fmt': '-11.09B', 'longFmt': '-11,085,000,000'}}, {'investments': {'raw': 5453000000, 'fmt': '5.45B', 'longFmt': '5,453,000,000'}, 'changeToLiabilities': {'raw': -1981000000, 'fmt': '-1.98B', 'longFmt': '-1,981,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -4289000000, 'fmt': '-4.29B', 'longFmt': '-4,289,000,000'}, 'netBorrowings': {'raw': 2499000000, 'fmt': '2.5B', 'longFmt': '2,499,000,000'}, 'totalCashFromFinancingActivities': {'raw': -86820000000, 'fmt': '-86.82B', 'longFmt': '-86,820,000,000'}, 'changeToOperatingActivities': {'raw': 881000000, 'fmt': '881M', 'longFmt': '881,000,000'}, 'netIncome': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}, 'changeInCash': {'raw': -10435000000, 'fmt': '-10.44B', 'longFmt': '-10,435,000,000'}, 'endDate': {'raw': 1601078400, 'fmt': '2020-09-26'}, 'repurchaseOfStock': {'raw': -75992000000, 'fmt': '-75.99B', 'longFmt': '-75,992,000,000'}, 'totalCashFromOperatingActivities': {'raw': 80674000000, 'fmt': '80.67B', 'longFmt': '80,674,000,000'}, 'depreciation': {'raw': 11056000000, 'fmt': '11.06B', 'longFmt': '11,056,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -909000000, 'fmt': '-909M', 'longFmt': '-909,000,000'}, 'dividendsPaid': {'raw': -14081000000, 'fmt': '-14.08B', 'longFmt': '-14,081,000,000'}, 'changeToInventory': {'raw': -127000000, 'fmt': '-127M', 'longFmt': '-127,000,000'}, 'changeToAccountReceivables': {'raw': 6917000000, 'fmt': '6.92B', 'longFmt': '6,917,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': 754000000, 'fmt': '754M', 'longFmt': '754,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 6517000000, 'fmt': '6.52B', 'longFmt': '6,517,000,000'}, 'capitalExpenditures': {'raw': -7309000000, 'fmt': '-7.31B', 'longFmt': '-7,309,000,000'}}, {'investments': {'raw': 58093000000, 'fmt': '58.09B', 'longFmt': '58,093,000,000'}, 'changeToLiabilities': {'raw': -2548000000, 'fmt': '-2.55B', 'longFmt': '-2,548,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': 45896000000, 'fmt': '45.9B', 'longFmt': '45,896,000,000'}, 'netBorrowings': {'raw': -7819000000, 'fmt': '-7.82B', 'longFmt': '-7,819,000,000'}, 'totalCashFromFinancingActivities': {'raw': -90976000000, 'fmt': '-90.98B', 'longFmt': '-90,976,000,000'}, 'changeToOperatingActivities': {'raw': -896000000, 'fmt': '-896M', 'longFmt': '-896,000,000'}, 'issuanceOfStock': {'raw': 781000000, 'fmt': '781M', 'longFmt': '781,000,000'}, 'netIncome': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}, 'changeInCash': {'raw': 24311000000, 'fmt': '24.31B', 'longFmt': '24,311,000,000'}, 'endDate': {'raw': 1569628800, 'fmt': '2019-09-28'}, 'repurchaseOfStock': {'raw': -69714000000, 'fmt': '-69.71B', 'longFmt': '-69,714,000,000'}, 'totalCashFromOperatingActivities': {'raw': 69391000000, 'fmt': '69.39B', 'longFmt': '69,391,000,000'}, 'depreciation': {'raw': 12547000000, 'fmt': '12.55B', 'longFmt': '12,547,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -1078000000, 'fmt': '-1.08B', 'longFmt': '-1,078,000,000'}, 'dividendsPaid': {'raw': -14119000000, 'fmt': '-14.12B', 'longFmt': '-14,119,000,000'}, 'changeToInventory': {'raw': -289000000, 'fmt': '-289M', 'longFmt': '-289,000,000'}, 'changeToAccountReceivables': {'raw': 245000000, 'fmt': '245M', 'longFmt': '245,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -105000000, 'fmt': '-105M', 'longFmt': '-105,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 5076000000, 'fmt': '5.08B', 'longFmt': '5,076,000,000'}, 'capitalExpenditures': {'raw': -10495000000, 'fmt': '-10.49B', 'longFmt': '-10,495,000,000'}}], 'maxAge': 86400}, 'balanceSheetHistoryQuarterly': {'balanceSheetStatements': [{'totalLiab': {'raw': 290020000000, 'fmt': '290.02B', 'longFmt': '290,020,000,000'}, 'totalStockholderEquity': {'raw': 56727000000, 'fmt': '56.73B', 'longFmt': '56,727,000,000'}, 'otherCurrentLiab': {'raw': 67885000000, 'fmt': '67.89B', 'longFmt': '67,885,000,000'}, 'totalAssets': {'raw': 346747000000, 'fmt': '346.75B', 'longFmt': '346,747,000,000'}, 'endDate': {'raw': 1672444800, 'fmt': '2022-12-31'}, 'commonStock': {'raw': 66399000000, 'fmt': '66.4B', 'longFmt': '66,399,000,000'}, 'otherCurrentAssets': {'raw': 16422000000, 'fmt': '16.42B', 'longFmt': '16,422,000,000'}, 'retainedEarnings': {'raw': 3240000000, 'fmt': '3.24B', 'longFmt': '3,240,000,000'}, 'otherLiab': {'raw': 53107000000, 'fmt': '53.11B', 'longFmt': '53,107,000,000'}, 'treasuryStock': {'raw': -12912000000, 'fmt': '-12.91B', 'longFmt': '-12,912,000,000'}, 'otherAssets': {'raw': 60924000000, 'fmt': '60.92B', 'longFmt': '60,924,000,000'}, 'cash': {'raw': 20535000000, 'fmt': '20.54B', 'longFmt': '20,535,000,000'}, 'totalCurrentLiabilities': {'raw': 137286000000, 'fmt': '137.29B', 'longFmt': '137,286,000,000'}, 'shortLongTermDebt': {'raw': 9740000000, 'fmt': '9.74B', 'longFmt': '9,740,000,000'}, 'otherStockholderEquity': {'raw': -12912000000, 'fmt': '-12.91B', 'longFmt': '-12,912,000,000'}, 'propertyPlantEquipment': {'raw': 42951000000, 'fmt': '42.95B', 'longFmt': '42,951,000,000'}, 'totalCurrentAssets': {'raw': 128777000000, 'fmt': '128.78B', 'longFmt': '128,777,000,000'}, 'longTermInvestments': {'raw': 114095000000, 'fmt': '114.09B', 'longFmt': '114,095,000,000'}, 'netTangibleAssets': {'raw': 56727000000, 'fmt': '56.73B', 'longFmt': '56,727,000,000'}, 'shortTermInvestments': {'raw': 30820000000, 'fmt': '30.82B', 'longFmt': '30,820,000,000'}, 'netReceivables': {'raw': 54180000000, 'fmt': '54.18B', 'longFmt': '54,180,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 99627000000, 'fmt': '99.63B', 'longFmt': '99,627,000,000'}, 'inventory': {'raw': 6820000000, 'fmt': '6.82B', 'longFmt': '6,820,000,000'}, 'accountsPayable': {'raw': 57918000000, 'fmt': '57.92B', 'longFmt': '57,918,000,000'}}, {'totalLiab': {'raw': 302083000000, 'fmt': '302.08B', 'longFmt': '302,083,000,000'}, 'totalStockholderEquity': {'raw': 50672000000, 'fmt': '50.67B', 'longFmt': '50,672,000,000'}, 'otherCurrentLiab': {'raw': 67094000000, 'fmt': '67.09B', 'longFmt': '67,094,000,000'}, 'totalAssets': {'raw': 352755000000, 'fmt': '352.75B', 'longFmt': '352,755,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'commonStock': {'raw': 64849000000, 'fmt': '64.85B', 'longFmt': '64,849,000,000'}, 'otherCurrentAssets': {'raw': 21223000000, 'fmt': '21.22B', 'longFmt': '21,223,000,000'}, 'retainedEarnings': {'raw': -3068000000, 'fmt': '-3.07B', 'longFmt': '-3,068,000,000'}, 'otherLiab': {'raw': 38394000000, 'fmt': '38.39B', 'longFmt': '38,394,000,000'}, 'treasuryStock': {'raw': -11109000000, 'fmt': '-11.11B', 'longFmt': '-11,109,000,000'}, 'otherAssets': {'raw': 44011000000, 'fmt': '44.01B', 'longFmt': '44,011,000,000'}, 'cash': {'raw': 23646000000, 'fmt': '23.65B', 'longFmt': '23,646,000,000'}, 'totalCurrentLiabilities': {'raw': 153982000000, 'fmt': '153.98B', 'longFmt': '153,982,000,000'}, 'shortLongTermDebt': {'raw': 11128000000, 'fmt': '11.13B', 'longFmt': '11,128,000,000'}, 'otherStockholderEquity': {'raw': -11109000000, 'fmt': '-11.11B', 'longFmt': '-11,109,000,000'}, 'propertyPlantEquipment': {'raw': 52534000000, 'fmt': '52.53B', 'longFmt': '52,534,000,000'}, 'totalCurrentAssets': {'raw': 135405000000, 'fmt': '135.41B', 'longFmt': '135,405,000,000'}, 'longTermInvestments': {'raw': 120805000000, 'fmt': '120.81B', 'longFmt': '120,805,000,000'}, 'netTangibleAssets': {'raw': 50672000000, 'fmt': '50.67B', 'longFmt': '50,672,000,000'}, 'shortTermInvestments': {'raw': 24658000000, 'fmt': '24.66B', 'longFmt': '24,658,000,000'}, 'netReceivables': {'raw': 60932000000, 'fmt': '60.93B', 'longFmt': '60,932,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 98959000000, 'fmt': '98.96B', 'longFmt': '98,959,000,000'}, 'inventory': {'raw': 4946000000, 'fmt': '4.95B', 'longFmt': '4,946,000,000'}, 'accountsPayable': {'raw': 64115000000, 'fmt': '64.11B', 'longFmt': '64,115,000,000'}}, {'totalLiab': {'raw': 278202000000, 'fmt': '278.2B', 'longFmt': '278,202,000,000'}, 'totalStockholderEquity': {'raw': 58107000000, 'fmt': '58.11B', 'longFmt': '58,107,000,000'}, 'otherCurrentLiab': {'raw': 56539000000, 'fmt': '56.54B', 'longFmt': '56,539,000,000'}, 'totalAssets': {'raw': 336309000000, 'fmt': '336.31B', 'longFmt': '336,309,000,000'}, 'endDate': {'raw': 1656115200, 'fmt': '2022-06-25'}, 'commonStock': {'raw': 62115000000, 'fmt': '62.12B', 'longFmt': '62,115,000,000'}, 'otherCurrentAssets': {'raw': 16386000000, 'fmt': '16.39B', 'longFmt': '16,386,000,000'}, 'retainedEarnings': {'raw': 5289000000, 'fmt': '5.29B', 'longFmt': '5,289,000,000'}, 'otherLiab': {'raw': 53629000000, 'fmt': '53.63B', 'longFmt': '53,629,000,000'}, 'treasuryStock': {'raw': -9297000000, 'fmt': '-9.3B', 'longFmt': '-9,297,000,000'}, 'otherAssets': {'raw': 52605000000, 'fmt': '52.6B', 'longFmt': '52,605,000,000'}, 'cash': {'raw': 27502000000, 'fmt': '27.5B', 'longFmt': '27,502,000,000'}, 'totalCurrentLiabilities': {'raw': 129873000000, 'fmt': '129.87B', 'longFmt': '129,873,000,000'}, 'shortLongTermDebt': {'raw': 14009000000, 'fmt': '14.01B', 'longFmt': '14,009,000,000'}, 'otherStockholderEquity': {'raw': -9297000000, 'fmt': '-9.3B', 'longFmt': '-9,297,000,000'}, 'propertyPlantEquipment': {'raw': 40335000000, 'fmt': '40.34B', 'longFmt': '40,335,000,000'}, 'totalCurrentAssets': {'raw': 112292000000, 'fmt': '112.29B', 'longFmt': '112,292,000,000'}, 'longTermInvestments': {'raw': 131077000000, 'fmt': '131.08B', 'longFmt': '131,077,000,000'}, 'netTangibleAssets': {'raw': 58107000000, 'fmt': '58.11B', 'longFmt': '58,107,000,000'}, 'shortTermInvestments': {'raw': 20729000000, 'fmt': '20.73B', 'longFmt': '20,729,000,000'}, 'netReceivables': {'raw': 42242000000, 'fmt': '42.24B', 'longFmt': '42,242,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 94700000000, 'fmt': '94.7B', 'longFmt': '94,700,000,000'}, 'inventory': {'raw': 5433000000, 'fmt': '5.43B', 'longFmt': '5,433,000,000'}, 'accountsPayable': {'raw': 48343000000, 'fmt': '48.34B', 'longFmt': '48,343,000,000'}}, {'totalLiab': {'raw': 283263000000, 'fmt': '283.26B', 'longFmt': '283,263,000,000'}, 'totalStockholderEquity': {'raw': 67399000000, 'fmt': '67.4B', 'longFmt': '67,399,000,000'}, 'otherCurrentLiab': {'raw': 58168000000, 'fmt': '58.17B', 'longFmt': '58,168,000,000'}, 'totalAssets': {'raw': 350662000000, 'fmt': '350.66B', 'longFmt': '350,662,000,000'}, 'endDate': {'raw': 1648252800, 'fmt': '2022-03-26'}, 'commonStock': {'raw': 61181000000, 'fmt': '61.18B', 'longFmt': '61,181,000,000'}, 'otherCurrentAssets': {'raw': 15809000000, 'fmt': '15.81B', 'longFmt': '15,809,000,000'}, 'retainedEarnings': {'raw': 12712000000, 'fmt': '12.71B', 'longFmt': '12,712,000,000'}, 'otherLiab': {'raw': 52432000000, 'fmt': '52.43B', 'longFmt': '52,432,000,000'}, 'treasuryStock': {'raw': -6494000000, 'fmt': '-6.49B', 'longFmt': '-6,494,000,000'}, 'otherAssets': {'raw': 51959000000, 'fmt': '51.96B', 'longFmt': '51,959,000,000'}, 'cash': {'raw': 28098000000, 'fmt': '28.1B', 'longFmt': '28,098,000,000'}, 'totalCurrentLiabilities': {'raw': 127508000000, 'fmt': '127.51B', 'longFmt': '127,508,000,000'}, 'shortLongTermDebt': {'raw': 9659000000, 'fmt': '9.66B', 'longFmt': '9,659,000,000'}, 'otherStockholderEquity': {'raw': -6494000000, 'fmt': '-6.49B', 'longFmt': '-6,494,000,000'}, 'propertyPlantEquipment': {'raw': 39304000000, 'fmt': '39.3B', 'longFmt': '39,304,000,000'}, 'totalCurrentAssets': {'raw': 118180000000, 'fmt': '118.18B', 'longFmt': '118,180,000,000'}, 'longTermInvestments': {'raw': 141219000000, 'fmt': '141.22B', 'longFmt': '141,219,000,000'}, 'netTangibleAssets': {'raw': 67399000000, 'fmt': '67.4B', 'longFmt': '67,399,000,000'}, 'shortTermInvestments': {'raw': 23413000000, 'fmt': '23.41B', 'longFmt': '23,413,000,000'}, 'netReceivables': {'raw': 45400000000, 'fmt': '45.4B', 'longFmt': '45,400,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 103323000000, 'fmt': '103.32B', 'longFmt': '103,323,000,000'}, 'inventory': {'raw': 5460000000, 'fmt': '5.46B', 'longFmt': '5,460,000,000'}, 'accountsPayable': {'raw': 52682000000, 'fmt': '52.68B', 'longFmt': '52,682,000,000'}}], 'maxAge': 86400}, 'earnings': {'maxAge': 86400, 'earningsChart': {'quarterly': [{'date': '1Q2022', 'actual': {'raw': 1.52, 'fmt': '1.52'}, 'estimate': {'raw': 1.43, 'fmt': '1.43'}}, {'date': '2Q2022', 'actual': {'raw': 1.2, 'fmt': '1.20'}, 'estimate': {'raw': 1.16, 'fmt': '1.16'}}, {'date': '3Q2022', 'actual': {'raw': 1.29, 'fmt': '1.29'}, 'estimate': {'raw': 1.27, 'fmt': '1.27'}}, {'date': '4Q2022', 'actual': {'raw': 1.88, 'fmt': '1.88'}, 'estimate': {'raw': 1.94, 'fmt': '1.94'}}], 'currentQuarterEstimate': {'raw': 1.43, 'fmt': '1.43'}, 'currentQuarterEstimateDate': '1Q', 'currentQuarterEstimateYear': 2023, 'earningsDate': [{'raw': 1682506740, 'fmt': '2023-04-26'}, {'raw': 1682942400, 'fmt': '2023-05-01'}]}, 'financialsChart': {'yearly': [{'date': 2019, 'revenue': {'raw': 260174000000, 'fmt': '260.17B', 'longFmt': '260,174,000,000'}, 'earnings': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}}, {'date': 2020, 'revenue': {'raw': 274515000000, 'fmt': '274.51B', 'longFmt': '274,515,000,000'}, 'earnings': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}}, {'date': 2021, 'revenue': {'raw': 365817000000, 'fmt': '365.82B', 'longFmt': '365,817,000,000'}, 'earnings': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}}, {'date': 2022, 'revenue': {'raw': 394328000000, 'fmt': '394.33B', 'longFmt': '394,328,000,000'}, 'earnings': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}}], 'quarterly': [{'date': '1Q2022', 'revenue': {'raw': 97278000000, 'fmt': '97.28B', 'longFmt': '97,278,000,000'}, 'earnings': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}}, {'date': '2Q2022', 'revenue': {'raw': 82959000000, 'fmt': '82.96B', 'longFmt': '82,959,000,000'}, 'earnings': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}}, {'date': '3Q2022', 'revenue': {'raw': 90146000000, 'fmt': '90.15B', 'longFmt': '90,146,000,000'}, 'earnings': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}}, {'date': '4Q2022', 'revenue': {'raw': 117154000000, 'fmt': '117.15B', 'longFmt': '117,154,000,000'}, 'earnings': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}}]}, 'financialCurrency': 'USD'}, 'price': {'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 152.575, 'fmt': '152.57'}, 'averageDailyVolume3Month': {'raw': 78381785, 'fmt': '78.38M', 'longFmt': '78,381,785'}, 'exchange': 'NMS', 'regularMarketTime': 1675699798, 'volume24Hr': {}, 'regularMarketDayHigh': {'raw': 153.1, 'fmt': '153.10'}, 'shortName': 'Apple Inc.', 'averageDailyVolume10Day': {'raw': 81876490, 'fmt': '81.88M', 'longFmt': '81,876,490'}, 'longName': 'Apple Inc.', 'regularMarketChange': {'raw': -2.2700043, 'fmt': '-2.27'}, 'currencySymbol': '$', 'regularMarketPreviousClose': {'raw': 154.5, 'fmt': '154.50'}, 'preMarketPrice': {'raw': 152.5, 'fmt': '152.50'}, 'preMarketTime': 1675693799, 'exchangeDataDelayedBy': 0, 'toCurrency': None, 'postMarketChange': {}, 'postMarketPrice': {}, 'exchangeName': 'NasdaqGS', 'preMarketChange': {'raw': -2, 'fmt': '-2.00'}, 'circulatingSupply': {}, 'regularMarketDayLow': {'raw': 150.9, 'fmt': '150.90'}, 'priceHint': {'raw': 2, 'fmt': '2', 'longFmt': '2'}, 'currency': 'USD', 'regularMarketPrice': {'raw': 152.23, 'fmt': '152.23'}, 'regularMarketVolume': {'raw': 27887979, 'fmt': '27.89M', 'longFmt': '27,887,979.00'}, 'lastMarket': None, 'regularMarketSource': 'FREE_REALTIME', 'openInterest': {}, 'marketState': 'REGULAR', 'underlyingSymbol': None, 'marketCap': {'raw': 2408567799808, 'fmt': '2.41T', 'longFmt': '2,408,567,799,808.00'}, 'quoteType': 'EQUITY', 'preMarketChangePercent': {'raw': -0.012945, 'fmt': '-1.29%'}, 'volumeAllCurrencies': {}, 'strikePrice': {}, 'symbol': 'AAPL', 'preMarketSource': 'FREE_REALTIME', 'maxAge': 1, 'fromCurrency': None, 'regularMarketChangePercent': {'raw': -0.014692584, 'fmt': '-1.47%'}}, 'incomeStatementHistoryQuarterly': {'incomeStatementHistory': [{'researchDevelopment': {'raw': 7709000000, 'fmt': '7.71B', 'longFmt': '7,709,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 35623000000, 'fmt': '35.62B', 'longFmt': '35,623,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}, 'sellingGeneralAdministrative': {'raw': 6607000000, 'fmt': '6.61B', 'longFmt': '6,607,000,000'}, 'grossProfit': {'raw': 50332000000, 'fmt': '50.33B', 'longFmt': '50,332,000,000'}, 'ebit': {'raw': 36016000000, 'fmt': '36.02B', 'longFmt': '36,016,000,000'}, 'endDate': {'raw': 1672444800, 'fmt': '2022-12-31'}, 'operatingIncome': {'raw': 36016000000, 'fmt': '36.02B', 'longFmt': '36,016,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -1003000000, 'fmt': '-1B', 'longFmt': '-1,003,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 5625000000, 'fmt': '5.62B', 'longFmt': '5,625,000,000'}, 'totalRevenue': {'raw': 117154000000, 'fmt': '117.15B', 'longFmt': '117,154,000,000'}, 'totalOperatingExpenses': {'raw': 81138000000, 'fmt': '81.14B', 'longFmt': '81,138,000,000'}, 'costOfRevenue': {'raw': 66822000000, 'fmt': '66.82B', 'longFmt': '66,822,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': -393000000, 'fmt': '-393M', 'longFmt': '-393,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}}, {'researchDevelopment': {'raw': 6761000000, 'fmt': '6.76B', 'longFmt': '6,761,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 24657000000, 'fmt': '24.66B', 'longFmt': '24,657,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}, 'sellingGeneralAdministrative': {'raw': 6440000000, 'fmt': '6.44B', 'longFmt': '6,440,000,000'}, 'grossProfit': {'raw': 38095000000, 'fmt': '38.09B', 'longFmt': '38,095,000,000'}, 'ebit': {'raw': 24894000000, 'fmt': '24.89B', 'longFmt': '24,894,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'operatingIncome': {'raw': 24894000000, 'fmt': '24.89B', 'longFmt': '24,894,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -827000000, 'fmt': '-827M', 'longFmt': '-827,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 3936000000, 'fmt': '3.94B', 'longFmt': '3,936,000,000'}, 'totalRevenue': {'raw': 90146000000, 'fmt': '90.15B', 'longFmt': '90,146,000,000'}, 'totalOperatingExpenses': {'raw': 65252000000, 'fmt': '65.25B', 'longFmt': '65,252,000,000'}, 'costOfRevenue': {'raw': 52051000000, 'fmt': '52.05B', 'longFmt': '52,051,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': -237000000, 'fmt': '-237M', 'longFmt': '-237,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}}, {'researchDevelopment': {'raw': 6797000000, 'fmt': '6.8B', 'longFmt': '6,797,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 23066000000, 'fmt': '23.07B', 'longFmt': '23,066,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}, 'sellingGeneralAdministrative': {'raw': 6012000000, 'fmt': '6.01B', 'longFmt': '6,012,000,000'}, 'grossProfit': {'raw': 35885000000, 'fmt': '35.88B', 'longFmt': '35,885,000,000'}, 'ebit': {'raw': 23076000000, 'fmt': '23.08B', 'longFmt': '23,076,000,000'}, 'endDate': {'raw': 1656115200, 'fmt': '2022-06-25'}, 'operatingIncome': {'raw': 23076000000, 'fmt': '23.08B', 'longFmt': '23,076,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -719000000, 'fmt': '-719M', 'longFmt': '-719,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 3624000000, 'fmt': '3.62B', 'longFmt': '3,624,000,000'}, 'totalRevenue': {'raw': 82959000000, 'fmt': '82.96B', 'longFmt': '82,959,000,000'}, 'totalOperatingExpenses': {'raw': 59883000000, 'fmt': '59.88B', 'longFmt': '59,883,000,000'}, 'costOfRevenue': {'raw': 47074000000, 'fmt': '47.07B', 'longFmt': '47,074,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': -10000000, 'fmt': '-10M', 'longFmt': '-10,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}}, {'researchDevelopment': {'raw': 6387000000, 'fmt': '6.39B', 'longFmt': '6,387,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 30139000000, 'fmt': '30.14B', 'longFmt': '30,139,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}, 'sellingGeneralAdministrative': {'raw': 6193000000, 'fmt': '6.19B', 'longFmt': '6,193,000,000'}, 'grossProfit': {'raw': 42559000000, 'fmt': '42.56B', 'longFmt': '42,559,000,000'}, 'ebit': {'raw': 29979000000, 'fmt': '29.98B', 'longFmt': '29,979,000,000'}, 'endDate': {'raw': 1648252800, 'fmt': '2022-03-26'}, 'operatingIncome': {'raw': 29979000000, 'fmt': '29.98B', 'longFmt': '29,979,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -691000000, 'fmt': '-691M', 'longFmt': '-691,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 5129000000, 'fmt': '5.13B', 'longFmt': '5,129,000,000'}, 'totalRevenue': {'raw': 97278000000, 'fmt': '97.28B', 'longFmt': '97,278,000,000'}, 'totalOperatingExpenses': {'raw': 67299000000, 'fmt': '67.3B', 'longFmt': '67,299,000,000'}, 'costOfRevenue': {'raw': 54719000000, 'fmt': '54.72B', 'longFmt': '54,719,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': 160000000, 'fmt': '160M', 'longFmt': '160,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}}], 'maxAge': 86400}, 'incomeStatementHistory': {'incomeStatementHistory': [{'researchDevelopment': {'raw': 26251000000, 'fmt': '26.25B', 'longFmt': '26,251,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 119103000000, 'fmt': '119.1B', 'longFmt': '119,103,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}, 'sellingGeneralAdministrative': {'raw': 25094000000, 'fmt': '25.09B', 'longFmt': '25,094,000,000'}, 'grossProfit': {'raw': 170782000000, 'fmt': '170.78B', 'longFmt': '170,782,000,000'}, 'ebit': {'raw': 119437000000, 'fmt': '119.44B', 'longFmt': '119,437,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'operatingIncome': {'raw': 119437000000, 'fmt': '119.44B', 'longFmt': '119,437,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -2931000000, 'fmt': '-2.93B', 'longFmt': '-2,931,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 19300000000, 'fmt': '19.3B', 'longFmt': '19,300,000,000'}, 'totalRevenue': {'raw': 394328000000, 'fmt': '394.33B', 'longFmt': '394,328,000,000'}, 'totalOperatingExpenses': {'raw': 274891000000, 'fmt': '274.89B', 'longFmt': '274,891,000,000'}, 'costOfRevenue': {'raw': 223546000000, 'fmt': '223.55B', 'longFmt': '223,546,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': -334000000, 'fmt': '-334M', 'longFmt': '-334,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}}, {'researchDevelopment': {'raw': 21914000000, 'fmt': '21.91B', 'longFmt': '21,914,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 109207000000, 'fmt': '109.21B', 'longFmt': '109,207,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}, 'sellingGeneralAdministrative': {'raw': 21973000000, 'fmt': '21.97B', 'longFmt': '21,973,000,000'}, 'grossProfit': {'raw': 152836000000, 'fmt': '152.84B', 'longFmt': '152,836,000,000'}, 'ebit': {'raw': 108949000000, 'fmt': '108.95B', 'longFmt': '108,949,000,000'}, 'endDate': {'raw': 1632528000, 'fmt': '2021-09-25'}, 'operatingIncome': {'raw': 108949000000, 'fmt': '108.95B', 'longFmt': '108,949,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -2645000000, 'fmt': '-2.65B', 'longFmt': '-2,645,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 14527000000, 'fmt': '14.53B', 'longFmt': '14,527,000,000'}, 'totalRevenue': {'raw': 365817000000, 'fmt': '365.82B', 'longFmt': '365,817,000,000'}, 'totalOperatingExpenses': {'raw': 256868000000, 'fmt': '256.87B', 'longFmt': '256,868,000,000'}, 'costOfRevenue': {'raw': 212981000000, 'fmt': '212.98B', 'longFmt': '212,981,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': 258000000, 'fmt': '258M', 'longFmt': '258,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}}, {'researchDevelopment': {'raw': 18752000000, 'fmt': '18.75B', 'longFmt': '18,752,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 67091000000, 'fmt': '67.09B', 'longFmt': '67,091,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}, 'sellingGeneralAdministrative': {'raw': 19916000000, 'fmt': '19.92B', 'longFmt': '19,916,000,000'}, 'grossProfit': {'raw': 104956000000, 'fmt': '104.96B', 'longFmt': '104,956,000,000'}, 'ebit': {'raw': 66288000000, 'fmt': '66.29B', 'longFmt': '66,288,000,000'}, 'endDate': {'raw': 1601078400, 'fmt': '2020-09-26'}, 'operatingIncome': {'raw': 66288000000, 'fmt': '66.29B', 'longFmt': '66,288,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -2873000000, 'fmt': '-2.87B', 'longFmt': '-2,873,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 9680000000, 'fmt': '9.68B', 'longFmt': '9,680,000,000'}, 'totalRevenue': {'raw': 274515000000, 'fmt': '274.51B', 'longFmt': '274,515,000,000'}, 'totalOperatingExpenses': {'raw': 208227000000, 'fmt': '208.23B', 'longFmt': '208,227,000,000'}, 'costOfRevenue': {'raw': 169559000000, 'fmt': '169.56B', 'longFmt': '169,559,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': 803000000, 'fmt': '803M', 'longFmt': '803,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}}, {'researchDevelopment': {'raw': 16217000000, 'fmt': '16.22B', 'longFmt': '16,217,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 65737000000, 'fmt': '65.74B', 'longFmt': '65,737,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}, 'sellingGeneralAdministrative': {'raw': 18245000000, 'fmt': '18.25B', 'longFmt': '18,245,000,000'}, 'grossProfit': {'raw': 98392000000, 'fmt': '98.39B', 'longFmt': '98,392,000,000'}, 'ebit': {'raw': 63930000000, 'fmt': '63.93B', 'longFmt': '63,930,000,000'}, 'endDate': {'raw': 1569628800, 'fmt': '2019-09-28'}, 'operatingIncome': {'raw': 63930000000, 'fmt': '63.93B', 'longFmt': '63,930,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -3576000000, 'fmt': '-3.58B', 'longFmt': '-3,576,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 10481000000, 'fmt': '10.48B', 'longFmt': '10,481,000,000'}, 'totalRevenue': {'raw': 260174000000, 'fmt': '260.17B', 'longFmt': '260,174,000,000'}, 'totalOperatingExpenses': {'raw': 196244000000, 'fmt': '196.24B', 'longFmt': '196,244,000,000'}, 'costOfRevenue': {'raw': 161782000000, 'fmt': '161.78B', 'longFmt': '161,782,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': 1807000000, 'fmt': '1.81B', 'longFmt': '1,807,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}}], 'maxAge': 86400}, 'balanceSheetHistory': {'balanceSheetStatements': [{'totalLiab': {'raw': 302083000000, 'fmt': '302.08B', 'longFmt': '302,083,000,000'}, 'totalStockholderEquity': {'raw': 50672000000, 'fmt': '50.67B', 'longFmt': '50,672,000,000'}, 'otherCurrentLiab': {'raw': 67094000000, 'fmt': '67.09B', 'longFmt': '67,094,000,000'}, 'totalAssets': {'raw': 352755000000, 'fmt': '352.75B', 'longFmt': '352,755,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'commonStock': {'raw': 64849000000, 'fmt': '64.85B', 'longFmt': '64,849,000,000'}, 'otherCurrentAssets': {'raw': 21223000000, 'fmt': '21.22B', 'longFmt': '21,223,000,000'}, 'retainedEarnings': {'raw': -3068000000, 'fmt': '-3.07B', 'longFmt': '-3,068,000,000'}, 'otherLiab': {'raw': 38394000000, 'fmt': '38.39B', 'longFmt': '38,394,000,000'}, 'treasuryStock': {'raw': -11109000000, 'fmt': '-11.11B', 'longFmt': '-11,109,000,000'}, 'otherAssets': {'raw': 44011000000, 'fmt': '44.01B', 'longFmt': '44,011,000,000'}, 'cash': {'raw': 23646000000, 'fmt': '23.65B', 'longFmt': '23,646,000,000'}, 'totalCurrentLiabilities': {'raw': 153982000000, 'fmt': '153.98B', 'longFmt': '153,982,000,000'}, 'shortLongTermDebt': {'raw': 11128000000, 'fmt': '11.13B', 'longFmt': '11,128,000,000'}, 'otherStockholderEquity': {'raw': -11109000000, 'fmt': '-11.11B', 'longFmt': '-11,109,000,000'}, 'propertyPlantEquipment': {'raw': 52534000000, 'fmt': '52.53B', 'longFmt': '52,534,000,000'}, 'totalCurrentAssets': {'raw': 135405000000, 'fmt': '135.41B', 'longFmt': '135,405,000,000'}, 'longTermInvestments': {'raw': 120805000000, 'fmt': '120.81B', 'longFmt': '120,805,000,000'}, 'netTangibleAssets': {'raw': 50672000000, 'fmt': '50.67B', 'longFmt': '50,672,000,000'}, 'shortTermInvestments': {'raw': 24658000000, 'fmt': '24.66B', 'longFmt': '24,658,000,000'}, 'netReceivables': {'raw': 60932000000, 'fmt': '60.93B', 'longFmt': '60,932,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 98959000000, 'fmt': '98.96B', 'longFmt': '98,959,000,000'}, 'inventory': {'raw': 4946000000, 'fmt': '4.95B', 'longFmt': '4,946,000,000'}, 'accountsPayable': {'raw': 64115000000, 'fmt': '64.11B', 'longFmt': '64,115,000,000'}}, {'totalLiab': {'raw': 287912000000, 'fmt': '287.91B', 'longFmt': '287,912,000,000'}, 'totalStockholderEquity': {'raw': 63090000000, 'fmt': '63.09B', 'longFmt': '63,090,000,000'}, 'otherCurrentLiab': {'raw': 53577000000, 'fmt': '53.58B', 'longFmt': '53,577,000,000'}, 'totalAssets': {'raw': 351002000000, 'fmt': '351B', 'longFmt': '351,002,000,000'}, 'endDate': {'raw': 1632528000, 'fmt': '2021-09-25'}, 'commonStock': {'raw': 57365000000, 'fmt': '57.37B', 'longFmt': '57,365,000,000'}, 'otherCurrentAssets': {'raw': 14111000000, 'fmt': '14.11B', 'longFmt': '14,111,000,000'}, 'retainedEarnings': {'raw': 5562000000, 'fmt': '5.56B', 'longFmt': '5,562,000,000'}, 'otherLiab': {'raw': 43050000000, 'fmt': '43.05B', 'longFmt': '43,050,000,000'}, 'treasuryStock': {'raw': 163000000, 'fmt': '163M', 'longFmt': '163,000,000'}, 'otherAssets': {'raw': 38762000000, 'fmt': '38.76B', 'longFmt': '38,762,000,000'}, 'cash': {'raw': 34940000000, 'fmt': '34.94B', 'longFmt': '34,940,000,000'}, 'totalCurrentLiabilities': {'raw': 125481000000, 'fmt': '125.48B', 'longFmt': '125,481,000,000'}, 'shortLongTermDebt': {'raw': 9613000000, 'fmt': '9.61B', 'longFmt': '9,613,000,000'}, 'otherStockholderEquity': {'raw': 163000000, 'fmt': '163M', 'longFmt': '163,000,000'}, 'propertyPlantEquipment': {'raw': 49527000000, 'fmt': '49.53B', 'longFmt': '49,527,000,000'}, 'totalCurrentAssets': {'raw': 134836000000, 'fmt': '134.84B', 'longFmt': '134,836,000,000'}, 'longTermInvestments': {'raw': 127877000000, 'fmt': '127.88B', 'longFmt': '127,877,000,000'}, 'netTangibleAssets': {'raw': 63090000000, 'fmt': '63.09B', 'longFmt': '63,090,000,000'}, 'shortTermInvestments': {'raw': 27699000000, 'fmt': '27.7B', 'longFmt': '27,699,000,000'}, 'netReceivables': {'raw': 51506000000, 'fmt': '51.51B', 'longFmt': '51,506,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 109106000000, 'fmt': '109.11B', 'longFmt': '109,106,000,000'}, 'inventory': {'raw': 6580000000, 'fmt': '6.58B', 'longFmt': '6,580,000,000'}, 'accountsPayable': {'raw': 54763000000, 'fmt': '54.76B', 'longFmt': '54,763,000,000'}}, {'totalLiab': {'raw': 258549000000, 'fmt': '258.55B', 'longFmt': '258,549,000,000'}, 'totalStockholderEquity': {'raw': 65339000000, 'fmt': '65.34B', 'longFmt': '65,339,000,000'}, 'otherCurrentLiab': {'raw': 47867000000, 'fmt': '47.87B', 'longFmt': '47,867,000,000'}, 'totalAssets': {'raw': 323888000000, 'fmt': '323.89B', 'longFmt': '323,888,000,000'}, 'endDate': {'raw': 1601078400, 'fmt': '2020-09-26'}, 'commonStock': {'raw': 50779000000, 'fmt': '50.78B', 'longFmt': '50,779,000,000'}, 'otherCurrentAssets': {'raw': 11264000000, 'fmt': '11.26B', 'longFmt': '11,264,000,000'}, 'retainedEarnings': {'raw': 14966000000, 'fmt': '14.97B', 'longFmt': '14,966,000,000'}, 'otherLiab': {'raw': 46108000000, 'fmt': '46.11B', 'longFmt': '46,108,000,000'}, 'treasuryStock': {'raw': -406000000, 'fmt': '-406M', 'longFmt': '-406,000,000'}, 'otherAssets': {'raw': 33952000000, 'fmt': '33.95B', 'longFmt': '33,952,000,000'}, 'cash': {'raw': 38016000000, 'fmt': '38.02B', 'longFmt': '38,016,000,000'}, 'totalCurrentLiabilities': {'raw': 105392000000, 'fmt': '105.39B', 'longFmt': '105,392,000,000'}, 'shortLongTermDebt': {'raw': 8773000000, 'fmt': '8.77B', 'longFmt': '8,773,000,000'}, 'otherStockholderEquity': {'raw': -406000000, 'fmt': '-406M', 'longFmt': '-406,000,000'}, 'propertyPlantEquipment': {'raw': 45336000000, 'fmt': '45.34B', 'longFmt': '45,336,000,000'}, 'totalCurrentAssets': {'raw': 143713000000, 'fmt': '143.71B', 'longFmt': '143,713,000,000'}, 'longTermInvestments': {'raw': 100887000000, 'fmt': '100.89B', 'longFmt': '100,887,000,000'}, 'netTangibleAssets': {'raw': 65339000000, 'fmt': '65.34B', 'longFmt': '65,339,000,000'}, 'shortTermInvestments': {'raw': 52927000000, 'fmt': '52.93B', 'longFmt': '52,927,000,000'}, 'netReceivables': {'raw': 37445000000, 'fmt': '37.45B', 'longFmt': '37,445,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 98667000000, 'fmt': '98.67B', 'longFmt': '98,667,000,000'}, 'inventory': {'raw': 4061000000, 'fmt': '4.06B', 'longFmt': '4,061,000,000'}, 'accountsPayable': {'raw': 42296000000, 'fmt': '42.3B', 'longFmt': '42,296,000,000'}}, {'totalLiab': {'raw': 248028000000, 'fmt': '248.03B', 'longFmt': '248,028,000,000'}, 'totalStockholderEquity': {'raw': 90488000000, 'fmt': '90.49B', 'longFmt': '90,488,000,000'}, 'otherCurrentLiab': {'raw': 43242000000, 'fmt': '43.24B', 'longFmt': '43,242,000,000'}, 'totalAssets': {'raw': 338516000000, 'fmt': '338.52B', 'longFmt': '338,516,000,000'}, 'endDate': {'raw': 1569628800, 'fmt': '2019-09-28'}, 'commonStock': {'raw': 45174000000, 'fmt': '45.17B', 'longFmt': '45,174,000,000'}, 'otherCurrentAssets': {'raw': 12352000000, 'fmt': '12.35B', 'longFmt': '12,352,000,000'}, 'retainedEarnings': {'raw': 45898000000, 'fmt': '45.9B', 'longFmt': '45,898,000,000'}, 'otherLiab': {'raw': 50503000000, 'fmt': '50.5B', 'longFmt': '50,503,000,000'}, 'treasuryStock': {'raw': -584000000, 'fmt': '-584M', 'longFmt': '-584,000,000'}, 'otherAssets': {'raw': 32978000000, 'fmt': '32.98B', 'longFmt': '32,978,000,000'}, 'cash': {'raw': 48844000000, 'fmt': '48.84B', 'longFmt': '48,844,000,000'}, 'totalCurrentLiabilities': {'raw': 105718000000, 'fmt': '105.72B', 'longFmt': '105,718,000,000'}, 'shortLongTermDebt': {'raw': 10260000000, 'fmt': '10.26B', 'longFmt': '10,260,000,000'}, 'otherStockholderEquity': {'raw': -584000000, 'fmt': '-584M', 'longFmt': '-584,000,000'}, 'propertyPlantEquipment': {'raw': 37378000000, 'fmt': '37.38B', 'longFmt': '37,378,000,000'}, 'totalCurrentAssets': {'raw': 162819000000, 'fmt': '162.82B', 'longFmt': '162,819,000,000'}, 'longTermInvestments': {'raw': 105341000000, 'fmt': '105.34B', 'longFmt': '105,341,000,000'}, 'netTangibleAssets': {'raw': 90488000000, 'fmt': '90.49B', 'longFmt': '90,488,000,000'}, 'shortTermInvestments': {'raw': 51713000000, 'fmt': '51.71B', 'longFmt': '51,713,000,000'}, 'netReceivables': {'raw': 45804000000, 'fmt': '45.8B', 'longFmt': '45,804,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 91807000000, 'fmt': '91.81B', 'longFmt': '91,807,000,000'}, 'inventory': {'raw': 4106000000, 'fmt': '4.11B', 'longFmt': '4,106,000,000'}, 'accountsPayable': {'raw': 46236000000, 'fmt': '46.24B', 'longFmt': '46,236,000,000'}}], 'maxAge': 86400}, 'cashflowStatementHistoryQuarterly': {'cashflowStatements': [{'investments': {'raw': 2483000000, 'fmt': '2.48B', 'longFmt': '2,483,000,000'}, 'changeToLiabilities': {'raw': -5944000000, 'fmt': '-5.94B', 'longFmt': '-5,944,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -1445000000, 'fmt': '-1.45B', 'longFmt': '-1,445,000,000'}, 'netBorrowings': {'raw': -9615000000, 'fmt': '-9.62B', 'longFmt': '-9,615,000,000'}, 'totalCashFromFinancingActivities': {'raw': -35563000000, 'fmt': '-35.56B', 'longFmt': '-35,563,000,000'}, 'changeToOperatingActivities': {'raw': 1979000000, 'fmt': '1.98B', 'longFmt': '1,979,000,000'}, 'netIncome': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}, 'changeInCash': {'raw': -3003000000, 'fmt': '-3B', 'longFmt': '-3,003,000,000'}, 'endDate': {'raw': 1672444800, 'fmt': '2022-12-31'}, 'repurchaseOfStock': {'raw': -21791000000, 'fmt': '-21.79B', 'longFmt': '-21,791,000,000'}, 'totalCashFromOperatingActivities': {'raw': 34005000000, 'fmt': '34.01B', 'longFmt': '34,005,000,000'}, 'depreciation': {'raw': 2916000000, 'fmt': '2.92B', 'longFmt': '2,916,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -141000000, 'fmt': '-141M', 'longFmt': '-141,000,000'}, 'dividendsPaid': {'raw': -3768000000, 'fmt': '-3.77B', 'longFmt': '-3,768,000,000'}, 'changeToInventory': {'raw': -1807000000, 'fmt': '-1.81B', 'longFmt': '-1,807,000,000'}, 'changeToAccountReceivables': {'raw': 4275000000, 'fmt': '4.28B', 'longFmt': '4,275,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -389000000, 'fmt': '-389M', 'longFmt': '-389,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 2588000000, 'fmt': '2.59B', 'longFmt': '2,588,000,000'}, 'capitalExpenditures': {'raw': -3787000000, 'fmt': '-3.79B', 'longFmt': '-3,787,000,000'}}, {'investments': {'raw': 2806000000, 'fmt': '2.81B', 'longFmt': '2,806,000,000'}, 'changeToLiabilities': {'raw': 15774000000, 'fmt': '15.77B', 'longFmt': '15,774,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -1217000000, 'fmt': '-1.22B', 'longFmt': '-1,217,000,000'}, 'netBorrowings': {'raw': 1657000000, 'fmt': '1.66B', 'longFmt': '1,657,000,000'}, 'totalCashFromFinancingActivities': {'raw': -26794000000, 'fmt': '-26.79B', 'longFmt': '-26,794,000,000'}, 'changeToOperatingActivities': {'raw': -9873000000, 'fmt': '-9.87B', 'longFmt': '-9,873,000,000'}, 'netIncome': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}, 'changeInCash': {'raw': -3884000000, 'fmt': '-3.88B', 'longFmt': '-3,884,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'repurchaseOfStock': {'raw': -24736000000, 'fmt': '-24.74B', 'longFmt': '-24,736,000,000'}, 'totalCashFromOperatingActivities': {'raw': 24127000000, 'fmt': '24.13B', 'longFmt': '24,127,000,000'}, 'depreciation': {'raw': 2865000000, 'fmt': '2.87B', 'longFmt': '2,865,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -597000000, 'fmt': '-597M', 'longFmt': '-597,000,000'}, 'dividendsPaid': {'raw': -3703000000, 'fmt': '-3.7B', 'longFmt': '-3,703,000,000'}, 'changeToInventory': {'raw': 435000000, 'fmt': '435M', 'longFmt': '435,000,000'}, 'changeToAccountReceivables': {'raw': -6384000000, 'fmt': '-6.38B', 'longFmt': '-6,384,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -12000000, 'fmt': '-12M', 'longFmt': '-12,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 589000000, 'fmt': '589M', 'longFmt': '589,000,000'}, 'capitalExpenditures': {'raw': -3289000000, 'fmt': '-3.29B', 'longFmt': '-3,289,000,000'}}, {'investments': {'raw': 6953000000, 'fmt': '6.95B', 'longFmt': '6,953,000,000'}, 'changeToLiabilities': {'raw': -4725000000, 'fmt': '-4.72B', 'longFmt': '-4,725,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': 4234000000, 'fmt': '4.23B', 'longFmt': '4,234,000,000'}, 'netBorrowings': {'raw': 971000000, 'fmt': '971M', 'longFmt': '971,000,000'}, 'totalCashFromFinancingActivities': {'raw': -27445000000, 'fmt': '-27.45B', 'longFmt': '-27,445,000,000'}, 'changeToOperatingActivities': {'raw': 2497000000, 'fmt': '2.5B', 'longFmt': '2,497,000,000'}, 'netIncome': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}, 'changeInCash': {'raw': -319000000, 'fmt': '-319M', 'longFmt': '-319,000,000'}, 'endDate': {'raw': 1656115200, 'fmt': '2022-06-25'}, 'repurchaseOfStock': {'raw': -24562000000, 'fmt': '-24.56B', 'longFmt': '-24,562,000,000'}, 'totalCashFromOperatingActivities': {'raw': 22892000000, 'fmt': '22.89B', 'longFmt': '22,892,000,000'}, 'depreciation': {'raw': 2805000000, 'fmt': '2.81B', 'longFmt': '2,805,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -615000000, 'fmt': '-615M', 'longFmt': '-615,000,000'}, 'dividendsPaid': {'raw': -3811000000, 'fmt': '-3.81B', 'longFmt': '-3,811,000,000'}, 'changeToInventory': {'raw': -16000000, 'fmt': '-16M', 'longFmt': '-16,000,000'}, 'changeToAccountReceivables': {'raw': -981000000, 'fmt': '-981M', 'longFmt': '-981,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -43000000, 'fmt': '-43M', 'longFmt': '-43,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 3870000000, 'fmt': '3.87B', 'longFmt': '3,870,000,000'}, 'capitalExpenditures': {'raw': -2102000000, 'fmt': '-2.1B', 'longFmt': '-2,102,000,000'}}, {'investments': {'raw': -6390000000, 'fmt': '-6.39B', 'longFmt': '-6,390,000,000'}, 'changeToLiabilities': {'raw': -21398000000, 'fmt': '-21.4B', 'longFmt': '-21,398,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -9265000000, 'fmt': '-9.27B', 'longFmt': '-9,265,000,000'}, 'netBorrowings': {'raw': -1751000000, 'fmt': '-1.75B', 'longFmt': '-1,751,000,000'}, 'totalCashFromFinancingActivities': {'raw': -28351000000, 'fmt': '-28.35B', 'longFmt': '-28,351,000,000'}, 'changeToOperatingActivities': {'raw': 9486000000, 'fmt': '9.49B', 'longFmt': '9,486,000,000'}, 'netIncome': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}, 'changeInCash': {'raw': -9450000000, 'fmt': '-9.45B', 'longFmt': '-9,450,000,000'}, 'endDate': {'raw': 1648252800, 'fmt': '2022-03-26'}, 'repurchaseOfStock': {'raw': -22961000000, 'fmt': '-22.96B', 'longFmt': '-22,961,000,000'}, 'totalCashFromOperatingActivities': {'raw': 28166000000, 'fmt': '28.17B', 'longFmt': '28,166,000,000'}, 'depreciation': {'raw': 2737000000, 'fmt': '2.74B', 'longFmt': '2,737,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -194000000, 'fmt': '-194M', 'longFmt': '-194,000,000'}, 'dividendsPaid': {'raw': -3595000000, 'fmt': '-3.6B', 'longFmt': '-3,595,000,000'}, 'changeToInventory': {'raw': 384000000, 'fmt': '384M', 'longFmt': '384,000,000'}, 'changeToAccountReceivables': {'raw': 9476000000, 'fmt': '9.48B', 'longFmt': '9,476,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -44000000, 'fmt': '-44M', 'longFmt': '-44,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 2471000000, 'fmt': '2.47B', 'longFmt': '2,471,000,000'}, 'capitalExpenditures': {'raw': -2514000000, 'fmt': '-2.51B', 'longFmt': '-2,514,000,000'}}], 'maxAge': 86400}, 'quoteType': {'exchange': 'NMS', 'shortName': 'Apple Inc.', 'longName': 'Apple Inc.', 'exchangeTimezoneName': 'America/New_York', 'exchangeTimezoneShortName': 'EST', 'isEsgPopulated': False, 'gmtOffSetMilliseconds': '-18000000', 'quoteType': 'EQUITY', 'symbol': 'AAPL', 'messageBoardId': 'finmb_24937', 'market': 'us_market'}, 'summaryDetail': {'previousClose': {'raw': 154.5, 'fmt': '154.50'}, 'regularMarketOpen': {'raw': 152.575, 'fmt': '152.57'}, 'twoHundredDayAverage': {'raw': 147.80174, 'fmt': '147.80'}, 'trailingAnnualDividendYield': {'raw': 0.005889968, 'fmt': '0.59%'}, 'payoutRatio': {'raw': 0.1545, 'fmt': '15.45%'}, 'volume24Hr': {}, 'regularMarketDayHigh': {'raw': 153.1, 'fmt': '153.10'}, 'navPrice': {}, 'averageDailyVolume10Day': {'raw': 81876490, 'fmt': '81.88M', 'longFmt': '81,876,490'}, 'totalAssets': {}, 'regularMarketPreviousClose': {'raw': 154.5, 'fmt': '154.50'}, 'fiftyDayAverage': {'raw': 138.8904, 'fmt': '138.89'}, 'trailingAnnualDividendRate': {'raw': 0.91, 'fmt': '0.91'}, 'open': {'raw': 152.575, 'fmt': '152.57'}, 'toCurrency': None, 'averageVolume10days': {'raw': 81876490, 'fmt': '81.88M', 'longFmt': '81,876,490'}, 'expireDate': {}, 'yield': {}, 'algorithm': None, 'dividendRate': {'raw': 0.92, 'fmt': '0.92'}, 'exDividendDate': {'raw': 1675987200, 'fmt': '2023-02-10'}, 'beta': {'raw': 1.277894, 'fmt': '1.28'}, 'circulatingSupply': {}, 'startDate': {}, 'regularMarketDayLow': {'raw': 150.9, 'fmt': '150.90'}, 'priceHint': {'raw': 2, 'fmt': '2', 'longFmt': '2'}, 'currency': 'USD', 'trailingPE': {'raw': 25.8455, 'fmt': '25.85'}, 'regularMarketVolume': {'raw': 27887979, 'fmt': '27.89M', 'longFmt': '27,887,979'}, 'lastMarket': None, 'maxSupply': {}, 'openInterest': {}, 'marketCap': {'raw': 2408567799808, 'fmt': '2.41T', 'longFmt': '2,408,567,799,808'}, 'volumeAllCurrencies': {}, 'strikePrice': {}, 'averageVolume': {'raw': 78381785, 'fmt': '78.38M', 'longFmt': '78,381,785'}, 'priceToSalesTrailing12Months': {'raw': 6.215065, 'fmt': '6.22'}, 'dayLow': {'raw': 150.9, 'fmt': '150.90'}, 'ask': {'raw': 152.31, 'fmt': '152.31'}, 'ytdReturn': {}, 'askSize': {'raw': 2200, 'fmt': '2.2k', 'longFmt': '2,200'}, 'volume': {'raw': 27887979, 'fmt': '27.89M', 'longFmt': '27,887,979'}, 'fiftyTwoWeekHigh': {'raw': 179.61, 'fmt': '179.61'}, 'forwardPE': {'raw': 23.030256, 'fmt': '23.03'}, 'maxAge': 1, 'fromCurrency': None, 'fiveYearAvgDividendYield': {'raw': 0.96, 'fmt': '0.96'}, 'fiftyTwoWeekLow': {'raw': 124.17, 'fmt': '124.17'}, 'bid': {'raw': 152.34, 'fmt': '152.34'}, 'tradeable': False, 'dividendYield': {'raw': 0.006, 'fmt': '0.60%'}, 'bidSize': {'raw': 3000, 'fmt': '3k', 'longFmt': '3,000'}, 'dayHigh': {'raw': 153.1, 'fmt': '153.10'}, 'coinMarketCapLink': None}, 'symbol': 'AAPL', 'pageViews': {'shortTermTrend': 'UP', 'midTermTrend': 'UP', 'longTermTrend': 'UP', 'maxAge': 1}}, 'FinanceConfigStore': {'app': {'base': {'feedback': {'enabled': False}, 'marketdata': {'lists': {'most_active': {'name': 'MOST_ACTIVE_TITLE', 'uri': '/most-active', 'count': 5, 'listCount': 30, 'predefinedScrId': 'most_actives'}, 'options_highest_open_interest': {'name': 'OPTIONS_HIGHEST_OPEN_INTEREST_TITLE', 'uri': '/options/highest-open-interest', 'predefinedScrId': '65f51cea-8dc8-4e56-9f99-6ef7720eb69c'}, 'gainers': {'name': 'GAINERS_TITLE', 'uri': '/gainers', 'count': 5, 'listCount': 30, 'predefinedScrId': 'day_gainers'}, 'commodities': {'name': 'FUTURES', 'uri': '/commodities', 'count': 5, 'listCount': 30}, 'currencies': {'name': 'CURRENCIES_TITLE', 'uri': '/currencies', 'count': 5, 'listCount': 30}, 'trending_tickers': {'name': 'TRENDING_TICKERS_TITLE', 'uri': '/trending-tickers', 'count': 5, 'listCount': 30}, 'bonds': {'name': 'BONDS_TITLE', 'uri': '/bonds', 'count': 5, 'listCount': 30}, 'cryptocurrencies': {'name': 'CRYPTO_CURRENCIES', 'uri': '/crypto', 'count': 5, 'predefinedScrId': 'all_cryptocurrencies_us'}, 'losers': {'name': 'LOSERS_TITLE', 'uri': '/losers', 'count': 5, 'listCount': 30, 'predefinedScrId': 'day_losers'}, 'options_highest_implied_volatility': {'name': 'OPTIONS_HIGHEST_IMPLIED_VOLATALITY_TITLE', 'uri': '/options/highest-implied-volatility', 'predefinedScrId': '671c40b0-5ea8-4063-89b9-9db45bf9edf0'}, 'mutualfunds': {'name': 'MUTUALFUNDS_TITLE', 'uri': '/mutualfunds', 'count': 5, 'listCount': 30, 'predefinedScrId': 'top_mutual_funds'}, 'world_indices': {'name': 'WORLD_INDICES', 'uri': '/world-indices', 'count': 5, 'listCount': 30}, 'etfs': {'name': 'ETFS_TITLE', 'uri': '/etfs', 'count': 5, 'listCount': 30, 'predefinedScrId': 'top_etfs_us'}}, 'defaultLists': ['recentQuotes', 'cryptocurrencies', 'trending_tickers', 'most_active', 'gainers', 'losers', 'mutualfunds', 'etfs', 'currencies', 'commodities', 'options_highest_open_interest', 'options_highest_implied_volatility'], 'orderedLists': ['cryptocurrencies', 'trending_tickers', 'most_active', 'gainers', 'losers', 'mutualfunds', 'etfs', 'commodities', 'options_highest_open_interest', 'options_highest_implied_volatility', 'world_indices', 'currencies', 'bonds']}, 'host': 'finance.yahoo.com', 'hiringLinks': {'snv': 'https://www.linkedin.com/jobs2/cap/view/208631894?pathWildcard=208631894&trk=job_capjs', 'nyc': 'https://www.linkedin.com/jobs/view/188529482'}, 'timeouts': {'navigate': 10000}, 'spaceIds': {'TRADE_IDEAS': 1197807300, 'most_active': 1183331958, 'fullScreenChart': 2022773886, 'FUTURE': 97327109, 'EQUITY': 95993639, 'gainers': 1183331958, 'SCREENER_FUTURE': 1183336017, 'CRYPTO_PORTFOLIO': 1197812219, 'commodities': 97327075, 'SCREENER_EQUITY': 1183335883, 'SCREENER_INDEX': 1183336019, 'COMMODITY': 97327109, 'currencies': 2146786654, 'trending_tickers': 1183331958, 'BONDS': 95993639, 'bonds': 42328446, 'SCREENER_INSIDER': 1183335958, 'CURRENCY': 96390611, 'SCREENER_ETF': 1183335947, 'INDEX': 95993639, 'CRYPTOCURRENCY': 1197805203, 'QUOTE_BASE': 95993639, 'OPTION': 1197783905, 'fullScreenChart_MUTUALFUND': 1197773430, 'losers': 1183331958, 'SCREENER_BASE': 1183335867, 'ETF': 96469363, 'SCREENER_CRYPTOCURRENCY': 1183335995, 'CUL_IDX': 95993639, 'MUTUALFUND': 2712295, 'CUL_SUB_IDX': 95993639, 'mutualfunds': 1183331884, 'world_indices': 1183331958, 'SCREENER_OPTION': 1183335974, 'RESEARCH_REPORTS': 1197807299, 'etfs': 1183331881, 'industries': 1183331958, 'CATEGORY_options': 28951412, 'options': 1183331888, 'SCREENER_MUTUALFUND': 1183335884}, 'videoReel': {'capPortfolioSymbols': 20, 'capRecentQuotes': 20}, 'enableVideoManager': True, 'premium': {'sku': {'monthly': 'fin-yh-ft22178', 'annually': 'fin-yh-fte993687'}}, 'nativeAds': {'se': 4492794}, 'videoPlayer': {'baseUrl': 'https://yep.video.yahoo.com/oath/js/1/oath-player.js', 'device': 'nextgen-desktop', 'docking': {'fadeInAnimation': True, 'width': 300, 'height': 168.75, 'position': {'left': 'ref', 'right': 0, 'bottom': 45}, 'enableOnMuted': True, 'enableOnScrollUp': False, 'threshold': 60, 'enableOnScrollDown': False, 'ref': '.modal-open .render-target-modal .modalRight', 'showInfoCard': False}, 'enableRestoreOnNavigate': True, 'refreshDockingOnNavigate': True, 'version': None, 'vpaidTimeout': 10}}}}, 'LangStore': {'defaultBundle': 'td-app-finance', 'baseLangs': {'td-app-finance': {'10_YEARS': '10 Years', '1_D': '1D', '1_DAY_CHANGE': 'Change (1D)', '1_D_PERFORMANCE': '1D Performance', '1_D_PERF_ASC': '1D Performance Asc', '1_D_PERF_DESC': '1D Performance Desc', '1_M': '1M', '1_Y': '1Y', '1_YEAR': '1 Year', '200_DAY_MOVING_AVG': '200-Day Moving Average', '2_Y': '2Y', '30_DAYS_AGO': '30 Days Ago', '3_M': '3M', '3_YEARS': '3 Years', '50_DAY_MOVING_AVG': '50-Day Moving Average', '52_WEEK_CHANGE': '52-Week Change', '5_D': '5D', '5_Y': '5Y', '5_YEARS': '5 Years', '5_YEAR_AVERAGE_DIVIDEND_YIELD': '5 Year Average Dividend Yield', '60_DAYS_AGO': '60 Days Ago', '6_M': '6M', '7_DAYS_AGO': '7 Days Ago', '7_DAY_VISITS': 'Visits (7D)', '7_DAY_YIELD': '7 Day Yield', '90_DAYS_AGO': '90 Days Ago', 'ABOUT_TEXT': 'About {value}', 'ABOVE_AVG': 'Above Average', 'ACCIDENT_HEALTH_INSURANCE': 'Accident & Health Insurance', 'ACCIDENT_HEALTH_INSURANCE_DESC': 'Accident & Health Insurance Stocks', 'ACCOUNTS_PAYABLE': 'Accounts Payable', 'ACCOUNTS_RECEIVABLE': 'Accounts receivable', 'ACCOUNT_INFO': 'Account Info', 'ACCOUNT': 'Account', 'ACCRUED_INTEREST_RECEIVABLE': 'Accrued Interest Receivable', 'ACCRUED_INVESTMENT_INCOME': 'Accrued Investment Income', 'ACCUMULATED_AMORTIZATION': 'Accumulated Amortization', 'ACCUMULATED_DEPRECIATION': 'Accumulated Depreciation', 'ACCUMULATED_OTHER_COMPREHENSIVE_INCOME': 'Accumulated other comprehensive income', 'ACCURED_LIABILITES': 'Accrued liabilities', 'ACQUISITIONS_NET': 'Acquisitions, net', 'ACTIONS': 'Actions', 'ACTUAL': 'Actual', 'ADD': 'Add', 'ADDED': 'Added', 'ADDITIONAL_PAID_IN_CAPITAL': 'Additional Paid in Capital', 'ADDRESS': 'Address', 'ADD_AVATAR': 'Add avatar', 'ADD_CHART_COMPARISONS': 'Add Comparisons', 'ADD_CHART_INDICATORS': 'Add Indicators', 'ADD_FIELD': 'Add {field}', 'ADD_FILTER': 'Add another filter', 'ADD_HOLDINGS': 'Add Holdings', 'ADD_INDICATORS': 'Indicators', 'ADD_LOT': 'Add Lot', 'ADD_MANAGE_ACCOUNTS': 'Add or Manage accounts', 'ADD_REMOVE_LIST': 'Add to or remove from my watchlist', 'ADD_CASH_HOLDING': 'Add cash holding', 'ADD_NEW_CASH_TRANSACTION': 'Add Cash Transaction', 'ADD_NEW_TRANSACTION': 'Add a new transaction - {symbol} ({name})', 'ADD_SELECTED_STOCKS': 'Add Selected Stocks to...', 'ADD_SELECTED_STOCKS_SIGNED_OUT': '{content} to add selected stocks to your portfolios.', 'ADD_SYMBOL': 'Add Symbol', 'ADD_TO_PORTFOLIO': 'Add to Portfolio', 'ADD_TO_TOTAL_HOLDINGS': 'Add to Total Holdings', 'ADD_TO_WATCHLIST': 'Add to watchlist', 'ADD_TRANSACTION': 'Add a transaction', 'ADJUSTED_CLOSE': 'Adj Close**', 'ADJUSTED_GEOGRAPHY_SEGMENT_DATA': 'Adjusted Geography Segment Data', 'ADJUSTMENT_TO_NET_INCOME': 'Adjustments To Net Income', 'ADS_RELATED_TO': 'Ads related to: {name}', 'ADVANCE_FROM_FEDERAL_HOME_LOAN_BANKS': 'Advance From Federal Home Loan Banks', 'ADVERTISE_WITH_US': 'Advertise with us', 'ADVERTISING_AGENCIES': 'Advertising Agencies', 'ADVERTISING_AGENCIES_DESC': 'Advertising Agencies Stocks', 'ADVANCED_CHART': 'Advanced Chart', 'AD_ABBR': 'Ad', 'AD_DISLIKE': \"I don't like this ad\", 'AD_FEEDBACK_ADLITE_PROMO': 'Try Yahoo Finance Plus', 'AD_FEEDBACK_MESSAGE': 'Improve your future experience.', 'AD_FEEDBACK_NEGATIVE': \"Why don't you like this ad?\", 'AD_FEEDBACK_REVIEW': \"We'll review and make changes needed.\", 'AD_FEEDBACK_THANKYOU': 'Thanks for your feedback', 'AD_HIDDEN': 'This ad has been hidden', 'AD_LIKE': 'I like this ad', 'AD_TERMS': 'Why this ad?', 'ADD_DATE': 'Add date', 'AERONAUTIQUE_TITLE': 'Aeronautics', 'AEROSPACE_DEFENSE_MAJOR_DIVERSIFIED': 'Aerospace/Defense - Major Diversified', 'AEROSPACE_DEFENSE_MAJOR_DIVERSIFIED_DESC': 'Aerospace/Defense - Major Diversified Stocks', 'AEROSPACE_DEFENSE_PRODUCTS_SERVICES': 'Aerospace/Defense Products & Services', 'AEROSPACE_DEFENSE_PRODUCTS_SERVICES_DESC': 'Aerospace/Defense Products & Services Stocks', 'AGE': 'Age', 'AGGRESSIVE_SMALL_CAPS': 'Aggressive Small Caps', 'AGGRESSIVE_SMALL_CAPS_DESC': 'Small cap stocks with earnings growth rates better than 25%.', 'AGRICULTURAL_CHEMICALS': 'Agricultural Chemicals', 'AGRICULTURAL_CHEMICALS_DESC': 'Agricultural Chemicals Stocks', 'AIR_DELIVERY_FREIGHT_SERVICES': 'Air Delivery & Freight Services', 'AIR_DELIVERY_FREIGHT_SERVICES_DESC': 'Air Delivery & Freight Services Stocks', 'AIR_SERVICES_OTHER': 'Air Services, Other', 'AIR_SERVICES_OTHER_DESC': 'Air Services, Other Stocks', 'ALGORITHM': 'Algorithm', 'ALGO_WATCHLIST': 'Watchlist', 'ALIMENTACION-Y-CONSUMO_TITLE': 'Food and Consumption', 'ALL': 'All', 'ALLOCATION': 'Allocation', 'ALLOWANCE_FOR_DOUBTFUL_ACCOUNTS_RECEIVABLE': 'Allowance For Doubtful Accounts Receivable', 'ALLOWANCE_FOR_LOANS_AND_LEASE_LOSSES': 'Allowance for Loans And Lease Losses', 'ALLOWANCE_FOR_NOTES_RECEIVABLE': 'Allowance for Notes Receivable', 'ALL_EVENTS': 'All Events', 'ALL_INDICATORS': 'All Indicators', 'ALL_MARKETS': 'All Markets', 'ALL_NUMBER_IN_THOUSANDS': 'All numbers in thousands', 'ALL_PORTFOLIOS': 'All Portfolios', 'ALL_POSITIONS': 'All Positions', 'ALL_REPORTS': 'All reports', 'ALL_SCREENERS': 'All Screeners', 'ALL_TAXES_PAID': 'All Taxes Paid', 'ALPHA': 'Alpha', 'ALUMINUM': 'Aluminum', 'ALUMINUM_DESC': 'Aluminum Stocks', 'AMORTIZATION': 'Amortization', 'AMORTIZATION_AMORTIZATION_CASH_FLOW': 'Amortization & Amortization Cash Flow', 'AMORTIZATION_OF_FINANCING_COSTS_AND_DISCOUNTS': 'Amortization of Financing Costs And Discounts', 'AMORTIZATION_OF_INTANGIBLES': 'Amortization of Intangibles', 'AMORTIZATION_OF_SECURITIES': 'Amortization of Securities', 'ANALYSIS': 'Analysis', 'ANALYSTS': 'Analysts', 'ANALYST_PRICE_TARGETS': 'Analyst Price Targets', 'ANALYST_PROFILE': 'Analyst Profile', 'ANALYST_QUARTER_LABEL': '{label} ({month} {year})', 'ANALYST_RATING': 'Analyst Rating', 'ANALYST_RATINGS': 'Analyst Ratings', 'ANALYST_REPORT': 'Analyst Report', 'ANALYST_STRONG_BUY_STOCKS': 'Analyst Strong Buy Stocks', 'ANALYST_YEAR_LABEL': '{label} ({year})', 'ANALYSTS_ARE_SAYING': 'Analysts Are Saying', 'ANALYTICS': 'Analytics', 'AND': 'and', 'ANNOUNCEMENT': 'Announcement', 'ANNOUNCEMENT_PLACEHOLDER': 'Users will be able to see your anouncement in your livestream room', 'ANNUAL': 'Annual', 'ANNUAL_HOLDINGS_TURNOVER': 'Holdings Turnover', 'ANNUAL_REPORT_EXPENSE_RATIO': 'Annual Report Expense Ratio (net)', 'ANNUAL_TOTAL_RETURNS': 'Annual Total Return (%) History', 'ANNUAL_STOCK_PERFORMANCE_DATA': 'Annual Stock Performance Data', 'APPAREL_STORES': 'Apparel Stores', 'APPAREL_STORES_DESC': 'Apparel Stores Stocks', 'APPLET_COMMENT_COMMENTS': 'Comments', 'APPLIANCES': 'Appliances', 'APPLIANCES_DESC': 'Appliances Stocks', 'APPLICATION_SOFTWARE': 'Application Software', 'APPLICATION_SOFTWARE_DESC': 'Application Software Stocks', 'APPLIED': 'Applied', 'APPLIED_FILTERS': 'Applied Filters for {type} screener', 'APPLY': 'Apply', 'APP_PROMO_ALERTS': 'News and price alerts', 'APP_PROMO_FREE_DATA': 'Free real-time data', 'APP_PROMO_GET_APP': 'Get the App', 'APP_PROMO_HOLDINGS': 'Add and edit holdings', 'APP_PROMO_OPEN_APP': 'Open in App', 'APP_PROMO_PERFORMANCE': 'Track performance', 'APP_PROMO_WATCHLISTS': 'Create multiple watchlists', 'AREA': 'Area', 'ARGUS_RATING': 'Argus Rating', 'ARROW': 'Arrow', 'ASC_ORDER': 'Ascending Order', 'AS_OF': 'As of:', 'ASK': 'Ask', 'ASSET': 'Asset', 'ASSETS': 'Assets', 'ASSET_CLASS': 'Asset Class', 'ASSETS_HELD_FOR_SALE': 'Assets Held for Sale', 'ASSETS_HELD_FOR_SALE_CURRENT': 'Assets Held for Sale Current', 'ASSETS_OF_DISCONTINUED_OPERATIONS': 'Assets of Discontinued Operations', 'ASSET_IMPAIRMENT_CHARGE': 'Asset Impairment Charge', 'ASSET_MANAGEMENT': 'Asset Management', 'ASSET_MANAGEMENT_DESC': 'Asset Management Stocks', 'ATTRIBUTES': 'Attributes', 'AUDIOVISUAL-Y-MEDIOS_TITLE': 'Audiovisual and Media', 'AUSTRALIA': 'Australia', 'AUTO': 'Auto', 'AUTOCOMPLETE_PLACEHOLDER': 'VZ, AAPL, TSLA', 'AUTOMATIC_PICK': 'Automatic Pick', 'AUTOMOBILE_TITLE': 'Automobile', 'AUTOS_TITLE': 'Autos', 'AUTOS_TRANSPORTATION_TITLE': 'Autos & Transportation', 'AUTO_DEALERSHIPS': 'Auto Dealerships', 'AUTO_DEALERSHIPS_DESC': 'Auto Dealerships Stocks', 'AUTO_MANUFACTURERS_MAJOR': 'Auto Manufacturers - Major', 'AUTO_MANUFACTURERS_MAJOR_DESC': 'Auto Manufacturers - Major Stocks', 'AUTO_PARTS': 'Auto Parts', 'AUTO_PARTS_DESC': 'Auto Parts Stocks', 'AUTO_PARTS_STORES': 'Auto Parts Stores', 'AUTO_PARTS_STORES_DESC': 'Auto Parts Stores Stocks', 'AUTO_PARTS_WHOLESALE': 'Auto Parts Wholesale', 'AUTO_PARTS_WHOLESALE_DESC': 'Auto Parts Wholesale Stocks', 'AVAILABLE_FOR_SALE_SECURITIES': 'Available for Sale Securities', 'AVATAR_COPY': 'Choosing a more professional avatar will gain more trust from your followers.', 'AVERAGE': 'Average', 'AVERAGE_DILUTION_EARNINGS': 'Average Dilution Earnings', 'AVERAGE_FOR_CATEGORY': 'Average for Category', 'AVERAGE_VOLUME_3MONTH': 'Avg. Volume', 'AVG_COST_PER_QUANTITY': 'Avg Cost / Quantity', 'AVG_COST_PER_SHARE': 'Avg Cost / Share', 'AVERAGE_COST_PER_SHARE': 'Average Cost / Share', 'AVG_ESTIMATE': 'Avg. Estimate', 'AVG_HOURLY_EARNINGS': 'Average \\nHourly Earnings', 'AVG_MATURITY': 'Avg Maturity (days)', 'AVG_VOL_10_DAY': 'Avg Vol (10 day)', 'AVG_VOL_3_MONTH': 'Avg Vol (3 month)', 'BACK': 'Back', 'BALANCE_SHEET': 'Balance Sheet', 'BANCA-Y-SEGUROS_TITLE': 'Banking & Insurance', 'BANK_INDEBTEDNESS': 'Bank Indebtedness', 'BANK_OWNED_LIFE_INSURANCE': 'Bank Owned Life Insurance', 'BANQUE-ET-ASSURANCE_TITLE': 'Banking & Insurance', 'BAR': 'Bar', 'BASIC': 'Basic', 'BASIC_ACCOUNTING_CHANGE': 'Basic Accounting Change', 'BASIC_AVERAGE_SHARES': 'Basic Average Shares', 'BASIC_CONTINUOUS_OPERATIONS': 'Basic Continuous Operations', 'BASIC_DISCONTINUOUS_OPERATIONS': 'Basic Discontinuous Operations', 'BASIC_EPS': 'Basic EPS', 'BASIC_EPS_OTHER_GAINS_LOSSES': 'Basic EPS Other Gains Losses', 'BASIC_EXTRAORDINARY': 'Basic Extraordinary', 'BASIC_MATERIALS': 'Basic Materials', 'BASIC_MATERIALS_DESC': 'Basic Materials Stocks', 'BASIC_MATERIALS_WHOLESALE': 'Basic Materials Wholesale', 'BASIC_MATERIALS_WHOLESALE_DESC': 'Basic Materials Wholesale Stocks', 'BASIC_PORTFOLIO': 'Basic Portfolio', 'BEARISH': 'Bearish', 'BEARISH_STOCKS_RIGHT_NOW': 'Bearish Stocks Right Now', 'BEARS_SAY': 'Bears Say', 'BEAT': 'Beat', 'BEA_CODE': 'BEA Code', 'BEGINNING_CASH_POSITION': 'Beginning Cash Position', 'BEHAVIOR': 'Behavior', 'BELOW_AVG': 'Below Average', 'BENI-DI-CONSUMO_TITLE': 'Consumer Goods', 'BENS-DE-CONSUMO_TITLE': 'Consumer goods', 'BEST_ONE_YR_TOTAL_RETURN': 'Best 1 Yr Total Return ({date})', 'BEST_THREE_YR_TOTAL_RETURN': 'Best 3-Yr Total Return', 'BETA': 'BETA', 'BETA_5Y': 'Beta (5Y Monthly)', 'BETA_PORTFOLIO': 'Beta portfolio', 'BEVERAGES_BREWERS': 'Beverages - Brewers', 'BEVERAGES_BREWERS_DESC': 'Beverages - Brewers Stocks', 'BEVERAGES_SOFT_DRINKS': 'Beverages - Soft Drinks', 'BEVERAGES_SOFT_DRINKS_DESC': 'Beverages - Soft Drinks Stocks', 'BEVERAGES_WINERIES_DISTILLERS': 'Beverages - Wineries & Distillers', 'BEVERAGES_WINERIES_DISTILLERS_DESC': 'Beverages - Wineries & Distillers Stocks', 'BECOME_STREAMER': 'Become a livestreamer', 'BI_WEEKLY': 'Bi-weekly', 'BID': 'Bid', 'BILLION_SHORT': '{num}B', 'BIO': 'Bio', 'BIOTECHNOLOGY': 'Biotechnology', 'BIOTECHNOLOGY_DESC': 'Biotechnology Stocks', 'BIO_PLACEHOLDER': 'Tell your followers more about you', 'BLOCK_NO': 'Block No.', 'BLOCK_REWARD': 'Block Reward', 'BLOCK_RR': 'Block RR.', 'BLOG': 'Blog', 'BONDS': 'Bonds', 'BOND_A': 'A', 'BOND_AA': 'AA', 'BOND_AAA': 'AAA', 'BOND_B': 'B', 'BOND_BB': 'BB', 'BOND_BBB': 'BBB', 'BOND_BELOW_B': 'Below B', 'BOND_HOLDINGS': 'Bond Holdings', 'BOND_RATINGS': 'Bond Ratings', 'BOND_US_GOVERMENT': 'US Government', 'BOOK_VALUE_PER_SHARE': 'Book Value Per Share', 'BRAZIL': 'Brazil', 'BREXIT_TITLE': 'Brexit', 'BROADCASTING_RADIO': 'Broadcasting - Radio', 'BROADCASTING_RADIO_DESC': 'Broadcasting - Radio Stocks', 'BROADCASTING_TV': 'Broadcasting - TV', 'BROADCASTING_TV_DESC': 'Broadcasting - TV Stocks', 'BROKERAGE_AVAILABILITY': 'Brokerage Availability', 'BROUGHT_TO_YOU_BY_ISS': 'Corporate governance scores courtesy of', 'BROUGHT_TO_YOU_BY_ISS_CONTEXT': 'Scores indicate decile rank relative to index or region. A decile score of 1 indicates lower governance risk, while a 10 indicates higher governance risk.', 'BROWSER_UPGRADE': 'Some parts of this page is not supported on your current browser version. Please upgrade the browser to the latest.', 'BUILDINGS_AND_IMPROVEMENTS': 'Buildings And Improvements', 'BUILDING_MATERIALS_WHOLESALE': 'Building Materials Wholesale', 'BUILDING_MATERIALS_WHOLESALE_DESC': 'Building Materials Wholesale Stocks', 'BUILD_SCREENER_MSG': 'Build {type} screener with filters below', 'BULLISH': 'Bullish', 'BULLISH_STOCKS_RIGHT_NOW': 'Bullish Stocks Right Now', 'BULLS_SAY': 'Bulls Say', 'BULLISH_BEARISH_TITLE': 'How do you feel about {symbol}?', 'BUSINESS_EQUIPMENT': 'Business Equipment', 'BUSINESS_EQUIPMENT_DESC': 'Business Equipment Stocks', 'BUSINESS_SERVICES': 'Business Services', 'BUSINESS_SERVICES_DESC': 'Business Services Stocks', 'BUSINESS_SERVICES_TITLE': 'Business Services', 'BUSINESS_SOFTWARE_SERVICES': 'Business Software & Services', 'BUSINESS_SOFTWARE_SERVICES_DESC': 'Business Software & Services Stocks', 'BUY': 'Buy', 'BUY_SLASH_SELL': 'Buy/Sell', 'BUY_TO_COVER': 'Buy to Cover', 'BY': 'By', 'BY_ENTITY': 'by {entity}', 'CALENDAR': 'Calendar', 'CALENDAR_FRI': 'Fri', 'CALENDAR_MON': 'Mon', 'CALENDAR_MONTH_0': 'Jan', 'CALENDAR_MONTH_1': 'Feb', 'CALENDAR_MONTH_10': 'Nov', 'CALENDAR_MONTH_11': 'Dec', 'CALENDAR_MONTH_2': 'Mar', 'CALENDAR_MONTH_3': 'Apr', 'CALENDAR_MONTH_4': 'May', 'CALENDAR_MONTH_5': 'Jun', 'CALENDAR_MONTH_6': 'Jul', 'CALENDAR_MONTH_7': 'Aug', 'CALENDAR_MONTH_8': 'Sep', 'CALENDAR_MONTH_9': 'Oct', 'CALENDAR_SAT': 'Sat', 'CALENDAR_SUN': 'Sun', 'CALENDAR_THU': 'Thu', 'CALENDAR_TUES': 'Tues', 'CALENDAR_WED': 'Wed', 'CALLOUT': 'Callout', 'CANADA_TITLE': 'Canada', 'CANCEL': 'Cancel', 'CANDLE': 'Candle', 'CANVASS DISPLAY_TEXT': '${symbol} conversation', 'CANVASS SENTIMENT_PROMPT': 'How are you feeling about {symbol}?', 'CAPITAL_EX': 'Capital Expenditure', 'CAPITAL_EXPENDITURE': 'Capital Expenditure', 'CAPITAL_EXPENDITURE_REPORTED': 'Capital Expenditure Reported', 'CAPITAL_GAIN': 'Capital Gain', 'CAPITAL_LEASE_OBLIGATIONS': 'Capital Lease Obligations', 'CAPITAL_OR': 'OR', 'CAPITAL_STOCK': 'Capital Stock', 'CAPITAL_SURPLUS': 'Capital Surplus', 'CAREERS_TITLE': 'Careers', 'CASH': 'Cash', 'CASH_AND_CASH_EQUIVALENTS': 'Cash And Cash Equivalents', 'CASH_AND_DUE_FROM_BANKS': 'Cash And Due from Banks', 'CASH_AT_BEGINNING_OF_PERIOD': 'Cash at beginning of period', 'CASH_AT_END_OF_PERIOD': 'Cash at end of period', 'CASH_CASH_EQUIVALENTS_AND_FEDERAL_FUNDS_SOLD': 'Cash, Cash Equivalents & Federal Funds Sold', 'CASH_CASH_EQUIVALENTS_AND_SHORT_TERM_INVESTMENTS': 'Cash, Cash Equivalents & Short Term Investments', 'CASH_DEPOSIT': 'Cash Deposit', 'CASH_DIVIDENDS_PAID': 'Cash Dividends Paid', 'CASH_EQUIVALENTS': 'Cash Equivalents', 'CASH_FLOW': 'Cash Flow', 'CASH_FLOWSFROMUSEDIN_OPERATING_ACTIVITIES_DIRECT': 'Cash Flows from Used in Operating Activities Direct', 'CASH_FLOW_FROM_CONTINUING_FINANCING_ACTIVITIES': 'Cash Flow from Continuing Financing Activities', 'CASH_FLOW_FROM_CONTINUING_INVESTING_ACTIVITIES': 'Cash Flow from Continuing Investing Activities', 'CASH_FLOW_FROM_CONTINUING_OPERATING_ACTIVITIES': 'Cash Flow from Continuing Operating Activities', 'CASH_FLOW_FROM_DISCONTINUED_OPERATION': 'Cash Flow from Discontinued Operation', 'CASH_FLOW_FROM_FINANCING_ACT': 'Cash flows from financing activities', 'CASH_FLOW_FROM_INVESTING_ACT': 'Cash flows from investing activities ', 'CASH_FLOW_FROM_OP_ACT': 'Cash flows from operating activities', 'CASH_FLOW_STATEMENT': 'Cash Flow Statement', 'CASH_FROM_DISCONTINUED_FINANCING_ACTIVITIES': 'Cash from Discontinued Financing Activities', 'CASH_FROM_DISCONTINUED_INVESTING_ACTIVITIES': 'Cash from Discontinued Investing Activities', 'CASH_FROM_DISCONTINUED_OPERATING_ACTIVITIES': 'Cash from Discontinued Operating Activities', 'CASH_HOLDINGS': 'Cash Holdings', 'CASH_MANAGEMENT': 'Cash management', 'CASH_MANAGEMENT_CAPS': 'Cash Management', 'CASH_PAIDFOR_INSURANCE_ACTIVITIES': 'Cash Paid for Insurance Activities', 'CASH_PAIDTO_REINSURERS': 'Cash Paid to Reinsurers', 'CASH_PAYMENTSFOR_DEPOSITSBY_BANKSAND_CUSTOMERS': 'Cash Payments for Depositsby Banks & Customers', 'CASH_PAYMENTSFOR_LOANS': 'Cash Payments for Loans', 'CASH_RECEIPTSFROM_DEPOSITSBY_BANKSAND_CUSTOMERS': 'Cash Receipts from Depositsby Banks & Customers', 'CASH_RECEIPTSFROM_FEESAND_COMMISSIONS': 'Cash Receipts from Fees & Commissions', 'CASH_RECEIPTSFROM_LOANS': 'Cash Receipts from Loans', 'CASH_RECEIPTSFROM_SECURITIES_RELATED_ACTIVITIES': 'Cash Receipts from Securities Related Activities', 'CASH_RECEIPTSFROM_TAX_REFUNDS': 'Cash Receipts from Tax Refunds', 'CASH_RECEIVEDFROM_INSURANCE_ACTIVITIES': 'Cash Received from Insurance Activities', 'CASH_SETTINGS_BUY_BEHAVIOR': 'Use available cash holdings', 'CASH_SETTINGS_BUY_BEHAVIOR_LONG': 'Use available cash holdings to purchase new stocks', 'CASH_SETTINGS_SELL_BEHAVIOR': 'Auto-add proceeds to cash holdings', 'CASH_SETTINGS_SELL_BEHAVIOR_LONG': 'Auto-add sell proceeds to my Cash holdings', 'CASH_SETTINGS_DIVIDENDS_BEHAVIOR': 'Auto-add payouts to cash holdings', 'CASH_SETTINGS_DIVIDENDS_BEHAVIOR_LONG': 'Auto-add dividend payouts to my Cash holdings', 'CASH_TIP': 'Tip: Type \"$$\" to enter custom symbols such as \"$$CASH\"', 'CASH_WITHDRAW': 'Cash Withdraw', 'CATALOG_MAIL_ORDER_HOUSES': 'Catalog & Mail Order Houses', 'CATALOG_MAIL_ORDER_HOUSES_DESC': 'Catalog & Mail Order Houses Stocks', 'CATEGORY': 'Category', 'CATEGORY_AVG': 'Category Average', 'CATEGORY_RANK_YDT': 'Rank in Category (ytd)', 'CATEGORY_RANK_YDT_PERCENT': '% Rank in Category (ytd)', 'CATV_SYSTEMS': 'CATV Systems', 'CATV_SYSTEMS_DESC': 'CATV Systems Stocks', 'CEDED_PREMIUMS': 'Ceded Premiums', 'CEMENT': 'Cement', 'CEMENT_DESC': 'Cement Stocks', 'CHANGE': 'Change', 'CHANGEIN_INSURANCE_CONTRACT_ASSETS': 'Change in Insurance Contract Assets', 'CHANGES_IN_ACCOUNTS_RECEIVABLES': 'Changes in Accounts Receivables', 'CHANGES_IN_ACCOUNT_RECEIVABLES': 'Changes in Account Receivables', 'CHANGES_IN_CASH': 'Changes in Cash', 'CHANGES_IN_INVENTORIES': 'Changes In Inventories', 'CHANGES_IN_LIABILITIES': 'Changes In Liabilities', 'CHANGES_IN_OTHER_OPERATING_ACT': 'Changes In Other Operating Activities', 'CHANGES_IN_PRICE_AND_MARKET_CAP': 'Changes in Price and Market Cap', 'CHANGES_IN_VOLUME_AND_OWNERSHIP': 'Changes in Volume and Ownership', 'CHANGE_IN_ACCOUNT_PAYABLE': 'Change in Account Payable', 'CHANGE_IN_ACCRUED_EXPENSE': 'Change in Accrued Expense', 'CHANGE_IN_ACCRUED_INVESTMENT_INCOME': 'Change in Accrued Investment Income', 'CHANGE_IN_CASH_AND_EQ': 'Change in Cash and Cash Equivalents', 'CHANGE_IN_DEFERRED_ACQUISITION_COSTS': 'Change in Deferred Acquisition Costs', 'CHANGE_IN_DEFERRED_CHARGES': 'Change in Deferred Charges', 'CHANGE_IN_DIVIDEND_PAYABLE': 'Change in Dividend Payable', 'CHANGE_IN_FEDERAL_FUNDS_AND_SECURITIES_SOLD_FOR_REPURCHASE': 'Change in Federal Funds And Securities Sold for Repurchase', 'CHANGE_IN_FUNDS_WITHHELD': 'Change in Funds Withheld', 'CHANGE_IN_INCOME_TAX_PAYABLE': 'Change in Income Tax Payable', 'CHANGE_IN_INTEREST_PAYABLE': 'Change in Interest Payable', 'CHANGE_IN_INVENTORY': 'Change in Inventory', 'CHANGE_IN_LOANS': 'Change in Loans', 'CHANGE_IN_LOSS_AND_LOSS_ADJUSTMENT_EXPENSE_RESERVES': 'Change in Loss And Loss Adjustment Expense Reserves', 'CHANGE_IN_OTHER_CURRENT_ASSETS': 'Change in Other Current Assets', 'CHANGE_IN_OTHER_CURRENT_LIABILITIES': 'Change in Other Current Liabilities', 'CHANGE_IN_OTHER_WORKING_CAPITAL': 'Change in Other Working Capital', 'CHANGE_IN_PAYABLE': 'Change in Payable', 'CHANGE_IN_PAYABLES_AND_ACCRUED_EXPENSE': 'Change in Payables And Accrued Expense', 'CHANGE_IN_PREPAID_ASSETS': 'Change in Prepaid Assets', 'CHANGE_IN_RECEIVABLES': 'Change in Receivables', 'CHANGE_IN_REINSURANCE_RECOVERABLE_ON_PAID_AND_UNPAID_LOSSES': 'Change in Reinsurance Recoverable on Paid And Unpaid Losses', 'CHANGE_IN_RESTRICTED_CASH': 'Change in Restricted Cash', 'CHANGE_IN_TAX_PAYABLE': 'Change in Tax Payable', 'CHANGE_IN_TRADING_ACCOUNT_SECURITIES': 'Change in Trading Account Securities', 'CHANGE_IN_UNEARNED_PREMIUMS': 'Change in Unearned Premiums', 'CHANGE_IN_WORKING_CAPITAL': 'Change in working capital', 'CHARACTERISTICS': 'Characteristics', 'CHART': 'Chart', 'CHART_EVENTS': 'Chart Events', 'CHARTIQ_DISCLAIMER_TEXT': 'In partnership with ChartIQ', 'CHARTIQ_FEEDBACK': 'Give feedback', 'CHARTIQ_INTERVAL_DAY': '1 day', 'CHARTIQ_INTERVAL_DAYS': '{n} days', 'CHARTIQ_INTERVAL_HOUR': '1 hour', 'CHARTIQ_INTERVAL_HOURS': '{n} hours', 'CHARTIQ_INTERVAL_MIN': '1 min', 'CHARTIQ_INTERVAL_MINS': '{n} mins', 'CHARTIQ_INTERVAL_MONTH': '1 month', 'CHARTIQ_INTERVAL_MONTHS': '{n} months', 'CHARTIQ_INTERVAL_WEEK': '1 week', 'CHARTIQ_INTERVAL_YEAR': '1 year', 'CHART_NOT_AVAILABLE': 'This chart is not available', 'CHART_NOT_SUPPORTED': 'Stock chart is not supported by your current browser', 'CHART_PREFERENCE': 'Chart Preference', 'CHART_TEMP_NOT_AVAILABLE': 'Unable to display charts. Please try again later.', 'CHART_TYPE': 'Chart Type', 'CHART_FEATURE_CUE_EXPERT_1': 'See all the pro tools we have for you! Expand to explore', 'CHART_FEATURE_CUE_EXPERT_2': 'You asked, we added! Expand to explore our new features', 'CHART_FEATURE_CUE_START_1': 'This graph has more to offer! Expand to explore', 'CHART_FEATURE_CUE_START_2': 'See what else our graphs can do! Expand now', 'CHART_FEATURE_MARKETING_HEADLINE': 'NEW: Experience our best charts yet.', 'CHART_FEATURE_MARKETING_SUBHEAD': 'Everything you need for any kind of investing', 'CHART_FEATURE_MARKETING_ACTION': 'Explore new charts', 'CHART_FEATURE_MARKETING_TIP_1': 'Find MACD, RSI, and more than 100 different indicators', 'CHART_FEATURE_MARKETING_TIP_2': 'Compare multiple stocks, indexes, and more, all at once', 'CHART_FEATURE_MARKETING_TIP_3': 'Create your own analysis with 37 drawing tools ', 'CHART_FEATURE_MARKETING_TIP_4': 'Download your chart information in table format', 'CHART_FEATURE_MARKETING_TIP_5': 'Use Line, Candle, and other 30 different type of graphs', 'CHART_FEATURE_MARKETING_TIP_6': \"Light or Dark mode, that's up to you\", 'CHART_FEATURE_MARKETING_TIP_7': 'Real Time for all US exchanges (equities and etfs)', 'CHART_FEATURE_MARKETING_TIP_8': 'Accessibility: keyboard navigation for dialogs & UI controls', 'CHEMICALS_MAJOR_DIVERSIFIED': 'Chemicals - Major Diversified', 'CHEMICALS_MAJOR_DIVERSIFIED_DESC': 'Chemicals - Major Diversified Stocks', 'CHEMIE_TITLE': 'Chemie', 'CHIMICA-E-MATERIE-PRIME_TITLE': 'Chemical and Basic materials', 'CHOOSE_FILTERS': 'Choose filters to screen {quoteType}', 'CHOOSE_RECENT_VIEW': 'Recently viewed symbols', 'CIGARETTES': 'Cigarettes', 'CIGARETTES_DESC': 'Cigarettes Stocks', 'CIRCULATING_SUPPLY': 'Circulating Supply', 'CLAIMS_PAID': 'Claims Paid', 'CLASSESOF_CASH_PAYMENTS': 'Classes of Cash Payments', 'CLASSESOF_CASH_RECEIPTSFROM_OPERATING_ACTIVITIES': 'Classes of Cash Receipts from Operating Activities', 'CLEANING_PRODUCTS': 'Cleaning Products', 'CLEANING_PRODUCTS_DESC': 'Cleaning Products Stocks', 'CLEAR': 'Clear', 'CLEAR_DRAWINGS': 'Clear Drawings', 'CLOSE': 'Close', 'CLOSED': 'Closed', 'CLOSEDEND_FUND_DEBT': 'Closed-End Fund - Debt', 'CLOSEDEND_FUND_DEBT_DESC': 'Closed-End Fund - Debt Stocks', 'CLOSEDEND_FUND_EQUITY': 'Closed-End Fund - Equity', 'CLOSEDEND_FUND_EQUITY_DESC': 'Closed-End Fund - Equity Stocks', 'CLOSEDEND_FUND_FOREIGN': 'Closed-End Fund - Foreign', 'CLOSEDEND_FUND_FOREIGN_DESC': 'Closed-End Fund - Foreign Stocks', 'COIN_MARKET_CAP': 'CoinMarketCap', 'COIN_TYPE': 'Coin Type', 'COLLAPSE': 'Collapse', 'COLLAPSE_ALL': 'Collapse All', 'COLOR': 'Color', 'COLORED_BAR': 'Colored Bar', 'COMMERCIAL_LOAN': 'Commercial Loan', 'COMMERCIAL_PAPER': 'Commercial Paper', 'COMMISSION': 'Commission', 'COMMISSION_PAID': 'Commission Paid', 'COMMODITIES_TITLE': 'Futures', 'COMMONLY_USED': 'Commonly used', 'COMMON_STOCK': 'Common Stock', 'COMMON_STOCK_DIVIDEND_PAID': 'Common Stock Dividend Paid', 'COMMON_STOCK_EQUITY': 'Common Stock Equity', 'COMMON_STOCK_ISSUANCE': 'Common Stock Issuance', 'COMMON_STOCK_ISSUED': 'Common stock issued', 'COMMON_STOCK_PAYMENTS': 'Common Stock Payments', 'COMMON_STOCK_REPURCHASED': 'Common stock repurchased', 'COMMON_UTILITY_PLANT': 'Common Utility Plant', 'COMMUNICATION_EQUIPMENT': 'Communication Equipment', 'COMMUNICATION_EQUIPMENT_DESC': 'Communication Equipment Stocks', 'COMMUNICATION_SERVICES': 'Communication Services', 'COMMUNITY': 'Message Boards', 'COMMUNITY_SENTIMENT_DESC': 'We’ve tracked changes in conversation so you can see what the buzz is about.', 'COMMUNITY_SENTIMENT_TITLE': 'Community Conversation', 'COMPACT_TABLE_DENSITY': 'Compact Table Density', 'COMPANIES': 'Companies', 'COMPANY': 'Name', 'COMPANY360': 'Company 360', 'COMPANY_360_FOOTER_DIVIDENDS': 'Morningstar calculates dividend yield based on distributions. It measures the income generated by investing in a stock.', 'COMPANY_360_FOOTER_EARNINGS': \"Refinitiv's I/B/E/S database aggregates earnings estimates from sell-side analysts and derives a consensus forecast.\", 'COMPANY_360_FOOTER_INNOVATION': \"Trea's Innovation Index provides a comprehensive look into every aspect of a company's research and development.\", 'COMPANY_360_FOOTER_SIGDEV': \"Refinitiv's Significant Developments highlight the most pertinent market-moving company news headlines.\", 'COMPANY_360_LEGEND_INNOVATION': 'Sector score {score}', 'COMPANY_360_MOST_RECENT': 'most recent', 'COMPANY_360_NO_DATA': '{type} data is not made public by this company', 'COMPANY_ANALYSIS': 'Company analysis', 'COMPANY_DATA_PROVIDED_BY': '{companyName} data provided by', 'COMPANY_INSIGHTS': 'Company Insights', 'COMPANY_METRICS': 'Company Metrics', 'COMPANY_NAME': 'Company Name', 'COMPANY_OUTLOOK': 'Company Outlook', 'COMPANY_PROFILE': 'Profile', 'COMPANY_SUMMARY': 'Company Summary', 'COMPANY_VS_SECTOR': '{company} vs Sector', 'COMPARABLE': 'Comparable', 'COMPARISON': 'Comparison', 'COMPENSATION_DISCLOSURE': 'Amounts are as of {date} and compensation values are for the last fiscal year ending on that date. Pay is salary, bonuses, etc. Exercised is the value of options exercised during the fiscal year. Currency in {currency}.', 'COMPETITOR_FILINGS': 'Competitor Filings', 'COMPLETE_LIST': 'Complete list', 'COMPONENTS': 'Components', 'COMPUTERS_WHOLESALE': 'Computers Wholesale', 'COMPUTERS_WHOLESALE_DESC': 'Computers Wholesale Stocks', 'COMPUTER_BASED_SYSTEMS': 'Computer Based Systems', 'COMPUTER_BASED_SYSTEMS_DESC': 'Computer Based Systems Stocks', 'COMPUTER_PERIPHERALS': 'Computer Peripherals', 'COMPUTER_PERIPHERALS_DESC': 'Computer Peripherals Stocks', 'CONFECTIONERS': 'Confectioners', 'CONFECTIONERS_DESC': 'Confectioners Stocks', 'CONFIRM': 'Confirm', 'CONFIRM_DELETE': 'Confirm Delete', 'CONFIRM_DELETE_MSG': 'Are you sure you want to delete {pfName}?', 'CONFIRM_DELETE_SCREENER_MSG': 'Are you sure you want to delete {scrName} screener?', 'CONFIRM_DELETE_TICKER': 'Are you sure you want to remove {symbol}?', 'CONFIRM_DELETE_ALL_TICKERS': 'Are you sure you want to remove all of these symbols from this portfolio?', 'CONFIRM_DELETE_TICKER_TRANSACTIONS_PLURAL': 'There are {transactionsCount} transactions associated with this symbol. Are you sure you want to remove {symbol}?', 'CONFIRM_UNLINK_MSG': 'Are you sure you want to unlink {pfName}?', 'CONGLOMERATES': 'Conglomerates', 'CONGLOMERATES_DESC': 'Conglomerates Stocks', 'CONSERVATIVE_FOREIGN_FUNDS': 'Conservative Foreign Funds', 'CONSERVATIVE_FOREIGN_FUNDS_DESC': 'Foreign funds with Performance Rating of 4 & 5, low risk and top-half returns', 'CONSTRUCAO-EQUIPAMENTOS_TITLE': 'Construction & Equipment', 'CONSTRUCCION-Y-TRANSPORTES_TITLE': 'Construction and Transportation', 'CONSTRUCCION_TITLE': 'Building', 'CONSTRUCTION_IN_PROGRESS': 'Construction in Progress', 'CONSUMER_CYCLICAL': 'Consumer Cyclical', 'CONSUMER_DEFENSIVE': 'Consumer Defensive', 'CONSUMER_GOODS': 'Consumer Goods', 'CONSUMER_GOODS_DESC': 'Consumer Goods Stocks', 'CONSUMER_LOAN': 'Consumer Loan', 'CONSUMER_PRODUCTS_MEDIA_TITLE': 'Consumer Products & Media', 'CONSUMER_SERVICES': 'Consumer Services', 'CONSUMER_SERVICES_DESC': 'Consumer Services Stocks', 'CONTINUING_AND_DISCONTINUED_BASIC_EPS': 'Continuing & Discontinued Basic EPS', 'CONTINUING_AND_DISCONTINUED_DILUTED_EPS': 'Continuing & Discontinued Diluted EPS', 'CONTRACT_NAME': 'Contract Name', 'CONTRACT_RANGE': 'Contract Range', 'CONVERSATIONS': 'Conversations', 'CONVERTIBLE': 'Convertable', 'CONVERT_TO_WATCHLIST': 'Convert this to watchlist', 'CONVO_MSG_APPS_TITLE_END': '{host} is removing Conversations', 'CONVO_MSG_END_1': '{host} will soon be removing our Conversations message boards. Thanks for being such a loyal member of our Finance Conversations community!', 'CONVO_MSG_END_2': '{host} will be removing our Conversations message boards on Aug. 15. Thanks for being such a loyal member of our Finance Conversations community!', 'CONVO_MSG_HK_1': 'Our goal is to create a safe and engaging place for users to connect over interests and passions. In order to improve our community experience, we will soon be disabling commenting.', 'CONVO_MSG_HK_2': 'Our goal is to create a safe and engaging place for users to connect over interests and passions. In order to improve our community experience, we will soon be disabling commenting on August 15.', 'COPIED_TO_CLIPBOARD': 'Copied to clipboard.', 'COLORED_AREA': 'Colored Area', 'COPPER': 'Copper', 'COPPER_DESC': 'Copper Stocks', 'COPY': 'Copy', 'CORPORATE_ACTIONS': 'Corporate Actions', 'CORPORATE_EVENTS': 'Corporate Events', 'CORPORATE_GOVERNANCE': 'Corporate Governance', 'CORRECTIVE': 'Corrective:', 'COST_OF_REVENUE': 'Cost of Revenue', 'COST_PER_QUANTITY': 'Cost / Quantity', 'COST_PER_SHARE': 'Cost / Share', 'COST_PER_SHARE_DESCRIPTION': 'Price paid for buying an individual stock, or simply price per share.', 'CREATE': 'Create', 'CREATE_NEW_PORTFOLIO': 'Create New Portfolio', 'CREATE_NEW_LIST': 'Create list', 'CREATE_NEW_SCREENER': 'Create New Screener', 'CREATE_A_NEW_SCREENER': 'Create a New Screener', 'CREATE_NEW_SCREENER_DES': 'Pick a screener type to get started', 'CREATE_NEW_VIEW': 'Create New View', 'CREATE_PF_ERROR': 'Unable to create new portfolio. Please retry.', 'CREATE_PORTFOLIO': 'Create Portfolio', 'CREATE_STREAM_PROFILE': 'Create my Streamer profile', 'CREATE_WATCHLIST_UPSELL': 'Create watchlists to find unexpected patterns', 'CREATOR_TERMS_AGREEMENT': \"You agree to our {termsAndConditionsLink} Also, each product may be subject to additional terms required by the product's vendor, which you can review here.\", 'CREDIT_CARD': 'Credit Card', 'CREDIT_LOSSES_PROVISION': 'Credit Losses Provision', 'CREDIT_QUALITY': 'Credit Quality', 'CREDIT_SERVICES': 'Credit Services', 'CREDIT_SERVICES_DESC': 'Credit Services Stocks', 'CRYPTO_CURRENCIES': 'Cryptocurrencies', 'CRYPTO_ACCOUNT_MANAGEMENT': 'Crypto Account Management', 'CRYPTO_ACCOUNT_REMAINING_STEPS': 'Remaining steps', 'CRYPTO_ACCOUNT_REMAINING_STEPS_INFO': 'You are close to finishing up your account creation. Initiate fund transfer and start trading', 'CRYPTO_INITIATE_FUNDS': 'Add your bank account using Plaid and start initiating funds for crypto trading.', 'CRYPTO_TRADABLE_TITLE': 'Browse over 300 cryptos on Yahoo from here', 'CRYPTO_TRADABLE_INFO': 'Learn about Yahoo Crypto now, sign up today and start browsing. Certain limitations apply.', 'CRYPTO_TRADING_ACTION': 'Browse tradable coins', 'CRYPTO_TRADING_INFO': 'Learn about Yahoo Crypto now, sign up today and start browsing 21 cryptos. Certain limitations apply.', 'CRYPTO_TRADING_LEARN_MORE': 'Learn more about Yahoo Crypto', 'CRYPTO_TRADING_TITLE': 'The new crypto trading starts from here', 'CRYPTO_TRANSACTION_LIMIT_TITLE': 'Your current transaction limit', 'CRYPTO_TRANSACTION_UNLOCK_LIMIT_TITLE': 'Unlock unlimited trading', 'CRYPTO_TRANSACTION_UNLOCK_LIMIT_INFO': 'Don’t want to be limited? Send a link to your phone to verify your government ID and get unlimited crypto trading today!', 'CROSSHAIR': 'Crosshair', 'CRYPTO_ALL_IN_ONE': 'Security and simplicity, all in one place', 'CRYPTO_3_EASY_STEPS': 'Start buying cryptos in 3 Easy Steps', 'CRYPTO_CREATE_ACCT': 'Create account', 'CRYPTO_EXPLORE': 'Explore 300+ coins for your trading', 'CRYPTO_HOURS': 'Full extended hours trading with 24/7 live help and support', 'CRYPTO_EXT_HOURS': 'Extended Trading Hours', 'CRYPTO_HOW_IT_WORKS': 'How it works', 'CRYPTO_OPEN_ACCT': 'Open an account at Yahoo to trade 300+ coins', 'CRYPTO_OPEN_ACCT2': 'Open an account at Yahoo to trade these coins', 'CRYPTO_NO_TX_FEES': 'No transactional fees', 'CRYPTO_MARKETING': 'Security and simplicity, all in one place', 'CRYPTO_SECURITY': 'Security', 'CRYPTO_TRANSFER_FUND_TX': 'Transfer your funds and start transacting', 'CRYPTO_TRANSFER_FUND': 'Transfer Funds', 'CRYPTO_VERIFY_ID': 'Verify your identity', 'ALL_CRYPTOCURRENCIES_US': 'Cryptocurrencies', 'ALL_CRYPTOCURRENCIES_EU': 'Cryptocurrencies', 'CURATED_BY': 'Curated by', 'CURRENCY': 'Currency', 'CURRENCY_NOTICE': 'Currency in {currency}', 'CURRENCY_VALUE': 'Currency: {currency}', 'CURRENT': 'Current', 'CURRENT_ACCRUED_EXPENSES': 'Current Accrued Expenses', 'CURRENT_ASSETS': 'Current Assets', 'CURRENT_CAPITAL_LEASE_OBLIGATION': 'Current Capital Lease Obligation', 'CURRENT_DEBT': 'Current Debt', 'CURRENT_DEBT_AND_CAPITAL_LEASE_OBLIGATION': 'Current Debt And Capital Lease Obligation', 'CURRENT_DEFERRED_ASSETS': 'Current Deferred Assets', 'CURRENT_DEFERRED_LIABILITIES': 'Current Deferred Liabilities', 'CURRENT_DEFERRED_REVENUE': 'Current Deferred Revenue', 'CURRENT_DEFERRED_TAXES_ASSETS': 'Current Deferred Taxes Assets', 'CURRENT_DEFERRED_TAXES_LIABILITIES': 'Current Deferred Taxes Liabilities', 'CURRENT_ESTIMATE': 'Current Estimate', 'CURRENT_LIABILITIES': 'Current Liabilities', 'CURRENT_NOTES_PAYABLE': 'Current Notes Payable', 'CURRENT_PRICE': 'Current Price', 'CURRENT_PROVISIONS': 'Current Provisions', 'CURRENT_QTR': 'Current Qtr.', 'CURRENT_RATIO': 'Current Ratio', 'CURRENT_YEAR': 'Current Year', 'CUSTOM': 'Custom', 'CUSTOMER_ACCEPTANCES': 'Customer Acceptances', 'CUSTOMER_ACCOUNTS': 'Customer Accounts', 'CUSTOMIZE': 'Customize', 'CWL_FOLLOWING_EMPTY': 'You are currently not following any lists', 'CWL_SIGN_IN_TO_VIEW': 'Sign in to view your followed lists', 'DAILY': 'Daily', 'DAILY_GAIN': 'Daily Gain', 'DAILY_PERCENT_GAIN': 'Daily % Gain', 'DAIRY_PRODUCTS': 'Dairy Products', 'DAIRY_PRODUCTS_DESC': 'Dairy Products Stocks', 'DARK': 'Dark', 'DASH': '-', 'DASHBOARD': 'Dashboard', 'DATA_NA': 'Data N/A', 'DATA_PROVIDED_BY': 'Data provided by {dataSource}', 'DATA_STORAGE_DEVICES': 'Data Storage Devices', 'DATA_STORAGE_DEVICES_DESC': 'Data Storage Devices Stocks', 'DATA_UTILITY_PF_TITLE': 'My Portfolio & Markets', 'DATA_UNAVAILABLE': 'Data unavailable', 'DATE': 'Date', 'DATES': 'Dates', 'DATE_FORMAT_ERROR': \"Date format should be 'mm/dd/yyyy'\", 'DATE_PRIOR_THAN_MIN_ERROR': \"Date shouldn't be prior to '{date}'\", 'DATE_RANGE': 'Date Range', 'DATE_RANGE_ERROR': \"'Start' date must be prior to 'End' date.\", 'DATE_REPORTED': 'Date Reported', 'DAYS_RANGE': \"Day's Range\", 'DAY_CHG': 'Day Chg', 'DAY_CHG_PCT': 'Day Chg %', 'DAY_GAIN': 'Day Gain', 'DAY_GAINERS': 'Day Gainers', 'DAY_GAINERS_DESC': 'Stocks ordered in descending order by price percent change with respect to the previous close.', 'DAY_LOSERS': 'Day Losers', 'DAY_LOSERS_DESC': 'Stocks ordered in ascending order by price percent change with respect to the previous close.', 'DC_1YR_TARGET_EST': '1yr Target Est', 'DC_200_DMA': '200-DMA', 'DC_200_DMA_CHG': '200-DMA Chg', 'DC_200_DMA_CHG_P': '200-DMA Chg %', 'DC_50_DMA': '50-DMA', 'DC_50_DMA_CHG': '50-DMA Chg', 'DC_50_DMA_CHG_P': '50-DMA Chg %', 'DC_52_WK_HIGH': '52-Wk High', 'DC_52_WK_HIGH_CHG': '52-Wk High Chg', 'DC_52_WK_HIGH_CHG_P': '52-Wk High Chg %', 'DC_52_WK_LOW': '52-Wk Low', 'DC_52_WK_LOW_CHG': '52-Wk Low Chg', 'DC_52_WK_LOW_CHG_P': '52-Wk Low Chg %', 'DC_52_WK_RANGE': '52-Wk Range', 'DC_ANNUALIZED_GAIN': 'Annualized Gain', 'DC_ANNUALIZED_GAIN_PERCENT': 'Annualized Gain %', 'DC_AVG_VOL_10DAY': 'Avg Vol (10day)', 'DC_AVG_VOL_3M': 'Avg Vol (3m)', 'DC_CHG_P': 'Chg %', 'DC_EX_DIV_DATE': 'Ex-Div Date', 'DC_FORWARD_ANNUAL_DIV_RATE': 'Forward Annual Div Rate', 'DC_FORWARD_ANNUAL_DIV_YIELD': 'Forward Annual Div Yield', 'DC_NO_OF_LOTS': 'No. of Lots', 'DC_PEG_RATIO_5YR_EXPECTED': 'PEG Ratio (5yr expected)', 'DC_POST_MKT_CHG': 'Post-Mkt Chg', 'DC_POST_MKT_CHG_P': 'Post-Mkt Chg %', 'DC_POST_MKT_PRICE': 'Post-Mkt Price', 'DC_POST_MKT_TIME': 'Post-Mkt Time', 'DC_PRE_MKT_CHG': 'Pre-Mkt Chg', 'DC_PRE_MKT_CHG_P': 'Pre-Mkt Chg %', 'DC_PRE_MKT_PRICE': 'Pre-Mkt Price', 'DC_PRE_MKT_TIME': 'Pre-Mkt Time', 'DC_TRAILING_ANNUAL_DIV_RATE': 'Trailing Annual Div Rate', 'DC_TRAILING_ANNUAL_DIV_YIELD': 'Trailing Annual Div Yield', 'DC_TRAILING_P_E': 'Trailing P/E', 'DDA_COSTOF_REVENUE': 'DDA Cost of Revenue', 'DEBT_RATIOS': 'Debt Ratios', 'DEBT_REPAYMENT': 'Debt repayment', 'DECORATION': 'Decoration:', 'DECREASEIN_INTEREST_BEARING_DEPOSITSIN_BANK': 'Decrease in Interest Bearing Depositsin Bank', 'DEFERRED_ASSETS': 'Deferred Assets', 'DEFERRED_INCOME_TAX': 'Deferred Income Tax', 'DEFERRED_INCOME_TAXES': 'Deferred income taxes', 'DEFERRED_LONG_TERM_ASSET_CHARGES': 'Deferred Long Term Asset Charges', 'DEFERRED_LONG_TERM_LIABILITY_CHARGES': 'Deferred Long Term Liability Charges', 'DEFERRED_POLICY_ACQUISITION_COSTS': 'Deferred Policy Acquisition Costs', 'DEFERRED_REVENUES': 'Deferred revenues', 'DEFERRED_TAX': 'Deferred Tax', 'DEFERRED_TAXES_LIABILITIES': 'Deferred taxes liabilities', 'DEFERRED_TAX_ASSETS': 'Deferred Tax Assets', 'DEFINED_PENSION_BENEFIT': 'Defined Pension Benefit', 'DELETE': 'Delete', 'DELETE_LOT': 'Delete Lot', 'DELETE_PORTFOLIO': 'Delete Portfolio', 'DELETE_PORTFOLIO_ERROR': 'Unable to delete portfolio. Please retry.', 'DELETE_PORTFOLIO_TITLE': 'Delete Portfolio?', 'DELETE_SCREENER': 'Delete Screener', 'DELETE_SYMBOLS': 'Delete Symbols', 'DELETE_SYMBOLS_ERROR': 'Unable to delete symbols. Please retry.', 'DELETE_SYMBOLS_TITLE': 'Delete Symbols?', 'DELETE_TRANSACTION': 'Delete transaction', 'DELETE_TRANSACTION_MESSAGE': 'Are you sure you want to remove this {transactionType} transaction for {symbol}?', 'DELETE_TRANSACTION_MESSAGE_CASH': 'Are you sure you want to remove this {transactionType} cash transaction?', 'DELETE_VIEW': 'Delete View', 'DELETE_VIEW_ERROR': 'Unable to delete view. Please retry.', 'DELETE_VIEW_TITLE': 'Delete View?', 'DEPARTMENT_STORES': 'Department Stores', 'DEPARTMENT_STORES_DESC': 'Department Stores Stocks', 'DEPLETION': 'Depletion', 'DEPLETION_DEPLETION_INCOME_STATEMENT': 'Depletion & Depletion Income Statement', 'DEPOSITSBY_BANK': 'Depositsby Bank', 'DEPRECIATION': 'Depreciation', 'DEPRECIATION_AMORTIZATION_DEPLETION': 'Depreciation Amortization Depletion', 'DEPRECIATION_AND_AMORTIZATION': 'Depreciation & amortization', 'DEPRECIATION_DEPRECIATION_INCOME_STATEMENT': 'Depreciation & Depreciation Income Statement', 'DERIVATIVE_ASSETS': 'Derivative Assets', 'DERIVATIVE_PRODUCT_LIABILITIES': 'Derivative Product Liabilities', 'DESCRIPTION': 'Description', 'DESC_ORDER': 'Descending Order', 'DETAILS': 'Details', 'DG_BASIC': 'Basic', 'DG_DETAILS': 'Details', 'DG_ESTIMATES': 'Estimates', 'DG_EXTENDED_HOURS': 'Extended Hours', 'DG_MOVING_AVERAGES': 'Moving Averages', 'DG_PORTFOLIOS': 'Portfolios', 'DIAGNOSTIC_SUBSTANCES': 'Diagnostic Substances', 'DIAGNOSTIC_SUBSTANCES_DESC': 'Diagnostic Substances Stocks', 'DIFF': 'Diff', 'DIFFERENCE': 'Difference', 'DILUTED': 'Diluted', 'DILUTED_ACCOUNTING_CHANGE': 'Diluted Accounting Change', 'DILUTED_AVERAGE_SHARES': 'Diluted Average Shares', 'DILUTED_CONTINUOUS_OPERATIONS': 'Diluted Continuous Operations', 'DILUTED_DISCONTINUOUS_OPERATIONS': 'Diluted Discontinuous Operations', 'DILUTED_EPS': 'Diluted EPS', 'DILUTED_EPS_OTHER_GAINS_LOSSES': 'Diluted EPS Other Gains Losses', 'DILUTED_EXTRAORDINARY': 'Diluted Extraordinary', 'DILUTED_NI_AVAILTO_COM_STOCKHOLDERS': 'Diluted NI Available to Com Stockholders', 'DIRECT': 'Direct', 'DISABLED': 'Disabled', 'DISCONTINUED_OPS': 'Discontinued Operations', 'DISCOUNT_VARIETY_STORES': 'Discount, Variety Stores', 'DISCOUNT_VARIETY_STORES_DESC': 'Discount, Variety Stores Stocks', 'DISCOVER_INVESTMENT_IDEAS': 'Discover Investment Ideas', 'DIVERSIFIED_BUSINESS_TITLE': 'Diversified Business', 'DIVERSIFIED_COMMUNICATION_SERVICES': 'Diversified Communication Services', 'DIVERSIFIED_COMMUNICATION_SERVICES_DESC': 'Diversified Communication Services Stocks', 'DIVERSIFIED_COMPUTER_SYSTEMS': 'Diversified Computer Systems', 'DIVERSIFIED_COMPUTER_SYSTEMS_DESC': 'Diversified Computer Systems Stocks', 'DIVERSIFIED_ELECTRONICS': 'Diversified Electronics', 'DIVERSIFIED_ELECTRONICS_DESC': 'Diversified Electronics Stocks', 'DIVERSIFIED_INVESTMENTS': 'Diversified Investments', 'DIVERSIFIED_INVESTMENTS_DESC': 'Diversified Investments Stocks', 'DIVERSIFIED_MACHINERY': 'Diversified Machinery', 'DIVERSIFIED_MACHINERY_DESC': 'Diversified Machinery Stocks', 'DIVERSIFIED_UTILITIES': 'Diversified Utilities', 'DIVERSIFIED_UTILITIES_DESC': 'Diversified Utilities Stocks', 'DIVIDEND_MANAGEMENT': 'Dividend Management', 'DIVIDEND_PAYOUT': 'Your next dividend payout is scheduled for {date}. Payouts are reflected in your Cash Holdings and will also be added here automatically.', 'DIVIDEND_PAYOUT_LABEL': 'Dividend payout', 'DIVIDEND_PAYOUT_RATIO': 'Dividend Payout Ratio', 'DIVIDENDS': 'Dividends', 'DIVIDENDS_AND_SPLITS': 'Dividends & Splits', 'DIVIDENDS_ONLY': 'Dividends Only', 'DIVIDENDS_PAID': 'Dividends Paid', 'DIVIDENDS_PAID_DIRECT': 'Dividends Paid Direct', 'DIVIDENDS_PAYABLE': 'Dividends Payable', 'DIVIDENDS_RECEIVED_CFI': 'Dividends Received CFI', 'DIVIDENDS_RECEIVED_DIRECT': 'Dividends Received Direct', 'DIVIDEND_AND_YIELD': 'Forward Dividend & Yield', 'DIVIDEND_DATE': 'Dividend Date', 'DIVIDEND_INCOME': 'Dividend Income', 'DIVIDEND_PAID_CFO': 'Dividend Paid CFO', 'DIVIDEND_PER_SHARE': 'Dividend Per Share', 'DIVIDEND_RECEIVED_CFO': 'Dividend Received CFO', 'DOMESTIC_SALES': 'Domestic Sales', 'DONE': 'Done', 'DOODLE': 'Doodle', 'DOWN': 'Down', 'DOWNGRADE': 'Downgrade', 'DOWNLOAD': 'Download', 'DOWNLOAD_APP_NOTE': 'To view complete list, get the Yahoo Finance App', 'DOWN_LAST_30_DAYS': 'Down Last 30 Days', 'DOWN_LAST_7_DAYS': 'Down Last 7 Days', 'DRAW': 'Draw', 'DRUGS_GENERIC': 'Drugs - Generic', 'DRUGS_GENERIC_DESC': 'Drugs - Generic Stocks', 'DRUGS_WHOLESALE': 'Drugs Wholesale', 'DRUGS_WHOLESALE_DESC': 'Drugs Wholesale Stocks', 'DRUG_DELIVERY': 'Drug Delivery', 'DRUG_DELIVERY_DESC': 'Drug Delivery Stocks', 'DRUG_MANUFACTURERS_MAJOR': 'Drug Manufacturers - Major', 'DRUG_MANUFACTURERS_MAJOR_DESC': 'Drug Manufacturers - Major Stocks', 'DRUG_MANUFACTURERS_OTHER': 'Drug Manufacturers - Other', 'DRUG_MANUFACTURERS_OTHER_DESC': 'Drug Manufacturers - Other Stocks', 'DRUG_RELATED_PRODUCTS': 'Drug Related Products', 'DRUG_RELATED_PRODUCTS_DESC': 'Drug Related Products Stocks', 'DRUG_STORES': 'Drug Stores', 'DRUG_STORES_DESC': 'Drug Stores Stocks', 'DUEFROM_RELATED_PARTIES_CURRENT': 'Due from Related Parties Current', 'DUEFROM_RELATED_PARTIES_NON_CURRENT': 'Due from Related Parties Non Current', 'DUETO_RELATED_PARTIES': 'Due to Related Parties', 'DUETO_RELATED_PARTIES_CURRENT': 'Due to Related Parties Current', 'DUETO_RELATED_PARTIES_NON_CURRENT': 'Due to Related Parties Non Current', 'DUE_FROM_RELATED_PARTIES': 'Due from Related Parties', 'DURATION': 'Duration', 'DYNAMIC': 'Dynamic', 'EARNINGS': 'Earnings', 'EARNINGS_BEFORE_INTEREST_TAX': 'Earnings Before Interest and Taxes', 'EARNINGS_CALENDAR': 'Earnings Calendar', 'EARNINGS_CALL': 'Earnings Call', 'EARNINGS_DATE': 'Earnings Date', 'EARNINGS_DOWNLOAD_TITLE': 'Download {earnings} slides', 'EARNINGS_ESTIMATE': 'Earnings Estimate', 'EARNINGS_FROM_EQUITY_INTEREST': 'Earnings from Equity Interest', 'EARNINGS_FROM_EQUITY_INTEREST_NET_OF_TAX': 'Earnings from Equity Interest Net of Tax', 'EARNINGS_HISTORY': 'Earnings History', 'EARNINGS_LOSSES_FROM_EQUITY_INVESTMENTS': 'Earnings Losses from Equity Investments', 'EARNINGS_PER_SHARE': 'Earnings Per Share', 'EARNINGS_REPORT': 'Earnings Report', 'EBIT': 'EBIT', 'EBITDA': 'EBITDA', 'ECONOMIC': 'Economic', 'ECONOMIC_INDICATOR': 'Economic Indicator', 'ECONOMIC_MOAT': 'Economic Moat', 'ECONOMIC_TRENDS': 'Economic Trends', 'EDIT': 'Edit', 'EDITORS_PICK': \"Editor's Pick\", 'EDIT_CASH_SETTINGS': 'Edit Cash Settings', 'EDIT_CURRENCY': 'Edit Currency', 'EDIT_CURRENCY_ERROR': 'Unable to change currency. Please retry.', 'EDIT_EXISTING_CASH_TRANSACTION': 'Edit Cash Transaction', 'EDIT_EXISTING_TRANSACTION': 'Edit transaction - {symbol} ({name})', 'EDIT_PORTOFLIO': 'Edit Portfolio', 'EDIT_SYMBOLS': 'Edit Symbols', 'EDIT_TOTAL_HOLDINGS_SETTINGS': 'Edit Total Holdings Settings', 'EDIT_TRANSACTION': 'Edit transaction', 'EDIT_VIEW': 'Edit View', 'EDUCATION_LOT': 'Share lots are the summary of your key purchasing of stocks on different days.', 'EDUCATION_TRAINING_SERVICES': 'Education & Training Services', 'EDUCATION_TRAINING_SERVICES_DESC': 'Education & Training Services Stocks', 'EDUCATION_TRANSACTION': 'Transactions will record every transaction you do including buy, sell, etc.', 'EFFECT_OF_ACCOUNTING_CHANGES': 'Effect of Accounting Changes', 'EFFECT_OF_EXCHANGE_RATE_CHANGES': 'Effect of Exchange Rate Changes', 'ELECTRIC_UTILITIES': 'Electric Utilities', 'ELECTRIC_UTILITIES_DESC': 'Electric Utilities Stocks', 'ELECTRIC_UTILITY_PLANT': 'Electric Utility Plant', 'ELECTRONICS_STORES': 'Electronics Stores', 'ELECTRONICS_STORES_DESC': 'Electronics Stores Stocks', 'ELECTRONICS_WHOLESALE': 'Electronics Wholesale', 'ELECTRONICS_WHOLESALE_DESC': 'Electronics Wholesale Stocks', 'ELECTRONIC_EQUIPMENT': 'Electronic Equipment', 'ELECTRONIC_EQUIPMENT_DESC': 'Electronic Equipment Stocks', 'ELLIPSE': 'Ellipse', 'EMAIL': 'Email', 'EMPLOYEE_BENEFITS': 'Employee Benefits', 'EMPLOYEES': 'Employees', 'EMPLOYMENT_ENTERPRISING_TITLE': 'Employment and enterprising', 'ENABLED': 'Enabled', 'END_CASH_POSITION': 'End Cash Position', 'END_DATE': 'End Date', 'ENERGIA-PETROLEO-GAS_TITLE': 'Energy & Oil & Gas', 'ENERGIA_TITLE': 'Energy', 'ENERGIE-ET-ENVIRONNEMENT_TITLE': 'Energy & Environment', 'ENERGY_TITLE': 'Energy', 'ENTERPRISE_VALUE': 'Enterprise Value', 'ENTERPRISE_VALUE_TO_EBITDA': 'Enterprise Value/EBITDA', 'ENTERPRISE_VALUE_TO_REVENUE': 'Enterprise Value/Revenue', 'ENTERTAINMENT_DIVERSIFIED': 'Entertainment - Diversified', 'ENTERTAINMENT_DIVERSIFIED_DESC': 'Entertainment - Diversified Stocks', 'ENTER_COMMUNITY_ROOM': 'Enter this livestream room for more', 'ENTER_EMAIL': 'Enter email', 'ENTER_PERSONAL_INFO': 'Enter your personal information', 'ENTER_PORTFOLIO_NAME': 'Enter Portfolio Name', 'ENTER_SYMBOL_COMPANY': 'Enter symbols or company names', 'ENTER_VIEW_NAME': 'Enter View Name', 'ENVIRONMENT': 'Environment Risk Score', 'ENVIRONMENTAL': 'Environmental', 'EPS_ACTUAL': 'EPS Actual', 'EPS_AND_INCOME_STATEMENT': 'EPS and Income Statement', 'EPS_EST': 'EPS Est.', 'EPS_RATIO': 'EPS (TTM)', 'EPS_REVISIONS': 'EPS Revisions', 'EPS_TREND': 'EPS Trend', 'EQUIPMENT': 'Equipment', 'EQUITY_AND_OTHER_INVESTMENTS': 'Equity and other investments', 'EQUITY_HOLDINGS': 'Equity Holdings', 'EQUITY_INVESTMENTS': 'Equity Investments', 'EQUITY_SCREENER': 'Equity Screener', 'EQUITY_SCREENER_DES': 'Find the best stocks according to your criteria with coverage that includes global markets with more than 50 regions', 'ESG_ADULT': 'Adult Entertainment', 'ESG_AGGREGATE_PERF': 'AGGREGATE PERFORMANCE', 'ESG_ALCOHOLIC': 'Alcoholic Beverages', 'ESG_ANIMALTESTING': 'Animal Testing', 'ESG_AUM_DEF': \"The percent of a fund's assets under management that has ESG scores from Sustainalytics.\", 'ESG_AUM_PERCENTAGE': 'based on {percentage}% AUM', 'ESG_AVG_PERF': 'Medium', 'ESG_CATHOLIC': 'Catholic Values', 'ESG_CATHOLIC_DEF': 'Flags a company’s involvement in abortion, contraceptives, or human embryonic stem cell and fetal tissue research.', 'ESG_CAT_PERCENT_RANK': 'Sustainability % rank in category: {rank}', 'ESG_COAL': 'Thermal Coal', 'ESG_CONTROVERSIALWEAPONS': 'Controversial Weapons', 'ESG_CONTROVERSY_DEDUCTION': 'Controversy Deduction', 'ESG_CONTROVERSY_LEVEL': '{level} Controversy level', 'ESG_CONTROVERSY_LEVEL_DEF': 'Sustainalytics’ Controversies Research identifies companies involved in incidents and events that may negatively impact stakeholders, the environment or the company’s operations. Controversies are rated on a scale from one to five with five denoting the most serious controversies with the largest potential impact.', 'ESG_CONTROVERSY_LEVEL_TITLE': 'Controversy Level', 'ESG_DATA_NOT_AVAILABLE': 'Sustainability data is not available', 'ESG_E': 'E', 'ESG_FOCUS': 'Yes, ESG Focus', 'ESG_FOOTER_MSG': \"Sustainalytics' ESG Risk Ratings measure how well a company manages environmental, social, and governance issues.\", 'ESG_FURLEATHER': 'Fur and Specialty Leather', 'ESG_G': 'G', 'ESG_GAMBLING': 'Gambling', 'ESG_GMO': 'GMO', 'ESG_LAG_PERF': 'Negligible', 'ESG_LAST_UPDATED': 'Last updated on {month}/{year}', 'ESG_LEAD_PERF': 'Severe', 'ESG_MILITARYCONTRACT': 'Military Contracting', 'ESG_NUCLEAR': 'Nuclear', 'ESG_OUT_PERF': 'High', 'ESG_PALMOIL': 'Palm Oil', 'ESG_PEER_CATEGORY_AVG': 'Peer avg.', 'ESG_PERFORMANCE_FUNDS': 'ESG Performance for the Fund Portfolio Snapshot', 'ESG_PERFORMANCE_VS_PEER': 'ESG Performance vs {peerCount} Peer Companies', 'ESG_PERF_HISTORICAL': 'Historical ESG Performance', 'ESG_PERF_TITLE': 'ESG PERFORMANCE', 'ESG_PESTICIDES': 'Pesticides', 'ESG_PORT_CONTROVERSY_DEF': 'The Portfolio Controversy Score is the asset-weighted average level of the seriousness of the controversial incidents of companies in the portfolio. A lower score is better than a higher score, as it indicates fewer controversies. Controversies are represented as: Low, Moderate, Significant, High, or Severe, or None, if there is no evidence of controversy.', 'ESG_PORT_ESG_DEF': \"The Portfolio ESG Score is the asset-weighted average of the normalized company ESG Scores for the covered holdings in a portfolio. Higher scores are better than lower scores and, at the portfolio level, indicate that a fund has more of its assets invested in companies that score well under Sustainalytics' ESG methodology, which evaluates company preparedness, disclosure. \", 'ESG_PORT_SCORE': 'Portfolio Sustainability Score', 'ESG_POWERED_BY': 'ESG data provided by Sustainalytics, Inc.', 'ESG_PRODUCT_INVOLVE_DEF': 'Flags a company’s involvement in products, services and business activities commonly used for screening purposes.', 'ESG_RATINGS': 'Environment, Social and Governance (ESG) Risk Ratings', 'ESG_RATINGS_DEF': 'Sustainalytics’ ESG Risk Ratings assess the degree to which a company’s enterprise business value is at risk driven by environmental, social and governance issues. The rating employs a two-dimensional framework that combines an assessment of a company’s exposure to industry-specific material ESG issues with an assessment of how well the company is managing those issues. The final ESG Risk Ratings scores are a measure of unmanaged risk on an absolute scale of 0-100, with a lower score signaling less unmanaged ESG Risk.', 'ESG_REL_CAT': 'Relative to Morningstar Category: {relation}', 'ESG_S': 'S', 'ESG_SCORE': 'ESG Risk Score', 'ESG_SCORES': 'ESG Scores', 'ESG_SCORE_PEERS': 'ESG Risk Score for Peers', 'ESG_SMALLARMS': 'Small Arms', 'ESG_SOCIALLY_RESPONSIBLE_FUND_DEF': 'An indication that the fund discloses in their prospectus that they employ socially responsible or ESG principles in their investment selection processes. These funds make investments based on ethics or values on issues like environmental responsibility, human rights, or religious views. This group also includes funds that may avoid investing in companies that produce or distribute alcohol, tobacco, or weapons.', 'ESG_SUSTAINABILITY_MANDATE': 'Sustainability mandate: {responsible}', 'ESG_SUSTAINABILITY_RATING': 'Sustainability Rating', 'ESG_SUSTAINABILITY_SCORE': 'Sustainability Score', 'ESG_SUSTAINABILITY_SCORE_DEF': 'Morningstar assigns Sustainability Ratings by ranking all scored funds within a Morningstar Category by their Portfolio Sustainability Scores. The ranked funds are then divided into five groups, based on a normal distribution to assign a rating from \"High\" to \"Low\", or 5 globes to 1 globe.', 'ESG_THIS_COMPANY': '( this company )', 'ESG_TOBACCO': 'Tobacco Products', 'ESG_TOTAL_SCORE': 'Total ESG Risk score', 'ESG_UNDER_PERF': 'Low', 'EST': 'Est.', 'ESTIMATE': 'Estimate', 'ESTIMATED_RESULTS': 'Estimated results', 'ETF': 'ETF', 'ETF_SCREENER': 'ETF Screener', 'ETF_SCREENER_DES': 'Search hundreds of ETFs by criteria such as the expense ratio, historical performance, and more', 'ETFS': 'ETFs', 'ETF_LEGAL_TYPE': 'Legal Type', 'EVENTS': 'Events', 'EVENTS_CALENDAR_MSG': 'Events Calendar for:', 'EVENTS_NONE': 'No events found', 'EVENTS_SELECT_A_FEW': 'Select a few events to plot.', 'EVENT_DESCRIPTION': 'Event Description', 'EVENT_FILTERS': 'Event Filters', 'EVENT_LIST': 'Event List', 'EVENT_LIST_BACK': 'Back to events list', 'EVENT_TIME_TYPE_AMC': 'After Market Close', 'EVENT_TIME_TYPE_BMO': 'Before Market Open', 'EVENT_TIME_TYPE_TAS': 'Time As Supplied', 'EVENT_TIME_TYPE_TNS': 'Time Not Supplied', 'EXCESS_TAX_BENEFIT_FROM_STOCK_BASED_COMPENSATION': 'Excess Tax Benefit from Stock Based Compensation', 'EXCISE_TAXES': 'Excise Taxes', 'EXERCISED': 'Exercised', 'EXHIBITS': 'Exhibits', 'EXPAND': 'Expand', 'EXPAND_ALL': 'Expand All', 'EXPAND_SLASH_COLLAPSE_ALL': 'Expand/Collapse All', 'EXPAND_SLASH_COLLAPSE_ALL_SPACE': 'Expand / Collapse All', 'EXPENSE': 'Expense', 'EXPENSE_RATIO': 'Expense Ratio (net)', 'EXPIRED': 'Expired', 'EXPIRE_DATE': 'Expire Date', 'EXPLORATION_DEVELOPMENT_AND_MINERAL_PROPERTY_LEASE_EXPENSES': 'Exploration Development & Mineral Property Lease Expenses', 'EXPLORE': 'Explore', 'EXPLORE_NEW_FINANCIALS': 'Explore detailed look into companies’ financial history', 'EXPORT': 'Export', 'EXPORTS': 'Exports', 'EXPORT_VIEW': 'Export View', 'EXPOSURE': 'Exposure', 'EXTENDED_HOURS': 'Extended hours', 'EXTENSION_PROMO_TITLE': 'Get live quotes and news on new tabs', 'EXTRAORDINARY_ITEMS': 'Extraordinary Items', 'EX_DIVIDEND_DATE': 'Ex-Dividend Date', 'FACEBOOK': 'Facebook', 'FACEBOOK_SHARE': 'Share', 'FAILED_TO_COPY': 'Failed to copy.', 'FAILED_TO_LOAD_SCREENERS_LINE_1': 'We are working on getting your other screeners ready.', 'FAILED_TO_LOAD_SCREENERS_LINE_2': 'You can still create another one.', 'FAILSAFE_CACHE_MESSAGE': 'We are experiencing some temporary issues. The market data on this page is currently delayed. Please bear with us as we address this and restore your personalized lists.', 'FAIR_VALUE': 'Fair Value', 'FARMACEUTICA_TITLE': 'Pharmaceutical', 'FARM_CONSTRUCTION_MACHINERY': 'Farm & Construction Machinery', 'FARM_CONSTRUCTION_MACHINERY_DESC': 'Farm & Construction Machinery Stocks', 'FARM_PRODUCTS': 'Farm Products', 'FARM_PRODUCTS_DESC': 'Farm Products Stocks', 'FEATURECUE_BETA_PORTFOLIO': 'Create a new Beta Portfolio to experience all the new features.', 'FEATURECUE_CHART_SLT': 'Click here to switch to Line, Candle or Bar charts!', 'FEATURECUE_QUOTE_TRADE': 'See all your accounts in one place. Trade quickly and easily with any US broker.', 'FEATURECUE_TICKER_SHARE_LIST': 'NEW: Share lists of your favorite tickers', 'FEATURECUE_TICKER_SHARE_LIST_SHORT': 'NEW: Share ticker lists', 'FEATURECUE_CUSTOMSYMBOL_IN_TOTALGAINS': 'NEW: Custom symbols like $$CASH are now reflected in your day and total gain percentages', 'FEATURECUE_CRYPTOCURRENCIES_NAV': \"NEW: We've added over 9,000 cryptocurrencies\", 'FEDERAL_FUNDS_PURCHASED': 'Federal Funds Purchased', 'FEDERAL_FUNDS_PURCHASED_AND_SECURITIES_SOLD_UNDER_AGREEMENT_TO_REPURCHASE': 'Federal Funds Purchased And Securities Sold Under Agreement To Repurchase', 'FEDERAL_FUNDS_SOLD': 'Federal Funds Sold', 'FEDERAL_FUNDS_SOLD_AND_SECURITIES_PURCHASE_UNDER_AGREEMENTS_TO_RESELL': 'Federal Funds Sold & Securities Purchased Under Agreements to Resell', 'FEDERAL_HOME_LOAN_BANK_STOCK': 'Federal Home Loan Bank Stock', 'FEE': 'Fee', 'FEESAND_COMMISSION_EXPENSE': 'Fees & Commission Expense', 'FEESAND_COMMISSION_INCOME': 'Fees & Commission Income', 'FEES_AND_COMMISSIONS': 'Fees And Commissions', 'FEES_AND_EXPENSES': 'Fees & Expenses', 'FEE_REVENUE_AND_OTHER_INCOME': 'Fee Revenue & Other Income', 'FIBONACCI': 'Fibonacci', 'FIBONACCI_RATIOS': 'Fibonacci Ratios', 'FIBONACCI_TIMEZONE': 'Fibonacci Timezone', 'FIFTY_TWO_WK_RANGE': '52 Week Range', 'FILINGS': 'Filings', 'FILLED_JOBS': 'Filled Jobs', 'FILTERS': 'Filters', 'FILTER_CREATED': 'Created on {date}', 'FILTER_REPORTS': 'Filter reports', 'FILTER_TRADE_IDEAS': 'Filter investment ideas', 'FILTER_UPDATED': 'Updated on {date}', 'FINAL_ROUND_TITLE': 'The Final Round', 'FINANCIAL': 'Financial', 'FINANCIALS': 'Financials', 'FINANCIAL_ASSETS': 'Financial Assets', 'FINANCIAL_ASSETS_DESIGNATEDAS_FAIR_VALUE_THROUGH_PROFITOR_LOSS_TOTAL': 'Financial Assets Designatedas Fair Value Through Profitor Loss Total', 'FINANCIAL_CURRENCY': 'Currency in {currency}. {thousandsMessage}', 'FINANCIAL_DESC': 'Financial Stocks', 'FINANCIAL_HIGHLIGHTS': 'Financial Highlights', 'FINANCIAL_INSTRUMENTS_SOLD_UNDER_AGREEMENTS_TO_REPURCHASE': 'Financial Instruments Sold Under Agreements To Repurchase', 'FINANCIAL_SERVICES': 'Financial Services', 'FINANCIAL_TITLE': 'Financial', 'FINANCING_ACTIVITIES_CASHFLOWS_PROVIDED': 'Financing Activities, Cash Flows Provided By or Used In', 'FINANCING_CASH_FLOW': 'Financing Cash Flow', 'FINANZAS_TITLE': 'Finance & Banking', 'FINANZA_TITLE': 'Finance & Banking', 'FIND_EARNINGS_FOR_SYMBOLS': 'Find earnings for symbols', 'FIND_FILTERS': 'Find filters', 'FIND_RESULTS': 'Find {text}', 'FINISHED_GOODS': 'Finished Goods', 'FISCAL_YEAR': 'Fiscal Year', 'FISCAL_YEAR_ENDS': 'Fiscal Year Ends', 'FIVE_YEAR': '5-Year', 'FIVE_YEAR_AVERAGE_RETURN': '5y Average Return', 'FIVE_YEAR_EXPENSE_PROJECTION': '5 Yr Expense Projection', 'FIVE_YEAR_GROWTH_RATE': 'PE Growth Rate(5Y)', 'FIVE_YR_AVG_RETURN_PCT': '5-Year Average Return', 'FIXED_ASSETS_REVALUATION_RESERVE': 'Fixed Assets Revaluation Reserve', 'FIXED_MATURITY_INVESTMENTS': 'Fixed Maturity Investments', 'FLIGHT_FLEET_VEHICLE_AND_RELATED_EQUIPMENTS': 'Flight Fleet Vehicle & Related Equipments', 'FLOATING': 'Floating', 'FOLLOW': 'Follow', 'FOLLOWER_COUNT': '{count} followers', 'FOLLOWING_TITLE': 'Following', 'FOLLOW_ONBOARDING_TITLE': 'Follow the right companies and find patterns you need.', 'FOLLOW_ONBOARDING_DESC': 'Follow stocks with a click, and we’ll organize them into lists. You can also create and organize watchlists under Following', 'UNFOLLOW': 'Unfollow', 'FOLLOWING_TICKER': 'Now following {ticker}', 'TICKERS_IN_LIST': 'Watchlists with {ticker}:', 'UNFOLLOW_EVERYWHERE': 'Unfollow {ticker} everywhere', 'FOOD_MAJOR_DIVERSIFIED': 'Food - Major Diversified', 'FOOD_MAJOR_DIVERSIFIED_DESC': 'Food - Major Diversified Stocks', 'FOOD_WHOLESALE': 'Food Wholesale', 'FOOD_WHOLESALE_DESC': 'Food Wholesale Stocks', 'FOOTER_COMPANY_TEXT': '{copyright}. All rights reserved.', 'FOOT_NOTES': 'Footnotes', 'FOR': 'for', 'FORECLOSED_ASSETS': 'Foreclosed Assets', 'FOREIGN_CURRENCY_TRANSLATION_ADJUSTMENTS': 'Foreign Currency Translation Adjustments', 'FOREIGN_EXCHANGE_TRADING_GAINS': 'Foreign Exchange Trading Gains', 'FOREIGN_MONEY_CENTER_BANKS': 'Foreign Money Center Banks', 'FOREIGN_MONEY_CENTER_BANKS_DESC': 'Foreign Money Center Banks Stocks', 'FOREIGN_REGIONAL_BANKS': 'Foreign Regional Banks', 'FOREIGN_REGIONAL_BANKS_DESC': 'Foreign Regional Banks Stocks', 'FOREIGN_SALES': 'Foreign Sales', 'FOREIGN_UTILITIES': 'Foreign Utilities', 'FOREIGN_UTILITIES_DESC': 'Foreign Utilities Stocks', 'FORWARD_ANNUAL_DIVIDEND_RATE': 'Forward Annual Dividend Rate', 'FORWARD_ANNUAL_DIVIDEND_YIELD': 'Forward Annual Dividend Yield', 'FORWARD_PE': 'Forward P/E', 'FRANCE': 'France', 'FREE_CASH_FLOW': 'Free Cash Flow', 'FREE_REALTIME': 'Real Time Price', 'FREQUENCY': 'Frequency', 'FROM': 'From', 'FUEL_AND_PURCHASE_POWER': 'Fuel & Purchase Power', 'FULL_CHART_VIEW': 'Full Chart View', 'FULL_FILING_AT_EDGAR_ONLINE': 'Full Filing', 'FULL_SCREEN': 'Full screen', 'FULL_TIME_EMPLOYEES': 'Full Time Employees', 'FUNDAMENTAL': 'Fundamental', 'FUNDAMENTALS': 'Fundamentals', 'FUND_FAMILY': 'Fund Family', 'FUND_INCEPTION_DATE': 'Inception Date', 'FUND_OPERATIONS': 'Fund Operations', 'FUND_OVERVIEW': 'Fund Overview', 'FUND_SUMMARY': 'Fund Summary', 'FUTURE': 'Future', 'FUTURES_SCREENER': 'Futures Screener', 'FUTURES_SCREENER_DES': 'Find the contracts to invest in and includes exchanges, day percent change, and region filters for further customization', 'FUTURES': 'Futures', 'FUTURES_CHAIN': 'Futures Chain', 'FUTURE_POLICY_BENEFITS': 'Future Policy Benefits', 'FYE': 'fye', 'GAINON_SALEOF_INVESTMENT_PROPERTY': 'Gain on Saleof Investment Property', 'GAINON_SALEOF_LOANS': 'Gain on Saleof Loans', 'GAINS_LOSSES_NOT_AFFECTING_RETAINED_EARNINGS': 'Gains Losses Not Affecting Retained Earnings', 'GAIN_LOSSON_SALEOF_ASSETS': 'Gain Losson Saleof Assets', 'GAIN_LOSS_ON_INVESTMENT_SECURITIES': 'Gain Loss On Investment Securities', 'GAIN_LOSS_ON_SALE_OF_BUSINESS': 'Gain Loss On Sale of Business', 'GAIN_LOSS_ON_SALE_OF_PPE': 'Gain Loss On Sale of PPE', 'GAIN_ON_SALE_OF_BUSINESS': 'Gain on Sale of Business', 'GAIN_ON_SALE_OF_PPE': 'Gain on Sale of PPE', 'GAIN_ON_SALE_OF_SECURITY': 'Gain on Sale of Security', 'GAMING_ACTIVITIES': 'Gaming Activities', 'GAMING_ACTIVITIES_DESC': 'Gaming Activities Stocks', 'GAS_UTILITIES': 'Gas Utilities', 'GAS_UTILITIES_DESC': 'Gas Utilities Stocks', 'GATHERING_HOLDINGS': 'Gathering holdings...', 'GDP_REAL': 'Real GDP per Capita', 'GDP_VALUE': 'GDP Value', 'GENERAL': 'Breaking News', 'GENERAL_AND_ADMINISTRATIVE_EXPENSE': 'General & Administrative Expense', 'GENERAL_BUILDING_MATERIALS': 'General Building Materials', 'GENERAL_BUILDING_MATERIALS_DESC': 'General Building Materials Stocks', 'GENERAL_CONTRACTORS': 'General Contractors', 'GENERAL_CONTRACTORS_DESC': 'General Contractors Stocks', 'GENERAL_ENTERTAINMENT': 'General Entertainment', 'GENERAL_ENTERTAINMENT_DESC': 'General Entertainment Stocks', 'GENERAL_PARTNERSHIP_CAPITAL': 'General Partnership Capital', 'GENERATE_LINK': 'Generate Sharable Link', 'GERMANY': 'Germany', 'GET_FINANCE_APP': 'Get the Yahoo Finance app', 'GET_STARTED': 'Get started', 'GIVE_FEEDBACK': 'Give feedback', 'GOLD': 'Gold', 'GOLD_DESC': 'Gold Stocks', 'GOODWILL': 'Goodwill', 'GOODWILL_AND_OTHER_INTANGIBLE_ASSETS': 'Goodwill And Other Intangible Assets', 'GOOD_LIFE_TITLE': 'The Good Life', 'GOTO_SYMBOL': 'Go to Symbol', 'GOTO_TEXT': 'Go to {text}', 'GOTO_TRANSACTION': 'Go to Transaction', 'GOVERNANCE': 'Governance Risk Score', 'GOVERNANCE_QUICKSCORE': '{company}’s ISS Governance QualityScore as of {date} is {score}.', 'GRAY_BACKGROUND_STRIPS': 'Gray background strips', 'GROCERY_STORES': 'Grocery Stores', 'GROCERY_STORES_DESC': 'Grocery Stores Stocks', 'GROSS_ACCOUNTS_RECEIVABLE': 'Gross Accounts Receivable', 'GROSS_LOAN': 'Gross Loan', 'GROSS_PPE': 'Gross PPE', 'GROSS_PREMIUMS_WRITTEN': 'Gross Premiums Written', 'GROSS_PROFIT': 'Gross Profit', 'GROSS_PROPERTY_PLANT_AND_EQUIPMENT': 'Gross property, plant and equipment', 'GROWTH_ESTIMATES': 'Growth Estimates', 'GROWTH_TECHNOLOGY_STOCKS': 'Growth Technology Stocks', 'GROWTH_TECHNOLOGY_STOCKS_DESC': 'Technology stocks with revenue and earnings growth in excess of 25%.', 'HARDWARE_ELECTRONICS_TITLE': 'Computer Hardware & Electronics', 'HAVE_NO_SCREENERS': 'Screeners lets you choose from hundreds of data filters to discover Stocks, Mutual Funds, ETFs and more. {more}', 'HEADS_UP_DISPLAY_HIDE': 'Hide Heads-Up Display', 'HEADS_UP_DISPLAY_SHOW': 'Show Heads-Up Display', 'HELP': 'Help', 'HEALTHCARE': 'Healthcare', 'HEALTHCARE_DESC': 'Healthcare Stocks', 'HEALTHCARE_INFORMATION_SERVICES': 'Healthcare Information Services', 'HEALTHCARE_INFORMATION_SERVICES_DESC': 'Healthcare Information Services Stocks', 'HEALTHCARE_TITLE': 'Healthcare', 'HEALTH_CARE_PLANS': 'Health Care Plans', 'HEALTH_CARE_PLANS_DESC': 'Health Care Plans Stocks', 'HEATMAP_VIEW': 'Heatmap View', 'HEAVY_CONSTRUCTION': 'Heavy Construction', 'HEAVY_CONSTRUCTION_DESC': 'Heavy Construction Stocks', 'HEDGING_ASSETS_CURRENT': 'Hedging Assets Current', 'HELD_TO_MATURITY_SECURITIES': 'Held To Maturity Securities', 'HELP_INFO_ADJ_CLOSE': '**Adjusted close price adjusted for splits and dividend and/or capital gain distributions.', 'HELP_INFO_CLOSE': '*Close price adjusted for splits.', 'HIDE_ALL': 'Hide all', 'HIDE_OUTLIERS': 'Hide outliers', 'HIGH': 'High', 'HIGH-TECH_TITLE': 'Tech', 'HIGH_ESTIMATE': 'High Estimate', 'HIGH_YIELD_BOND': 'High Yield Bond', 'HIGH_YIELD_BOND_DESC': 'High Yield Bond with Performance Rating of 4 & 5, low risk and top-half returns', 'HIRING': 'Hiring', 'HIRING_FOOTER_MSG': 'Greenwich HR aggregates job listings from public and private sources. Job listings signal hiring action 1-3m ahead.', 'HIRING_LEGEND_MSG': '% Change in total hiring', 'HIRING_TRENDS': 'Hiring Trends', 'HISTORICAL_DATA': 'Historical Data', 'HISTORICAL_PERFORMANCE': 'Historical Performance', 'HISTORICAL_PRICE': 'Historical Prices', 'HOLD': 'Hold', 'HOLDER': 'Holder', 'HOLDERS': 'Holders', 'HOLDINGS': 'Holdings', 'HOLLOW_CANDLE': 'Hollow Candle', 'HOME_FURNISHINGS_FIXTURES': 'Home Furnishings & Fixtures', 'HOME_FURNISHINGS_FIXTURES_DESC': 'Home Furnishings & Fixtures Stocks', 'HOME_FURNISHING_STORES': 'Home Furnishing Stores', 'HOME_FURNISHING_STORES_DESC': 'Home Furnishing Stores Stocks', 'HOME_HEALTH_CARE': 'Home Health Care', 'HOME_HEALTH_CARE_DESC': 'Home Health Care Stocks', 'HOME_IMPROVEMENT_STORES': 'Home Improvement Stores', 'HOME_IMPROVEMENT_STORES_DESC': 'Home Improvement Stores Stocks', 'HONG_KONG_STOCKS': 'Hong Kong Stocks', 'HORIZONTAL': 'Horizontal', 'HOSPITALS': 'Hospitals', 'HOSPITALS_DESC': 'Hospitals Stocks', 'HOUSEWARES_ACCESSORIES': 'Housewares & Accessories', 'HOUSEWARES_ACCESSORIES_DESC': 'Housewares & Accessories Stocks', 'IDENTITY_VERIFICATION': 'Identity verification', 'IMMOBILIER-ET-BTP_TITLE': 'Construction and public works', 'IMPAIRMENT_OF_CAPITAL_ASSETS': 'Impairment of Capital Assets', 'IMPLIED_SHARES_OUTSTANDING': 'Implied Shares Outstanding', 'IMPORT': 'Import', 'IMPORT_PF_ERROR': 'There was some error while importing your portfolio. Please Try Again.', 'IMPORT_PORTFOLIO': 'Import Portfolio', 'IMPORT_PORTFOLIO_MSG': 'Import your portfolio via CSV file', 'IMPULSE': 'Impulse:', 'INCLUDE_BETA_PORTFOLIO_VALUES': 'Include Beta portfolio values', 'INCOME': 'Income', 'INCOMEFROM_ASSOCIATESAND_OTHER_PARTICIPATING_INTERESTS': 'Income from Associates & Other Participating Interests', 'INCOME_BEFORE_TAX': 'Income Before Tax', 'INCOME_FROM_CONTINUING_OPS': 'Income from Continuing Operations', 'INCOME_STATEMENT': 'Income Statement', 'INCOME_TAX_EXPENSE': 'Income Tax Expense', 'INCOME_TAX_PAID_SUPPLEMENTAL_DATA': 'Income Tax Paid Supplemental Data', 'INCOME_TAX_PAYABLE': 'Income Tax Payable', 'INCREASEIN_INTEREST_BEARING_DEPOSITSIN_BANK': 'Increase in Interest Bearing Depositsin Bank', 'INCREASE_DECREASE_IN_DEPOSIT': 'Increase Decrease in Deposit', 'INCREASE_DECREASE_IN_NET_UNEARNED_PREMIUM_RESERVES': 'Increase Decrease in Net Unearned Premium Reserves', 'INDEPENDENT_OIL_GAS': 'Independent Oil & Gas', 'INDEPENDENT_OIL_GAS_DESC': 'Independent Oil & Gas Stocks', 'INDEX': 'Index', 'INDEX_SCREENER': 'Index Screener', 'INDEX_SCREENER_DES': 'Find stock market indexes often grouped around a particular sector, industry, or the stock market overall', 'INDEXES': 'Indexes', 'INDEX_COMPONENTS_NO_DATA': 'Components data is not available', 'INDEX_PROFILE': 'Index Profile', 'INDEX_WEIGHT': '% Index Weight', 'INDIA': 'India', 'INDIRECT': 'Indirect', 'INDIVIDUAL_OR_ENTITY': 'Individual or Entity', 'INDUSTRIA-ALIMENTICIA_TITLE': 'Food industry', 'INDUSTRIA-FINANCEIRA_TITLE': 'Financial Industry', 'INDUSTRIA-MANUFACTURERA_TITLE': 'Industrial Manufacturing', 'INDUSTRIA-MANUFATUREIRA_TITLE': 'Manufacturing industry', 'INDUSTRIALS_TITLE': 'Industrials', 'INDUSTRIAL_ELECTRICAL_EQUIPMENT': 'Industrial Electrical Equipment', 'INDUSTRIAL_ELECTRICAL_EQUIPMENT_DESC': 'Industrial Electrical Equipment Stocks', 'INDUSTRIAL_EQUIPMENT_COMPONENTS': 'Industrial Equipment & Components', 'INDUSTRIAL_EQUIPMENT_COMPONENTS_DESC': 'Industrial Equipment & Components Stocks', 'INDUSTRIAL_EQUIPMENT_WHOLESALE': 'Industrial Equipment Wholesale', 'INDUSTRIAL_EQUIPMENT_WHOLESALE_DESC': 'Industrial Equipment Wholesale Stocks', 'INDUSTRIAL_GOODS': 'Industrial Goods', 'INDUSTRIAL_GOODS_DESC': 'Industrial Goods Stocks', 'INDUSTRIAL_METALS_MINERALS': 'Industrial Metals & Minerals', 'INDUSTRIAL_METALS_MINERALS_DESC': 'Industrial Metals & Minerals Stocks', 'INDUSTRIAS-EM-GERAL_TITLE': 'Industries in general', 'INDUSTRIA_TITLE': 'Industrials', 'INDUSTRIE-LOURDE_TITLE': 'Industrials', 'INDUSTRY': 'Industry', 'INDUSTRY_CATEGORY': 'Industry / Category', 'INFORMATION_DELIVERY_SERVICES': 'Information & Delivery Services', 'INFORMATION_DELIVERY_SERVICES_DESC': 'Information & Delivery Services Stocks', 'INFORMATION_TECHNOLOGY_SERVICES': 'Information Technology Services', 'INFORMATION_TECHNOLOGY_SERVICES_DESC': 'Information Technology Services Stocks', 'INITIATE_FUND_TRANSFER': 'Initiate fund transfer', 'INITIATED': 'Initiated', 'INNOVATION': 'Innovation', 'INNOVATION_OUTLOOK': 'Innovation Outlook', 'INSIDER': 'Insider', 'INSIDER_OWNERSHIP': 'Insider Ownership', 'INSIDER_PURCHASES_LAST_SIX_MONTHS': 'Insider Purchases Last 6 Months', 'INSIDER_ROSTER': 'Insider Roster', 'INSIDER_SENTIMENT': 'Insider Sentiment', 'INSIDER_TRANSACTIONS': 'Insider Transactions', 'INSIGHTS': 'Insights', 'INSTITUTIONAL_OWNERSHIP': 'Institutional Ownership', 'INSTITUTIONAL_INTEREST': 'Institutional Interest', 'INSTITUTIONAL_HOLDINGS': 'Institutional Holdings', 'INSURANCE_AND_CLAIMS': 'Insurance & Claims', 'INSURANCE_BROKERS': 'Insurance Brokers', 'INSURANCE_BROKERS_DESC': 'Insurance Brokers Stocks', 'INTANGIBLE_ASSETS': 'Intangible Assets', 'INTERESTAND_COMMISSION_PAID': 'Interestand Commission Paid', 'INTEREST_BEARING_DEPOSITS_ASSETS': 'Interest Bearing Deposits Assets', 'INTEREST_BEARING_DEPOSITS_LIABILITIES': 'Interest Bearing Deposits Liabilities', 'INTEREST_CREDITED_ON_POLICYHOLDER_DEPOSITS': 'Interest Credited On Policyholder Deposits', 'INTEREST_EXPENSE': 'Interest Expense', 'INTEREST_EXPENSE_FOR_DEPOSIT': 'Interest Expense for Deposit', 'INTEREST_EXPENSE_FOR_FEDERAL_FUNDS_SOLD_AND_SECURITIES_PURCHASE_UNDER_AGREEMENTS_TO_RESELL': 'Interest Expense for Federal Funds Sold And Securities Purchase Under Agreements To Resell', 'INTEREST_EXPENSE_FOR_LONG_TERM_DEBT_AND_CAPITAL_SECURITIES': 'Interest Expense for Long Term Debt And Capital Securities', 'INTEREST_EXPENSE_FOR_SHORT_TERM_DEBT': 'Interest Expense for Short Term Debt', 'INTEREST_EXPENSE_NON_OPERATING': 'Interest Expense Non Operating', 'INTEREST_INCOME': 'Interest Income', 'INTEREST_INCOME_FROM_DEPOSITS': 'Interest Income from Deposits', 'INTEREST_INCOME_FROM_FEDERAL_FUNDS_SOLD_AND_SECURITIES_PURCHASE_UNDER_AGREEMENTS_TO_RESELL': 'Interest Income from Federal Funds Sold And Securities Purchase Under Agreements To Resell', 'INTEREST_INCOME_FROM_LEASES': 'Interest Income from Leases', 'INTEREST_INCOME_FROM_LOANS': 'Interest Income from Loans', 'INTEREST_INCOME_FROM_LOANS_AND_LEASE': 'Interest Income from Loans And Lease', 'INTEREST_INCOME_FROM_SECURITIES': 'Interest Income from Securities', 'INTEREST_INCOME_NON_OPERATING': 'Interest Income Non Operating', 'INTEREST_PAID_CFF': 'Interest Paid CFF', 'INTEREST_PAID_CFO': 'Interest Paid CFO', 'INTEREST_PAID_DIRECT': 'Interest Paid Direct', 'INTEREST_PAID_SUPPLEMENTAL_DATA': 'Interest Paid Supplemental Data', 'INTEREST_PAYABLE': 'Interest Payable', 'INTEREST_RECEIVED_CFI': 'Interest Received CFI', 'INTEREST_RECEIVED_CFO': 'Interest Received CFO', 'INTEREST_RECEIVED_DIRECT': 'Interest Received Direct', 'INTERIM_REVENUE': 'Interim Revenue', 'INTERNET_INFORMATION_PROVIDERS': 'Internet Information Providers', 'INTERNET_INFORMATION_PROVIDERS_DESC': 'Internet Information Providers Stocks', 'INTERNET_SERVICE_PROVIDERS': 'Internet Service Providers', 'INTERNET_SERVICE_PROVIDERS_DESC': 'Internet Service Providers Stocks', 'INTERNET_SOFTWARE_SERVICES': 'Internet Software & Services', 'INTERNET_SOFTWARE_SERVICES_DESC': 'Internet Software & Services Stocks', 'INTERNET_TITLE': 'Internet', 'INTERVAL': 'Interval', 'INVALID_INPUT': 'Invalid Input', 'INVENTORIES_ADJUSTMENTS_ALLOWANCES': 'Inventories Adjustments Allowances', 'INVENTORY': 'Inventory', 'INVERT': 'Invert', 'INVESTED_CAPITAL': 'Invested Capital', 'INVESTING_ACTIVITIES_CASHFLOWS_PROVIDED': 'Investing Activities, Cash Flows Provided By or Used In', 'INVESTING_CASH_FLOW': 'Investing Cash Flow', 'INVESTMENTIN_FINANCIAL_ASSETS': 'Investment in Financial Assets', 'INVESTMENTS': 'Investments', 'INVESTMENTSIN_ASSOCIATESAT_COST': 'Investments in Associatesat Cost', 'INVESTMENTSIN_JOINT_VENTURESAT_COST': 'Investments in Joint Venturesat Cost', 'INVESTMENTSIN_SUBSIDIARIESAT_COST': 'Investments in Subsidiariesat Cost', 'INVESTMENTS_AND_ADVANCES': 'Investments And Advances', 'INVESTMENTS_IN_OTHER_VENTURES_UNDER_EQUITY_METHOD': 'Investments in Other Ventures Under Equity Method', 'INVESTMENTS_PROPERTY_PLANT': 'Investments in property, plant and equipment', 'INVESTMENT_BANKING_PROFIT': 'Investment Banking Profit', 'INVESTMENT_BROKERAGE_NATIONAL': 'Investment Brokerage - National', 'INVESTMENT_BROKERAGE_NATIONAL_DESC': 'Investment Brokerage - National Stocks', 'INVESTMENT_BROKERAGE_REGIONAL': 'Investment Brokerage - Regional', 'INVESTMENT_BROKERAGE_REGIONAL_DESC': 'Investment Brokerage - Regional Stocks', 'INVESTMENT_INFORMATION': 'Investment Information', 'INVESTMENT_PROPERTIES': 'Investment Properties', 'INVOLVEMENT': 'Significant Involvement', 'IN_WATCHLIST': 'In watchlist', 'ISS': 'Institutional Shareholder Services (ISS)', 'ISSUANCE_OF_CAPITAL_STOCK': 'Issuance of Capital Stock', 'ISSUANCE_OF_DEBT': 'Issuance of Debt', 'ITALIA': 'Italia', 'JEWELRY_STORES': 'Jewelry Stores', 'JEWELRY_STORES_DESC': 'Jewelry Stores Stocks', 'JOIN_BETA': 'Join BETA', 'KEY_EXECUTIVES': 'Key Executives', 'KEY_STATISTICS': 'Key Statistics', 'KEY_STATS_DIVIDEND_AND_YIELD': '{0} ({1})', 'KEY_TECHNICALS': 'Key Technicals', 'KS_HELP_FYE_DETAIL': 'Fiscal Year Ending', 'KS_HELP_GUIDE': 'Abbreviation Guide:', 'KS_HELP_LFY_DETAIL': 'Last Fiscal Year', 'KS_HELP_LINK': 'See {link} for definitions of terms used.', 'KS_HELP_MRQ_DETAIL': 'Most Recent Quarter', 'KS_HELP_SUP_1': 'Data provided by Refinitiv.', 'KS_HELP_SUP_2': 'Data provided by EDGAR Online.', 'KS_HELP_SUP_3': 'Data derived from multiple sources or calculated by Yahoo Finance.', 'KS_HELP_SUP_4': 'Data provided by Morningstar, Inc.', 'KS_HELP_SUP_5': 'Shares outstanding is taken from the most recently filed quarterly or annual report and Market Cap is calculated using shares outstanding.', 'KS_HELP_SUP_6': 'Implied Shares Outstanding of common equity, assuming the conversion of all convertible subsidiary equity into common.', 'KS_HELP_SUP_7': 'EBITDA is calculated by S&P Global Market Intelligence using methodology that may differ from that used by a company in its reporting.', 'KS_HELP_SUP_8': \"A company's float is a measure of the number of shares available for trading by the public. It's calculated by taking the number of issued and outstanding shares minus any restricted stock, which may not be publicly traded.\", 'KS_HELP_TTM_DETAIL': 'Trailing Twelve Months', 'KS_HELP_YOY_DETAIL': 'Year Over Year', 'LAND_AND_IMPROVEMENTS': 'Land And Improvements', 'LANGUAGE': 'Language', 'LAST_BEAR_MKT': 'Last Bear Market', 'LAST_BULL_MKT': 'Last Bull Market', 'LAST_CAP_GAIN': 'Last Cap Gain', 'LAST_DIVIDEND': 'Last Dividend', 'LAST_PRICE': 'Last Price', 'LAST_SPLIT_DATE': 'Last Split Date', 'LAST_SPLIT_FACTOR': 'Last Split Factor', 'LATEST': 'Latest', 'LATEST_ANALYST_UPGRADED_STOCKS': 'Latest Analyst Upgraded Stocks', 'LATEST_SYMBOL_NEWS': 'Latest {symbol} news', 'LEAD_MANAGER_SINCE': 'Lead Manager since {date}', 'LEARN_MORE': 'Learn more', 'LEARN_MORE_STREAM': 'Learn More about Yahoo Finance Livestreaming', 'LEASES': 'Leases', 'LEGAL_TYPE': 'Legal Type', 'LEISURE_INDUSTRIES_TITLE': 'Leisure Industries', 'LEISURE_TITLE': 'Leisure Industries', 'LEVERED_FREE_CASH_FLOW': 'Levered Free Cash Flow', 'LFY': 'lfy', 'LIABILITIES': 'Liabilities', 'LIABILITIES_AND_STOCKHOLDERS_EQUITY': \"Liabilities and stockholders' equity\", 'LIABILITIES_HELDFOR_SALE_NON_CURRENT': 'Liabilities Held for Sale Non Current', 'LIABILITIES_OF_DISCONTINUED_OPERATIONS': 'Liabilities of Discontinued Operations', 'LIFESTYLE_TITLE': 'Health & Lifestyle', 'LIFE_INSURANCE': 'Life Insurance', 'LIFE_INSURANCE_DESC': 'Life Insurance Stocks', 'LIFE_MONEY_TITLE': 'Life and money', 'LIGHT': 'Light', 'LIMITED_PARTNERSHIP_CAPITAL': 'Limited Partnership Capital', 'LIMITS': 'Limits', 'LINE': 'Line', 'LINEAR': 'Linear', 'LINE_AVERAGE': 'Average Line', 'LINE_CROSS': 'Cross Line', 'LINE_OF_CREDIT': 'Line of Credit', 'LINE_QUADRANT': 'Quadrant Line', 'LINE_SIZE': 'Line Size', 'LINE_TREND': 'Trend Line', 'LINKED_ACCOUNT': 'Linked account', 'LINKED_ACCOUNTS': 'Linked Accounts', 'LINKED_ACCOUNT_LAST_UPDATED_TIME': 'Linked account data was last updated {date}', 'LINK_BROKER': 'Link Broker', 'LINK_BROKERS_TO_TRACK_PF': 'Link brokers to track portfolios', 'CONNECT_BROKERS_TO_TRACK_PF': 'Connect brokerage account', 'LINK_YOUR_BROKER': 'Link your real broker and trade', 'LINK_LIVESTREAM_TITLE': 'Please link your signal to start livestream', 'LINK_LIVESTREAM_TEXT': 'In your livestream tool, please input the URL as well as the livestream key below to connect your livestream signal. After everything’s ready, you may start your livestream.', 'LIQUIDITY_RATIOS': 'Liquidity Ratios', 'LISTS': 'Lists', 'LIVE': 'Live!', 'LIVESTREAM_IDEAS': 'Livestream your financial ideas', 'LIVESTREAM_KEY': 'Live Stream Key', 'LIVESTREAM_UPSELL_SUBTEXT': 'Learn about Yahoo Fiannce Livestream now, start livestrreaming. Certain limitations apply.', 'LIVESTREAM_STUDIO_ENTER': 'Enter Livestream Studio', 'LIVESTREAM_STUDIO_TITLE': 'Livestream Studio', 'LIVESTREAM_TAGS': 'Livestream Tags', 'LIVESTREAM_TICKERS': 'Related Tickers', 'LIVESTREAM_TITLE': 'Livestream Title', 'LIVE_NOW': 'LIVE NOW', 'LIVE_STATUS': 'LIVE', 'LIVE_VIDEO': 'Live Video', 'LOADING_FULL_CHART': 'Loading interactive chart...', 'LOADING_MORE_DATA': 'Loading more data...', 'LOAD_ADJUSTED_RETURNS': 'Load Adjusted Returns', 'LOANS_HELD_FOR_SALE': 'Loans Held for Sale', 'LOANS_RECEIVABLE': 'Loans Receivable', 'LODGING': 'Lodging', 'LODGING_DESC': 'Lodging Stocks', 'LOGARITHMIC': 'Logarithmic', 'LOGIN': 'Login', 'LONGTERM_CARE_FACILITIES': 'Long-Term Care Facilities', 'LONGTERM_CARE_FACILITIES_DESC': 'Long-Term Care Facilities Stocks', 'LONG_DISTANCE_CARRIERS': 'Long Distance Carriers', 'LONG_DISTANCE_CARRIERS_DESC': 'Long Distance Carriers Stocks', 'LONG_TERM_CAPITAL_LEASE_OBLIGATION': 'Long Term Capital Lease Obligation', 'LONG_TERM_DEBT': 'Long Term Debt', 'LONG_TERM_DEBT_AND_CAPITAL_LEASE_OBLIGATION': 'Long Term Debt And Capital Lease Obligation', 'LONG_TERM_DEBT_ISSUANCE': 'Long Term Debt Issuance', 'LONG_TERM_DEBT_PAYMENTS': 'Long Term Debt Payments', 'LONG_TERM_EQUITY_INVESTMENT': 'Long Term Equity Investment', 'LONG_TERM_INVESTMENTS': 'Long Term Investments', 'LONG_TERM_PROVISIONS': 'Long Term Provisions', 'LOOKUP_FOOTER_TIP': 'Tip: Use comma to separate multiple quotes and then press enter', 'LOOKUP_NO_RSULT': \"No results for '{searchPhrase}'\", 'LOOKUP_OPTION': 'Option Lookup', 'LOOKUP_TAB_all': 'All ({count})', 'LOOKUP_TAB_currency': 'Currencies ({count})', 'LOOKUP_TAB_equity': 'Stocks ({count})', 'LOOKUP_TAB_etf': 'ETFs ({count})', 'LOOKUP_TAB_future': 'Futures ({count})', 'LOOKUP_TAB_index': 'Indices ({count})', 'LOOKUP_TAB_mutualfund': 'Mutual Funds ({count})', 'LOSSON_EXTINGUISHMENTOF_DEBT': 'Loss on Extinguishment of Debt', 'LOSS_ADJUSTMENT_EXPENSE': 'Loss Adjustment Expense', 'LOW': 'Low', 'LOW_ESTIMATE': 'Low Estimate', 'LUMBER_WOOD_PRODUCTION': 'Lumber, Wood Production', 'LUMBER_WOOD_PRODUCTION_DESC': 'Lumber, Wood Production Stocks', 'MACHINERY_FURNITURE_EQUIPMENT': 'Machinery Furniture Equipment', 'MACHINE_TOOLS_ACCESSORIES': 'Machine Tools & Accessories', 'MACHINE_TOOLS_ACCESSORIES_DESC': 'Machine Tools & Accessories Stocks', 'MAINTAINS': 'Maintains', 'MAINTENANCE_AND_REPAIRS': 'Maintenance & Repairs', 'MAJOR_AIRLINES': 'Major Airlines', 'MAJOR_AIRLINES_DESC': 'Major Airlines Stocks', 'MAJOR_INTEGRATED_OIL_GAS': 'Major Integrated Oil & Gas', 'MAJOR_INTEGRATED_OIL_GAS_DESC': 'Major Integrated Oil & Gas Stocks', 'MANAGEMENT_EFFECTIVENESS': 'Management Effectiveness', 'MANAGEMENT_INFORMATION': 'Management Information', 'MANAGEMENT_SERVICES': 'Management Services', 'MANAGEMENT_SERVICES_DESC': 'Management Services Stocks', 'MANAGE_SETTINGS': 'Manage Settings', 'MANAGE_SUBSCRIPTION': 'Manage Subscription', 'MANUFACTURED_HOUSING': 'Manufactured Housing', 'MANUFACTURED_HOUSING_DESC': 'Manufactured Housing Stocks', 'MANUFACTURING_MATERIALS_TITLE': 'Manufacturing & Materials', 'MANUF_EMPLOYMENT': 'Manufacturing \\nEmployment', 'MARKETING_SERVICES': 'Marketing Services', 'MARKETING_SERVICES_DESC': 'Marketing Services Stocks', 'MARKETS_CLOSED': 'Market closed.', 'MARKETS_OPEN': 'Market open.', 'MARKETS_TITLE': 'Markets', 'MARKET_BLOGS_TITLE': 'Market Blogs', 'MARKET_CAP': 'Market Cap', 'MARKET_CAP_INTRADAY': 'Market Cap (intraday)', 'MARKET_DIGEST': 'Market digest', 'MARKET_MOVERS_TITLE': 'Market Movers', 'MARKET_REVIEW': 'Market Review', 'MARKET_SUMMARY': 'Market Summary', 'MARKET_TIME_NOTICE_CLOSED': 'As of {date} {time}. {marketState}', 'MARKET_TIME_NOTICE_CLOSED_SHORT': 'At close: {date} {time}', 'MARKET_TIME_NOTICE_OPEN': 'As of {date} {time}. {exchange} {marketSource}. {marketState}', 'MARKET_TIME_RELATED_COMPANIES': 'As of {time}', 'MARKET_TITLE': 'Market', 'MARKET_VALUE': 'Market Value', 'MATCHES': 'Matches', 'MATCHING_STOCKS': 'Matching stocks', 'MATCH_RESULTS': '{start}-{end} of {total} results', 'MATCH_RESULTS_INDUSTRY': '{total} results', 'MATERIALES-BASICOS_TITLE': 'Basic materials', 'MATERIALS_AND_SUPPLIES': 'Materials & Supplies', 'MATIERES-PREMIERES_TITLE': 'Raw materials', 'MATURITY': 'Maturity', 'MAX': 'Max', 'MAX_12B1_FEE': 'Max 12b1 Fee', 'MAX_DEFERRED_SALES_LOAD': 'Max Deferred Sales Load', 'MAX_FRONT_END_SALES_LOAD': 'Max Front End Sales Load', 'MAX_SUPPLY': 'Max Supply', 'MEAN_ANNUAL_RETURN': 'Mean Annual Return', 'MEAT_PRODUCTS': 'Meat Products', 'MEAT_PRODUCTS_DESC': 'Meat Products Stocks', 'MEDIAN': 'Median', 'MEDIAN_MARKET_CAP': 'Median Market Cap', 'MEDICAL_APPLIANCES_EQUIPMENT': 'Medical Appliances & Equipment', 'MEDICAL_APPLIANCES_EQUIPMENT_DESC': 'Medical Appliances & Equipment Stocks', 'MEDICAL_EQUIPMENT_WHOLESALE': 'Medical Equipment Wholesale', 'MEDICAL_EQUIPMENT_WHOLESALE_DESC': 'Medical Equipment Wholesale Stocks', 'MEDICAL_INSTRUMENTS_SUPPLIES': 'Medical Instruments & Supplies', 'MEDICAL_INSTRUMENTS_SUPPLIES_DESC': 'Medical Instruments & Supplies Stocks', 'MEDICAL_LABORATORIES_RESEARCH': 'Medical Laboratories & Research', 'MEDICAL_LABORATORIES_RESEARCH_DESC': 'Medical Laboratories & Research Stocks', 'MEDICAL_PRACTITIONERS': 'Medical Practitioners', 'MEDICAL_PRACTITIONERS_DESC': 'Medical Practitioners Stocks', 'MET': 'Met', 'METAL_FABRICATION': 'Metal Fabrication', 'METAL_FABRICATION_DESC': 'Metal Fabrication Stocks', 'META_DESCRIPTION': 'At Yahoo Finance, you get free stock quotes, up-to-date news, portfolio management resources, international market data, social interaction and mortgage rates that help you manage your financial life.', 'META_DESCRIPTION_CURRENCY_CONVERTER': 'Get fast and easy calculator for converting one currency to another using the latest live exchange rates. Also, get the latest news that could affect currency exchange rates.', 'META_DESCRIPTION_INDUSTRY': 'Search quotes and news for all sectors, industries and sub-industries.', 'META_DESCRIPTION_LOOKUP': 'Search for ticker symbols for Stocks, Mutual Funds, ETFs, Indices and Futures on Yahoo! Finance.', 'META_DESCRIPTION_MINIHOME_NEWS': 'Today’s business and financial news, plus the latest updates that may affect your money, investments, savings, and financial health', 'META_DESC_CALENDAR_ALL': 'Find earnings, economic, stock splits and IPO calendars to track upcoming financial events from Yahoo Finance.', 'META_DESC_CALENDAR_EARNINGS': 'Learn when companies announce their quarterly and annual earnings, along with the latest EPS estimates and conference call times from Yahoo Finance.', 'META_DESC_CALENDAR_EARNINGS_SYMBOL': 'Learn when {symbol} announce their quarterly, annual earnings. See the latest EPS estimates. Listen to the conference call and remind yourself by adding it to your calendar.', 'META_DESC_CALENDAR_ECONOMIC': 'Track economic announcements with forecast and actuals to help your trading and investment decisions.', 'META_DESC_CALENDAR_IPO': 'Learn which companies are planning to go public soon, and when they are scheduling their IPOs.', 'META_DESC_CALENDAR_SPLITS': 'Learn which company shares are splitting and when in this stocks splits calendar from Yahoo Finance.', 'META_DESC_CRYPTO_ABOUT': \"Get started with trading and investing in crypto with these helpful FAQ's and how to sign up for an account.\", 'META_DESC_CRYPTO_ACCOUNT': 'Manage your crypto trading account with notification settings, account statements, option to deactivate account.', 'META_DESC_CRYPTO_DEACTIVATE': 'Deactivate your crypto trading account.', 'META_DESC_CRYPTO_DEPOSIT': 'Deposit fund to your crypto trading account.', 'META_DESC_CRYPTO_HELP': \"Help page for crypto trading, including TOS, FAQ's and customer service contact info.\", 'META_DESC_CRYPTO_KYC': 'Find forms requesting crypto trading user info and/or identity verifcation documents.', 'META_DESC_CRYPTO_LINKED_ACCOUNTS': 'Link your ACH accounts, with option to deposit/withdraw and refresh/link/unlink accounts.', 'META_DESC_CRYPTO_TRADING': 'Buy, sell, trade and store crypto the safe and easy way. Customer service will always be there to help.', 'META_DESC_CRYPTO_WITHDRAW': 'Withdraw fund from your crypto trading account.', 'META_DESC_CRYPTOCURRENCY_LANDING': 'Find a list of top cryptocurrencies and their prices in real time, including percentage change, charts, history, volume and more.', 'META_DESC_EARNINGS': 'Yahoo {quarter} {year} Earnings', 'META_DESC_HUB': 'Find the latest tax news, tips, dates and info that you need to file taxes in 2023. ', 'META_DESC_INDUS': '{listId} Services - Industry Center - Financial data, performance information for the {listId} Services.', 'META_DESC_LIST_BONDS': 'Bonds Center - Learn the basics of bond investing, get current quotes, news, commentary and more.', 'META_DESC_LIST_COMMODITIES': 'See the list of commodity futures with price and percentage change for the day, trading volume, open interest, and day chart', 'META_DESC_LIST_CURRENCIES': 'See the complete list of latest currency exchange rates with price and percentage changes, 52 week range and day charts.', 'META_DESC_LIST_ETFS': \"Learn about Exchange-Traded Funds, read ETF news, and see which ETFs are performing the best with Yahoo Finance's ETF Center.\", 'META_DESC_LIST_GAINERS': 'View performance of stock gainers on Yahoo Finance', 'META_DESC_LIST_LOSERS': 'View performance of stock losers on Yahoo Finance', 'META_DESC_LIST_MOST_ACTIVE': 'View performance of most active stocks on Yahoo Finance', 'META_DESC_LIST_MUTUALFUNDS': 'Mutual Funds Center - Get investing strategies, data, and mutual fund news in the Yahoo Finance Mutual Fund Center. The Fund Screener surfaces low-cost and top-performing funds for each asset category and provides detailed fund profiles, fund charts, and news on fund manage', 'META_DESC_LIST_OPTIONS': 'Options Tools, Education and News on Yahoo Finance', 'META_DESC_LIST_TRENDING_TICKERS': 'See the list of trending stocks today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_LIST_WORLD_INDICES': 'See the complete list of world stock indexes with points and percentage change, volume, intraday highs and lows, 52 week range, and day charts.', 'META_DESC_MULTIQUOTE': 'View and compare {quotes} on Yahoo Finance.', 'META_DESC_MULTIQUOTE_EMPTY': 'View and compare quotes on Yahoo Finance.', 'META_DESC_PERSONAL_FINANCE': 'Read latest personal finance articles about loans, saving & spending, lifestyle, insurance, taxes, career & education, retirement, and real estate. Try our calculators for setting your savings goals for a car, down payment for a home, education and other needs as well as mortgage calculator to determine monthly payments for a home. Search glossary to better understand financial terms and their meanings.', 'META_DESC_PORTFOLIO': 'Track your personal stock portfolios and watch lists, and automatically determine your day gain and total gain at Yahoo Finance', 'META_DESC_QUOTE': 'Find the latest {shortName} ({symbol}) stock quote, history, news and other vital information to help you with your stock trading and investing.', 'META_DESC_QUOTE_ANALYSIS': 'See {shortName} ({symbol}) stock analyst estimates, including earnings and revenue, EPS, upgrades and downgrades.', 'META_DESC_QUOTE_BALANCE-SHEET': \"Get the annual and quarterly balance sheet of {shortName} ({symbol}) including details of assets, liabilities and shareholders' equity.\", 'META_DESC_QUOTE_CASH-FLOW': 'Understand the cash flow statement for {shortName} ({symbol}), learn where the money comes from and how the company spends it.', 'META_DESC_QUOTE_CHART': 'Interactive Chart for {shortName} ({symbol}), analyze all the data with a huge range of indicators.', 'META_DESC_QUOTE_COMMUNITY': \"Find the latest {shortName} ({symbol}) stock discussion in Yahoo Finance's forum. Share your opinion and gain insight from other stock traders and investors.\", 'META_DESC_QUOTE_COMPANY360': 'Get {shortName} ({symbol}) exclusive data and insights at your fingertips with intuitive visualizations.', 'META_DESC_QUOTE_COMPANY_INSIGHTS': 'Find essential company insights and stock analysis for {companyName} ({symbol}), including the Yahoo Finance company insight score, to help you with your stock trading and investing', 'META_DESC_QUOTE_COMPONENTS': 'View the basic {symbol} stock chart on Yahoo Finance and learn which stocks are present under {shortName} ({symbol}).', 'META_DESC_QUOTE_CORPORATE_EVENTS': 'Find earnings dates, report releases and other corporate events for {companyName} ({symbol}) to help you with your stock trading and investing', 'META_DESC_QUOTE_CRYPTOCURRENCY': 'Find the latest {shortName} ({symbol}) price quote, history, news and other vital information to help you with your cryptocurrency trading and investing.', 'META_DESC_QUOTE_CRYPTOCURRENCY_CHART': 'Interactive Chart for {shortName} ({symbol}), analyze all the data with a huge range of indicators.', 'META_DESC_QUOTE_CRYPTOCURRENCY_COMMUNITY': \"Find the latest {shortName} ({symbol}) cryptocurrency discussion in Yahoo Finance's forum. Share your opinions and get diverse opinions from other crypto traders and investors.\", 'META_DESC_QUOTE_CRYPTOCURRENCY_HISTORY': 'Discover historical prices of {shortName} ({symbol}) on Yahoo Finance. View daily, weekly or monthly formats.', 'META_DESC_QUOTE_CRYPTOCURRENCY_PROFILE': 'Find key facts about {shortName} ({symbol}) to help you with your cryptocurrency trading and investing.', 'META_DESC_QUOTE_CURRENCY': 'Find the latest {shortName} ({symbol}) currency exchange rate, plus historical data, charts, relevant news and more', 'META_DESC_QUOTE_CURRENCY_COMMUNITY': \"Find the latest {shortName} ({symbol}) forex discussions in Yahoo Finance's forum. Share your opinion and gain insight from other traders and investors.\", 'META_DESC_QUOTE_FAIR_VALUE': \"See the fair value of {companyName} ({symbol}) stock to learn if it is overvalued or undervalued with it's current price, and see the outlook for the stock.\", 'META_DESC_QUOTE_FINANCIALS': 'Get the detailed quarterly/annual income statement for {shortName} ({symbol}). Find out the revenue, expenses and profit or loss over the last fiscal year.', 'META_DESC_QUOTE_FUTURES': \"Yahoo Finance is a leading financial destination, providing consumers with a broad range of comprehensive online financial services and information essential to managing one's financial life. By providing access to up-to-date, international market data, real-time stock quotes, portfolio management resources, and community tools such as message boards and clubs, Yahoo Finance empowers consumers to make well-informed investment decisions.\", 'META_DESC_QUOTE_HISTORY': 'Discover historical prices for {symbol} stock on Yahoo Finance. View daily, weekly or monthly format back to when {shortName} stock was issued.', 'META_DESC_QUOTE_HOLDERS': 'Find out the direct holders, institutional holders and mutual fund holders for {shortName} ({symbol}).', 'META_DESC_QUOTE_HOLDINGS': 'View Top Holdings and Key Holding Information for {shortName} ({symbol}).', 'META_DESC_QUOTE_INDEX': 'Find the latest information on {shortName} ({symbol}) including data, charts, related news and more from Yahoo Finance', 'META_DESC_QUOTE_INDEX_COMMUNITY': \"Find the latest {shortName} ({symbol}) discussion in Yahoo Finance's forum. Share your opinion and gain insight from other traders and investors.\", 'META_DESC_QUOTE_INDEX_COMPONENTS': 'Get the components of the {shortName} ({symbol}) to help your investment decision from Yahoo Finance', 'META_DESC_QUOTE_INDEX_HISTORY': 'Get historical data for the {shortName} ({symbol}) on Yahoo Finance. View and download daily, weekly or monthly data to help your investment decisions.', 'META_DESC_QUOTE_INDEX_OPTIONS': 'Get the basic {shortName} ({symbol}) option chain and pricing options for different maturity periods from Yahoo Finance.', 'META_DESC_QUOTE_INSIDER-ROSTER': 'Get the latest updated list of insiders for {shortName} ({symbol}). Find out the total of insider shares held, purchased and sold.', 'META_DESC_QUOTE_INSIDER-TRANSACTIONS': 'Get the latest insider transactions for {shortName} ({symbol}). Find out the total of insider shares held, purchased and sold.', 'META_DESC_QUOTE_KEY-STATISTICS': 'Find out all the key statistics for {shortName} ({symbol}), including valuation measures, fiscal year financial statistics, trading record, share statistics and more.', 'META_DESC_QUOTE_NEWS': 'Get the latest {shortName} ({symbol}) stock news and headlines to help you in your trading and investing decisions.', 'META_DESC_QUOTE_OPTIONS': 'View the basic {symbol} option chain and compare options of {shortName} on Yahoo Finance.', 'META_DESC_QUOTE_PERFORMANCE': 'Current and Historical Performance Performance for {shortName} on Yahoo Finance.', 'META_DESC_QUOTE_PRESS-RELEASES': 'Get the latest {shortName} ({symbol}) stock news and headlines to help you in your trading and investing decisions.', 'META_DESC_QUOTE_PROFILE': 'See the company profile for {shortName} ({symbol}) including business summary, industry/sector information, number of employees, business summary, corporate governance, key executives and their compensation.', 'META_DESC_QUOTE_PURCHASE-INFO': 'View Minimum Investment Information and Available Brokerage for {shortName} ({symbol})', 'META_DESC_QUOTE_RESEARCH_REPORTS': 'See the latest analyst reports for {companyName} ({symbol}), including analyst ratings and price targets to help you with your stock trading and investing.', 'META_DESC_QUOTE_RISK': 'View Historical Risk Statistics for {shortName} ({symbol}).', 'META_DESC_QUOTE_SUSTAINABILITY': 'See {shortName} ({symbol}) Environment, Social and Governance Ratings to help you in your stock buying decisions.', 'META_DESC_QUOTE_UNKNOWN': 'The requested symbol was not found in our database. Try searching for some other symbol on Yahoo Finance', 'META_DESC_SCREENERS': 'Find Yahoo Finance predefined, ready-to-use stock screeners to search stocks by industry, index membership, and more. Create your own screens with over 150 different screening criteria.', 'META_DESC_SCREENERS_CRYPTOCURRENCY': 'Create your own cryptocurrency screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_EQUITY': 'Create your own stock screener with over 150 different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_EQUITY_DAY_GAINERS': 'See the list of the top gaining stocks today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_SCREENERS_EQUITY_DAY_LOSERS': 'See the list of the top losing stocks today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_SCREENERS_EQUITY_MOST_ACTIVES': 'See the list of the most active stocks today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_SCREENERS_ETF': 'Create your own ETF screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_ETF_TOP_ETFS_US': 'See the list of the top ETFs today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_SCREENERS_FUTURE': 'Create your own futures screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_INDEX': 'Create your own stock index screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_MUTUALFUND': 'Create your own mutual fund screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_ANALYST_RATINGS': 'Create your own analyst rating screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_MUTUALFUND_TOP_MUTUAL_FUNDS': 'See the complete list of mutual funds with price percent changes, 50 and 200 day averages, 3 month returns and YTD returns.', 'META_DESC_SCREENERS_OPTION': 'Option Screener: Option Research Center - Use the Option screener to search options by industry, index membership, share data such as price, market cap, beta, sales and profitability, valuation ratios, analyst estimates. Create your own screens with over 150 different screening criteria', 'META_DESC_SCREENERS_PREDEFINED': 'See a list of {title} using the Yahoo Finance screener. Create your own screens with over 150 different screening criteria.', 'META_DESC_WATCHLISTS': 'Explore curated stock watchlists to track and discover assets in a variety of categories', 'META_DESC_WATCHLISTS_CATEGORY': 'See a list of {metaTitle} from Yahoo Finance, with latest stock price and other details.', 'META_DESC_WATCHLISTS_THE_FIGHT_AGAINST_COVID19': 'Follow this list to discover and track the stocks of publicly traded companies with COVID-19 related treatments and healthcare plans.', 'META_KEYWORDS': '401k, Business, Financial Information, Investing, Investor, Market News, Stock Research, Stock Valuation, business news, economy, finance, investment tools, mortgage, mutual funds, personal finance, quote, real estate, retirement, stock, stocks, Suze Orman, tax, track portfolio', 'META_KEYWORDS_INDUSTRY': 'Industry, Sector, Energy, Materials, Industrials, Consumer Discretionary, Consumer Staples, Health Care, Financials, Information Technology, Telecommunication Services, Utilities, Real Estate', 'META_KEYWORDS_LOOKUP': 'symbol lookup, ticker lookup, stock symbol lookup', 'META_KWORDS_CALENDAR_EARNINGS': 'Earnings Announcements, Company Earnings, EPS Estimates, Earnings Per Share, Conference Calls, Before Market Open, After Market Close', 'META_KWORDS_CALENDAR_ECONOMIC': 'Economic Calendar, Forecast, Actual, Market Experts, Revised Forecast, FOMC, Unemployment Rate, GDP, Consumer Confidence, Durable Orders, Existing Home Sales, Nonfarm Payrolls, Initial Claims, Factory Orders, Construction Spending, ISM Index, Personal Income, Personal Spending', 'META_KWORDS_CALENDAR_IPO': 'Earnings Announcements, Company Earnings, EPS Estimates, IPO, IPOs, new companies', 'META_KWORDS_CALENDAR_SPLITS': 'Earnings Announcements, Company Earnings, EPS Estimates, Splits, Stock Split, Ratios', 'META_KWORDS_CRYPTOCURRENCY_LANDING': 'Cryptocurrency, cryptocurrencies, crypto, currencies, currency, bitcoin, etherium, litecoin, share data, option price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value', 'META_KWORDS_HUB': 'hub, news, tips, dates, taxes', 'META_KWORDS_INDUS': '{listId}, services, industries, Industry Center, Financial data, performance information, {listId} Services, utilities', 'META_KWORDS_LIST_BONDS': 'Bond, treasury, zero coupon, rate, interest rate, corporate bond, junk bond, municipal bond, muni bond, yield curve, coupon rate, maturity, rating, AAA, BBB, CCC, par value, callable bond, credit ratings', 'META_KWORDS_LIST_COMMODITIES': 'Commodities, Futures, futures headlines, futures chain', 'META_KWORDS_LIST_CURRENCIES': 'currency trading, forex currency trading, forex trading, yahoo finance', 'META_KWORDS_LIST_ETFS': 'index fund indexing ishares spdr qubes streettracks diamonds vipers', 'META_KWORDS_LIST_GAINERS': 'most active actives volumes leaders price percent percentage gainers losers nyse nasdaq amex', 'META_KWORDS_LIST_LOSERS': 'most active actives volumes leaders price percent percentage gainers losers nyse nasdaq amex', 'META_KWORDS_LIST_MOST_ACTIVE': 'most active actives volumes leaders price percent percentage gainers losers nyse nasdaq amex', 'META_KWORDS_LIST_MUTUALFUNDS': 'mutual fund, mutual, fund, funds, portfolio, fund family, fund manager, vanguard, fidelity, Morningstar, no-load, front-load, back-load, expense ratio, 12b-1, fund analysts, fund performance, index fund, actively managed fund', 'META_KWORDS_LIST_TRENDING_TICKERS': 'trending tickers, popular tickers, trending, popular, now, most popular, people', 'META_KWORDS_LIST_WORLD_INDICES': 'major world indices, indexes, index americas europe asia pacific africa middle east composite', 'META_KWORDS_QUOTE': '{symbol}, {shortName}, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_ANALYSIS': 'recommendation,analyst,analyst rating,strong buy,strong sell,hold,buy,sell,overweight,underweight,upgrade,downgrade,price target,EPS estimate,revenue estimate,growth estimate,p/e estimate,recommendation,analyst,analyst rating,strong buy,strong sell,hold,buy,sell,overweight,underweight,upgrade,downgrade,price target,EPS estimate,revenue estimate,growth estimate,p/e estimate', 'META_KWORDS_QUOTE_BALANCE-SHEET': 'balance sheet,asset,liabilities,shareholders equity,return on equity,cash equivalents,retained earning', 'META_KWORDS_QUOTE_CASH-FLOW': 'cash flow statement,operating activities,cash flows,investing,financing,cash,net cash', 'META_KWORDS_QUOTE_CHART': 'chart, interactive chart, graph, data graph, data points, analyze, analysis, data analysis', 'META_KWORDS_QUOTE_COMMUNITY': 'finance message boards, financial message boards, financial forum, financial chat, finance chat, finance forum, stock forum, stock message boards, investment forum, investing ideas, investing suggestions, investing tips, investment suggestion, investing ideas, messages, message board, Business Opportunity Board', 'META_KWORDS_QUOTE_COMPONENTS': '{symbol}, {shortName}, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_FINANCIALS': 'income statement,gross profit,revenue,operating expenses,operating income,net income,earning,earning per share', 'META_KWORDS_QUOTE_FUTURES': '{symbol}, {shortName}, {symbol} futures, {shortName} futures, finance, stocks, Investing, Investor, Business, Stock Research, Stock Valuation, Market News, Financial Information, stock market, charts, stock charts', 'META_KWORDS_QUOTE_HISTORY': '{symbol}, {shortName}, {symbol} historical prices, {shortName} historical prices, historical prices, stocks, quotes, finance', 'META_KWORDS_QUOTE_HOLDERS': 'direct holders,institutional holders,mutual fund holders,holding,holding shares,floating shares,major holders,form 144 holders', 'META_KWORDS_QUOTE_HOLDINGS': 'Top holdings, Holdings, Portfolio Composition, Equity Holdings, Sector Weightings, Bond holdings, Bond Ratings', 'META_KWORDS_QUOTE_INSIDER-ROSTER': 'insider selling,insider buying,shareholder,insider purchase,insider sale,earning per share,form 144 holders', 'META_KWORDS_QUOTE_INSIDER-TRANSACTIONS': 'insider selling,insider buying,shareholder,insider purchase,insider sale,form 144 holders', 'META_KWORDS_QUOTE_KEY-STATISTICS': 'key statistics,financial statistics,valuation,measurement,market cap,EPS,P/E,PEG,Price/book. EBITDA,Profit margin,operating Margin,Return on Equity,Beta,short ratio', 'META_KWORDS_QUOTE_NEWS': 'company headlines,news,latest happenings,latest news,recent news,{symbol}, {shortName}, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_OPTIONS': '{symbol}, {shortName}, {symbol} options, {shortName} options, {symbol} option chain, {shortName} option chain, option, option chain, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_PERFORMANCE': 'Performance , Trailing Returns vs. Benchmarks, Annual Total Return History, Past Quarterly Returns, Load Adjusted Returns', 'META_KWORDS_QUOTE_PRESS-RELEASES': 'press releases, company headlines,news,latest happenings,latest news,recent news,{symbol}, {shortName}, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_PROFILE': 'company profile,business summary,company management,company introduction,key statistics,officers', 'META_KWORDS_QUOTE_PURCHASE-INFO': 'Minimum Investment, Brokerage , Min Subsequent Investment, Purchase Info', 'META_KWORDS_QUOTE_RISK': 'Risk Statistics, Risk Overview, Risk Rating', 'META_KWORDS_SCREENERS': 'Stock Screener, industry, index membership, share data, stock price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_CRYPTOCURRENCY': 'Cryptocurrency screener, cryptocurrency, cryptocurrencies, crypto, currencies, currency, bitcoin, etherium, litecoin, share data, option price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value', 'META_KWORDS_SCREENERS_EQUITY': 'Stock Screener, industry, index membership, share data, stock price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_ETF': 'ETF Screener, industry, index membership, share data, etf price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_FUTURE': 'Future screener, share data, future price, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_INDEX': 'Index screener, exchange, share data, index price, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_MUTUALFUND': 'Mutual Fund Screener, industry, index membership, share data, mutual fund price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_OPTION': 'Option Screener, industry, index membership, share data, option price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_ANALYST_RATINGS': 'Analyst rating', 'META_KWORDS_WATCHLISTS': 'Curated watchlists, watchlists, watched, added, cryptocurrency, cryptocurrencies, crypto, cryptos, currencies, currency, bitcoin, etherium, litecoin, tokens, share data, option price, market cap, beta, sales, profitability, volatility, volatile, bets, volume, valuation ratios, analyst estimates, large cap value, sustainable, ethical', 'META_LOOKUP_DESCRIPTION': 'Search for ticker symbols for Stocks, Mutual Funds, ETFs, Indices and Futures on Yahoo! Finance.', 'META_LOOKUP_KEYWORDS': 'symbol lookup, ticker lookup, stock symbol lookup', 'META_LOOKUP_TITLE': 'Symbol Lookup from Yahoo Finance', 'META_TITLE': 'Yahoo Finance - Stock Market Live, Quotes, Business & Finance News', 'META_TITLE_CALENDAR_ALL': 'Financial Calendars - Yahoo Finance', 'META_TITLE_CALENDAR_EARNINGS': 'Company Earnings Calendar - Yahoo Finance', 'META_TITLE_CALENDAR_EARNINGS_SYMBOL': 'Earnings {symbol}: Company Earnings Calendar for {symbol} - Yahoo Finance', 'META_TITLE_CALENDAR_ECONOMIC': 'Economic Calendar - Yahoo Finance', 'META_TITLE_CALENDAR_IPO': \"Upcoming & Recent IPO's - IPOs Calendar - Yahoo Finance\", 'META_TITLE_CALENDAR_SPLITS': 'Stock Splits Calendar - Yahoo Finance', 'META_TITLE_CHART': '{symbol} Interactive Stock Chart | {shortName} Stock - Yahoo Finance', 'META_TITLE_CRYPTO_ABOUT': \"Crypto Trading & Investing: FAQ's & Other Info - Yahoo Finance\", 'META_TITLE_CRYPTO_ACCOUNT': 'Crypto Account Management - Yahoo Finance', 'META_TITLE_CRYPTO_DEACTIVATE': 'Crypto Deactivate Account - Yahoo Finance', 'META_TITLE_CRYPTO_DEPOSIT': 'Crypto Fund Deposit - Yahoo Finance', 'META_TITLE_CRYPTO_HELP': 'Crypto Trading Help - Contact Us - Yahoo Finance', 'META_TITLE_CRYPTO_KYC': 'Crypto Trading User Info - Yahoo Finance', 'META_TITLE_CRYPTO_LINKED_ACCOUNTS': 'Crypto Linked Accounts - Yahoo Finance', 'META_TITLE_CRYPTO_TRADING': 'Crypto Exchange - Buy, Sell And Trade Bitcoin & Other Crypto - Yahoo Finance', 'META_TITLE_CRYPTO_WITHDRAW': 'Crypto Fund Withdrawal - Yahoo Finance', 'META_TITLE_CRYPTOCURRENCY_LANDING': 'Crypto Real Time Prices & Latest News - Yahoo Finance', 'META_TITLE_CURRENCY_CONVERTER': 'Currency Converter | Currency Exchange Calculator - Yahoo Finance', 'META_TITLE_DEFAULT_LISTS': '{listId} - Yahoo Finance', 'META_TITLE_HUB': 'Taxes 2023: News, Tips, Dates & Latest Info - Yahoo Finance', 'META_TITLE_INDUS': 'Top {listId} - Yahoo Finance', 'META_TITLE_INDUSTRY': 'Industry Center - Yahoo Finance', 'META_TITLE_LIST_BONDS': 'Bonds Center - Bonds quotes, news, screeners and educational information - Yahoo Finance', 'META_TITLE_LIST_COMMODITIES': 'Commodities Futures Prices & Day Charts - Yahoo Finance', 'META_TITLE_LIST_CURRENCIES': 'Live Forex Rates & Currencies - Yahoo Finance', 'META_TITLE_LIST_ETFS': 'Exchange-Traded Funds (ETF) Center - Yahoo Finance', 'META_TITLE_LIST_GAINERS': 'Stocks Gainers - Yahoo Finance', 'META_TITLE_LIST_LOSERS': 'Stocks Losers - Yahoo Finance', 'META_TITLE_LIST_MOST_ACTIVE': 'Stocks Most Actives - Yahoo Finance', 'META_TITLE_LIST_MUTUALFUNDS': 'Mutual Funds Center - Yahoo Finance', 'META_TITLE_LIST_OPTIONS': 'Options Center - Yahoo Finance', 'META_TITLE_LIST_TRENDING_TICKERS': 'Trending Stocks Today - Yahoo Finance', 'META_TITLE_LIST_WORLD_INDICES': 'Major World Indices - Yahoo Finance', 'META_TITLE_LOOKUP': 'Symbol Lookup from Yahoo Finance', 'META_TITLE_MINIHOME_NEWS': 'Latest Financial and Business News - Yahoo Finance', 'META_TITLE_MULTIQUOTE': '{quotes} | Stock Prices | Quote Comparison - Yahoo Finance', 'META_TITLE_MULTIQUOTE_EMPTY': 'Stock Prices | Quote Comparison - Yahoo Finance', 'META_TITLE_PERSONAL_FINANCE': 'Personal Finance - Yahoo Finance', 'META_TITLE_PORTFOLIO': 'Stock Portfolio & Tracker - Yahoo Finance', 'META_TITLE_PLUS_PORTAL': 'Yahoo Finance Plus - Stock Research & Analysis, Portfolio Analysis', 'META_TITLE_QUOTE': '{shortName} ({symbol}) Stock Price, News, Quote & History - Yahoo Finance', 'META_TITLE_QUOTE_ANALYSIS': '{shortName} ({symbol}) Analyst Ratings, Estimates & Forecasts - Yahoo Finance', 'META_TITLE_QUOTE_BALANCE-SHEET': '{shortName} ({symbol}) Balance Sheet - Yahoo Finance', 'META_TITLE_QUOTE_CASH-FLOW': '{shortName} ({symbol}) Cash Flow - Yahoo Finance - Yahoo Finance', 'META_TITLE_QUOTE_CHART': '{shortName} ({symbol}) Interactive Stock Chart - Yahoo Finance', 'META_TITLE_QUOTE_COMMUNITY': '{shortName} ({symbol}) Stock Forum & Discussion - Yahoo Finance', 'META_TITLE_QUOTE_COMPANY360': '{shortName} ({symbol}) Exclusive Data & Insights - Yahoo Finance', 'META_TITLE_QUOTE_COMPANY_INSIGHTS': '{companyName} ({symbol}) Company Insights & Stock Analysis', 'META_TITLE_QUOTE_COMPONENTS': '{symbol} Components | {shortName} Stock - Yahoo Finance', 'META_TITLE_QUOTE_CORPORATE_EVENTS': '{companyName} ({symbol}) Earnings Date & Other Corporate Events', 'META_TITLE_QUOTE_CRYPTOCURRENCY': '{shortName} ({symbol}) Price, Value, News & History - Yahoo Finance', 'META_TITLE_QUOTE_CRYPTOCURRENCY_CHART': '{shortName} ({symbol}) Interactive Price Chart - Yahoo Finance', 'META_TITLE_QUOTE_CRYPTOCURRENCY_COMMUNITY': '{shortName} ({symbol}) Cryptocurrency Forum & Discussion - Yahoo Finance', 'META_TITLE_QUOTE_CRYPTOCURRENCY_HISTORY': '{shortName} ({symbol}) Price History & Historical Data - Yahoo Finance', 'META_TITLE_QUOTE_CRYPTOCURRENCY_PROFILE': '{shortName} ({symbol}) Cryptocurrency Profile & Facts - Yahoo Finance', 'META_TITLE_QUOTE_CURRENCY': '{shortName} ({symbol}) Live Rate, Chart & News - Yahoo Finance', 'META_TITLE_QUOTE_CURRENCY_CHART': '{shortName} ({symbol}) Interactive Chart - Yahoo Finance', 'META_TITLE_QUOTE_CURRENCY_COMMUNITY': '{shortName} ({symbol}) Forex Forum & Discussion - Yahoo Finance', 'META_TITLE_QUOTE_FAIR_VALUE': '{companyName} ({symbol}) Fair Value & Stock Outlook', 'META_TITLE_QUOTE_FINANCIALS': '{shortName} ({symbol}) Income Statement - Yahoo Finance', 'META_TITLE_QUOTE_FUTURES': '{shortName} ({symbol}) Futures Chain - Yahoo Finance', 'META_TITLE_QUOTE_HISTORY': '{shortName} ({symbol}) Stock Historical Prices & Data - Yahoo Finance', 'META_TITLE_QUOTE_HOLDERS': '{shortName} ({symbol}) Stock Major Holders - Yahoo Finance', 'META_TITLE_QUOTE_HOLDINGS': '{shortName} ({symbol}) Holdings - Yahoo Finance', 'META_TITLE_QUOTE_INDEX': '{shortName} ({symbol}) Charts, Data & News - Yahoo Finance', 'META_TITLE_QUOTE_INDEX_COMMUNITY': '{shortName} ({symbol}) Forum & Discussion - Yahoo Finance', 'META_TITLE_QUOTE_INDEX_COMPONENTS': '{shortName} ({symbol}) Components - Yahoo Finance', 'META_TITLE_QUOTE_INDEX_HISTORY': '{shortName} ({symbol}) Historical Data - Yahoo Finance', 'META_TITLE_QUOTE_INSIDER-ROSTER': '{shortName} ({symbol}) Insider Ownership & Holdings - Yahoo Finance', 'META_TITLE_QUOTE_INSIDER-TRANSACTIONS': '{shortName} ({symbol}) Recent Insider Transactions - Yahoo Finance', 'META_TITLE_QUOTE_KEY-STATISTICS': '{shortName} ({symbol}) Valuation Measures & Financial Statistics', 'META_TITLE_QUOTE_NEWS': '{shortName} ({symbol}) Latest Stock News & Headlines - Yahoo Finance', 'META_TITLE_QUOTE_OPTIONS': '{shortName} ({symbol}) Options Chain - Yahoo Finance', 'META_TITLE_QUOTE_OPTIONS_INDIVIDUAL': '{symbol} Quote | {shortName} Stock - Yahoo Finance', 'META_TITLE_QUOTE_PERFORMANCE': '{shortName} ({symbol}) Performance History - Yahoo Finance', 'META_TITLE_QUOTE_PRESS-RELEASES': '{shortName} ({symbol}) Latest Press Releases & Corporate News - Yahoo Finance', 'META_TITLE_QUOTE_PRICE': '{symbol} {price} {change} {changePercent} : {shortName} - Yahoo Finance', 'META_TITLE_QUOTE_PROFILE': '{shortName} ({symbol}) Company Profile & Facts - Yahoo Finance', 'META_TITLE_QUOTE_PURCHASE-INFO': '{symbol} Purchase Info | Investment Information for {shortName} Stock - Yahoo Finance', 'META_TITLE_QUOTE_REPORTS': '{shortName} ({symbol}) Stock Research & Reports - Yahoo Finance', 'META_TITLE_QUOTE_RESEARCH_REPORTS': '{companyName} ({symbol}) Analyst Reports, Price Targets & Ratings', 'META_TITLE_QUOTE_RISK': '{shortName} ({symbol}) Risk - Yahoo Finance', 'META_TITLE_QUOTE_SUSTAINABILITY': '{shortName} ({symbol}) Environment, Social and Governance (ESG) Ratings - Yahoo Finance', 'META_TITLE_QUOTE_UNKNOWN': \"Requested symbol wasn't found\", 'META_TITLE_RECENT_QUOTES': 'My Recent Quotes | Stock Prices | Yahoo Finance', 'META_TITLE_SCREENERS': 'Stock Screeners - Yahoo Finance', 'META_TITLE_SCREENERS_ANALYST_RATINGS': 'Analyst Ratings Screener - Yahoo Finance', 'META_TITLE_SCREENERS_CRYPTOCURRENCY': 'Free Cryptocurrency Screener - Yahoo Finance', 'META_TITLE_SCREENERS_EQUITY': 'Free Stock Screener - Yahoo Finance', 'META_TITLE_SCREENERS_EQUITY_DAY_GAINERS': 'Top Stock Gainers Today - Yahoo Finance', 'META_TITLE_SCREENERS_EQUITY_DAY_LOSERS': 'Top Stock Losers Today - Yahoo Finance', 'META_TITLE_SCREENERS_EQUITY_MOST_ACTIVES': 'Most Active Stocks Today - Yahoo Finance', 'META_TITLE_SCREENERS_ETF': 'Free ETF Screener - Yahoo Finance', 'META_TITLE_SCREENERS_ETF_TOP_ETFS_US': 'Top ETFs Today - Yahoo Finance', 'META_TITLE_SCREENERS_FUTURE': 'Free Futures Screener - Yahoo Finance', 'META_TITLE_SCREENERS_INDEX': 'Free Stock Index Screener - Yahoo Finance', 'META_TITLE_SCREENERS_MUTUALFUND': 'Free Mutual Fund Screener - Yahoo Finance', 'META_TITLE_SCREENERS_MUTUALFUND_TOP_MUTUAL_FUNDS': 'Top Mutual Funds Today - Yahoo Finance', 'META_TITLE_SCREENERS_OPTION': 'Free Option Screener - Yahoo Finance', 'META_TITLE_SCREENERS_PREDEFINED': 'Top {title} List | Screener - Yahoo Finance', 'META_TITLE_SCREENERS_PREDEFINED_PLUS': '{title} List | Screener - Yahoo Finance', 'META_TITLE_TOPIC_autos': 'Autos - Yahoo Finance', 'META_TITLE_TOPIC_brexit': 'Brexit - Yahoo Finance', 'META_TITLE_TOPIC_careers': 'Careers - Yahoo Finance', 'META_TITLE_TOPIC_finalround': 'The Final Round - Yahoo Finance', 'META_TITLE_TOPIC_finance-viral': 'Finance Viral - Yahoo Finance', 'META_TITLE_TOPIC_goodlife': 'The Good Life - Yahoo Finance', 'META_TITLE_TOPIC_leisure-industries': 'Leisure Industries - Yahoo Finance', 'META_TITLE_TOPIC_lifestyle': 'Lifestyle - Yahoo Finance', 'META_TITLE_TOPIC_market-blogs': 'Market Blogs - Yahoo Finance', 'META_TITLE_TOPIC_marketmovers': 'Market Movers - Yahoo Finance', 'META_TITLE_TOPIC_middaymovers': 'Midday Movers - Yahoo Finance', 'META_TITLE_TOPIC_personal-finance-news': 'Personal Finance News - Yahoo Finance', 'META_TITLE_TOPIC_property': 'Property - Yahoo Finance', 'META_TITLE_TOPIC_real-estate': 'Real Estate - Yahoo Finance', 'META_TITLE_TOPIC_retirement': 'Retirement - Yahoo Finance', 'META_TITLE_TOPIC_save-money': 'Save Money - Yahoo Finance', 'META_TITLE_TOPIC_saving-spending': 'Saving & Spending - Yahoo Finance', 'META_TITLE_TOPIC_shoppen': 'Shoppen - Yahoo Finance', 'META_TITLE_TOPIC_small-business': 'Small Business - Yahoo Finance', 'META_TITLE_TOPIC_sportsbook': 'Sportsbook - Yahoo Finance', 'META_TITLE_TOPIC_technology': 'Technology - Yahoo Finance', 'META_TITLE_TOPIC_travel': 'Travel - Yahoo Finance', 'META_TITLE_TOPIC_trendingtickers': 'Trending Tickers - Yahoo Finance', 'META_TITLE_TOPIC_videos': 'Video - Yahoo Finance', 'META_TITLE_TOPIC_yahoo-originals': 'Yahoo Originals - Yahoo Finance', 'META_TITLE_VIDEOS': 'Business and Finance News Videos - Yahoo Finance', 'META_TITLE_WATCHLISTS': 'Curated Stock Watch Lists & Categories - Yahoo Finance', 'META_TITLE_WATCHLISTSTITLE': '{title} - Yahoo Finance', 'META_TITLE_WATCHLISTS_ACTIVIST_HEDGE_FUND_POSITIONS': 'Stocks with the Most Activist Hedge Fund Positions', 'META_TITLE_WATCHLISTS_AGING_BABY_BOOMERS': 'Stocks for Aging Baby Boomers', 'META_TITLE_WATCHLISTS_BIGGEST_EARNINGS_BEATS': 'Stocks with Biggest Earnings Beats', 'META_TITLE_WATCHLISTS_BIGGEST_EARNINGS_MISSES': 'Stocks with Biggest Earnings Misses', 'META_TITLE_WATCHLISTS_BRANDS_CONSUMERS_LOVE': 'Stocks of Well-Known Consumer Brands', 'META_TITLE_WATCHLISTS_CANNABIS_STOCKS': 'Cannabis, Marijuana, 420 Stocks', 'META_TITLE_WATCHLISTS_CROWDED_HEDGE_FUND_POSITIONS': 'Stocks with Highest Percentage of Hedge Fund Ownership', 'META_TITLE_WATCHLISTS_CROWDED_TECH_HEDGE_FUND_POSITIONS': 'Tech Stocks with Highest Percentage of Hedge Fund Ownership', 'META_TITLE_WATCHLISTS_DIVIDEND_GROWTH_MARKET_LEADERS': 'Stocks with Highest Dividend Growth', 'META_TITLE_WATCHLISTS_HEALTHY_LIVING': 'Health, Wellness & Fitness Stocks', 'META_TITLE_WATCHLISTS_LARGEST_52-WEEK_GAINS': 'Stocks with Largest 52-Week Gains', 'META_TITLE_WATCHLISTS_LARGEST_52-WEEK_LOSSES': 'Stocks with Largest 52-Week Losses', 'META_TITLE_WATCHLISTS_LEAST_VOLATILE_CRYPTOS': 'Cryptocurrencies with Lowest Volatility', 'META_TITLE_WATCHLISTS_LONG_HAUL_BUFFETT_BUYS': \"Stocks in Warren Buffett's Berkshire Hathaway\", 'META_TITLE_WATCHLISTS_MOST_ADDED_TO_WATCHLISTS': 'Stocks Most Added to Watchlists by Yahoo Finance Users', 'META_TITLE_WATCHLISTS_MOST_BOUGHT_BY_ACTIVIST_HEDGE_FUNDS': 'Stocks Most Bought by Activist Hedge Funds', 'META_TITLE_WATCHLISTS_MOST_BOUGHT_BY_HEDGE_FUNDS': 'Stocks Most Bought by Hedge Funds', 'META_TITLE_WATCHLISTS_MOST_FOLLOWED': 'Most Followed Stocks Watchlists', 'META_TITLE_WATCHLISTS_MOST_REMOVED_FROM_WATCHLISTS': 'Stocks Most Removed in Watchlists by Yahoo Finance Users', 'META_TITLE_WATCHLISTS_MOST_SOLD_BY_ACTIVIST_HEDGE_FUNDS': 'Stocks Most Sold by Activist Hedge Funds', 'META_TITLE_WATCHLISTS_MOST_SOLD_BY_HEDGE_FUNDS': 'Stocks Most Sold by Hedge Funds', 'META_TITLE_WATCHLISTS_MOST_VOLATILE_CRYPTOS': 'Cryptocurrencies with Highest Volatility', 'META_TITLE_WATCHLISTS_MOST_WATCHED_BY_YAHOO_FINANCE_USERS': 'Stocks Most Watched by Yahoo Finance Users', 'META_TITLE_WATCHLISTS_NEW_FAMILY_ECONOMY': 'New Family, Family Needs & Household Stocks', 'META_TITLE_WATCHLISTS_NEW_HEDGE_FUND_HOLDERS': 'Hedge Fund Newly Held Stocks', 'META_TITLE_WATCHLISTS_RECENTLY_ADDED': 'Recently Added Stocks Watchlists', 'META_TITLE_WATCHLISTS_RECENTLY_UPDATED': 'Recently Updated Stocks Watchlists', 'META_TITLE_WATCHLISTS_RECENT_52-WEEK_HIGHS': 'Stocks with Recent 52-Week Highs', 'META_TITLE_WATCHLISTS_RECENT_52-WEEK_LOWS': 'Stocks with Recent 52-Week Lows', 'META_TITLE_WATCHLISTS_SINFUL_STOCKS': 'Sin Stocks - Casinos, Tobacco, Alcohol & More', 'META_TITLE_WATCHLISTS_SMART_MONEY_STOCKS': 'Stocks Widely Held By Hedge Funds', 'META_TITLE_WATCHLISTS_STOCKS_FUELING_THE_INTERNET_OF_THINGS': 'Internet of Things Stocks', 'META_TITLE_WATCHLISTS_TECH_STOCKS_THAT_MOVE_THE_MARKET': 'Tech Stocks That Move The Market', 'META_TITLE_WATCHLISTS_THE_AUTONOMOUS_CAR': 'Stocks Involved in Self-Driving Cars', 'META_TITLE_WATCHLISTS_THE_BERKSHIRE_HATHAWAY_PORTFOLIO': 'Stocks in the Berkshire Hathaway Portfolio', 'META_TITLE_WATCHLISTS_THE_BIG_SHORTS': 'Stocks with Big Short Positions', 'META_TITLE_WATCHLISTS_THE_FIGHT_AGAINST_COVID19': 'Fight against Covid-19 (Coronavirus) Stocks', 'META_TITLE_WATCHLISTS_TODAYS_TOP_PERFORMERS': \"Today's Stocks Best Performing Sectors\", 'META_TITLE_WATCHLISTS_TODAYS_WORST_PERFORMERS': \"Today's Stocks Worst Performing Sectors\", 'META_TITLE_WATCHLISTS_TOP_CRYPTOS_BY_MARKET_CAP': 'Cryptocurrencies with Highest Market Cap', 'META_TITLE_WATCHLISTS_TOP_CRYPTOS_BY_TOKENS_OUTSTANDING': 'Cryptocurrencies With Highest Circulating Supply', 'META_TITLE_WATCHLISTS_TOP_CRYPTOS_BY_VOLUME_(ALL_CURRENCIES_24HR)': 'Cryptocurrencies with Highest Trading Volume', 'META_TITLE_WATCHLISTS_TOP_CRYPTO_BETS': 'Stocks of Companies Involved in Cryptocurrencies', 'META_TITLE_WATCHLISTS_WOMEN_AT_THE_HELM': 'Stocks of Companies Led by Women', 'MIDDAY_MOVERS_TITLE': 'Midday Movers', 'MILLION_SHORT': '{num}M', 'MINIMUM_PENSION_LIABILITIES': 'Minimum Pension Liabilities', 'MINORITY_INTEREST': 'Minority Interest', 'MINORITY_INTERESTS': 'Minority Interests', 'MIN_INIT_AIP_INVESTMENT': 'Min Initial Investment, AIP', 'MIN_INIT_INVESTMENT': 'Min Initial Investment', 'MIN_INIT_IRA_INVESTMENT': 'Min Initial Investment, IRA', 'MIN_SUBSEQ_AIP_INVESTMENT': 'Min Subsequent Investment, AIP', 'MIN_SUBSEQ_INVESTMENT': 'Min Subsequent Investment', 'MIN_SUBSEQ_IRA_INVESTMENT': 'Min Subsequent Investment, IRA', 'MISC_STOCKS_OPTIONS_WARRANTS': 'Misc. Stocks Options Warrants', 'MISSED': 'Missed', 'MISSING_REQUIRED_DATA': 'Missing required data', 'MOBILE_NOT_SUPPORT': 'Embedded webinar is not supported in mobile devices', 'MODERATE': 'Moderate', 'MODULE_UNDER_CONSTRUCTION': '{type} module is under construction', 'MONEY_CENTER_BANKS': 'Money Center Banks', 'MONEY_CENTER_BANKS_DESC': 'Money Center Banks Stocks', 'MONEY_MARKET_INVESTMENTS': 'Money Market Investments', 'MONTHLY': 'Monthly', 'MONTHLY_TOTAL_RETURNS': 'Monthly Total Returns', 'MOODYS_ANALYTICS': \"Moody's Analytics\", 'MORE_ABOUT': 'More about', 'MORE_DETAILS': 'More details', 'MORE_SYMBOLS': 'More Symbols', 'MORE_UPGRADES_AND_DOWNGRADES': 'More Upgrades & Downgrades', 'MORNINGSTAR_CATEGORY': 'Morningstar Category', 'MORNINGSTAR_CATEGORY_DESC': \"While the investment objective stated in a fund's prospectus may or may not reflect how the fund actually invests, the Morningstar category is assigned based on the underlying securities in each portfolio. Morningstar categories help investors and investment professionals make meaningful comparisons between funds. The categories make it easier to build well-diversified portfolios, assess potential risk, and identify top-performing funds. We place funds in a given category based on their portfolio statistics and compositions over the past three years. If the fund is new and has no portfolio history, we estimate where it will fall before giving it a more permanent category assignment. When necessary, we may change a category assignment based on recent changes to the portfolio.\", 'MORNINGSTAR_STYLE_BOX': 'Morningstar Style Box', 'MORNINGSTAR_STYLE_BOX_DESC': \"Yahoo partners with Morningstar a leading market research and investment data group to help investors rate and compare funds on Yahoo Finance. The Morningstar Category is shown next to the Morningstar Style Box which identifies a fund's investment focus, based on the underlying securities in the fund.\", 'MORNING_BRIEF': 'Morning Brief', 'MORNING_STAR_RATING': 'Morningstar Rating', 'MORNINGSTAR_RATING': 'Morningstar Rating', 'MORNING_STAR_RETURN_RATING': 'Morningstar Return Rating', 'MORNING_STAR_RISK_RATING': 'Morningstar Risk Rating', 'MORNINGSTAR_FIVE_STAR_STOCKS': 'Morningstar 5-Star Stocks', 'MORNINGSTAR_FIVE_STAR_STOCKS_DESC': 'A 5-star rating indicates that the stock is trading meaningfully below fair value with an exciting discount.', 'MORTGAGE_AND_CONSUMERLOANS': 'Mortgage & Consumer Loans', 'MORTGAGE_INVESTMENT': 'Mortgage Investment', 'MORTGAGE_INVESTMENT_DESC': 'Mortgage Investment Stocks', 'MORTGAGE_LOAN': 'Mortgage Loan', 'MOST_ACTIVES': 'Most Actives', 'MOST_ACTIVES_DESC': 'Stocks ordered in descending order by intraday trade volume.', 'MOST_INSTITUTIONALLY_BOUGHT_LARGE_CAP_STOCKS': 'Most Institutionally Bought Large Cap Stocks', 'MOST_INSTITUTIONALLY_HELD_LARGE_CAP_STOCKS': 'Most Institutionally Held Large Cap Stocks', 'MOST_INSTITUTIONALLY_SOLD_LARGE_CAP_STOCKS': 'Most Institutionally Sold Large Cap Stocks', 'MOST_RECENT_QUARTER': 'Most Recent Quarter', 'MOST_RECENT_TRANSACTION': 'Most Recent Transaction', 'MOST_SHORTED_STOCKS': 'Most Shorted Stocks', 'MOST_SHORTED_STOCKS_DESC': 'Stocks with the highest short interest positions ordered by short % of shares outstanding from Nasdaq and NYSE reports released every two weeks.', 'MOST_VISITED': 'Most Visited', 'MOTOR-Y-AUTOMOCION_TITLE': 'Motor and Automotive', 'MOVIE_PRODUCTION_THEATERS': 'Movie Production, Theaters', 'MOVIE_PRODUCTION_THEATERS_DESC': 'Movie Production, Theaters Stocks', 'MRQ': 'mrq', 'MS_BASIC_MATERIALS': 'Basic Materials', 'MS_CONSUMER_CYCLICAL': 'Consumer Cyclical', 'MS_FINANCIAL_SERVICES': 'Financial Services', 'MS_REAL_ESTATE': 'Real Estate', 'MS_CONSUMER_DEFENSIVE': 'Consumer Defensive', 'MS_HEALTHCARE': 'Healthcare', 'MS_UTILITIES': 'Utilities', 'MS_COMMUNICATION_SERVICES': 'Communication Services', 'MS_ENERGY': 'Energy', 'MS_INDUSTRIALS': 'Industrials', 'MS_TECHNOLOGY': 'Technology', 'MSG_ADD_TO_A_WATCHLIST': 'Add {company} to one or more watchlists:', 'MSG_ADD_TO_A_WATCHLIST_DONE': 'You have added {company} to \"{watchlist}\".', 'MSG_ADD_TO_A_WATCHLIST_ERROR': 'Could not add {company} to \"{watchlist}\". Please try again.', 'MSG_BACK_TO_FINANCE': 'Back to Yahoo Finance', 'MSG_BACK_TO_HOMEPAGE': 'Back to Yahoo Homepage', 'MSG_BROKER_CRED': 'Yahoo does not store your broker credentials.', 'MSG_BROKER_NOT_SUPPORT': \"Unfortunately we don't support this broker yet\", 'MSG_BROKER_NOT_SUPPORT_DES': 'We will let you know when this broker becomes available to link again', 'MSG_BROWSE_REPORTS': 'Browse available reports for other tickers via the Research tab', 'MSG_EMPTY_LIST': 'Your list is empty.', 'MSG_FB_TICKER_CHANGE': 'Meta Platforms, Inc. has changed its ticker symbol from FB to META. If you were following FB, that change is now reflected in your portfolio', 'MSG_EMPTY_PF': 'Your list is empty. Add symbols to get relevant news', 'MSG_HAS_BEEN_ADDED': '{symbol} has been added!', 'MSG_INSUFFICIENT_FILTER': 'Select at least one filter to find matching {type}', 'MSG_INVALID_DATE': 'Please enter a valid date.', 'MSG_INVALID_LIST': \"We're sorry, but we were unable to retrieve your list. Redirecting to Yahoo Finance Home in a few seconds.\", 'MSG_LINK_PF_FAILURE': \"We're unable to gather your latest holdings data\", 'MSG_LINK_PF_GATHERING': \"We're still gathering your holdings. Please check back in a few minutes\", 'MSG_LINK_PF_REFRESH': 'Account refresh required', 'MSG_LINK_PF_SUCCESS': 'Broker successfully linked', 'MSG_NO_ACTION_SENTIMENT_RESULTS': 'No portfolio changes data found.', 'MSG_NO_CAL_DATE_SEL': 'Please select a date to see results.', 'MSG_NO_COMMUNITY_SENTIMENT_RESULTS': 'No community conversion data found.', 'MSG_NO_DATA': 'We’re sorry, we weren’t able to find any data.', 'MSG_NO_DATA_HEATMAP': 'Heatmap View for this screener is temporarily unavailable.', 'MSG_NO_DATA_IN_PERIOD': 'No data available for selected period.', 'MSG_NO_LOOKUP_RESULTS': 'Please check your spelling. Try our suggested matches or see results in other tabs.', 'MSG_NO_PORTFOLIOS': 'Unable to load your portfolios', 'MSG_NO_REPORTS': 'No reports available for {symbol}', 'MSG_NO_RESULTS': \"We couldn't find any results.\", 'MSG_NO_SCREENER_CRITERIA': 'No filters selected. Add a few filters to get results', 'MSG_NO_SCREENER_DETAIL': 'Unable to load Screener', 'MSG_NO_SCREENER_FILTER': 'Unable to load Filtering Criteria', 'MSG_NO_SCREENER_IDEA_RESULTS': 'No investment ideas found with the selected filters', 'MSG_NO_SCREENER_REPORT_RESULTS': 'No reports found with the selected filters', 'MSG_NO_SCREENER_RESULTS': 'Unable to fetch Results', 'MSG_NO_SEARCH_RESULTS': \"No matching results for '{query}'\", 'MSG_NO_SEC_FILINGS': 'No SEC Filings found', 'MSG_NO_SYMBOLS': 'No symbols found', 'MSG_ONLY_US': 'Premium filters are only applicable to US Equities', 'MSG_REAUTHENTICATE_PF': 'You need to refresh/relogin using the button above.', 'MSG_REAUTHENTICATE_PF_WEBVIEW': 'Your holdings are out of date. Please refresh using the button on the Home tab', 'MSG_RELAX_FILTER': 'Get more matching stocks by relaxing your criteria', 'MSG_RELAX_RESEARCH_FILTER': 'Please update your filters to find matching research', 'MSG_RELOAD_PAGE': 'Please try reloading the page.', 'MSG_REPORTS_ERROR': 'Unable to load research reports', 'MSG_SELECT_A_WATCHLIST': 'Select a watchlist', 'MSG_SELECT_DATE': 'Select a Date', 'MSG_STRICT_FILTER': 'Your screening filters are too strict', 'MULTIMEDIA_GRAPHICS_SOFTWARE': 'Multimedia & Graphics Software', 'MULTIMEDIA_GRAPHICS_SOFTWARE_DESC': 'Multimedia & Graphics Software Stocks', 'MUSIC_VIDEO_STORES': 'Music & Video Stores', 'MUSIC_VIDEO_STORES_DESC': 'Music & Video Stores Stocks', 'MUTUAL': 'Mutual Fund', 'MUTUALFUND': 'Mutual Fund', 'MUTUALFUND_SCREENER': 'Mutual Fund Screener', 'MUTUALFUND_SCREENER_DES': 'Search for funds using historical performance, performance rating, and more', 'MUTUAL_FUNDS': 'Mutual Funds', 'MY_HOLDINGS': 'My Holdings', 'MY_PORTFOLIOS': 'My Portfolios', 'MY_WATCHLIST': 'My Watchlists', 'FOLLOWED_WATCHLIST': 'Followed Watchlists', 'MY_SAVED_SCREENERS': 'My Saved Screeners', 'N_DAYS_AGO': '{number}d ago', 'NAME': 'Name', 'NATURAL_GAS_FUEL_AND_OTHER': 'Natural Gas, Fuel & Other', 'NAV': 'NAV', 'NEAR_FAIR_VALUE': 'Near Fair Value', 'NEGATIVE_GOODWILL': 'Negative Goodwill', 'NETWORKING_COMMUNICATION_DEVICES': 'Networking & Communication Devices', 'NETWORKING_COMMUNICATION_DEVICES_DESC': 'Networking & Communication Devices Stocks', 'NETWORK_HS': 'Network H/S', 'NET_ASSETS': 'Net Assets', 'NET_BORROWINGS': 'Net Borrowings', 'NET_BUSINESS_PURCHASE_AND_SALE': 'Net Business Purchase And Sale', 'NET_CASH_FINANCING_ACTIVITIES': 'Net cash used privided by (used for) financing activities', 'NET_CASH_INVESTING_ACTIVITIES': 'Net cash used for investing activites', 'NET_CASH_OPERATING_ACTIVITIES': 'Net cash provided by operating activites', 'NET_CHANGE_IN_CASH': 'Net change in cash', 'NET_COMMON_STOCK_ISSUANCE': 'Net Common Stock Issuance', 'NET_DEBT': 'Net Debt', 'NET_FOREIGN_CURRENCY_EXCHANGE_GAIN_LOSS': 'Net Foreign Currency Exchange Gain Loss', 'NET_FOREIGN_EXCHANGE_GAIN_LOSS': 'Net Foreign Exchange Gain Loss', 'NET_INCOME': 'Net Income', 'NET_INCOME_APPLICABLE_TO_COMMON_SHARES': 'Net Income Applicable To Common Shares', 'NET_INCOME_AVAILABLE_TO_COMMON_SHAREHOLDERS': 'Net Income available to common shareholders', 'NET_INCOME_AVI_TO_COMMON': 'Net Income Avi to Common', 'NET_INCOME_COMMON_STOCKHOLDERS': 'Net Income Common Stockholders', 'NET_INCOME_CONTINUOUS_OPERATIONS': 'Net Income Continuous Operations', 'NET_INCOME_DISCONTINUOUS_OPERATIONS': 'Net Income Discontinuous Operations', 'NET_INCOME_EXTRAORDINARY': 'Net Income Extraordinary', 'NET_INCOME_FROM_CONTINUING_AND_DISCONTINUED_OPERATION': 'Net Income from Continuing & Discontinued Operation', 'NET_INCOME_FROM_CONTINUING_OPERATIONS': 'Net Income from Continuing Operations', 'NET_INCOME_FROM_CONTINUING_OPERATION_NET_MINORITY_INTEREST': 'Net Income from Continuing Operation Net Minority Interest', 'NET_INCOME_FROM_CONTINUING_OPS': 'Net Income From Continuing Ops', 'NET_INCOME_FROM_TAX_LOSS_CARRYFORWARD': 'Net Income from Tax Loss Carryforward', 'NET_INCOME_INCLUDING_NONCONTROLLING_INTERESTS': 'Net Income Including Non-Controlling Interests', 'NET_INCOME_TITLE': 'Net Income', 'NET_INSTITUTIONAL_PURCHASES_PRIOR_LATEST_QUARTER': 'Net Institutional Purchases Prior Quarter to Latest Quarter', 'NET_INTANGIBLES_PURCHASE_AND_SALE': 'Net Intangibles Purchase And Sale', 'NET_INTEREST_INCOME': 'Net Interest Income', 'NET_INVESTMENT_INCOME': 'Net Investment Income', 'NET_INVESTMENT_PROPERTIES_PURCHASE_AND_SALE': 'Net Investment Properties Purchase And Sale', 'NET_INVESTMENT_PURCHASE_AND_SALE': 'Net Investment Purchase And Sale', 'NET_ISSUANCE_PAYMENTS_OF_DEBT': 'Net Issuance Payments of Debt', 'NET_LOAN': 'Net Loan', 'NET_LONG_TERM_DEBT_ISSUANCE': 'Net Long Term Debt Issuance', 'NET_MARGIN': 'Net Margin', 'NET_NON_OPERATING_INTEREST_INCOME_EXPENSE': 'Net Non Operating Interest Income Expense', 'NET_OCCUPANCY_EXPENSE': 'Net Occupancy Expense', 'NET_OTHER_FINANCING_CHARGES': 'Net Other Financing Charges', 'NET_OTHER_INVESTING_CHANGES': 'Net Other Investing Changes', 'NET_POLICYHOLDER_BENEFITS_AND_CLAIMS': 'Net Policyholder Benefits And Claims', 'NET_PPE': 'Net PPE', 'NET_PPE_PURCHASE_AND_SALE': 'Net PPE Purchase And Sale', 'NET_PREFERRED_STOCK_ISSUANCE': 'Net Preferred Stock Issuance', 'NET_PREMIUMS_WRITTEN': 'Net Premiums Written', 'NET_PROCEEDS_PAYMENT_FOR_LOAN': 'Net Proceeds Payment for Loan', 'NET_PROPERTY_PLANT_AND_EQUIPMENT': 'Net property, plant and equipment', 'NET_REALIZED_GAIN_LOSS_ON_INVESTMENTS': 'Net Realized Gain Loss on Investments', 'NET_RECEIVABLES': 'Net Receivables', 'NET_SHARES_PURCHASED_SOLD': 'Net Shares Purchased (Sold)', 'NET_SHORT_TERM_DEBT_ISSUANCE': 'Net Short Term Debt Issuance', 'NET_TANGIBLE_ASSETS': 'Net Tangible Assets', 'NET_UTILITY_PLANT': 'Net Utility Plant', 'NEUTRAL': 'Neutral', 'NEW': 'NEW', 'NEW_PORTFOLIO_NAME': 'New Portfolio Name', 'NEWS': 'News', 'NEWS_TITLE': 'Latest Financial and Business News', 'NEW_HIGH': 'Price Alert', 'NEW_LOW': 'Price Alert', 'NEW_PORTFOLIO': 'New Portfolio', 'NEW_SCREENER': 'Create New Screener', 'NEW_VIEW': 'New View', 'NEW_WATCHLIST': 'New Watchlist', 'NEW_ZEALAND': 'New Zealand', 'NEXT': 'Next', 'NEXT_5_YEARS': 'Next 5 Years (per annum)', 'NEXT_QTR': 'Next Qtr.', 'NEXT_YEAR': 'Next Year', 'NO': 'No', 'NO_SHARES': 'No shares', 'NONE': 'None', 'NONMETALLIC_MINERAL_MINING': 'Nonmetallic Mineral Mining', 'NONMETALLIC_MINERAL_MINING_DESC': 'Nonmetallic Mineral Mining Stocks', 'NON_CURRENT_ACCOUNTS_RECEIVABLE': 'Non Current Accounts Receivable', 'NON_CURRENT_ACCRUED_EXPENSES': 'Non Current Accrued Expenses', 'NON_CURRENT_ASSETS': 'Non-current assets', 'NON_CURRENT_DEFERRED_ASSETS': 'Non Current Deferred Assets', 'NON_CURRENT_DEFERRED_LIABILITIES': 'Non Current Deferred Liabilities', 'NON_CURRENT_DEFERRED_REVENUE': 'Non Current Deferred Revenue', 'NON_CURRENT_DEFERRED_TAXES_ASSETS': 'Non Current Deferred Taxes Assets', 'NON_CURRENT_DEFERRED_TAXES_LIABILITIES': 'Non Current Deferred Taxes Liabilities', 'NON_CURRENT_LIABILITIES': 'Non-current liabilities', 'NON_CURRENT_NOTE_RECEIVABLES': 'Non Current Note Receivables', 'NON_CURRENT_PENSION_AND_OTHER_POSTRETIREMENT_BENEFIT_PLANS': 'Non Current Pension And Other Post-Retirement Benefit Plans', 'NON_CURRENT_PREPAID_ASSETS': 'Non Current Prepaid Assets', 'NON_INTEREST_BEARING_DEPOSITS': 'Non Interest Bearing Deposits', 'NON_INTEREST_EXPENSE': 'Non Interest Expense', 'NON_INTEREST_INCOME': 'Non Interest Income', 'NON_RECURRING': 'Non Recurring', 'NON_RECURRING_EVENTS': 'Non-recurring Events', 'NORMALIZED_BASIC_EPS': 'Normalized Basic EPS', 'NORMALIZED_DILUTED_EPS': 'Normalized Diluted EPS', 'NORMALIZED_EBITDA': 'Normalized EBITDA', 'NORMALIZED_INCOME': 'Normalized Income', 'NOTES_RECEIVABLE': 'Notes Receivable', 'NOTICE_INSIDER_ROSTER': '*Insider roster data is derived solely from the last 24 months of Form 3 & Form 4 SEC filings.', 'NOTICE_VICKER_INDEX': \"Vicker's Insider Sentiment index provides insights into company officers and directors trading in their own stock.\", 'NOTIFICATIONS': 'Notifications', 'NOTIFY_ME': 'Notify me', 'NOT_FOUND': 'Not Found', 'NO_ABOUT_COMPANY': 'We have no additional information for this company', 'NO_CAPITAL_GAIN': 'No Capital Gains', 'NO_DATA': '{type} data is not available', 'NO_DIVIDENDS': 'No Dividends', 'NO_GRADE': 'No grade available at this time.', 'NO_NOTIFICATION_DATA': 'Notification data is not available', 'NO_OF_ANALYSTS': 'No. of Analysts', 'NO_SPLITS': 'No Split', 'NO_THANKS': 'No thanks', 'NO_THANKS_COMMA': 'No, thanks', 'NUMBER_RANGE': '{0} - {1}', 'NUM_EVENTS': '{num} events', 'NUM_M': '{num}M', 'NUM_SELECTED': '{num} selected', 'NUM_W': '{num}W', 'NUM_YEARS_DOWN': 'Number of Years Down', 'NUM_YEARS_UP': 'Number of Years Up', 'OCCUPANCY_AND_EQUIPMENT': 'Occupancy And Equipment', 'OFF': 'Off', 'OFFICE_SUPPLIES': 'Office Supplies', 'OFFICE_SUPPLIES_DESC': 'Office Supplies Stocks', 'OFFICIAL_SITE': 'Official Site', 'OIL_GAS_DRILLING_EXPLORATION': 'Oil & Gas Drilling & Exploration', 'OIL_GAS_DRILLING_EXPLORATION_DESC': 'Oil & Gas Drilling & Exploration Stocks', 'OIL_GAS_EQUIPMENT_SERVICES': 'Oil & Gas Equipment & Services', 'OIL_GAS_EQUIPMENT_SERVICES_DESC': 'Oil & Gas Equipment & Services Stocks', 'OIL_GAS_PIPELINES': 'Oil & Gas Pipelines', 'OIL_GAS_PIPELINES_DESC': 'Oil & Gas Pipelines Stocks', 'OIL_GAS_REFINING_MARKETING': 'Oil & Gas Refining & Marketing', 'OIL_GAS_REFINING_MARKETING_DESC': 'Oil & Gas Refining & Marketing Stocks', 'OKAY': 'Okay', 'OLDER': 'Older', 'ON': 'On', 'ONE_DAY_PERCENT_CHANGE': '1 Day % Change', 'ONE_MONTH': '1-Month', 'ONE_TIME': 'One time', 'ONE_YEAR': '1-Year', 'ONE_YEAR_DTR': '1-Year Daily Total Return', 'ONE_YEAR_EPS_GROWTH': 'EPS Growth(1Y)', 'ONE_YEAR_TARGET_PRICE': '1y Target Est', 'OPEN': 'Open', 'OPEN_INTERACTIVE_CHART': 'Interactive chart', 'OPEN_INTEREST': 'Open Interest', 'OPERATING_ACTIVITIES_CASHFLOWS_PROVIDED': 'Operating Activities, Cash Flows Provided By or Used In', 'OPERATING_CASH_FLOW': 'Operating Cash Flow', 'OPERATING_EXPENSE': 'Operating Expense', 'OPERATING_EXPENSES': 'Operating Expenses', 'OPERATING_GAINS_LOSSES': 'Operating Gains Losses', 'OPERATING_INCOME': 'Operating Income', 'OPERATING_INCOME_LOSS': 'Operating Income or Loss', 'OPERATING_MARGIN': 'Operating Margin', 'OPERATING_REVENUE': 'Operating Revenue', 'OPERATIONS': 'Operations', 'OPERATION_AND_MAINTENANCE': 'Operation & Maintenance', 'OPTIONS': 'Options', 'OPTIONS_HIGHEST_IMPLIED_VOLATALITY_TITLE': 'Options: Highest Implied Volatility', 'OPTIONS_HIGHEST_OPEN_INTEREST_TITLE': 'Options: Highest OI', 'OPTIONS_TITLE': 'Most Traded Options', 'OPTION_CONTRACT_CALL': 'Calls', 'OPTION_CONTRACT_IN_THE_MONEY': 'In The Money', 'OPTION_CONTRACT_LIST_DISPLAY': 'List', 'OPTION_CONTRACT_MINI_DISPLAY': 'Mini', 'OPTION_CONTRACT_PUT': 'Puts', 'OPTION_CONTRACT_REGULAR_DISPLAY': 'Regular', 'OPTION_CONTRACT_STRADDLE_DISPLAY': 'Straddle', 'OR': 'or', 'ORDER_HISTORY': 'Order History', 'ORDINARY_SHARES_NUMBER': 'Ordinary Shares Number', 'OTD_IMPLIED_VOLATILITY': 'Implied Volatility', 'OTHERS': 'Others', 'OTHERUNDER_PREFERRED_STOCK_DIVIDEND': 'Otherunder Preferred Stock Dividend', 'OTHER_ASSETS': 'Other Assets', 'OTHER_CAPITAL_STOCK': 'Other Capital Stock', 'OTHER_CASHFLOWS_FROM_FINANCING_ACT': 'Other Cash Flows from Financing Activities', 'OTHER_CASHFLOWS_FROM_INVESTING_ACT': 'Other Cash flows from Investing Activities', 'OTHER_CASH_ADJUSTMENT_INSIDE_CHANGEIN_CASH': 'Other Cash Adjustment Inside Change in Cash', 'OTHER_CASH_ADJUSTMENT_OUTSIDE_CHANGEIN_CASH': 'Other Cash Adjustment Outside Change in Cash', 'OTHER_CASH_PAYMENTSFROM_OPERATING_ACTIVITIES': 'Other Cash Payments from Operating Activities', 'OTHER_CASH_RECEIPTSFROM_OPERATING_ACTIVITIES': 'Other Cash Receipts from Operating Activities', 'OTHER_COSTOF_REVENUE': 'Other Cost of Revenue', 'OTHER_CURRENT_ASSETS': 'Other Current Assets', 'OTHER_CURRENT_BORROWINGS': 'Other Current Borrowings', 'OTHER_CURRENT_LIABILITIES': 'Other Current Liabilities', 'OTHER_CUSTOMER_SERVICES': 'Other Customer Services', 'OTHER_EQUITY_ADJUSTMENTS': 'Other Equity Adjustments', 'OTHER_EQUITY_INTEREST': 'Other Equity Interest', 'OTHER_FINANCING_ACTIVITIES': 'Other financing activites', 'OTHER_GAND_A': 'Other G and A', 'OTHER_INCOME_EXPENSE': 'Other Income Expense', 'OTHER_INTANGIBLE_ASSETS': 'Other Intangible Assets', 'OTHER_INTEREST_EXPENSE': 'Other Interest Expense', 'OTHER_INTEREST_INCOME': 'Other Interest Income', 'OTHER_INVENTORIES': 'Other Inventories', 'OTHER_INVESTED_ASSETS': 'Other Invested Assets', 'OTHER_INVESTING_ACTIVITIES': 'Other investing activites', 'OTHER_INVESTMENTS': 'Other Investments', 'OTHER_ITEMS': 'Other Items', 'OTHER_LIABILITIES': 'Other Liabilities', 'OTHER_LOAN_ASSETS': 'Other Loan Assets', 'OTHER_LONG_TERM_ASSETS': 'Other long-term assets', 'OTHER_LONG_TERM_LIABILITIES': 'Other long-term liabilities', 'OTHER_NON_CASH_ITEMS': 'Other non-cash items', 'OTHER_NON_CURRENT_ASSETS': 'Other Non Current Assets', 'OTHER_NON_CURRENT_LIABILITIES': 'Other Non Current Liabilities', 'OTHER_NON_INTEREST_EXPENSE': 'Other Non Interest Expense', 'OTHER_NON_INTEREST_INCOME': 'Other Non Interest Income', 'OTHER_NON_OPERATING_INCOME_EXPENSES': 'Other Non Operating Income Expenses', 'OTHER_OPERATING_EXPENSES': 'Other Operating Expenses', 'OTHER_PAYABLE': 'Other Payable', 'OTHER_PROPERTIES': 'Other Properties', 'OTHER_REAL_ESTATE_OWNED': 'Other Real Estate Owned', 'OTHER_RECEIVABLES': 'Other Receivables', 'OTHER_SHORT_TERM_INVESTMENTS': 'Other Short Term Investments', 'OTHER_SPECIAL_CHARGES': 'Other Special Charges', 'OTHER_STOCKHOLDER_EQUITY': 'Other Stockholder Equity', 'OTHER_TAXES': 'Other Taxes', 'OTHER_TRENDING_TICKERS': 'Other Trending Tickers', 'OTHER_UNDERWRITING_EXPENSES_PAID': 'Other Underwriting Expenses Paid', 'OTHER_WORKING_CAPITAL': 'Other working capital', 'OUTLOOK': 'Outlook', 'OUTPERFORM': 'Outperform', 'OVERVALUED': 'Overvalued', 'OVERALL_GRADE': 'Overall grade', 'OVERALL_INNOVATION_SCORE': 'Overall Innovation Score', 'OVERALL_PORTFOLIO_COMPOSITION': 'Overall Portfolio Composition (%)', 'OVERVIEW': 'Overview', 'OWNERSHIP_BREAKDOWN': 'Breakdown', 'OWNERSHIP_DIRECT_HOLDERS': 'Direct Holders (Forms 3 and 4)', 'OWNERSHIP_INSIDERS_TRANSACTIONS': 'Insider Transactions Reported - Last Two Years', 'OWNERSHIP_MAJOR_HOLDERS': 'Major Holders', 'OWNERSHIP_NUMBER_INSTITUION_SHARES': 'Number of Institutions Holding Shares', 'OWNERSHIP_PERCENT_FLOAT_INSTITUTIONS': '% of Float Held by Institutions', 'OWNERSHIP_PERCENT_SHARES_INSIDERS': '% of Shares Held by All Insider', 'OWNERSHIP_PERCENT_SHARES_INSTITUTIONS': '% of Shares Held by Institutions', 'OWNERSHIP_TOP_INSTITUTION_TITLE': 'Top Institutional Holders', 'OWNERSHIP_TOP_MUTUALFUND_TITLE': 'Top Mutual Fund Holders', 'PACKAGING_CONTAINERS': 'Packaging & Containers', 'PACKAGING_CONTAINERS_DESC': 'Packaging & Containers Stocks', 'PAGE_OF': 'Page {first} of {last}', 'PAPER_PAPER_PRODUCTS': 'Paper & Paper Products', 'PAPER_PAPER_PRODUCTS_DESC': 'Paper & Paper Products Stocks', 'PARAMETERS': 'Parameters', 'PAST_5_YEARS': 'Past 5 Years (per annum)', 'PAST_QUARTERLY_RETURNS': 'Past Quarterly Returns (%)', 'PATTERN_BULLISH': 'Bullish pattern', 'PATTERN_BEARISH': 'Bearish pattern', 'PATTERN_SENTIMENT_MSG_N': 'Neutral pattern', 'PAY': 'Pay', 'PAYABLES': 'Payables', 'PAYABLES_AND_ACCRUED_EXPENSES': 'Payables And Accrued Expenses', 'PAYMENTSON_BEHALFOF_EMPLOYEES': 'Payments on Behalf of Employees', 'PAYMENTSTO_SUPPLIERSFOR_GOODSAND_SERVICES': 'Payments to Suppliers for Goods & Services', 'PAYMENT_FOR_LOANS': 'Payment for Loans', 'PAYOUT_RATIO': 'Payout Ratio', 'PEERS': 'Peers', 'PENSIONAND_OTHER_POST_RETIREMENT_BENEFIT_PLANS_CURRENT': 'Pension & Other Post Retirement Benefit Plans Current', 'PENSION_AND_EMPLOYEE_BENEFIT_EXPENSE': 'Pension And Employee Benefit Expense', 'PEOPLE_ALSO_WATCH': 'People Also Watch', 'PERCENTAGE': 'Percentage', 'PERCENTILE_ND': '{value}nd percentile', 'PERCENTILE_RD': '{value}rd percentile', 'PERCENTILE_ST': '{value}st percentile', 'PERCENTILE_TH': '{value}th percentile', 'PERCENT_ASSETS': '% Assets', 'PERCENT_CHANGE': '% Change', 'PERCENT_CHANGE_IN_INSTITUTIONAL_SHARES_HELD': '% Change in Institutional Shares Held', 'PERCENT_HELD_BY_INSIDERS': '% Held by Insiders', 'PERCENT_HELD_BY_INSTITUTIONS': '% Held by Institutions', 'PERCENT_NET_SHARES_PURCHASED_SOLD': '% Net Shares Purchased (Sold)', 'PERCENT_OUT': '% Out', 'PERFORM': 'perform', 'PERFORMANCE': 'Performance', 'PERFORMANCE_AND_RISK': 'Performance & Risk', 'PERFORMANCE_OVERVIEW': 'Performance Overview', 'PERIOD': 'Period', 'PERIOD_ENDING': 'Period Ending', 'PERIOD_NOTICE': 'Data generated based on selected period from today', 'PERSONAL_COMPUTERS': 'Personal Computers', 'PERSONAL_COMPUTERS_DESC': 'Personal Computers Stocks', 'PERSONAL_FINANCE_NEWS_TITLE': 'Personal Finance News', 'PERSONAL_PRODUCTS': 'Personal Products', 'PERSONAL_PRODUCTS_DESC': 'Personal Products Stocks', 'PERSONAL_SERVICES': 'Personal Services', 'PERSONAL_SERVICES_DESC': 'Personal Services Stocks', 'PETROLIO-E-GAS-NATURALE_TITLE': 'Oil and Natural Gas', 'PE_RATIO': 'PE Ratio (TTM)', 'PHONE': 'Phone', 'PHOTOGRAPHIC_EQUIPMENT_SUPPLIES': 'Photographic Equipment & Supplies', 'PHOTOGRAPHIC_EQUIPMENT_SUPPLIES_DESC': 'Photographic Equipment & Supplies Stocks', 'PILLAR_SCORES': 'The pillar scores are Audit: {audit}; Board: {board}; Shareholder Rights: {shareRight}; Compensation: {comp}.', 'PINTEREST': 'Pinterest', 'PINTEREST_SHARE': 'Pin it', 'PLEASE_CLICK_HERE_TO': 'Please click here to do so.', 'PLUS': 'Plus', 'POLICYHOLDER_BENEFITS_CEDED': 'Policyholder Benefits Ceded', 'POLICYHOLDER_BENEFITS_GROSS': 'Policyholder Benefits Gross', 'POLICYHOLDER_DEPOSIT_INVESTMENT_RECEIVED': 'Policyholder Deposit Investment Received', 'POLICYHOLDER_DIVIDENDS': 'Policyholder Dividends', 'POLICYHOLDER_FUNDS': 'Policyholder Funds', 'POLICYHOLDER_INTEREST': 'Policyholder Interest', 'POLICY_ACQUISITION_EXPENSE': 'Policy Acquisition Expense', 'POLICY_HOLDERS_LIABILITIES': 'Policy Holders Liabilities', 'POLICY_LOANS': 'Policy Loans', 'POLLUTION_TREATMENT_CONTROLS': 'Pollution & Treatment Controls', 'POLLUTION_TREATMENT_CONTROLS_DESC': 'Pollution & Treatment Controls Stocks', 'POLL_QA': 'Poll and Q&A', 'POPULAR_FILTERS': 'Popular Filters', 'POPULAR_WATCHLISTS': 'Popular Watchlists', 'PORTFOLIO_ACTION_DESC': 'Look at what users are adding, deleting, and moving around in their portfolios.', 'PORTFOLIO_ACTION_TITLE': 'Portfolio Changes', 'PORTFOLIO_ANCHORS': 'Portfolio Anchors', 'PORTFOLIO_ANCHORS_DESC': \"Funds with Performance Rating of 4 & 5 and top-half returns that could serve as a rock-solid core of an investor's portfolio\", 'PORTFOLIO_CASH_SETTINGS': 'Portfolio Cash Settings', 'PORTFOLIO_CURRENCY': 'Portfolio Currency', 'PORTFOLIO_DAILY_SUMMARY': 'Portfolio Summary', 'PORTFOLIO_DETAILS': 'Portfolio Details', 'PORTFOLIO_HOLDINGS_BASIC_DESCRIPTION': 'Existing portfolio experience, with only support to input Buy.', 'PORTFOLIO_HOLDINGS_BETA_DESCRIPTION': 'Our new and enhanced portfolio version with support for Buy, Sell, Short, Buy to Cover Transactions and much more.', 'PORTFOLIO_HOLDINGS_BETA_TITLE_CREATE': 'Portfolio 2.0 with Transactions', 'PORTFOLIO_HOLDINGS_BETA_TITLE_PAGE0': 'Introducing Portfolio 2.0', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE0': 'All new features to help you better manage your portfolio holdings', 'PORTFOLIO_HOLDINGS_BETA_TITLE_PAGE1': \"What's new?\", 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1': 'All the tools you need to take your portfolio management to the next level.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1_CASH': 'Manage cash like any other asset.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1_DIVIDENDS': 'Automated dividend tracking and management.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1_LOTS': 'Automatic lot management using FIFO (First in First Out) methodology.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1_TRANSACTIONS': 'Buy, Sell, Sell Short, and Buy to Cover transactions supported.', 'PORTFOLIO_HOLDINGS_BETA_TITLE_PAGE2': 'Setup your portfolio', 'PORTFOLIO_HOLDINGS_BETA_EDUCATION_PAGE2': 'Your portfolio {pfName} will be cloned as part of this Beta trial. This allows you to try the new transactions features without disrupting your primary portfolio.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE2_CASH': 'Toggle on to enable automatic cash management - you can continue to manage your cash holdings manually if you prefer', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE2_HOLDINGS': \"Enabling will add this portfolio's value to the total holdings amount\", 'PORTFOLIO_HOLDINGS_BETA_WARNING_PAGE2': 'Please note that changes made to this cloned portfolio will not have any impact on your exisiting portfolio.', 'PORTFOLIO_NAME': 'Portfolio Name', 'PORTFOLIO_NEWS': 'Portfolio News', 'PORTFOLIO_SHARING_TEXT': 'We will only share the company tickers. Holdings information will not be included.', 'PORTFOLIO_STATISTICS': 'Portfolio Statistics', 'PORTFOLIO_TOTAL_HOLDINGS_SETTINGS': 'Portfolio Total Holdings Settings', 'PORTFOLIO_WELCOME_MESSAGE': 'Welcome to My Portfolio - Link your brokers or add lots', 'PORTFOLIO_WELCOME_MESSAGE_NONTRADE': 'Welcome to Yahoo Finance Portfolios', 'PORTFOLIO_WELCOME_SUBMSG': 'Track your overall performance in one place. Add portfolio holdings manually by entering lots or by linking your online brokerage account.', 'PORTFOLIO_WELCOME_SUBMSG_NONTRADE': 'Track your performance with real-time data and news related to your symbols.', 'PORTFOLIO_WELCOME_SUBSUBMSG': 'Manage your holdings efficiently and create custom views using over 60 data points.', 'POST': 'Post', 'POSTINGS': 'Postings', 'POST_MARKET_NOTICE': 'After hours:', 'PRE': 'Pre', 'PREDEFINED_SCREENER': 'Screener', 'PREFERRED': 'Preferred', 'PREFERRED_SECURITIES_OUTSIDE_STOCK_EQUITY': 'Preferred Securities Outside Stock Equity', 'PREFERRED_SHARES_NUMBER': 'Preferred Shares Number', 'PREFERRED_STOCK': 'Preferred Stock', 'PREFERRED_STOCK_DIVIDENDS': 'Preferred Stock Dividends', 'PREFERRED_STOCK_DIVIDEND_PAID': 'Preferred Stock Dividend Paid', 'PREFERRED_STOCK_EQUITY': 'Preferred Stock Equity', 'PREFERRED_STOCK_ISSUANCE': 'Preferred Stock Issuance', 'PREFERRED_STOCK_OTHER_ADJ': 'Preferred Stock And Other Adjustments', 'PREFERRED_STOCK_PAYMENTS': 'Preferred Stock Payments', 'PREMIUM': 'Premium', 'PREMIUM_CLOSE_PRICE': 'Close price', 'PREMIUM_DAILY': 'DAILY', 'PREMIUM_LONG_TERM': 'Long Term', 'PREMIUM_MID_TERM': 'Mid Term', 'PREMIUM_RECEIVED': 'Premium Received', 'PREMIUM_SHORT_TERM': 'Short Term', 'PREMIUM_TECH_EVENTS_FOR': '{num} Active Technical Events in {term}', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST': 'ADDED TO WATCHLIST', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_1': 'You will now see', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_2': ' more {ticker} news ', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_3': 'in your Yahoo feed', 'PREMIUM_UPSELL_CHART_PATTERN': 'Pattern', 'PREMIUM_UPSELL_CTA': 'Start your free trial today. >>', 'PREMIUM_UPSELL_DIFF_D': '{days}d', 'PREMIUM_UPSELL_DIFF_DAYS_AGO': '{days} days ago', 'PREMIUM_UPSELL_DIFF_ONE_DAY_AGO': '1 day ago', 'PREMIUM_UPSELL_DIFF_ONE_MONTH_AGO': '1 month ago', 'PREMIUM_UPSELL_NEW_FEATURE': 'NEW FEATURE', 'PREMIUM_UPSELL_NEW_FEATURE_LOGGED_IN': 'Stay up-to-date with news and stock price for {ticker}', 'PREMIUM_UPSELL_NEW_FEATURE_LOGGED_OUT': 'Sign in to keep track of {ticker} news and performance', 'PREMIUM_UPSELL_PATTERN_DETAIL': 'View bullish/bearish technical chart patterns with one click.', 'PREMIUM_UPSELL_PATTERN_TITLE': '{type} Pattern Detected', 'PREMIUM_UPSELL_PERFORMANCE_DETAIL': 'Conduct technical analysis for the short, mid, or long term.', 'PREMIUM_UPSELL_PERFORMANCE_TITLE': 'Performance Outlook', 'PREMIUM_UPSELL_RECOMMENDATION_TITLE': 'Recommendation rating', 'PREMIUM_UPSELL_REPORTS_DETAIL': 'Analyst reports and guidance from Morningstar and Argus.', 'PREMIUM_UPSELL_REPORTS_TITLE': 'Recent Research', 'PREMIUM_UPSELL_SIG_DEVS_DETAIL': 'Plot company events on charts to view impact on performance.', 'PREMIUM_UPSELL_SIG_DEVS_TITLE': 'Significant Event Occurred', 'PREMIUM_UPSELL_SIG_DEVS_TITLE_SHORT': 'Significant Event', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_CTA': 'Research report available', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_1': 'You’ve read ', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_2': '{usedCount} of your {maxCount} ', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_3': 'free research reports this quarter', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_HEADER': 'Unlock premium independent research on this stock.', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_CTA': 'Upgrade to read report', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_TOOLTIP_DETAIL': 'You’ve read all your free reports this quarter.', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_TOOLTIP_HEADER': 'Get unlimited reports with Yahoo Finance Plus.', 'PREMIUM_UPSELL_VALUATION_DETAIL': 'Determine the fair value of any stock with Premium.', 'PREMIUM_UPSELL_VALUATION_TITLE': 'Fair Value Estimate', 'PREMIUM_UPSELL_FEATURED_IN_TITLE': 'Featured in', 'PREMIUM_UPSELL_FEATURED_IN_PUBLISHER': 'Publisher', 'PREMIUM_UPSELL_FEATURED_IN_DAYCHNG': 'Day Change', 'PREMIUM_UPSELL_FEATURED_IN_FOLLOWERS': 'Followers', 'PREMIUM_WEEKLY': 'WEEKLY', 'PREMIUM_WHAT_IT_MEANS': 'What It Means', 'PREPAID_ASSETS': 'Prepaid Assets', 'PRESENTED_BY': 'Presented By', 'PRETAX_INCOME': 'Pretax Income', 'PREV': 'Prev', 'PREVIEW': 'Preview', 'PREV_CLOSE': 'Previous Close', 'PREV_PRESIDENTS': 'Compared to previous presidents...', 'PREV_SETTLEMENT_DATE': 'Pre. Settlement', 'PRE_MARKET_NOTICE': 'Pre-Market:', 'PRICE': 'Price', 'PRICE_ALERT_DOWN': 'Price Alert', 'PRICE_ALERT_UP': 'Price Alert', 'PRICE_CHANGE': 'Price Change', 'PRICE_DAY_RANGE': 'Price day range for {symbol}', 'PRICE_DETAILS': 'Price details', 'PRICE_TARGET': 'Price Target', 'PRICE_TARGET_LOWERCASE': 'Price target', 'PRICE_TO_BOOK': 'Price/Book', 'PRICE_TO_CASHFLOW': 'Price/Cashflow', 'PRICE_TO_EARNINGS': 'Price/Earnings', 'PRICE_TO_SALES': 'Price/Sales', 'PRICINGS': 'Pricings', 'PRINT': 'Print', 'PRINTED_CIRCUIT_BOARDS': 'Printed Circuit Boards', 'PRINTED_CIRCUIT_BOARDS_DESC': 'Printed Circuit Boards Stocks', 'PRIVACY_POLICY': 'Privacy Policy', 'PRIVATE_COMPANY': 'Private Company', 'PROCEEDS': 'Proceeds', 'PROCEEDS_FROM_LOANS': 'Proceeds from Loans', 'PROCEEDS_FROM_STOCK_OPTION_EXERCISED': 'Proceeds from Stock Option Exercised', 'PROCEEDS_PAYMENT_FEDERAL_FUNDS_SOLD_AND_SECURITIES_PURCHASED_UNDER_AGREEMENT_TO_RESELL': 'Proceeds Payment Federal Funds Sold And Securities Purchased Under Agreement To Resell', 'PROCEEDS_PAYMENT_IN_INTEREST_BEARING_DEPOSITS_IN_BANK': 'Proceeds Payment in Interest Bearing Deposits in Bank', 'PROCESSED_PACKAGED_GOODS': 'Processed & Packaged Goods', 'PROCESSED_PACKAGED_GOODS_DESC': 'Processed & Packaged Goods Stocks', 'PROCESSING_SYSTEMS_PRODUCTS': 'Processing Systems & Products', 'PROCESSING_SYSTEMS_PRODUCTS_DESC': 'Processing Systems & Products Stocks', 'PROFESSIONAL_EXPENSE_AND_CONTRACT_SERVICES_EXPENSE': 'Professional Expense And Contract Services Expense', 'PROFITABILITY': 'Profitability', 'PROFITABILITY_RATIOS_AND_DIVIDENDS': 'Profitability Ratios and Dividends', 'PROFIT_MARGIN': 'Profit Margin', 'PROMOTE_NEW_CHART': 'Try our new charting experience and share your thoughts', 'PROPERTIES': 'Properties', 'PROPERTY_CASUALTY_INSURANCE': 'Property & Casualty Insurance', 'PROPERTY_CASUALTY_INSURANCE_DESC': 'Property & Casualty Insurance Stocks', 'PROPERTY_MANAGEMENT': 'Property Management', 'PROPERTY_MANAGEMENT_DESC': 'Property Management Stocks', 'PROPERTY_PLANT_AND_EQUIPMENT': 'Property, plant and equipment', 'PROPERTY_TITLE': 'Property', 'PORTFOLIO_HOLDING_PROMO_TITLE': 'Get Insights', 'PORTFOLIO_WEIGHT': '{weight} of your portfolios.', 'PORTFOLIO_WEIGHT_DISCLAIMER': 'Only you can see this.', 'PROSPECTUS_GROSS_EXPENSE_RATIO': 'Prospectus Gross Expense Ratio', 'PROSPECTUS_NET_EXPENSE_RATIO': 'Prospectus Net Expense Ratio', 'PROVISIONAND_WRITE_OFFOF_ASSETS': 'Provision & Write Off of Assets', 'PROVISION_FOR_DOUBTFUL_ACCOUNTS': 'Provision for Doubtful Accounts', 'PROVISION_FOR_LOAN_LEASE_AND_OTHER_LOSSES': 'Provision for Loan Lease And Other Losses', 'PUBLISHING_BOOKS': 'Publishing - Books', 'PUBLISHING_BOOKS_DESC': 'Publishing - Books Stocks', 'PUBLISHING_NEWSPAPERS': 'Publishing - Newspapers', 'PUBLISHING_NEWSPAPERS_DESC': 'Publishing - Newspapers Stocks', 'PUBLISHING_PERIODICALS': 'Publishing - Periodicals', 'PUBLISHING_PERIODICALS_DESC': 'Publishing - Periodicals Stocks', 'PURCHASES': 'Purchases', 'PURCHASES_OF_INVESTMENTS': 'Purchases of investments', 'PURCHASE_DETAILS': 'Purchase Details', 'PURCHASE_INFO': 'Purchase info', 'PURCHASE_OF_BUSINESS': 'Purchase of Business', 'PURCHASE_OF_INTANGIBLES': 'Purchase of Intangibles', 'PURCHASE_OF_INVESTMENT': 'Purchase of Investment', 'PURCHASE_OF_INVESTMENT_PROPERTIES': 'Purchase of Investment Properties', 'PURCHASE_OF_PPE': 'Purchase of PPE', 'RELATED_TICKERS': 'RelatedTickers', 'REVIEW_ACCOUNT': 'Review account information', 'START': 'Start', 'QSP_DISCLAIMER': 'Trade prices are not sourced from all markets', 'QUANTITY': 'Quantity', 'QUARTERLY': 'Quarterly', 'QUARTERLY_EARNINGS_GROWTH': 'Quarterly Earnings Growth', 'QUARTERLY_REVENUE_GROWTH': 'Quarterly Revenue Growth', 'QUARTER_FOUR': 'Q4', 'QUARTER_ONE': 'Q1', 'QUARTER_THREE': 'Q3', 'QUARTER_TWO': 'Q2', 'QUICK_VIDEO': 'Quick Video', 'QUOTE_LOOKUP': 'Quote Lookup', 'QUOTE_LOOKUP_PLACEHOLDER': 'Search for symbols or companies: AAPL, GOOG, DIS', 'QUOTE_PRICE_NOTICE': '{exchangeName} {marketSource}. Currency in {currency}', 'RAILROADS': 'Railroads', 'RAILROADS_DESC': 'Railroads Stocks', 'RANGE_0_99': 'Range 0-99', 'RANGE_SLIDER': 'Range Slider', 'RANK': 'Rank', 'RANK_IN_CATEGORY': 'Rank In Category (By Total Return)', 'RATE': 'Rate', 'RATING': 'Rating', 'RATIOS': 'Ratios', 'RAW_MATERIALS': 'Raw Materials', 'READ_MORE': 'Read more', 'READ_RELEVANT_NEWS': 'Read Relevant Investment News', 'REALIZED_GAIN': 'Realized Gain', 'REALIZED_GAIN_LOSS_ON_SALE_OF_LOANS_AND_LEASE': 'Realized Gain Loss On Sale of Loans And Lease', 'REAL_ESTATE_DEVELOPMENT': 'Real Estate Development', 'REAL_ESTATE_DEVELOPMENT_DESC': 'Real Estate Development Stocks', 'REAL_ESTATE_TITLE': 'Real Estate', 'REAL_GDP': 'Real GDP', 'RECEIPTSFROM_CUSTOMERS': 'Receipts from Customers', 'RECEIPTSFROM_GOVERNMENT_GRANTS': 'Receipts from Government Grants', 'RECEIVABLES': 'Receivables', 'RECEIVABLES_ADJUSTMENTS_ALLOWANCES': 'Receivables Adjustments Allowances', 'RECENTLY_VIEWED_TITLE': 'Recently Viewed', 'RECENT_EVENTS': 'Recent Events', 'RECENT_UPDATES': 'Recent Updates', 'RECENT_FILINGS': 'Recent Filings', 'RECOMMENDATION': 'Recommendation', 'RECOMMENDATION_RATING': 'Recommendation Rating', 'RECOMMENDATION_RATING_SCR_RD_MSG': '{rating} on a scale of {minRating} to {maxRating}, where {minRating} is {minRatingText} and {maxRating} is {maxRatingText}', 'RECOMMENDATION_TRENDS': 'Recommendation Trends', 'RECOMMEND_STOCKS': 'Recommended Stocks', 'RECONCILED_COST_OF_REVENUE': 'Reconciled Cost of Revenue', 'RECONCILED_DEPRECIATION': 'Reconciled Depreciation', 'RECREATIONAL_GOODS_OTHER': 'Recreational Goods, Other', 'RECREATIONAL_GOODS_OTHER_DESC': 'Recreational Goods, Other Stocks', 'RECREATIONAL_VEHICLES': 'Recreational Vehicles', 'RECREATIONAL_VEHICLES_DESC': 'Recreational Vehicles Stocks', 'RECTANGLE': 'Rectangle', 'REDEEMABLE_PREFERRED_STOCK': 'Redeemable Preferred Stock', 'REFERENCE_CODE': 'Reference Code', 'REFRESH': 'Refresh', 'REGIONAL_AIRLINES': 'Regional Airlines', 'REGIONAL_AIRLINES_DESC': 'Regional Airlines Stocks', 'REGIONAL_MIDATLANTIC_BANKS': 'Regional - Mid-Atlantic Banks', 'REGIONAL_MIDATLANTIC_BANKS_DESC': 'Regional - Mid-Atlantic Banks Stocks', 'REGIONAL_MIDWEST_BANKS': 'Regional - Midwest Banks', 'REGIONAL_MIDWEST_BANKS_DESC': 'Regional - Midwest Banks Stocks', 'REGIONAL_NORTHEAST_BANKS': 'Regional - Northeast Banks', 'REGIONAL_NORTHEAST_BANKS_DESC': 'Regional - Northeast Banks Stocks', 'REGIONAL_PACIFIC_BANKS': 'Regional - Pacific Banks', 'REGIONAL_PACIFIC_BANKS_DESC': 'Regional - Pacific Banks Stocks', 'REGIONAL_SOUTHEAST_BANKS': 'Regional - Southeast Banks', 'REGIONAL_SOUTHEAST_BANKS_DESC': 'Regional - Southeast Banks Stocks', 'REGIONAL_SOUTHWEST_BANKS': 'Regional - Southwest Banks', 'REGIONAL_SOUTHWEST_BANKS_DESC': 'Regional - Southwest Banks Stocks', 'REGRESSION': 'Regression', 'REGULATORY_ASSETS': 'Regulatory Assets', 'REGULATORY_LIABILITIES': 'Regulatory Liabilities', 'REINSURANCEAND_OTHER_RECOVERIES_RECEIVED': 'Reinsurance & Other Recoveries Received', 'REINSURANCE_RECOVERABLE': 'Reinsurance Recoverable', 'REITERATES': 'Reiterates', 'REIT_DIVERSIFIED': 'REIT - Diversified', 'REIT_DIVERSIFIED_DESC': 'REIT - Diversified Stocks', 'REIT_HEALTHCARE_FACILITIES': 'REIT - Healthcare Facilities', 'REIT_HEALTHCARE_FACILITIES_DESC': 'REIT - Healthcare Facilities Stocks', 'REIT_HOTEL_MOTEL': 'REIT - Hotel/Motel', 'REIT_HOTEL_MOTEL_DESC': 'REIT - Hotel/Motel Stocks', 'REIT_INDUSTRIAL': 'REIT - Industrial', 'REIT_INDUSTRIAL_DESC': 'REIT - Industrial Stocks', 'REIT_OFFICE': 'REIT - Office', 'REIT_OFFICE_DESC': 'REIT - Office Stocks', 'REIT_RESIDENTIAL': 'REIT - Residential', 'REIT_RESIDENTIAL_DESC': 'REIT - Residential Stocks', 'REIT_RETAIL': 'REIT - Retail', 'REIT_RETAIL_DESC': 'REIT - Retail Stocks', 'RELATED_COMPANIES': 'Related Companies', 'RELATED_FILINGS_FROM_SYMBOL': 'Related Filings from {symbol}', 'RELATED_LISTS_FOR_SYMBOL': 'Related Lists for {symbol}', 'RELATED_QUOTES': 'Related Quotes', 'RELATED_REPORT': 'Related Reports', 'RELATED_VIDEO': 'Related Video', 'REMOVE': 'Remove', 'REMOVED': 'Removed', 'REMOVE_STRIKE_FILTER': 'Remove Strike Filtering', 'RENAME_MODAL_MESSAGE': 'Enter a new name for {pfName}.', 'RENAME_PORTFOLIO': 'Rename Portfolio', 'RENAME_PORTFOLIO_ERROR': 'Unable to rename portfolio. Please retry.', 'RENTAL_LEASING_SERVICES': 'Rental & Leasing Services', 'RENTAL_LEASING_SERVICES_DESC': 'Rental & Leasing Services Stocks', 'RENTAND_LANDING_FEES_COSTOF_REVENUE': 'Rentand Landing Fees Cost of Revenue', 'RENT_AND_LANDING_FEES': 'Rental & Landing Fees', 'RENT_EXPENSE_SUPPLEMENTAL': 'Rent Expense Supplemental', 'REORDER': 'Reorder', 'REORDER_COLUMNS': 'Reorder Columns', 'REORDER_LISTS': 'Reorder Lists', 'REPAYMENT_OF_DEBT': 'Repayment of Debt', 'REPORTED_NORMALIZED_BASIC_EPS': 'Reported Normalized Basic EPS', 'REPORTED_NORMALIZED_DILUTED_EPS': 'Reported Normalized Diluted EPS', 'REPORT_ID': 'Report Id', 'REPORT_NAME': 'Report Name', 'REPORT_TYPE': 'Report type', 'REPURCHASE_OF_CAPITAL_STOCK': 'Repurchase of Capital Stock', 'RESEARCH': 'Research', 'RESEARCH_AND_DEVELOPMENT': 'Research & Development', 'RESEARCH_DEVELOPMENT': 'Research Development', 'RESEARCH_INPUT_PLACEHOLDER': 'Filter reports by symbols', 'RESEARCH_REPORT': 'Premium Research Report', 'RESEARCH_REPORTS': 'Research Reports', 'RESEARCH_SERVICES': 'Research Services', 'RESEARCH_SERVICES_DESC': 'Research Services Stocks', 'RESET': 'Reset', 'RESIDENTIAL_CONSTRUCTION': 'Residential Construction', 'RESIDENTIAL_CONSTRUCTION_DESC': 'Residential Construction Stocks', 'RESISTANCE': 'Resistance', 'RESORTS_CASINOS': 'Resorts & Casinos', 'RESORTS_CASINOS_DESC': 'Resorts & Casinos Stocks', 'RESTAURANTS': 'Restaurants', 'RESTAURANTS_DESC': 'Restaurants Stocks', 'RESTRICTED_CASH': 'Restricted Cash', 'RESTRICTED_CASH_AND_CASH_EQUIVALENTS': 'Restricted Cash & Cash Equivalents', 'RESTRICTED_CASH_AND_INVESTMENTS': 'Restricted Cash And Investments', 'RESTRICTED_COMMON_STOCK': 'Restricted Common Stock', 'RESTRICTED_INVESTMENTS': 'Restricted Investments', 'RESTRUCTURING_AND_MERGERN_ACQUISITION': 'Restructuring & Mergers Acquisition', 'RESULTS': 'Results', 'RESULTS_CALENDAR_earnings': 'Earnings on {date}', 'RESULTS_CALENDAR_economic_event': 'Economic Events on {date}', 'RESULTS_CALENDAR_ipo_info': 'IPO Events on {date}', 'RESULTS_CALENDAR_splits': 'Stock Splits on {date}', 'RESULTS_LIST': 'Results List', 'RETAILING_HOSPITALITY_TITLE': 'Retail & Hospitality', 'RETAINED_EARNINGS': 'Retained Earnings', 'RETIREMENT_TITLE': 'Retirement', 'RETURN': 'Return', 'RETURN_ON_ASSETS': 'Return on Assets', 'RETURN_ON_EQUITY': 'Return on Equity', 'REVENUE': 'Revenue', 'REVENUE_ESTIMATE': 'Revenue Estimate', 'REVENUE_PER_PERIOD': '{period} revenue', 'REVENUE_PER_SHARE': 'Revenue Per Share', 'RGAREA': 'Red Green Area', 'RISK': 'Risk', 'RISK_ANALYSIS': 'Risk Analysis', 'RISK_OVERVIEW': 'Risk Overview', 'RISK_RATING': 'Morningstar Risk Rating', 'RISK_STATISTICS': 'Risk Statistics', 'ROR_PERCENT': 'RoR (%)', 'RUBBER_PLASTICS': 'Rubber & Plastics', 'RUBBER_PLASTICS_DESC': 'Rubber & Plastics Stocks', 'R_SQUARED': 'R-squared', 'SALARIES_AND_WAGES': 'Salaries and Wages', 'SALES': 'Sales', 'SALES_GROWTH_YEAR_EST': 'Sales Growth (year/est)', 'SALES_MATURITIES_OF_INVESTMENTS': 'Sales/Maturities of investments', 'SALE_OF_BUSINESS': 'Sale of Business', 'SALE_OF_INTANGIBLES': 'Sale of Intangibles', 'SALE_OF_INVESTMENT': 'Sale of Investment', 'SALE_OF_INVESTMENT_PROPERTIES': 'Sale of Investment Properties', 'SALE_OF_PPE': 'Sale of PPE', 'SALE_PURCHASE_OF_STOCK': 'Sale Purchase of Stock', 'SALUD_TITLE': 'Healthcare', 'SALUTE_TITLE': 'Healthcare', 'SAMPLE_DATA': 'Sample Data', 'SANTE-ET-CHIMIE_TITLE': 'Healthcare', 'SAUDE-FARMACEUTICA_TITLE': 'Health & Pharmaceuticals', 'SAVE': 'Save', 'SAVED': 'Saved', 'SAVE_AS': 'Save As', 'SAVE_FILTERS': 'Save Filters', 'SAVE_LOT': 'Save Lot', 'SAVE_MONEY_TITLE': 'Save Money', 'SAVE_TRANSACTION': 'Save transaction', 'SAVE_VIEW_ERROR': 'Unable to save view. Please retry.', 'SAVINGS_LOANS': 'Savings & Loans', 'SAVINGS_LOANS_DESC': 'Savings & Loans Stocks', 'SAVING_SPENDING_TITLE': 'Saving & Spending', 'SCIENTIFIC_TECHNICAL_INSTRUMENTS': 'Scientific & Technical Instruments', 'SCIENTIFIC_TECHNICAL_INSTRUMENTS_DESC': 'Scientific & Technical Instruments Stocks', 'SCREENER': 'Screener', 'SCREENERS': 'Screeners', 'SCREENER_CRITERIA_CHANGE': 'Screening Criteria has changed.', 'SCREENER_DEFAULT_CRITERIA': 'Default Criteria', 'SCREENER_DEPEND_FIELD_MSG': 'Select {field} first', 'SCREENER_DESC_PLACEHOLDER': 'Enter a description (optional)', 'SCREENER_FIELD_addtocalendar': 'Add to Calendar', 'SCREENER_FIELD_after_release_actual': 'Actual', 'SCREENER_FIELD_altmanzscoreusingtheaveragestockinformationforaperiod.lasttwelvemonths': 'Altman Z Score', 'SCREENER_FIELD_analyst_name': 'Analyst Firm', 'SCREENER_FIELD_announce_date': 'Announced', 'SCREENER_FIELD_annualreportgrossexpenseratio': 'Annual Gross Expense Ratio', 'SCREENER_FIELD_annualreportnetexpenseratio': 'Annual Net Expense Ratio', 'SCREENER_FIELD_annualreturnnavy1': '% Change in Net Asset Value (NAV - 1 yr)', 'SCREENER_FIELD_annualreturnnavy1categoryrank': 'Annual Return NAV Year 1 Category Rank', 'SCREENER_FIELD_annualreturnnavy3': '% Change in Net Asset Value (NAV - 3 yr)', 'SCREENER_FIELD_annualreturnnavy5': '% Change in Net Asset Value (NAV - 5 yr)', 'SCREENER_FIELD_average_rating': 'Average Rating', 'SCREENER_FIELD_averagedayspayableoutstanding.lasttwelvemonths': 'Average Days Payable Outstanding (LTM)', 'SCREENER_FIELD_avgdailyvol3m': 'Avg Vol (3 month)', 'SCREENER_FIELD_basicepscontinuingoperations.lasttwelvemonths': 'EPS (Basic, Continuing Operations)', 'SCREENER_FIELD_basicweightedaveragesharesoutstanding.lasttwelvemonths': 'Basic Weighted Average Shares Outstanding (LTM)', 'SCREENER_FIELD_beta': 'Beta (5Y Monthly)', 'SCREENER_FIELD_beta1year.lasttwelvemonths': 'Beta - 1 Year (LTM)', 'SCREENER_FIELD_bookvalueshare.lasttwelvemonths': 'Book Value / Share', 'SCREENER_FIELD_briefing_com_estimate': 'Briefing Forecast', 'SCREENER_FIELD_breakoutPrice': 'Breakout Price', 'SCREENER_FIELD_targetPrice': 'Target Price', 'SCREENER_FIELD_capitalexpenditure.lasttwelvemonths': 'Capital Expenditure (CapEx)', 'SCREENER_FIELD_cashandequivalents.lasttwelvemonths': 'Cash And Equivalents (LTM)', 'SCREENER_FIELD_cashfromoperations.lasttwelvemonths': 'Cash from Operations', 'SCREENER_FIELD_cashfromoperations1yrgrowth.lasttwelvemonths': '1 yr. % Change in Cash from Operations', 'SCREENER_FIELD_cashincometaxpaidrefund.lasttwelvemonths': 'Cash Income Tax Paid (Refund) (LTM)', 'SCREENER_FIELD_cashinterestpaid.lasttwelvemonths': 'Cash Interest Paid (LTM)', 'SCREENER_FIELD_categoryname': 'Funds by Category', 'SCREENER_FIELD_change_in_number_of_institutional_holders': 'Change in no. of Holders', 'SCREENER_FIELD_circulatingSupply': 'Circulating Supply', 'SCREENER_FIELD_companyshortname': 'Company', 'SCREENER_FIELD_consecutive_years_of_dividend_growth_count': 'Consecutive Years of Dividend Growth', 'SCREENER_FIELD_consensus_estimate': 'Market Expectation', 'SCREENER_FIELD_consensuseps': 'Consensus EPS', 'SCREENER_FIELD_count': 'Document Count', 'SCREENER_FIELD_country_code': 'Country', 'SCREENER_FIELD_currency': 'Currency', 'SCREENER_FIELD_currencyname': 'Currency', 'SCREENER_FIELD_current_price': 'Price (Delayed)', 'SCREENER_FIELD_currentratio.lasttwelvemonths': 'Current Ratio', 'SCREENER_FIELD_dateisestimate': 'Estimate Date', 'SCREENER_FIELD_days_to_cover_short.value': 'Short Interest Ratio', 'SCREENER_FIELD_daysoutstandinginventoryaverageinventory.lasttwelvemonths': 'Days Outstanding Inventory (Average Inventory) (LTM)', 'SCREENER_FIELD_dayssalesoutstandingaveragereceivables.lasttwelvemonths': 'Days Sales Outstanding (Average Receivables) (LTM)', 'SCREENER_FIELD_dayvolume': 'Volume', 'SCREENER_FIELD_dealtype': 'Actions', 'SCREENER_FIELD_dilutedeps1yrgrowth.lasttwelvemonths': '1 Yr. % Change in EPS (Diluted)', 'SCREENER_FIELD_dilutedepscontinuingoperations.lasttwelvemonths': 'EPS (Diluted, Continuing Operations)', 'SCREENER_FIELD_dilutedweightedaveragesharesoutstanding.lasttwelvemonths': 'Diluted Weighted Average Shares Outstanding (LTM)', 'SCREENER_FIELD_dividendDate': 'Div Payment Date', 'SCREENER_FIELD_dividendpershare.lasttwelvemonths': 'Dividend Per Share (DPS)', 'SCREENER_FIELD_dividendsPerShare': 'Div/Share', 'SCREENER_FIELD_dividendyield': 'Dividend Yield %', 'SCREENER_FIELD_earnings_consistency': 'Earnings Consistency', 'SCREENER_FIELD_earningscalltime': 'Earnings Call Time', 'SCREENER_FIELD_earningscount': 'Earnings', 'SCREENER_FIELD_earningsfromcontinuingoperations.lasttwelvemonths': 'Earnings From Continuing Operations (LTM)', 'SCREENER_FIELD_ebit.lasttwelvemonths': 'EBIT', 'SCREENER_FIELD_ebitda.lasttwelvemonths': 'EBITDA', 'SCREENER_FIELD_ebitda1yrgrowth.lasttwelvemonths': '1 Yr. % Change in EBITDA', 'SCREENER_FIELD_ebitdainterestexpense.lasttwelvemonths': 'EBITDA / Interest Expense (LTM)', 'SCREENER_FIELD_ebitdamargin.lasttwelvemonths': 'EBITDA Margin %', 'SCREENER_FIELD_ebitinterestexpense.lasttwelvemonths': 'EBIT / Interest Expense (LTM)', 'SCREENER_FIELD_ebtexclunusualitems.lasttwelvemonths': 'EBT, Excl. Unusual Items (LTM)', 'SCREENER_FIELD_econ_release': 'Event', 'SCREENER_FIELD_economiceventcount': 'Economic Events', 'SCREENER_FIELD_ecstotalcommonsharesoutstanding.lasttwelvemonths': 'ECS Total Common Shares Outstanding (LTM)', 'SCREENER_FIELD_ecstotalsharesoutstandingonfilingdate.lasttwelvemonths': 'ECS Total Shares Outstanding on Filing Date (LTM)', 'SCREENER_FIELD_enddatetime': 'Event End Date', 'SCREENER_FIELD_endDate': 'Event Date', 'SCREENER_FIELD_environmental_score': 'Environmental Score', 'SCREENER_FIELD_eodmarketcap': 'End-of-Day Market Cap', 'SCREENER_FIELD_eodprice': 'Price (End of Day)', 'SCREENER_FIELD_eodvolume': 'Volume (End of Day)', 'SCREENER_FIELD_epsForward': 'EPS Est Next Year', 'SCREENER_FIELD_epsactual': 'Reported EPS', 'SCREENER_FIELD_epsconsensus': 'EPS Consensus', 'SCREENER_FIELD_epscurrentyear': 'EPS Current Year', 'SCREENER_FIELD_epsestimate': 'EPS Estimate', 'SCREENER_FIELD_epsgrowth.annual': 'EPS Growth (ANNUAL)', 'SCREENER_FIELD_epsgrowth.lasttwelvemonths': '1 yr. % Change in EPS (Basic)', 'SCREENER_FIELD_epsgrowth.quarterly': 'EPS Growth (QUARTERLY)', 'SCREENER_FIELD_epsgrowth.yeartodate': 'EPS Growth (YTD)', 'SCREENER_FIELD_epssurprisepct': 'Surprise(%)', 'SCREENER_FIELD_esg_score': 'ESG Score', 'SCREENER_FIELD_estimated_earnings_growth': 'Est. EPS Growth (%)', 'SCREENER_FIELD_estimated_revenue_growth': 'Est. Revenue Growth (%)', 'SCREENER_FIELD_eventid': 'Event Id', 'SCREENER_FIELD_eventname': 'Event Name', 'SCREENER_FIELD_eventtype': 'Event Type', 'SCREENER_FIELD_eventTypeName': 'Pattern Name', 'SCREENER_FIELD_ex_date': 'Ex Date', 'SCREENER_FIELD_exchange': 'Exchange', 'SCREENER_FIELD_exchange_short_name': 'Exchange', 'SCREENER_FIELD_expire_date': 'Expiration Date', 'SCREENER_FIELD_fiftytwowkpercentchange': '52 Week Price % Change', 'SCREENER_FIELD_file_date': 'File Date', 'SCREENER_FIELD_filername': 'Name', 'SCREENER_FIELD_filingdate': 'Date', 'SCREENER_FIELD_fiscalyear': 'Financial Calendar Year', 'SCREENER_FIELD_form_type': 'Form Type', 'SCREENER_FIELD_forward_dividend_per_share': 'Forward Dividend Rate (DPS)', 'SCREENER_FIELD_forward_dividend_yield': 'Forward Dividend Yield %', 'SCREENER_FIELD_fulltimeemployees.lasttwelvemonths': 'Full Time Employees (LTM)', 'SCREENER_FIELD_fundfamilyname': 'Funds by Company', 'SCREENER_FIELD_fund_investment_orientation': 'Fund Investment Orientation', 'SCREENER_FIELD_fund_investment_style': 'Fund Investment Style', 'SCREENER_FIELD_fund_name.keyword': 'Fund Name', 'SCREENER_FIELD_fund_turnover_rating': 'Fund Turnover Rating', 'SCREENER_FIELD_fund_type': 'Fund Type', 'SCREENER_FIELD_fundnetassets': 'Net Assets', 'SCREENER_FIELD_governance_score': 'Governance Score', 'SCREENER_FIELD_grossprofit.lasttwelvemonths': 'Gross Profit', 'SCREENER_FIELD_grossprofitmargin.lasttwelvemonths': 'Gross Profit Margin %', 'SCREENER_FIELD_highest_controversy': 'Highest Controversy', 'SCREENER_FIELD_holders_fund_types': 'Fund Type', 'SCREENER_FIELD_number_of_institutional_holders': 'No. of Holders', 'SCREENER_FIELD_implied_volatility': 'Implied Volatility', 'SCREENER_FIELD_industry': 'Industry', 'SCREENER_FIELD_initialinvestment': 'Initial Minimum Investment', 'SCREENER_FIELD_intradaymarketcap': 'Market Cap (Intraday)', 'SCREENER_FIELD_intradayprice': 'Price (Intraday)', 'SCREENER_FIELD_intradaypricechange': 'Price Change (Intraday)', 'SCREENER_FIELD_ipoinfo': 'IPOs', 'SCREENER_FIELD_ipoinfocount': 'IPO Pricings', 'SCREENER_FIELD_lastclose52weekhigh.lasttwelvemonths': '52 Week Price High (Last Close)', 'SCREENER_FIELD_lastclose52weeklow.lasttwelvemonths': '52 Week Price Low (Last Close)', 'SCREENER_FIELD_lastclosebsshout.lasttwelvemonths': 'Last Close BS Shout (LTM)', 'SCREENER_FIELD_lastcloseindicateddividendstockprice.lasttwelvemonths': 'Last Close Indicated Dividend / Stock Price (LTM)', 'SCREENER_FIELD_lastclosemarketcap.lasttwelvemonths': 'Market Cap (Last Close)', 'SCREENER_FIELD_lastclosemarketcapebtexclunusualitems.lasttwelvemonths': 'Last Close Market Cap / EBT Excl. Unusual Items (LTM)', 'SCREENER_FIELD_lastclosemarketcaptotalrevenue.lasttwelvemonths': 'Price / Sales (P/S)', 'SCREENER_FIELD_lastcloseprice.lasttwelvemonths': 'Last Close Price (LTM)', 'SCREENER_FIELD_lastclosepricebookvalue.lasttwelvemonths': 'Price / Book Value (P/B)', 'SCREENER_FIELD_lastclosepriceearnings.lasttwelvemonths': 'Price / Earnings (P/E)', 'SCREENER_FIELD_lastclosepricetangiblebookvalue.lasttwelvemonths': 'Price / Tangible Book Value (P/TB)', 'SCREENER_FIELD_lastclosetevebit.lasttwelvemonths': 'Total Enterprise Value (TEV) / EBIT', 'SCREENER_FIELD_lastclosetevebitda.lasttwelvemonths': 'Total Enterprise Value (TEV) / EBITDA', 'SCREENER_FIELD_lastclosetevtotalrevenue.lasttwelvemonths': 'Total Enterprise Value / Total Revenue (EV/Sales)', 'SCREENER_FIELD_leveredfreecashflow.lasttwelvemonths': 'Levered (after expenses) Free Cash Flow', 'SCREENER_FIELD_leveredfreecashflow1yrgrowth.lasttwelvemonths': '1 yr. % Change in Levered Free Cash Flow', 'SCREENER_FIELD_ltdebtequity.lasttwelvemonths': 'Long Term Debt / Equity (LT D/E) %', 'SCREENER_FIELD_mapped_rating_current': 'Current Rating', 'SCREENER_FIELD_marketcapitalvaluelong': 'Market Capital Value - Long', 'SCREENER_FIELD_morningstar_economic_moat': 'Economic Moat', 'SCREENER_FIELD_morningstar_last_close_price_to_fair_value': 'Morningstar Last Close Price / Fair Value', 'SCREENER_FIELD_morningstar_moat_trend': 'Moat Trend', 'SCREENER_FIELD_morningstar_rating': 'Morningstar Rating', 'SCREENER_FIELD_morningstar_rating_change': 'Morningstar Rating Change', 'SCREENER_FIELD_morningstar_rating_updated_time': 'Morningstar Rating Updated Time', 'SCREENER_FIELD_morningstar_stewardship': 'Stewardship', 'SCREENER_FIELD_morningstar_uncertainty': 'Uncertainty Rating', 'SCREENER_FIELD_netdebtebitda.lasttwelvemonths': 'Net Debt / EBITDA', 'SCREENER_FIELD_netepsbasic.lasttwelvemonths': 'EPS (Basic)', 'SCREENER_FIELD_netepsdiluted.lasttwelvemonths': 'EPS (Diluted)', 'SCREENER_FIELD_netincome1yrgrowth.lasttwelvemonths': '1 Yr. % Change in Net Income', 'SCREENER_FIELD_netincomeis.lasttwelvemonths': 'Net Income', 'SCREENER_FIELD_netincomemargin.lasttwelvemonths': 'Net Income Margin %', 'SCREENER_FIELD_netincometocommonexclextraitems.lasttwelvemonths': 'Net Income to Common Excl. Extra Items (LTM)', 'SCREENER_FIELD_changeInSharesHeldByInstitutions': 'Change in Shares Held', 'SCREENER_FIELD_number_of_institutional_buyers': 'No. of Buyers', 'SCREENER_FIELD_number_of_institutional_sellers': 'No. of Sellers', 'SCREENER_FIELD_numOfSharesBoughtByInstitutions': 'No. of Shares Bought', 'SCREENER_FIELD_numOfSharesSoldByInstitutions': 'No. of Shares Sold', 'SCREENER_FIELD_offerprice': 'Price', 'SCREENER_FIELD_open_interest': 'Open Interest', 'SCREENER_FIELD_operatingcashflowtocurrentliabilities.lasttwelvemonths': 'Operating Cash Flow Ratio', 'SCREENER_FIELD_operatingincome.lasttwelvemonths': 'Operating Income', 'SCREENER_FIELD_optionable': 'Optionable?', 'SCREENER_FIELD_originally_reported_actual': 'Revised from', 'SCREENER_FIELD_ownership_percent': 'Ownership %', 'SCREENER_FIELD_lastReportDate': 'Last Report Date', 'SCREENER_FIELD_payable_on': 'Payable on', 'SCREENER_FIELD_pctheldinsider': '% of Shares Outstanding Held by Insiders', 'SCREENER_FIELD_pctheldinst': '% of Shares Outstanding Held by Institutions', 'SCREENER_FIELD_percent_change_in_shares_held': '% Change in Shares Held', 'SCREENER_FIELD_peer_group': 'Peer Group', 'SCREENER_FIELD_pegratio_5y': 'Price / Earnings to Growth (P/E/G)', 'SCREENER_FIELD_peratio.annual': 'Trailing P/E (ANNUAL)', 'SCREENER_FIELD_peratio.lasttwelvemonths': 'Trailing P/E', 'SCREENER_FIELD_peratio.quarterly': 'Trailing P/E (QUARTERLY)', 'SCREENER_FIELD_peratio.yeartodate': 'Trailing P/E (YTD)', 'SCREENER_FIELD_percentchange': '% Change in Price (Intraday)', 'SCREENER_FIELD_percent_change_in_number_of_institutional_holders': '% Change in no. of Holders', 'SCREENER_FIELD_percent_change_in_ownership': '% Change in Ownership', 'SCREENER_FIELD_percent_change_in_shares_held_by_funds': '% Change in Shares Held', 'SCREENER_FIELD_percent_in_funds_holding': 'No. of Holders %', 'SCREENER_FIELD_percent_in_top_ten_holdings': '% in Top 10 Holdings', 'SCREENER_FIELD_percent_of_shares_outstanding': '% of Shares Outstanding Held', 'SCREENER_FIELD_percent_of_shares_outstanding_bought_by_institutions': '% of Shares Outstanding Bought', 'SCREENER_FIELD_percent_of_shares_outstanding_sold_by_institutions': '% of Shares Outstanding Sold', 'SCREENER_FIELD_percentOfSharesOutHeldByInstitutions': '% of Shares Outstanding Held', 'SCREENER_FIELD_performanceratingoverall': 'Morningstar Performance Rating Overall', 'SCREENER_FIELD_period': 'For', 'SCREENER_FIELD_pricePeriod': 'Price Period', 'SCREENER_FIELD_priceToBook': 'Price/Book', 'SCREENER_FIELD_price_target_action': 'Price Target Action', 'SCREENER_FIELD_price_target_percent_change': 'Upside/Downside %', 'SCREENER_FIELD_pricebookratio.annual': 'Price/Book (ANNUAL)', 'SCREENER_FIELD_pricebookratio.lasttwelvemonths': 'Price/Book (LTM)', 'SCREENER_FIELD_pricebookratio.quarterly': 'P/B (most recent quarter - mrq)', 'SCREENER_FIELD_pricebookratio.yeartodate': 'Price/Book (YTD)', 'SCREENER_FIELD_priceto': 'Price Range', 'SCREENER_FIELD_prior_release_actual': 'Prior to This', 'SCREENER_FIELD_quarter': 'Quarter', 'SCREENER_FIELD_quarterendtrailingreturnytd': 'Quarter End Trailing Return YTD %', 'SCREENER_FIELD_quarterlyrevenuegrowth.annual': 'Quarterly Revenue Growth (ANNUAL)', 'SCREENER_FIELD_quarterlyrevenuegrowth.lasttwelvemonths': 'Quarterly Revenue Growth (LTM)', 'SCREENER_FIELD_quarterlyrevenuegrowth.quarterly': 'Quarterly Revenue Growth YoY %', 'SCREENER_FIELD_quarterlyrevenuegrowth.yeartodate': 'Quarterly Revenue Growth (YTD)', 'SCREENER_FIELD_quickratio.lasttwelvemonths': 'Quick Ratio', 'SCREENER_FIELD_rank_us': 'US Rank', 'SCREENER_FIELD_rating_action': 'Rating Change', 'SCREENER_FIELD_rating_date': 'Date Range', 'SCREENER_FIELD_ratingoverall': 'Morningstar Rating Overall', 'SCREENER_FIELD_region': 'Region', 'SCREENER_FIELD_regularMarketDayRange': 'Day Range', 'SCREENER_FIELD_reportedeps': 'Reported EPS', 'SCREENER_FIELD_researchanddevelopmentexpensefromfootnotes.lasttwelvemonths': 'Research And Development Expense From Footnotes (LTM)', 'SCREENER_FIELD_returnonassets.lasttwelvemonths': 'Return on Assets %', 'SCREENER_FIELD_returnonequity.annual': 'Return on Equity (ANNUAL)', 'SCREENER_FIELD_returnonequity.lasttwelvemonths': 'Return On Equity %', 'SCREENER_FIELD_returnonequity.quarterly': 'Return on Equity (QUARTERLY)', 'SCREENER_FIELD_returnonequity.yeartodate': 'Return on Equity (YTD)', 'SCREENER_FIELD_returnontotalcapital.lasttwelvemonths': 'Return on Total Capital %', 'SCREENER_FIELD_revenue.annual': 'Revenue (ANNUAL)', 'SCREENER_FIELD_revenue.lasttwelvemonths': 'Revenue (LTM)', 'SCREENER_FIELD_revenue.quarterly': 'Revenue (QUARTERLY)', 'SCREENER_FIELD_revenue.yeartodate': 'Revenue (YTD)', 'SCREENER_FIELD_revenue_consistency': 'Revenue Consistency', 'SCREENER_FIELD_revenuepershare.lasttwelvemonths': 'Revenue Per Share (LTM)', 'SCREENER_FIELD_riskratingoverall': 'Morningstar Risk Rating Overall', 'SCREENER_FIELD_ror_percent': 'Est. Rate of Return (%)', 'SCREENER_FIELD_sector': 'Sector', 'SCREENER_FIELD_sgandamargin.lasttwelvemonths': 'SG&A Margin (LTM)', 'SCREENER_FIELD_share_worth': 'Ratio', 'SCREENER_FIELD_shares': 'Shares', 'SCREENER_FIELD_sharesperdepositoryreceiptnonprimarycompanies.lasttwelvemonths': 'Shares per Depository Receipt (Non-Primary Companies) (LTM)', 'SCREENER_FIELD_sharesperdepositoryreceiptprimarycompanies.lasttwelvemonths': 'Shares per Depository Receipt (Primary Companies) (LTM)', 'SCREENER_FIELD_short_interest.value': 'Short Interest', 'SCREENER_FIELD_short_interest_percentage_change.value': 'Short Interest % Change', 'SCREENER_FIELD_short_percentage_of_float.value': 'Short % of Float', 'SCREENER_FIELD_short_percentage_of_shares_outstanding.value': 'Short % of Shares Outstanding', 'SCREENER_FIELD_sma200': '200 Day Moving Average', 'SCREENER_FIELD_sma50': '50 Day Moving Average', 'SCREENER_FIELD_social_score': 'Social Score', 'SCREENER_FIELD_sparkline': '1 Day Chart', 'SCREENER_FIELD_splitscount': 'Stock Splits', 'SCREENER_FIELD_startdatetime': 'Event Time', 'SCREENER_FIELD_startdatetimetype': 'Earnings Call Time', 'SCREENER_FIELD_surprisepercent': 'Surprise (%)', 'SCREENER_FIELD_targetPricePercentMove': 'Expected Price % Move', 'SCREENER_FIELD_ticker': 'Symbol', 'SCREENER_FIELD_tickersharesoutstanding': 'Ticker Shares Outstanding', 'SCREENER_FIELD_top_fund_holder_names': \"Fund Name (Stock in Fund's top 10 Holdings)\", 'SCREENER_FIELD_totalassets.lasttwelvemonths': 'Total Assets', 'SCREENER_FIELD_totalcapitalratio.lasttwelvemonths': 'Total Capital - (Ratio) (LTM)', 'SCREENER_FIELD_totalcashandshortterminvestments.lasttwelvemonths': 'Total Cash And Short Term Investments', 'SCREENER_FIELD_totalcommonequity.lasttwelvemonths': 'Total Common Equity', 'SCREENER_FIELD_totalcommonsharesoutstanding.lasttwelvemonths': 'Total Common Shares Outstanding', 'SCREENER_FIELD_totalcurrentassets.lasttwelvemonths': 'Total Current Assets', 'SCREENER_FIELD_totalcurrentliabilities.lasttwelvemonths': 'Total Current Liabilities', 'SCREENER_FIELD_totaldebt.lasttwelvemonths': 'Total Debt', 'SCREENER_FIELD_totaldebtebitda.lasttwelvemonths': 'Total Debt / EBITDA', 'SCREENER_FIELD_totaldebtequity.lasttwelvemonths': 'Debt / Equity (D/E) %', 'SCREENER_FIELD_total_equity_asset': 'Asset Under Management', 'SCREENER_FIELD_totalequity.lasttwelvemonths': 'Total Equity', 'SCREENER_FIELD_totalrevenues.lasttwelvemonths': 'Total Revenue', 'SCREENER_FIELD_totalrevenues1yrgrowth.lasttwelvemonths': '1 Yr. % Change in Total Revenue', 'SCREENER_FIELD_totalsharesoutstanding': 'Total Shares Outstanding', 'SCREENER_FIELD_totalsharesoutstandingonfilingdate.lasttwelvemonths': 'Total Shares Outstanding on Filing Date (LTM)', 'SCREENER_FIELD_tradeType': 'Outlook', 'SCREENER_FIELD_trading_central_last_close_price_to_fair_value': 'Last Close Price / Fair Value', 'SCREENER_FIELD_tradingHorizon': 'Time Frame', 'SCREENER_FIELD_trailing_3m_return': 'Trailing 3M Return %', 'SCREENER_FIELD_trailing_ytd_return': 'Trailing YTD Return %', 'SCREENER_FIELD_transactiondate': 'Transaction date', 'SCREENER_FIELD_trendChangeType': 'Trend Change Type', 'SCREENER_FIELD_turnoverratio': 'Turnover Ratio', 'SCREENER_FIELD_underlying_symbol': 'Underlying Symbol', 'SCREENER_FIELD_unleveredfreecashflow.lasttwelvemonths': 'Unlevered (before expenses) Free Cash Flow', 'SCREENER_FIELD_value_description': 'Valuation', 'SCREENER_FIELD_volume24Hr': 'Volume in Currency (24Hr)', 'SCREENER_FIELD_volumeAllCurrencies': 'Total Volume All Currencies (24Hr)', 'SCREENER_FIELD_years_of_consecutive_positive_eps': 'Years of Consecutive Positive EPS', 'SCREENER_FILTER_EMPTY_TEXT': \"Enter criteria and click 'Find {type}' to see the matching stocks\", 'SCREENER_INSIDER_TITLE': 'Insider Transactions', 'SCREENER_MATCH_RESULTS': 'Matching {text}', 'SCREENER_MATCH_RESULTS_INSIDER': 'Insider & Restricted Shareholder Transactions', 'SCREENER_NEW_TITLE': 'New Untitled Screener', 'SCREENER_NEW_UNSAVED_TITLE': 'New Unsaved Screener*', 'SCREENER_NOTICE_SCR_SAVE_FAIL': \"Unable to save criteria as '{name}'. Please try saving it again.\", 'SCREENER_NOTICE_SCR_SAVE_SUCCESS': \"Screener '{name}' is created successfully.\", 'SCREENER_NOTICE_STOCK_ADD_FAIL': \"Failed to add {count} selected stocks to '{list}'\", 'SCREENER_NOTICE_STOCK_ADD_SUCCESS': \"{count} selected stocks were added to '{list}'\", 'SCREENER_NOTICE_UNSAVED_SCR': 'expires in a few days, please save your screener.', 'SCREENER_NOT_SIGNEDIN': ' to view your saved screeners.', 'SCREENER_OP_BTWN': 'between', 'SCREENER_OP_EQ': 'equals', 'SCREENER_OP_GT': 'greater than', 'SCREENER_OP_GTE': 'greater than or equal', 'SCREENER_OP_IS': 'is', 'SCREENER_OP_LT': 'less than', 'SCREENER_REMOVE_FIELD': 'Remove {fieldId}', 'SCREENER_RESULTS': 'Screener Results', 'SCREENER_RESULTS_OUT_OF_SYNC': \"Please click 'Find {type}' to get updated results.\", 'SCREENER_RESULTS_TRY_AGAIN': \"Please try 'Find' again.\", 'SCREENER_RESULT_NOTICE': 'Results were generated a few mins ago. Pricing data is updated frequently. Currency in {currency}', 'SCREENER_SIGN_IN_SAVE': 'Sign in to save your screener', 'SCREENER_SORT_RESULT_TEXT': 'Sort results by {sortField} in {sortType}', 'SCREENER_TITLE_PLACEHOLDER': 'Name your screener', 'SCREENER_TOP_RESULTS': 'Top {text}', 'SCREENER_US_EXCHANGES': 'All US stock exchanges', 'SEARCH_COLUMNS': 'Search Columns', 'SEARCH_COMPARE': 'Search for symbols to compare', 'SEARCH_FEEDBACK_CURRENT_MSG': 'Give feedback on the search experience', 'SEARCH_FEEDBACK_MSG': 'Give feedback on the new search experience', 'SEARCH_INDICATORS': 'Search indicators', 'SEARCH_PRIVATE_COMPANIES_PROMOTION': 'Now you can search stock related news and private companies such as Airbnb.', 'SEARCH_RESULTS': 'Search Results', 'SEARCH_RESULTS_MULTIQUOTES': 'My List', 'SEARCH_SCREENER_LINK': 'Screener for stocks & more', 'SEARCH_SYMBOL_COMPANY': 'Search symbols or companies', 'SEARCH_TIP': 'Tip: Try a valid symbol or a specific company name for relevant results', 'SEC_FILINGS': 'SEC Filings', 'SEC_FILINGS_FOR_TICKER': 'SEC Filings for {companyName} ({symbol})', 'SECTOR': 'Sector(s)', 'SECTOR_ANALYSIS': 'Sector analysis', 'SECTOR_AVERAGE': 'Sector average', 'SEC_FILING_DATA_SOURCE': \"Data sourced from the SEC's public EDGAR database\", 'SECTOR_INDUSTRY': 'Sector & Industry', 'SECTOR_MEDIAN': 'Sector median', 'SECTOR_SUMMARY': 'Sector Summary', 'SECTOR_WEIGHTINGS': 'Sector Weightings (%)', 'SECURITIES_ACTIVITIES': 'Securities Activities', 'SECURITIES_AMORTIZATION': 'Securities Amortization', 'SECURITIES_LENDING_COLLATERAL': 'Securities Lending Collateral', 'SECURITIES_LOANED': 'Securities Loaned', 'SECURITY_AGREE_TO_BE_RESELL': 'Security Agree to be Resold', 'SECURITY_BORROWED': 'Security Borrowed', 'SECURITY_PROTECTION_SERVICES': 'Security & Protection Services', 'SECURITY_PROTECTION_SERVICES_DESC': 'Security & Protection Services Stocks', 'SECURITY_SOFTWARE_SERVICES': 'Security Software & Services', 'SECURITY_SOFTWARE_SERVICES_DESC': 'Security Software & Services Stocks', 'SECURITY_SOLD_NOT_YET_REPURCHASED': 'Security Sold Not Yet Repurchased', 'SEE_ALL': 'See All', 'SEE_FULL_PROFILE': 'See Full Profile', 'SEE_IT': 'See it', 'SEE_MORE_STATS': 'See more stats', 'SEE_WHY': 'See why', 'SELECT': 'Select', 'SELECTED': 'Selected', 'SELECTED_LISTS': 'Selected Lists', 'SELECT_ALL': 'Select All', 'SELECT_AN_ACTION_BELOW': 'Select an action below', 'SELECT_DATA_COLUMNS_TO_DISPLAY': 'Select Data Columns to Display', 'SELECT_LISTS': 'Select Lists', 'SELECT_TIME_UNIT': 'Select Time Unit', 'SELL': 'Sell', 'SELL_SHORT': 'Sell Short', 'SELLING_AND_MARKETING_EXPENSE': 'Selling & Marketing Expense', 'SELLING_GEN_ADMIN': 'Selling General and Administrative', 'SEMICONDUCTOR_BROAD_LINE': 'Semiconductor - Broad Line', 'SEMICONDUCTOR_BROAD_LINE_DESC': 'Semiconductor - Broad Line Stocks', 'SEMICONDUCTOR_EQUIPMENT_MATERIALS': 'Semiconductor Equipment & Materials', 'SEMICONDUCTOR_EQUIPMENT_MATERIALS_DESC': 'Semiconductor Equipment & Materials Stocks', 'SEMICONDUCTOR_INTEGRATED_CIRCUITS': 'Semiconductor - Integrated Circuits', 'SEMICONDUCTOR_INTEGRATED_CIRCUITS_DESC': 'Semiconductor - Integrated Circuits Stocks', 'SEMICONDUCTOR_MEMORY_CHIPS': 'Semiconductor- Memory Chips', 'SEMICONDUCTOR_MEMORY_CHIPS_DESC': 'Semiconductor- Memory Chips Stocks', 'SEMICONDUCTOR_SPECIALIZED': 'Semiconductor - Specialized', 'SEMICONDUCTOR_SPECIALIZED_DESC': 'Semiconductor - Specialized Stocks', 'SEND': 'Send', 'SENTIMENT_MSG_HELP': 'Neutral range is -14 to +5 while there is no limit on positive and negative ranges.', 'SENTIMENT_MSG_N': 'Neutral', 'SENTIMENT_MSG_NG': 'Negative', 'SENTIMENT_MSG_NG_TO_N': 'Negative to Neutral', 'SENTIMENT_MSG_NG_TO_P': 'Negative to Positive', 'SENTIMENT_MSG_N_TO_NG': 'Neutral to Negative', 'SENTIMENT_MSG_N_TO_P': 'Neutral to Positive', 'SENTIMENT_MSG_P': 'Positive', 'SENTIMENT_MSG_P_TO_N': 'Positive to Neutral', 'SENTIMENT_MSG_P_TO_NG': 'Positive to Negative', 'SEPARATE_ACCOUNT_ASSETS': 'Separate Account Assets', 'SEPARATE_ACCOUNT_BUSINESS': 'Separate Account Business', 'SERVER_URL': 'Server Url', 'SERVICES': 'Services', 'SERVICES-ET-DISTRIBUTION_TITLE': 'Retail', 'SERVICES_DESC': 'Services Stocks', 'SERVICE_CHARGE_ON_DEPOSITOR_ACCOUNTS': 'Service Charge on Depositor Accounts', 'SERVICOS-DIVERSOS_TITLE': 'Other services', 'SERVIZI-AL-CONSUMO_TITLE': 'Consumer Products & Media', 'SERVIZI-PUBBLICI_TITLE': 'Public Services', 'SETTINGS': 'Settings', 'SETTLEMENT_DATE': 'Settlement Date', 'SEVERE': 'Severe', 'SHARE': 'Share', 'SHARE_LIST': 'Share list', 'SHARES': 'Shares', 'SHARES_FLOAT': 'Float', 'SHARES_NUMBER': '{shares} shares', 'SHARES_OUTSTANDING': 'Shares Outstanding', 'SHARES_OWNED_AS_OF_TRANSACTION_DATE': 'Shares Owned as of Transaction Date', 'SHARES_PERCENT_SHARES_OUT': 'Short % of Shares Outstanding {date}', 'SHARES_SHORT': 'Shares Short {date}', 'SHARES_SHORT_PRIOR_MONTH': 'Shares Short (prior month {date})', 'SHARE_CHART': 'Share Chart', 'SHARE_ISSUED': 'Share Issued', 'SHARE_LINK': 'Or share this link', 'SHARE_LOTS': 'Share Lots', 'SHARE_MENU': 'Share Menu', 'SHARE_STATISTICS': 'Share Statistics', 'SHARPE_RATIO': 'Sharpe Ratio', 'SHIPPING': 'Shipping', 'SHIPPING_DESC': 'Shipping Stocks', 'SHOPPEN_TITLE': 'Shoppen', 'SHORT_CURRENT_LONG_TERM_DEBT': 'Short/Current Long Term Debt', 'SHORT_INTEREST': 'Short Interest', 'SHORT_PERCENT_OF_FLOAT': 'Short % of Float {date}', 'SHORT_RATIO': 'Short Ratio {date}', 'SHORT_RATIO_RAW': 'Short Ratio', 'SHORT_TERM_DEBT_ISSUANCE': 'Short Term Debt Issuance', 'SHORT_TERM_DEBT_PAYMENTS': 'Short Term Debt Payments', 'SHORT_TERM_INVESTMENTS_AVAILABLE_FOR_SALE': 'Short Term Investments Available for Sale', 'SHORT_TERM_INVESTMENTS_HELD_TO_MATURITY': 'Short Term Investments Held to Maturity', 'SHORT_TERM_INVESTMENTS_TRADING': 'Short Term Investments Trading', 'SHOW': 'Show', 'SHOW_ALL': 'Show all', 'SHOW_ALL_RECENT_EVENTS': 'Show All Events', 'SHOW_ALL_RESULTS_FOR': 'Show all results for {query}', 'SHOW_CROSSHAIR': 'Show crosshair', 'SHOW_EARNINGS_FOR': 'Showing Earnings for: {symbol}', 'SHOW_INFO': 'Show Info', 'SHOW_LESS': 'Show less', 'SHOW_LESS_LIST': 'Show less lists', 'SHOW_LESS_ADS': 'Show less ads like this', 'SHOW_LINES': 'Show lines:', 'SHOW_MORE': 'Show more', 'SHOW_MORE_LIST': 'Show more lists', 'SHOW_MORE_ADS': 'Show more ads like this', 'SHOW_N_ROWS': 'Show {count} rows', 'SHOW_OHLC': 'Show OHLC', 'SHOW_SHORTCUTS': 'Show shortcuts/hotkeys', 'SHOW_TOOLTIP': 'Show Tooltip', 'SHOWING_CASH': 'Showing {first}-{last} of {total} total cash holdings', 'SHOWING_DIVIDENDS': 'Showing {first}-{last} of {total} total dividends', 'SHOWING_LOTS': 'Showing {first}-{last} of {total} total lots', 'SHOWING_TRANSACTIONS': 'Showing {first}-{last} of {total} total transactions', 'SIGNALS': 'Signals', 'SIGNIFICANT': 'Significant', 'SIGNIFICANT_DEVELOPMENT': 'Premium Significant Development', 'SIGNIFICANT_DEVELOPMENTS': 'Significant Developments', 'SIGN_IN': 'Sign In', 'SIGN_IN_AGAIN': 'Sign in again', 'SIGN_IN_TO_VOTE': 'Sign in to cast your vote', 'SIGN_IN_TO_ADD_WATCHLIST': 'Sign in to add to watchlist', 'SIGN_IN_TO_ADD_WATCHLIST_TO_TICKER': 'Sign in to never miss news about {companyName}', 'SIGN_IN_TO_FOLLOW_WATCHLIST': 'Sign in to follow this watchlist', 'SIGN_IN_TO_SEE_LIVESTREAM': 'Sign in to watch live stream', 'SIGN_OUT_ALL': 'Sign out all', 'SIGN_UP_PREMIUM': 'Sign up for Yahoo Finance Premium to get access to this insight', 'SIGN_UP_YAHOO_FINANCE_PLUS': 'Sign up for Yahoo Finance Plus to get access to this insight', 'SIGNUP_FORM_LIVESTREAM_TITLE': 'Sign up as a Yahoo Finance Livestreamer', 'SIG_INV_AREAS': 'Product Involvement Areas', 'SILVER': 'Silver', 'SILVER_DESC': 'Silver Stocks', 'SIMILAR_STOCKS': 'Similar stocks', 'SIMILAR_SYMBOLS': \"Symbols similar to '{symbol}'\", 'SIMILAR_TO': 'Similar to {symbol}', 'SINGAPORE': 'Singapore', 'SMALL_BUSINESS_TITLE': 'Small Business', 'SMALL_CAP_GAINERS': 'Small cap gainers', 'SMALL_CAP_GAINERS_DESC': 'Small Caps with a 1 day price change of 5.0% or more.', 'SMALL_TOOLS_ACCESSORIES': 'Small Tools & Accessories', 'SMALL_TOOLS_ACCESSORIES_DESC': 'Small Tools & Accessories Stocks', 'SOCIAL': 'Social Risk Score', 'SOFTWARE_SERVICES_TITLE': 'Computer Software & Services', 'SOLID_LARGE_GROWTH_FUNDS': 'Solid Large Growth Funds', 'SOLID_LARGE_GROWTH_FUNDS_DESC': 'Large Growth Funds with Performance Rating of 4 & 5 and top-half returns', 'SOLID_MIDCAP_GROWTH_FUNDS': 'Solid Mid-Cap Growth Funds', 'SOLID_MIDCAP_GROWTH_FUNDS_DESC': 'Mid-Cap Growth Funds with Performance Rating of 4 & 5 and top-half returns', 'SORT': 'Sort', 'SP500': 'S&P 500', 'SP500_52_WEEK_CHANGE': 'S&P500 52-Week Change', 'SPAIN': 'Spain', 'SPECIALIZED_HEALTH_SERVICES': 'Specialized Health Services', 'SPECIALIZED_HEALTH_SERVICES_DESC': 'Specialized Health Services Stocks', 'SPECIALTY_CHEMICALS': 'Specialty Chemicals', 'SPECIALTY_CHEMICALS_DESC': 'Specialty Chemicals Stocks', 'SPECIALTY_EATERIES': 'Specialty Eateries', 'SPECIALTY_EATERIES_DESC': 'Specialty Eateries Stocks', 'SPECIALTY_RETAIL_OTHER': 'Specialty Retail, Other', 'SPECIALTY_RETAIL_OTHER_DESC': 'Specialty Retail, Other Stocks', 'SPECIAL_INCOME_CHARGES': 'Special Income Charges', 'SPECIAL_REPORT': 'Special report', 'SPLIT': 'Stock Split', 'SPONSORED': 'Sponsored', 'SPORTING_ACTIVITIES': 'Sporting Activities', 'SPORTING_ACTIVITIES_DESC': 'Sporting Activities Stocks', 'SPORTING_GOODS': 'Sporting Goods', 'SPORTING_GOODS_DESC': 'Sporting Goods Stocks', 'SPORTING_GOODS_STORES': 'Sporting Goods Stores', 'SPORTING_GOODS_STORES_DESC': 'Sporting Goods Stores Stocks', 'SPORTSBOOK_TITLE': 'Sportsbook', 'STAFFING_OUTSOURCING_SERVICES': 'Staffing & Outsourcing Services', 'STAFFING_OUTSOURCING_SERVICES_DESC': 'Staffing & Outsourcing Services Stocks', 'STANDARD_DEVIATION': 'Standard Deviation', 'START_DATE': 'Start Date', 'START_LIVESTREAM': 'Start Livestream', 'STATUS_DESCRIPTION': 'An Open status indicates you hold shares for this position. A Closed status indicates you no longer own any shares for this position (but previously have). A No Shares status indicates you do not currently and previously have not owned shares for this position.', 'STOP_LIVESTREAM': 'Stop Livestream', 'CRYPTO_START_TRADING_NOW': 'Start trading cryptos now', 'STATISTICS': 'Statistics', 'STATISTICS_HELP': 'Statistics Help', 'STEEL_IRON': 'Steel & Iron', 'STEEL_IRON_DESC': 'Steel & Iron Stocks', 'STICKY_CROSSHAIR': 'Sticky crosshair', 'STOCKHOLDERS_EQUITY': \"Stockholders' Equity\", 'STOCKS': 'Stocks', 'STOCK_BASED_COMPENSATION': 'Stock based compensation', 'STOCK_PRICE': 'Stock Price', 'STOCK_PRICE_HISTORY': 'Stock Price History', 'STOCK_SPLITS': 'Stock Splits', 'STOCKS_MOST_BOUGHT_BY_HEDGE_FUNDS': 'Stocks Most Bought by Hedge Funds', 'STOCKS_MOST_BOUGHT_BY_PENSION_FUND': 'Stocks Most Bought by Pension Fund', 'STOCKS_MOST_BOUGHT_BY_PRIVATE_EQUITY': 'Stocks Most Bought by Private Equity', 'STOCKS_MOST_BOUGHT_BY_SOVEREIGN_WEALTH_FUND': 'Stocks Most Bought by Sovereign Wealth Fund', 'STOCKS_WITH_MOST_INSTITUTIONAL_BUYERS': 'Stocks with Most Institutional Buyers', 'STOCKS_WITH_MOST_INSTITUTIONAL_SELLERS': 'Stocks with Most Institutional Sellers', 'STOP_LOSS': 'Stop loss', 'STREAMING_QUOTES': 'Streaming Quotes', 'STRIKE': 'Strike', 'STRONG': 'Strong', 'STRONG_BUY': 'Strong Buy', 'STRONG_UNDERVALUED_STOCKS': 'Strong Undervalued Stocks', 'STRONG_UNDERVALUED_STOCKS_DESC': 'Undervalued stocks with a robust and consistent history of earnings and revenue growth.', 'SUBMIT': 'Submit', 'SUBORDINATED_LIABILITIES': 'Subordinated Liabilities', 'SUBSCRIBERS_PER_PERIOD': '{period} subscribers', 'SUMMARY': 'Summary', 'SUMMARY_COMPANY_PROFILE': 'Company Profile', 'SUNSET_WATIF': 'This watchlist will no longer be available after Sept. 29. Please copy the ticker symbols into a new portfolio if you wish to continue tracking them.', 'SUNSET_WATIFV2': 'This watchlist is no longer available. Please unfollow this watchlist to remove it from your portfolio. Click here to see other watchlists.', 'SUNSET_WATIFV3': 'This watchlist is no longer available. Please unfollow this watchlist to remove it from your portfolio. Click here to see a similar watchlist.', 'SUPPORT': 'Support', 'SURETY_TITLE_INSURANCE': 'Surety & Title Insurance', 'SURETY_TITLE_INSURANCE_DESC': 'Surety & Title Insurance Stocks', 'SURPRISE_PERCENT': 'Surprise %', 'SUSTAINABILITY': 'Sustainability', 'SUSTAINABILITY_NO_DATA_MESSAGE': 'Sustainability data is currently not available for {ticker}.', 'SYMBOLS': 'Symbols', 'SYMBOLS_WITH_COUNT': '{count} Symbols', 'SYMBOLS_WITH_NAME_COUNT': '{name} ({count} Symbols)', 'SYMBOL_ALONE': '{symbol}', 'SYMBOL_COUNT': '{count} symbols', 'SYNTHETICS': 'Synthetics', 'SYNTHETICS_DESC': 'Synthetics Stocks', 'TABLE_VIEW': 'Table View', 'TAGS_PLACEHOLDER': 'Help people find your livestream room', 'TAKE_THE_TOUR': 'Take the tour', 'TANGIBLE_BOOK_VALUE': 'Tangible Book Value', 'TAXES_PAYABLE': 'Taxes payable', 'TAXES_RECEIVABLE': 'Taxes Receivable', 'TAXES_REFUND_PAID': 'Taxes Refund Paid', 'TAXES_REFUND_PAID_DIRECT': 'Taxes Refund Paid Direct', 'TAX_EFFECT_OF_UNUSUAL_ITEMS': 'Tax Effect of Unusual Items', 'TAX_LOSS_CARRYFORWARD_BASIC_EPS': 'Tax Loss Carryforward Basic EPS', 'TAX_LOSS_CARRYFORWARD_DILUTED_EPS': 'Tax Loss Carryforward Diluted EPS', 'TAX_PROVISION': 'Tax Provision', 'TAX_RATE_FOR_CALCS': 'Tax Rate for Calcs', 'TD_200_DAY_AVERAGE': '200 Day Average', 'TD_50_DAY_AVERAGE': '50 Day Average', 'TD_52_WK_HIGH': '52 Week High', 'TD_52_WK_LOW': '52 Week Low', 'TD_52_WK_RANGE': '52 Week Range', 'TD_ADDED_DELETED': 'Add/Remove(7D)', 'TD_AMOUNT_PER_SHARE': 'Amount per share', 'TD_ANALYST_RATING': 'Avg. Analyst Rating', 'TD_ASK': 'Ask', 'TD_ASK_SIZE': 'Ask Size', 'TD_BID': 'Bid', 'TD_BID_SIZE': 'Bid Size', 'TD_BOOK_VALUE': 'Book Val', 'TD_BULLISH_BEARISH': 'Bullish/Bearish(7D)', 'TD_CASH_AMOUNT': 'Amount', 'TD_CHANGE': 'Change', 'TD_CHANGE_1D': 'Change(1D)', 'TD_CHANGE_1M': 'Change(1M)', 'TD_CURRENCY': 'Currency', 'TD_DATE_CREATED': 'Date Created', 'TD_DAY_AMOUNT_CHANGE': 'Day Change', 'TD_DAY_HIGH': 'Day High', 'TD_DAY_LOW': 'Day Low', 'TD_DAY_RANGE': 'Intraday High/Low', 'TD_DIVIDENDS_PER_SHARE': 'Dividends / Share', 'TD_DIVIDEND_PAYMENT_DATE': 'Dividend Payment Date', 'TD_DIVIDEND_YIELD': 'Dividend Yield', 'TD_EBITDA': 'EBITDA', 'TD_EPS': 'EPS', 'TD_EPS_TRAILING': 'EPS Trailing', 'TD_EXCHANGE': 'Exchange', 'TD_FOLLOWERS': 'Followers', 'TD_HIGH_LIMIT': 'High Limit', 'TD_LAST_TRADE_DATE': 'Last Trade Date', 'TD_LAST_UPDATED': 'Last Updated', 'TD_LIFETIME_PERCENT_CHANGE': 'Total Return', 'TD_LONG_TERM_GAIN_LOSS': 'Long Term Gain/Loss', 'TD_LOT': 'Lot', 'TD_LOTS': 'Lots', 'TD_LOT_VALUE': 'Lot Value', 'TD_LOW_LIMIT': 'Low Limit', 'TD_MARKET_CAP': 'Market Cap', 'TD_MARKET_TIME': 'Market Time', 'TD_MARKET_VALUE': 'Market Value', 'TD_NOTE': 'Note', 'TD_NOTES': 'Notes', 'TD_ONE_DAY_PERCENT_CHANGE': 'Change Today', 'TD_ONE_MONTH_PERCENT_CHANGE': '1 Month Return', 'TD_ONE_YEAR_PERCENT_CHANGE': '1 Year Return', 'TD_OPEN': 'Open', 'TD_PAYMENT_DATE': 'Payment Date', 'TD_PERCENT_CHANGE': '% Change', 'TD_POST_MARKET_CHANGE': 'Post-Market Change', 'TD_POST_MARKET_CHANGE_PERCENT': 'Post-Market % Change', 'TD_POST_MARKET_PRICE': 'Post-Market Price', 'TD_POST_MARKET_TIME': 'Post-Market Time', 'TD_PREV_CLOSE': 'Prev Close', 'TD_PRE_MARKET_CHANGE': 'Pre-Market Change', 'TD_PRE_MARKET_CHANGE_PERCENT': 'Pre-Market % Change', 'TD_PRE_MARKET_PRICE': 'Pre-Market Price', 'TD_PRE_MARKET_TIME': 'Pre-Market Time', 'TD_PRICE': 'Last Price', 'TD_PRICE_PAID_PER_SHARE': 'Price Paid', 'TD_PUBLISHER': 'Publisher', 'TD_SHARES': 'Shares', 'TD_SHARES_OUTSTANDING': 'Shares Out', 'TD_SHORT_TERM_GAIN_LOSS': 'Short Term Gain/Loss', 'TD_SPARKLINE': 'Day Chart', 'TD_STATUS': 'Status', 'TD_SYMBOL': 'Symbol', 'TD_SYMBOLS': 'Symbols', 'TD_THREE_MONTH': '3-Mo Return', 'TD_TODAYS_GAIN_UNREALIZED': \"Today's Gain (Unrealized)\", 'TD_TODAYS_RETURN': \"Today's Return\", 'TD_TOTAL_AMOUNT': 'Total Amount', 'TD_TOTAL_AMOUNT_CHANGE': 'Total Change', 'TD_TOTAL_COST': 'Total Cost', 'TD_TOTAL_DIVIDEND_INCOME': 'Total Dividend Income', 'TD_TOTAL_GAIN_UNREALIZED': 'Total Gain (Unrealized)', 'TD_TOTAL_PERCENT_CHANGE': 'Total % Change', 'TD_TOTAL_RETURN': 'Total Return', 'TD_TOTAL_TRADES': 'Total Trades', 'TD_TRADE_DATE': 'Trade Date', 'TD_VOLUME': 'Volume', 'TD_VOLUME_24HR': 'Volume (24hr)', 'TD_VOLUME_24HR_ALLCURRENCY': 'Volume (24hr) All Currencies', 'TD_VOLUME_IN_CURRENCY': 'Volume in Currency (Since 0:00 UTC)', 'TD_WATCHLIST': 'Watchlist', 'TECHNICAL': 'Technical', 'TECHNICALS': 'Technicals', 'TECHNICAL_ANALYSIS': 'Technical analysis', 'TECHNICAL_EVENTS': 'Technical Events', 'TECHNICAL_OUTLOOK': 'Technical Outlook', 'TECHNICAL_PATTERNS': 'Technical Patterns', 'TECHNICAL_SERVICES': 'Technical Services', 'TECHNICAL_SERVICES_DESC': 'Technical Services Stocks', 'TECHNICAL_SYSTEM_SOFTWARE': 'Technical & System Software', 'TECHNICAL_SYSTEM_SOFTWARE_DESC': 'Technical & System Software Stocks', 'TECHNOLOGY': 'Technology', 'TECHNOLOGY_DESC': 'Technology Stocks', 'TECH_TITLE': 'Technology', 'TECNOLOGIA_TITLE': 'Technology', 'TECNOLOGICAS_TITLE': 'Technology', 'TELECOMS_TITLE': 'Telecoms', 'TELECOMUNICACIONES-Y-TECNOLOGIA_TITLE': 'Telecommunications & Technology', 'TELECOMUNICACIONES_TITLE': 'Telecommunications', 'TELECOMUNICACOES-TECNOLOGIA_TITLE': 'Telecommunications & Technology', 'TELECOMUNICAZIONI_TITLE': 'Telecommunications', 'TELECOM_SERVICES_DOMESTIC': 'Telecom Services - Domestic', 'TELECOM_SERVICES_DOMESTIC_DESC': 'Telecom Services - Domestic Stocks', 'TELECOM_SERVICES_FOREIGN': 'Telecom Services - Foreign', 'TELECOM_SERVICES_FOREIGN_DESC': 'Telecom Services - Foreign Stocks', 'TELECOM_UTILITIES_TITLE': 'Telecom & Utilities', 'TEN_YEAR': '10-Year', 'TEN_YEAR_EXPENSE_PROJECTION': '10 Yr Expense Projection', 'TERM': 'Term', 'TERM_INTERMEDIATE': 'Intermediate', 'TERM_LONG': 'Long', 'TERM_MAP': ' - {period} term', 'TERM_SHORT': 'Short', 'TERMS_CONDITIONS': 'terms and conditions(required).', 'TERMS_COPY_INTRO': 'By clicking on \"Create livestream profile\" you agree as follows:', 'TEXT': 'Text', 'TEXTILE_APPAREL_CLOTHING': 'Textile - Apparel Clothing', 'TEXTILE_APPAREL_CLOTHING_DESC': 'Textile - Apparel Clothing Stocks', 'TEXTILE_APPAREL_FOOTWEAR_ACCESSORIES': 'Textile - Apparel Footwear & Accessories', 'TEXTILE_APPAREL_FOOTWEAR_ACCESSORIES_DESC': 'Textile - Apparel Footwear & Accessories Stocks', 'TEXTILE_INDUSTRIAL': 'Textile Industrial', 'TEXTILE_INDUSTRIAL_DESC': 'Textile Industrial Stocks', 'TEXTIL_TITLE': 'Textile', 'THEMATIC_REPORT': 'Thematic report', 'THEME': 'Theme', 'THOUSAND_SHORT': '{num}k', 'THREE_MONTH': '3-Month', 'THREE_YEAR': '3-Year', 'THREE_YEAR_AVERAGE_RETURN': '3y Average Return', 'THREE_YEAR_DTR': '3-Year Daily Total Return', 'THREE_YEAR_EARNINGS_GROWTH': '3 Year Earnings Growth', 'THREE_YEAR_EXPENSE_PROJECTION': '3 Yr Expense Projection', 'TICKER_SHARE_EMAIL_TITLE': 'My shared ticker list on Yahoo Finance', 'TIME': 'Time', 'TIME_PERIOD': 'Time Period', 'TITLE': 'Title', 'TITLE_PLACEHOLDER': \"Let your audience know what you're talking about\", 'TICKERS_PLACEHOLDER': 'Provide related information when your audience watches your livestream', 'TO': 'To', 'TOBACCO_PRODUCTS_OTHER': 'Tobacco Products, Other', 'TOBACCO_PRODUCTS_OTHER_DESC': 'Tobacco Products, Other Stocks', 'TODAY': 'Today', 'TODAY_GAIN_DESCRIPTION': 'Today’s Gain is the gain on a portfolio position for the most recent trading day.', 'TOP': 'Top', 'TOP_ETFS': 'Top ETFs', 'TOP_ETFS_DESC': 'ETFs with Performance Rating of 4 & 5 ordered by Percent Change', 'TOP_HOLDINGS': 'Top Holdings', 'TOP_HOLDINGS_QUOTES': 'Get Quotes for Top Holdings', 'TOP_HOLDINGS_WITH_ASSETS': 'Top {count} Holdings ({asset}% of Total Assets)', 'TOP_MUTUAL_FUNDS': 'Top Mutual Funds', 'TOP_MUTUAL_FUNDS_DESC': 'Funds with Performance Rating of 4 & 5 ordered by Percent Change', 'TOP_STOCKS_OWNED_BY_CATHIE_WOOD': 'Top Stocks owned by Cathie Wood', 'TOP_STOCKS_OWNED_BY_GOLDMAN_SACHS': 'Top Stocks owned by Goldman Sachs', 'TOP_STOCKS_OWNED_BY_RAY_DALIO': 'Top Stocks owned by Ray Dalio', 'TOP_STOCKS_OWNED_BY_WARREN_BUFFET': 'Top Stocks owned by Warren Buffet', 'TOP_STORIES_TITLE': 'Top Stories', 'TOP_TEN_COMPONENTS': 'Top {limit} Components', 'TOTAL_ASSETS': 'Total Assets', 'TOTAL_CAPITALIZATION': 'Total Capitalization', 'TOTAL_CASH': 'Total Cash', 'TOTAL_CASH_FLOW_FROM_FIN_ACT': 'Total Cash Flows From Financing Activities', 'TOTAL_CASH_FLOW_FROM_INVEST_ACT': 'Total Cash Flows From Investing Activities', 'TOTAL_CASH_FLOW_FROM_OP_ACT': 'Total Cash Flow From Operating Activities', 'TOTAL_CASH_HOLDINGS': 'Total Cash Holdings', 'TOTAL_CASH_HOLDINGS_DESCRIPTION': 'Total Cash Holdings is your total cash on hand.', 'TOTAL_CASH_PER_SHARE': 'Total Cash Per Share', 'TOTAL_CHANGE': 'Total Chg', 'TOTAL_CHANGE_PCT': 'Total Chg %', 'TOTAL_CURRENT_ASSETS': 'Total Current Assets', 'TOTAL_CURRENT_LIABILITIES': 'Total Current Liabilities', 'TOTAL_DEBT': 'Total Debt', 'TOTAL_DEBT_TO_EQUITY': 'Total Debt/Equity', 'TOTAL_DEFERRED_CREDITS_AND_OTHER_NON_CURRENT_LIABILITIES': 'Total Deferred Credits & Other Non Current Liabilities', 'TOTAL_DEPOSITS': 'Total Deposits', 'TOTAL_EMPLOYMENT': 'Total \\nEmployment', 'TOTAL_EQUITY_GROSS_MINORITY_INTEREST': 'Total Equity Gross Minority Interest', 'TOTAL_EXPENSES': 'Total Expenses', 'TOTAL_GAIN': 'Total Gain', 'TOTAL_GAIN_DESCRIPTION': 'Total gain is the gain on a portfolio position across the entire period the stock has been held for.', 'TOTAL_HOLDINGS': 'Total Holdings', 'TOTAL_INSIDER_SHARES_HELD': 'Total Insider Shares Held', 'TOTAL_INVESTMENTS': 'Total Investments', 'TOTAL_LIABILITIES': 'Total Liabilities', 'TOTAL_LIABILITIES_AND_STOCKHOLDERS_EQUITY': \"Total liabilities and stockholders' equity\", 'TOTAL_LIABILITIES_NET_MINORITY_INTEREST': 'Total Liabilities Net Minority Interest', 'TOTAL_MARKET_VALUE': 'Total Market Value', 'TOTAL_MONEY_MARKET_INVESTMENTS': 'Total Money Market Investments', 'TOTAL_NET_ASSETS': 'Total Net Assets', 'TOTAL_NON_CURRENT_ASSETS': 'Total non-current assets', 'TOTAL_NON_CURRENT_LIABILITIES': 'Total non-current liabilities', 'TOTAL_NON_CURRENT_LIABILITIES_NET_MINORITY_INTEREST': 'Total Non Current Liabilities Net Minority Interest', 'TOTAL_OPERATING_EX': 'Total Operating Expenses', 'TOTAL_OPERATING_INCOME_AS_REPORTED': 'Total Operating Income as Reported', 'TOTAL_OTHER_FINANCE_COST': 'Total Other Finance Cost', 'TOTAL_OTHER_INCOME_EXPENSES_NET': 'Total Other Income/Expenses Net', 'TOTAL_PARTNERSHIP_CAPITAL': 'Total Partnership Capital', 'TOTAL_PERCENT_GAIN': 'Total % Gain', 'TOTAL_PREMIUMS_EARNED': 'Total Premiums Earned', 'TOTAL_RETURN_DESCRIPTION': 'Total Return indicates the total gain for a particular stock or portfolio.', 'TOTAL_REVENUE': 'Total Revenue', 'TOTAL_STOCKHOLDER_EQUITY': \"Total stockholders' equity\", 'TOTAL_TAX_PAYABLE': 'Total Tax Payable', 'TOTAL_UNUSUAL_ITEMS': 'Total Unusual Items', 'TOTAL_UNUSUAL_ITEMS_EXCLUDING_GOODWILL': 'Total Unusual Items Excluding Goodwill', 'TOYS_GAMES': 'Toys & Games', 'TOYS_GAMES_DESC': 'Toys & Games Stocks', 'TOY_HOBBY_STORES': 'Toy & Hobby Stores', 'TOY_HOBBY_STORES_DESC': 'Toy & Hobby Stores Stocks', 'TRACK_WATCHLIST_PERFORMANCE': 'Track Watchlist Performance', 'TRADE': 'Trade', 'TRADEAND_OTHER_PAYABLES_NON_CURRENT': 'Tradeand Other Payables Non Current', 'TRADE_IDEA': 'Premium Investment Idea', 'TRADE_IDEAS': 'Investment Ideas', 'TRADE_TYPE': 'Trade type', 'TRADING_ASSETS': 'Trading Assets', 'TRADING_GAIN_LOSS': 'Trading Gain Loss', 'TRADING_INFORMATION': 'Trading Information', 'TRADING_LIABILITIES': 'Trading Liabilities', 'TRADING_SECURITIES': 'Trading Securities', 'TRAILING_ANNUAL_DIVIDEND_RATE': 'Trailing Annual Dividend Rate', 'TRAILING_ANNUAL_DIVIDEND_YIELD': 'Trailing Annual Dividend Yield', 'TRAILING_PERFORMANCE': 'Trailing Performance', 'TRAILING_RETURNS': 'Trailing Returns (%) Vs. Benchmarks', 'TRANS': 'Trans', 'TRANSACTION': 'Transaction', 'TRANSACTION_TYPE': 'Transaction Type', 'TRANSACTIONS': 'Transactions', 'TRANSACTION_DATAILS': 'Transaction Details', 'TRANSACTION_UPDATED_SUCCESSFULLY': 'Transaction for {symbol} updated successfully. ', 'TRAVEL_TITLE': 'Travel', 'TREASURY_SHARES_NUMBER': 'Treasury Shares Number', 'TREASURY_STOCK': 'Treasury Stock', 'TREE_MAP_COLOR': 'Color:', 'TREE_MAP_SIZE': 'Size:', 'TRADINGCENTRAL_EVENT': 'Technical Event Screener', 'TRENDING_TICKERS_TITLE': 'Trending Tickers', 'TRENDING_TICKERS_DESC': \"See what's trending now in the markets\", 'TRENDING_TODAY': 'Trending Today', 'TREYNOR_RATIO': 'Treynor Ratio', 'TRIGGER_ALERT': 'Price Alert', 'TRILLION_SHORT': '{num}T', 'TRUCKING': 'Trucking', 'TRUCKING_DESC': 'Trucking Stocks', 'TRUCKS_OTHER_VEHICLES': 'Trucks & Other Vehicles', 'TRUCKS_OTHER_VEHICLES_DESC': 'Trucks & Other Vehicles Stocks', 'TRUMPONOMICS_ABOUT_HEADER': 'About this report card', 'TRUMPONOMICS_DESCRIPTION': 'Yahoo Finance is tracking the performance of the economy under President Donald Trump, compared with six prior presidents going back to Jimmy Carter. We’ve chosen six key economic indicators that directly affect the well-being of ordinary Americans, with data provided by {moody}. Know more about {methodology}, and click on the articles below to get the latest updates.', 'TRUMPONOMICS_HEADER': 'Yahoo Finance Trumponomics Report Card', 'TRUMPONOMICS_LAST_UPDATED': 'Last Updated: {date}', 'TRUMPONOMICS_META_DESCRIPTION': 'Yahoo Finance is tracking the performance of the economy under President Donald Trump, compared with six prior presidents going back to Jimmy Carter.', 'TRUMPONOMICS_META_KEYWORDS': 'Trump, Donald Trump, President Trump, Jobs, Economy, Manufacturing, Unemployment, Income, Incomes, Wages, Earnings, Pay, Trade, Exports, Imports, Stocks, Stock market, GDP, Economic growth, Growth, Obama, Bush, Clinton, Reagan, Carter, Trumponomics, Trumpenomics, Trumpanomics, Middle class, Wealth, Inequality, Living standards', 'TRUMPONOMICS_META_TITLE': 'Yahoo Finance - Trumponomics Report Card', 'TRUMPONOMICS_METHODOLOGY': 'our methodology', 'TRUMPONOMICS_NO_COL_DATA': '(No data yet)', 'TRUMPONOMICS_NO_DATA': 'Trumponomics data is currently not available.', 'TRUMPONOMICS_RAW_DATA': 'View raw data.', 'TRUST_FEESBY_COMMISSIONS': 'Trust Fees by Commissions', 'TRY_AGAIN': 'Try again', 'TRY_BETA_PORTFOLIOS': 'Try the new Portfolio Beta experience', 'TRY_NEW_CHART': 'Try the new and improved charts', 'TRY_IT_FREE': 'Try it free', 'TRY_LATER': 'Try later', 'TRY_NOW': 'Try now', 'TTM': 'ttm', 'TUMBLR': 'Tumblr', 'TUMBLR_SHARE': 'Reblog', 'TURISMO-Y-SERVICIOS_TITLE': 'Tourism and Services', 'TWITTER': 'Twitter', 'TWITTER_SHARE': 'Tweet', 'TYPE': 'Type', 'UH_SEARCH_FIND': 'Find a quote (e.g. VZ)', 'UH_SEARCH_MOBILE_WEB': 'Quote Lookup', 'UH_SEARCH_MOBILE_WEB_V2': 'Search for news or symbols', 'UH_SEARCH_WEB': 'Search for news, symbols or companies', 'UNADJUSTED_CLOSE': 'Close*', 'UNBILLED_RECEIVABLES': 'Unbilled Receivables', 'UNDER': 'Under', 'UNDERPERFORM': 'Underperform', 'UNDERVALUED': 'Undervalued', 'UNDERVALUED_GROWTH_STOCKS': 'Undervalued Growth Stocks', 'UNDERVALUED_GROWTH_STOCKS_DESC': 'Stocks with earnings growth rates better than 25% and relatively low PE and PEG ratios.', 'UNDERVALUED_LARGE_CAPS': 'Undervalued Large Caps', 'UNDERVALUED_LARGE_CAPS_DESC': 'Large cap stocks that are potentially undervalued.', 'UNDERVALUED_WIDE_MOAT_STOCKS': 'Undervalued Wide-Moat Stocks', 'UNDERVALUED_WIDE_MOAT_STOCKS_DESC': \"Morningstar's undervalued stocks with a sustainable competitive advantage. A company with a wide economic moat can fend off competition for at least 20 years and earn high returns on capital for years to come.\", 'UNDERWRITING_EXPENSES': 'Underwriting Expenses', 'UNDO': 'Undo', 'UNEARNED_INCOME': 'Unearned Income', 'UNEARNED_PREMIUMS': 'Unearned Premiums', 'UNIT': 'Unit', 'UNITED_KINGDOM': 'United Kingdom', 'UNKNOWN_QUOTE_TITLE': \"The symbol {symbol} doesn't exist. Try looking again!\", 'UNLINK_BROKER': 'Unlink Broker', 'UNLINK_BROKER_CONFIRM': 'Unlink Broker?', 'UNPAID_LOSS_AND_LOSS_RESERVE': 'Unpaid Loss & Loss Reserve', 'UNREALIZED_GAINS_LOSSES_ON_DERIVATIVES': 'Unrealized Gains Losses On Derivatives', 'UNREALIZED_GAIN_LOSS': 'Unrealized Gain Loss', 'UNREALIZED_GAIN_LOSS_ON_INVESTMENT_SECURITIES': 'Unrealized Gain Loss On Investment Securities', 'UNSELECT_ALL': 'Unselect All', 'UP': 'Up', 'UPDATE_YOUR_HOLDINGS_MSG': 'Please update your holdings to utilize premium portfolio features', 'UPDATE_YOUR_HOLDINGS': 'Update your holdings', 'UPCOMING_EVENTS': 'Upcoming Events', 'UPGRADE': 'Upgrade', 'UPGRADES_DOWNGRADES': 'Upgrades & Downgrades', 'UPSIDE_BREAKOUT_STOCKS_DAILY': 'Upside Breakout Stocks', 'UP_LAST_30_DAYS': 'Up Last 30 Days', 'UP_LAST_7_DAYS': 'Up Last 7 Days', 'USERNAME': 'Username', 'USERNAME_PLACEHOLDER': 'Enter your username showed to your followers', 'USER_INSIGHTS_MOST_VISITED_DESCRIPTION': 'See what users are checking out for insights and trade inspiration.', 'USER_INSIGHTS_VISITS_TREND_UP': 'User visits are up', 'USER_INSIGHTS_VISITS_TREND_DOWN': 'User visits are down', 'USER_INSIGHTS_MOST_VISITED_TITLE': 'Frequently visited sectors and companies', 'USER_INSIGHTS_VISITS_LAST_7D': 'over the last 7 days.', 'USER_VISITS_TREND_POSITIVE': 'There has been a {percent} increase in visits over the last 7 days.', 'USER_VISITS_TREND_NEGATIVE': 'There has been a {percent} decrease in visits over the last 7 days.', 'US_AND_CANADA': 'US & Canada', 'UPDATE_YOUR_SETTINGS': 'Update your settings here to see it.', 'UTILITIES': 'Utilities', 'UTILITIES_DESC': 'Utilities Stocks', 'VALUATION': 'Valuation', 'VALUATION_MEASURES': 'Valuation Measures', 'VALUATION_METRIC': 'Valuation Metric', 'VALUE': 'Value', 'VALUES_AND_PRACTICES': 'Products and Activities', 'VALUE_DESCRIPTION': 'Value Description', 'VAREJO_TITLE': 'Retail', 'VERTICAL': 'Vertical', 'VIDEOS': 'Videos', 'VIDEOS_TITLE': 'Featured Videos', 'VIDEO_UNSUPPORTED': 'Video Player is not supported by your current browser version.', 'VIEW': 'View', 'VIEW_ALL': 'View all', 'VIEW_ALL_CONVERSATIONS': 'View all conversations', 'VIEW_ALL_CONVERSATIONS_WITH_AMOUNT': 'View all {amount} conversations', 'VIEW_ALL_MATCHES': 'View all {totalCount} matches', 'VIEW_ALL_TRADE_IDEAS': 'View all investment ideas', 'VIEW_CHART': 'View Chart', 'VIEW_CONTENT_PRIVACY_MSG': 'This content is not available due to your privacy preferences.', 'VIEW_DETAILS': 'View details', 'VIEW_FEWER_CASH': 'View fewer cash holdings', 'VIEW_FEWER_DIVIDENDS': 'View fewer dividends', 'VIEW_FEWER_SHARE_LOTS': 'View fewer lots', 'VIEW_FEWER_TRANSACTIONS': 'View fewer transactions', 'VIEW_FILING': 'View Filing', 'VIEW_IN_CHART': 'View in chart', 'VIEW_LIST_PREVIEW': 'See list preview', 'VIEW_MORE': 'View more', 'VIEW_LESS': 'View less', 'VIEW_MORE_RELATED_FILINGS': 'View more related filings', 'VIEW_MORE_SUGGESTED_STOCK': 'View more suggested stocks', 'VIEW_OLDER_CASH': 'View older cash holdings', 'VIEW_OLDER_DIVIDENDS': 'View older dividends', 'VIEW_OLDER_SHARE_LOTS': 'View older lots', 'VIEW_OLDER_TRANSACTIONS': 'View older transactions', 'VIEW_ORDERS': 'View Orders', 'VIEW_QUOTE_SUMMARY': 'Go to Quote Summary Page', 'VISITORS_TREND': 'Visitors trend', 'VISITS': 'Visits', 'VOLUME_RANGE': '{0} x {1}', 'WALLET': 'Wallet', 'WAS_THIS_HELPFUL': 'Was this helpful?', 'WASTE_MANAGEMENT': 'Waste Management', 'WASTE_MANAGEMENT_DESC': 'Waste Management Stocks', 'WATCHLISTS': 'Watchlists', 'WATCHLIST_BY': 'Watchlist by {brand}', 'WATCHLIST_SIGNIN': 'Sign-in to view your list and add symbols.', 'WATCHLIST_SIGNIN_AGAIN': 'Sign-in again to view your list.', 'WATER_PRODUCTION': 'Water Production', 'WATER_UTILITIES': 'Water Utilities', 'WATER_UTILITIES_DESC': 'Water Utilities Stocks', 'WAVE_TEMPLATE': 'Wave Template:', 'WEBSITE': 'Website', 'WELCOME_BACK_USER': 'Welcome back {userid}!', 'WEEKLY': 'Weekly', 'WEEK_AHEAD': 'Earnings This Week', 'WEEK_UPDATE_MSG': '{status} by {value} points week by week', 'WEIGHTED_AVG_SHARE': 'Weighted average shares outstanding', 'WHOLESALE_OTHER': 'Wholesale, Other', 'WHOLESALE_OTHER_DESC': 'Wholesale, Other Stocks', 'WIRELESS_COMMUNICATIONS': 'Wireless Communications', 'WIRELESS_COMMUNICATIONS_DESC': 'Wireless Communications Stocks', 'WITHDRAWALS': 'Withdrawals', 'WORKING_CAPITAL': 'Working Capital', 'WORK_IN_PROCESS': 'Work in Process', 'WORLD_INDICES_TITLE': 'World Indices', 'WORLD_TITLE': 'World', 'WORST_ONE_YR_TOTAL_RETURN': 'Worst 1 Yr Total Return ({date})', 'WORST_THREE_YR_TOTAL_RETURN': 'Worst 3-Yr Total Return', 'WRITE_OFF': 'Write Off', 'YAHOO_FINANCE': 'Yahoo Finance', 'YAHOO_FINANCE_FULL': 'Yahoo Finance', 'YAHOO_FINANCE_PODCAST': 'Yahoo Finance Podcast', 'YAHOO_FINANCE_SCREENERS': 'Yahoo Finance Screeners', 'YAHOO_FINANCE_PLUS_SCREENERS': 'Yahoo Finance Plus Screeners', 'YAHOO_PLUS_SCREENERS': 'Yahoo Plus Screeners', 'YAHOO_SMALL_BUSINESS_TITLE': 'Yahoo Small Business', 'YEAR': 'Year', 'YEARS': '{n} Years', 'YEARLY': 'Yearly', 'YEAR_AGO_EPS': 'Year Ago EPS', 'YEAR_AGO_SALES': 'Year Ago Sales', 'YEAR_BORN': 'Year Born', 'YES': 'Yes', 'YO': '{age} yo.', 'YORIG_TITLE': 'Yahoo Originals', 'YOY': 'yoy', 'YTD': 'YTD', 'YTD_DTR': 'YTD Daily Total Return', 'YTD_RETURN': 'YTD Return', 'YTD_RETURN_MKT': 'Year-to-Date Return (Mkt)', 'YTD_RETURN_PCT': 'Year-to-Date Return', 'Y_AXIS_SCALE': 'Y-axis scale', 'YOU_MIGHT_ALSO_LIKE': 'You might also like', 'ZOOM_IN': 'Zoom in', 'ZOOM_OUT': 'Zoom out', '{0} - {1}': '{0} - {1}'}, 'tdv2-wafer-header': {'ABOUT': 'About', 'ABOUT_OUR_ADS': 'About Our Ads', 'ACCOUNT_LOGIN_CTA': 'Already have an account?', 'ACCOUNT_SIGN_UP_CTA': \"Don't have one?\", 'ACCOUNT_MANAGE': 'Manage Accounts', 'ADVERTISE': 'Advertise', 'ADVERTISE_CHOICES': 'Advertising Choices', 'AOL': 'Aol', 'ANSWERS': 'Answers', 'ATT': 'AT&T', 'ATT_ENVIVO': 'AT&T En Vivo', 'ATT_MY': 'myAT&T', 'ATT_MY_APP': 'myAT&T App', 'ATT_SHOP': 'Shop AT&T', 'ATT_SUPPORT': 'AT&T Customer Support', 'ATT_E1': 'En Espanol', 'ATT_E1_WEATHER': 'El Tiempo', 'ATT_SRVS': 'AT&T Services', 'ATT_DTV': 'DIRECTV', 'ATT_DTVN': 'DIRECTV STREAM', 'ATT_WIRELESS': 'AT&T Wireless', 'ATT_UPGRADE': 'Upgrade Your Device', 'ATT_ADD_LINE': 'Add a Line', 'ATT_FIBER': 'AT&T Fiber', 'ATT_INTERNET': 'AT&T Internet', 'ATT_BUSINESS': 'Phones & Devices', 'ATT_ADVERTISE_CHOICES': 'Advertising Choices', 'ATT_AUP': 'AUP', 'ATT_ADVERTISE': 'Advertise', 'ATT_FEEDBACK': 'Feedback', 'ATT_PRIVACY': 'Privacy', 'ATT_TERMS': 'Terms', 'ATT_HELP': 'Site Help', 'ATT_HOLIDAYS': 'Holidays', 'ATT_THISMONTH': 'This Month', 'AUCTION': 'Auction', 'AUP': 'AUP', 'BACK': 'Back', 'BLACKLIVESMATTER': 'Black Lives Matter', 'BLACK_HISTORY': 'Black History', 'BUILD': 'Build', 'BUY_CENTER': 'Shopping center', 'CANADA_EN': 'Canada (EN)', 'CANADA_FR': 'Canada (FR)', 'CANCEL': 'Cancel', 'CAREERS': 'Careers', 'CLEAR_SEARCH': 'Clear Search', 'COMPOSE': 'Compose', 'COMPOSE_EMAIL': 'Compose email', 'COMPOSE_RAQUO': 'Compose »', 'CORONAVIRUS': 'COVID-19', 'CELEBRITY': 'Celebrity', 'CRICKET': 'Cricket', 'DELAS': 'Group buy', 'DO_NOT_SHOW_MAIL': 'Do not show my mail', 'WEATHER': 'Weather', 'HEALTH': 'Health', 'VIDEO': 'Video', 'MOBILE': 'Mobile', 'ELECTION': '2020 Election', 'ENTERTAINMENT': 'Entertainment', 'DELETE': 'Delete', 'FEEDBACK': 'Feedback', 'FINANCE': 'Finance', 'FREE': 'FREE', 'FRONTIER': 'Frontier', 'FRONTIER_MAIL': 'Frontier Mail', 'FRONTIER_BILLPAY': 'Online Bill Pay', 'FRONTIER_COM': 'Frontier.com', 'FRONTIER_HELP': 'Frontier Help Center', 'FRONTIER_SRVS': 'Frontier Services', 'FRONTIER_BILLPAY_D': 'Bill Pay', 'FRONTIER_MAIL_D': 'FTR Mail', 'GAMES': 'Games', 'SOLITAIRE': 'Solitaire', 'CROSSWORD': 'Crossword', 'GET_ATT_MAIL': 'Get AT&T Mail', 'GO_TO_MAIL': 'Go To Mail', 'GO_TO_MAIL_RAQUO': 'Go To Mail »', 'GO_TO_YAHOO_MAIL': 'Go To Yahoo Mail »', 'GOOGLE_CUSTOM_SEARCH': 'Powered by Google search', 'HANDWRITE_TITLE': 'Input by hand write', 'HANDWRITE_SPONSOR': 'Powered by Penpower', 'HELP': 'Help', 'HOME': 'Home', 'HIDE_THIS_WIDGET': 'No thanks, hide this widget', 'INBOX': 'Inbox', 'INBOX_PREVIEW_SHOW_LESS': 'Show less', 'INBOX_PREVIEW_SHOW_MORE': 'Show more', 'INBOX_PREVIEW_SUBHEADER': 'Inbox Preview', 'IN_THE_KNOW': 'In The Know', 'INSPIRED_BY': 'Inspired By', 'LIFE': 'Life', 'LIFESTYLE': 'Lifestyle', 'LOADING': 'Loading', 'LOGIN': 'Login', 'LOGOUT': 'Logout', 'LOGO_OVERRIDE': 'Happy Lunar New Year', 'LOGO_VALENTINES_DAY': \"Happy Valentine's Day\", 'MAIL': 'Mail', 'MAIL_PREVIEW_PREF': 'mail preview preference', 'MAIL_FROM': 'Mail From: ', 'MAIL_SUBJECT': 'Subject: ', 'MAKERS': 'MAKERS', 'MALL': 'Mall', 'MARK_AS_SPAM': 'Mark as spam', 'MARKET_MOVERS': 'Market Movers', 'MORE': 'More...', 'MORE_PRODUCTS_SERVICES': 'More Products & Services', 'MOVIES': 'Movies', 'MY_CHANNEL': 'My Channel', 'MY_MAIL': 'My Mail', 'MY_VIDEO_CHANNEL': 'My Video Channel', 'MY_YAHOO_MAIL': 'My Yahoo Mail', 'MY_YAHOO_MAIL_SIGNED_OUT_INTRO': 'Check multiple mail accounts from one place', 'MY_YAHOO': 'My Yahoo', 'NEW_TEXT': 'New', 'NEWS': 'News', 'NOTIFICATIONS': 'Notifications', 'NO_MESSAGES_TO_DISPLAY': 'No messages to display', 'NO_NEW_NOTIFICATIONS': 'You have no new notifications.', 'NOTIF_ONBOARD_LABEL': 'Notify Me', 'NOTIF_ONBOARD_MSG': 'Get Notifications for Your Favorite Topics', 'OUR_BRANDS': 'Our brands', 'PLEASE_CHECK_BACK_LATER': 'Please check back later.', 'POLITICS': 'Politics', 'PROFILE': 'Profile', 'PRIVACY': 'Privacy', 'PRIVACY_ICON_ALT': 'Privacy rights icon', 'PRIVACY_UPDATED': 'Privacy (Updated)', 'PUBLISHER_MANAGEMENT': 'Manage Publishers', 'REFRESH': 'Refresh', 'REL_DAYS': '{0}d', 'REL_HOURS': '{0}h', 'REL_MINS': '{0}m', 'REL_MONTHS': '{0}mo', 'REL_SECS': '{0}s', 'REL_WEEKS': '{0}wk', 'REL_YEARS': '{0}yr', 'REPORT_BUG': 'Report a Bug', 'ROGERS': 'Rogers', 'ROGERSCA_CHATELAINE': 'Chatelaine', 'ROGERSCA_MACLEANS': 'Macleans', 'ROGERSCA_SPORTSNET': 'Sportsnet', 'ROGERS_COM': 'Rogers.com', 'ROGERSCA_SUPPORT': 'Rogers Support', 'ROGERSCA_SRVS': 'Rogers Services', 'ROGERSCA_FRENCH': 'French', 'ROGERSCA_ENGLISH': 'English', 'ROGERSCF_CHATELAINE': 'Châtelaine', 'ROGERSCF_LACTUALITE': \"L'actualité\", 'ROGERSCF_HELP': 'Soutien Rogers', 'ROGERSCF_SRVS': 'Services Rogers', 'PREMIUM_OFFERS': 'Premium Offers', 'TECH_TIPS': 'Tech Tips', 'YAHOO_PLUS': 'Yahoo Plus', 'SEARCH': 'Search', 'SELECT_MESSAGE': 'Select message', 'SETTINGS': 'Settings', 'SEND_FEEDBACK': 'Send Feedback', 'SHOPPING': 'Shopping', 'SIGNIN': 'Sign in', 'SIGNIN_TO_MAIL': 'Sign in to Yahoo Mail', 'SIGNOUT': 'Sign Out', 'SIGNUP': 'Sign Up', 'SHOW_ME_MY_MAIL': 'Yes, show me my mail', 'SKIP_TO_MAIN_CONTENT': 'Skip to Main Content', 'SKIP_TO_NAVIGATION': 'Skip to Navigation', 'SKIP_TO_RELATED_CONTENT': 'Skip to Related Content', 'SKULLDUGGERY': 'Skullduggery', 'SPORTS': 'Sports', 'STYLE': 'Style', 'STAYHOME': 'StayHome', 'STOCK': 'Stock', 'STORE': 'Store', 'SUBSCRIPTIONS': 'Premium Offers', 'SUPPLY_CHAIN': 'Supply Chain Transparency', 'SWITCH_BACK_TO_CLASSIC': 'Switch Back to Classic Yahoo', 'TERMS': 'Terms', 'TERMS_UPDATED': 'Terms (Updated)', 'THE_RUSH': 'The Rush', 'TO_VIEW_YOUR_MAIL': 'To view your Yahoo Mail, you need to sign in to your account', 'TOP_SEARCH': 'Top Search:', 'TOPICS_MANAGEMENT': 'Manage Topics', 'TV': 'TV', 'FINANCE_UH_SEARCH_WEB': 'Search for news, symbols or companies', 'SPORTS_UH_SEARCH_WEB': 'Search Players and Teams', 'UNABLE_TO_PREVIEW': 'We are unable to preview your mail.', 'VERIZON': 'Verizon', 'VIEW_INBOX': 'View inbox', 'VIEW_YOUR_MAIL_TEXT': 'To view your Yahoo Mail, you need to sign in to your account', 'VIEW_YOUR_MAIL': \"Sign in to view your mail\", 'VIEW_YOUR_MAIL_MORE': \"Sign in to view your mail, and more\", 'WOMEN': 'Women', 'WOMENS_HISTORY': \"Women's History\", 'WOULD_YOU_LIKE_TO_SEE': 'Would you like to see a preview of your Yahoo Mail inbox here?', 'YAHOO': 'Yahoo', 'YAHOO_POWERED': 'Powered by Yahoo', 'YAHOO_SPORTS': 'Yahoo Sports', 'YAHOO_FANTASY': 'Yahoo Fantasy', 'YOU_CAN_MANAGE_YOUR_FEED': 'You can manage your feed here'}, 'react-finance': {'200_DAY_MOVING_AVG': '200-Day Moving Average', 'AD': 'Ad', 'ADVERTISE_WITH_US': 'Advertise with us', 'ADFB_CLOSE': 'Close', 'ADFB_DISLIKE_AD_HIDDEN': 'This ad has been hidden', 'ADFB_DISLIKE_AD_HIDDEN_DETAIL': 'Improve your future experience.', 'ADFB_DISLIKE_AD_HIDDEN_DETAIL_LONG': 'You can give additional feedback on this ad to improve your future experience.', 'ADFB_HEADING': \"Why don't you like this ad?\", 'ADFB_REVIEW': \"We'll review and make changes needed\", 'ADFB_SEND_FEEDBACK': 'Send Feedback', 'ADFB_SOMETHING_ELSE_PLACEHOLDER': \"Why don't you like this ad\", 'ADFB_THANKYOU': 'Thanks for your feedback!', 'ADFB_UNDO': 'Undo', 'AD_DISLIKE': \"I don't like this ad\", 'AD_DISLIKE_DETAIL': 'Show fewer ads like this', 'AD_FEEDBACK': 'Ad Feedback', 'AD_FEEDBACK_ADLITE_PROMO': 'Try Yahoo Finance Plus', 'AD_GIVE_FEEDBACK': 'Give Feedback', 'AD_LIKE': 'I like this ad', 'AD_LIKE_DETAIL': 'Show more ads like this', 'AD_TERMS': 'Why this ad?', 'ADD_SYMBOL': 'Add Symbol', 'ADD_TO_WATCHLIST': 'Add to Watchlist', 'ADVERTISEMENT': 'Advertisement', 'AERONAUTICS_TITLE': 'Aeronautics', 'ALGO_WATCHLIST': 'Watchlist', 'AND': 'and', 'APP_PROMO_OPEN_APP': 'Open in App', 'AUDIOVISUAL_MEDIA_TITLE': 'Audiovisual and Media', 'AUTO_TITLE': 'Auto', 'AUTOCOMPLETE_PLACEHOLDER': 'VZ, AAPL, TSLA', 'AUTOS_TITLE': 'Autos', 'AUTOS_TRANSPORTATION_TITLE': 'Autos & Transportation', 'AVG_VOL_10_DAY': 'Avg Vol (10 day)', 'AVG_VOL_3_MONTH': 'Avg Vol (3 month)', 'BANKING_INSURANCE_TITLE': 'Banking & Insurance', 'BASIC_MATERIALS_TITLE': 'Basic Materials', 'BETA': 'Beta', 'BONDS_TITLE': 'US Treasury Bonds Rates', 'BREXIT_TITLE': 'Brexit', 'BUSINESS_SERVICES_TITLE': 'Business Services', 'CALENDARS_TITLE': 'Calendars', 'CANCEL': 'Cancel', 'CAREERS_TITLE': 'Careers', 'CHART': 'Chart', 'CHEMICAL_BASIC_MATERIALS_TITLE': 'Chemical and Basic Materials', 'CHEMIE_TITLE': 'Chemie', 'CLOSE': 'Close', 'COIN_MARKET_CAP': 'CoinMarketCap', 'COMMODITIES': 'Futures', 'COMPARE_PRODUCTS_TITLE': 'Compare Products', 'COMPONENTS': 'Components', 'CONFIRM_DELETE': 'Confirm Delete', 'CONFIRM_DELETE_MSG': 'Are you sure you want to delete {pfName} watchlist?', 'CONFIRM_DELETE_TICKER': 'Are you sure you want to remove {symbol}?', 'CONFIRM_NO': 'No', 'CONFIRM_YES': 'Yes', 'CONFIRMED_CASES': 'Confirmed Cases', 'CONSTRUCTION_TITLE': 'Construction', 'CONSUMER_DURABLES_TITLE': 'Consumer Durables', 'CONSUMER_GOODS_TITLE': 'Consumer Goods', 'CONSUMER_PRODUCTS_MEDIA_TITLE': 'Consumer Products & Media', 'CONTRIBUTORS_TITLE': 'Contributors', 'COVID_19': 'COVID-19', 'CREATE_NEW_LIST': 'Create a new list', 'CURRENCIES': 'Currencies', 'CURRENCIES_TITLE': 'Currencies', 'CURRENCY_CONVERTER_TITLE': 'Currency Converter', 'DEFAULT_MESSAGE': 'We are experiencing some temporary issues. The market data on this page are currently delayed. Please bear with us as we address this and restore your personalized lists.', 'DELAYED': 'Delayed Price', 'DELETE_BTN': 'Delete', 'DELETE_TICKER_INFO': 'Delete symbol from watchlist', 'DELETE_WATCHLIST': 'Delete Watchlist', 'DISLIKE_AD': \"I don't like this ad\", 'DIVERSIFIED_BUSINESS_TITLE': 'Diversified Business', 'DIVIDEND': 'Dividend', 'EARNINGS_REPORT': 'Earnings Report', 'EDIT': 'Edit', 'END': 'End', 'ENERGY_TITLE': 'Energy', 'ENTER_LIST_NAME': 'Enter List name', 'ETFS_TITLE': 'Top ETFs', 'EX_DIVIDEND': 'Ex-Dividend', 'EX_DIVIDEND_DATE': 'Ex-Dividend Date', 'FAILSAFE_CACHE_MESSAGE': 'We are experiencing some temporary issues. The market data on this page are currently delayed. Please bear with us as we address this and restore your personalized lists.', 'FEEDBACK_TITLE': 'Feedback', 'FINAL_ROUND_TITLE': 'The Final Round', 'FINANCIAL_TITLE': 'Financial', 'FMCG_TITLE': 'FMCG', 'FOODS_TITLE': 'Foods', 'FOOTER_ABOUT_TEXT': 'About Our Ads', 'FOOTER_COMPANY_TEXT': '{copyright}. All rights reserved.', 'FOOTER_DISCLAIMER_TEXT': 'Data Disclaimer', 'FOOTER_FB_FOLLOW_TEXT': 'Follow on Facebook', 'FOOTER_HELP_TEXT': 'Help', 'FOOTER_LI_FOLLOW_TEXT': 'Follow on LinkedIn', 'FOOTER_PRIVACY_POLICY_TEXT': 'Privacy Policy', 'FOOTER_PRIVACY_TEXT': 'Privacy', 'FOOTER_PRIVACY_TEXT_UPDATED': 'Privacy (Updated)', 'FOOTER_SITEMAP_TEXT': 'Sitemap', 'FOOTER_SUGGEST_TEXT': 'Suggestions', 'FOOTER_TERMS_TEXT': 'Terms', 'FOOTER_TW_FOLLOW_TEXT': 'Follow on Twitter', 'FORWARD_PE': 'Forward P/E', 'FREE_REALTIME': 'Real Time Price', 'FULL_SCREEN': 'Full screen', 'GAINERS_TITLE': 'Stocks: Gainers', 'GENERAL': 'Breaking News', 'GLOBAL': 'Global', 'GOOD_LIFE_NAV_TITLE': 'The Good Life', 'GOTO_TEXT': 'Go to {text}', 'HARDWARE_ELECTRONICS_TITLE': 'Computer Hardware & Electronics', 'HEALTHCARE_TITLE': 'Healthcare', 'HIGH': 'High', 'IN_WATCHLIST': 'In Watchlist', 'INDUSTRIALS_TITLE': 'Industrials', 'INDUSTRY_NAV_TITLE': 'Industry News', 'INTERNET_TITLE': 'Internet', 'JUMP_FIRST_PAGE': 'Jump to first page', 'JUMP_LAST_PAGE': 'Jump to last page', 'LAST_MONTH': 'Last Mo.', 'LEARN_MORE': 'Learn more', 'LEISURE_INDUSTRIES_TITLE': 'Leisure Industries', 'LIFESTYLE_TITLE': 'Lifestyle', 'LIKE_AD': 'I like this ad', 'LISTS': 'Lists', 'LIVE_VIDEO': 'Live Video', 'LOADING': 'Loading...', 'LOOKUP_FOOTER_TIP': 'Tip: Use comma to separate multiple quotes', 'LOSERS_TITLE': 'Stocks: Losers', 'LOW': 'Low', 'MAIL': 'Mail', 'MANAGE_SUBSCRIPTION': 'Manage Subscription', 'MANUFACTURING_MATERIALS_TITLE': 'Manufacturing & Materials', 'MARKET_BLOGS_TITLE': 'Market Blogs', 'MARKET_MOVERS_TITLE': 'Market Movers', 'MARKET_SUMMARY': 'Market Summary', 'MARKET_SUMMARY_CAROUSEL': 'Market summary containing a list of {size} items', 'MARKET_SUMMARY_CAROUSEL_ITEM_DECREASED': '{name} has decreased by {changePercent} or {change} points to {price} points', 'MARKET_SUMMARY_CAROUSEL_ITEM_INCREASED': '{name} has increased by {changePercent} or {change} points to {price} points', 'MARKET_SUMMARY_CAROUSEL_ITEM_UNCHANGED': '{name} is unchanged at {price}', 'MARKET_TIME_NOTICE_CLOSED_SHORT': 'At close: {date} {time}', 'MARKET_TIME_NOTICE_CLOSED': 'As of {date} {time}. {marketState}', 'MARKETS_OPEN': 'Market open.', 'MONEY_GUIDES_TITLE': 'Money Guides', 'MORE_SYMBOLS': 'More symbols', 'MORNING_BRIEF': 'Morning Brief', 'MOST_ACTIVE_TITLE': 'Stocks: Most Actives', 'MSG_EMPTY_LIST': 'Your list is empty.', 'MSG_EMPTY_PF': \"You don't have any symbols in this list.\", 'MSG_EMPTY_RQ': 'Your Recently Viewed list is empty.', 'MSG_EMPTY_YFINLIST': \"We're sorry, but we were unable to retrieve this data. Please try again.\", 'MSG_NO_LISTS': 'No lists found', 'MSG_NO_NEWS': 'No news found', 'MSG_NO_SEARCH_RESULTS': \"No matching results for '{query}'\", 'MSG_NO_SYMBOLS': 'No symbols found', 'MUTUALFUNDS_TITLE': 'Top Mutual Funds', 'MY_PORTFOLIO_NAV_TITLE': 'My Portfolio', 'MY_WATCHLIST': 'My Watchlist', 'NA': 'N/A', 'NAME_NEW_WATCHLIST': 'Name your new watchlist', 'NASDAQ_REALTIME_PRICE': 'Nasdaq Realtime Price', 'NEWS_NAV_TITLE': 'News', 'NEWS': 'News', 'NEW_HIGH': 'Price Alert', 'NEW_LOW': 'Price Alert', 'NOTIFICATIONS': 'Notifications', 'NO_NOTIFICATION_DATA': 'Notification data is not available', 'NO_MARKET_DATA': 'No Market Data', 'OIL_NATURAL_GAS_TITLE': 'Oil and Natural Gas', 'YAHOO_FINANCE_APP': 'Yahoo Finance App', 'OLDER': 'Older', 'OPTIONS': 'Options', 'OPTIONS_TITLE': 'Most Traded Options by Volume', 'ORIGINALS_TITLE': 'Yahoo Originals', 'PEG_RATIO_5_YR': 'PEG Ratio (5 yr expected)', 'PERSONAL_FINANCE_NAV_TITLE': 'Personal Finance', 'PHARMACEUTICAL_TITLE': 'Pharmaceutical', 'POST_MARKET_NOTICE': 'After hours:', 'POWER_TITLE': 'Power', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST': 'ADDED TO WATCHLIST', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_1': 'You will now see', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_2': ' more {ticker} news ', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_3': 'in your Yahoo feed', 'PREMIUM_UPSELL_CHART_PATTERN': 'Pattern', 'PREMIUM_UPSELL_CTA': 'Start your free trial today. >>', 'PREMIUM_UPSELL_DIFF_ONE_DAY_AGO': '1 day ago', 'PREMIUM_UPSELL_DIFF_D': '{days}d', 'PREMIUM_UPSELL_DIFF_DAYS_AGO': '{days} days ago', 'PREMIUM_UPSELL_DIFF_ONE_MONTH_AGO': '1 month ago', 'PREMIUM_UPSELL_NEW_FEATURE': 'NEW FEATURE', 'PREMIUM_UPSELL_NEW_FEATURE_LOGGED_IN': 'Stay up-to-date with news and stock price for {ticker}', 'PREMIUM_UPSELL_NEW_FEATURE_LOGGED_OUT': 'Sign in to keep track of {ticker} news and performance', 'PREMIUM_UPSELL_PATTERN_DETAIL': 'View bullish/bearish technical chart patterns with one click.', 'PREMIUM_UPSELL_PATTERN_TITLE': '{type} Pattern Detected', 'PREMIUM_UPSELL_PERFORMANCE_DETAIL': 'Conduct technical analysis for the short, mid, or long term.', 'PREMIUM_UPSELL_PERFORMANCE_TITLE': 'Performance Outlook', 'PREMIUM_UPSELL_RECOMMENDATION_TITLE': 'Recommendation rating', 'PREMIUM_UPSELL_REPORTS_DETAIL': 'Analyst reports and guidance from Morningstar and Argus.', 'PREMIUM_UPSELL_REPORTS_TITLE': 'Recent Research', 'PREMIUM_UPSELL_SIG_DEVS_DETAIL': 'Plot company events on charts to view impact on performance.', 'PREMIUM_UPSELL_SIG_DEVS_TITLE': 'Significant Event Occurred', 'PREMIUM_UPSELL_SIG_DEVS_TITLE_SHORT': 'Significant Event', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_CTA': 'Research report available', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_HEADER': 'Unlock premium independent research on this stock.', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_1': 'You’ve read ', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_2': '{usedCount} of your {maxCount} ', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_3': 'free research reports this quarter', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_CTA': 'Upgrade to read report', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_TOOLTIP_HEADER': 'Get unlimited reports with Yahoo Finance Plus.', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_TOOLTIP_DETAIL': 'You’ve read all your free reports this quarter.', 'PREMIUM_UPSELL_VALUATION_DETAIL': 'Determine the fair value of any stock with Premium.', 'PREMIUM_UPSELL_VALUATION_TITLE': 'Fair Value Estimate', 'PREMIUM_UPSELL_FEATURED_IN_TITLE': 'Featured in', 'PREMIUM_UPSELL_FEATURED_IN_PUBLISHER': 'Publisher', 'PREMIUM_UPSELL_FEATURED_IN_DAYCHNG': 'Day Change', 'PREMIUM_UPSELL_FEATURED_IN_FOLLOWERS': 'Followers', 'PRE_MARKET_NOTICE': 'Pre-Market:', 'PREDEFINED_SCREENER': 'Screener', 'PRESS_RELEASE': 'Press Releases', 'PRICE_TO_BOOK': 'Price/Book', 'PRICE_ALERT_UP': 'Price Alert', 'PRICE_ALERT_DOWN': 'Price Alert', 'PRIVATE': 'PRIVATE', 'PROFILE': 'Profile', 'PROPERTIES_TITLE': 'Properties', 'PROPERTY_TITLE': 'Property', 'PUBLIC_SERVICES_TITLE': 'Public Services', 'PORTFOLIO_DAILY_SUMMARY': 'Portfolio Summary', 'QUICK_VIDEO': 'Quick Video', 'QUOTE_LOOKUP': 'Quote Lookup', 'QUOTE_PRICE_NOTICE': '{exchangeName} {marketSource}. Currency in {currency}', 'RATES': 'Rates', 'RAW_MATERIALS_TITLE': 'Raw Materials', 'REAL_ESTATE_TITLE': 'Real Estate', 'REALTY_TITLE': 'Realty', 'RESEARCH_REPORTS': 'Research Reports', 'RESEARCH_REPORT': 'Premium Research Report', 'RECOMMEND_STOCKS': 'Recommended Stocks', 'RENAME': 'Rename', 'RENAME_MODAL_ERROR_MESSAGE': 'Please enter a valid watchlist name.', 'RENAME_MODAL_MESSAGE': 'Enter a new name for {pfName}.', 'RENAME_MODAL_TITLE': 'Rename your watchlist', 'RETAILING_HOSPITALITY_TITLE': 'Retailing & Hospitality', 'RETIREMENT_TITLE': 'Retirement', 'RQ_TITLE': 'Recently Viewed', 'RELATED_QUOTES': 'Related Quotes', 'SAVE': 'Save', 'SAVING_SPENDING_TITLE': 'Saving & Spending', 'SCREENER': 'Screener', 'SEARCH': 'Search', 'SEARCH_FEEDBACK_MSG': 'Give feedback on the new search experience', 'SEARCH_FEEDBACK_CURRENT_MSG': 'Give feedback on the search experience', 'SEARCH_PRIVATE_COMPANIES_PROMOTION': 'Now you can search stock related news and private companies such as Airbnb.', 'SEARCH_SCREENER_LINK': 'Screener for stocks & more', 'SEARCH_TIP': 'Tip: Try a valid symbol or a specific company name for relevant results', 'SEE_WHY': 'See why', 'SHARE': 'Share', 'SHARES_FLOAT': 'Float', 'SHORT_RATIO': 'Short Ratio', 'SHOW_ALL_RESULTS_FOR': 'Show all results for {query}', 'SHOW_MORE': 'Show more', 'SHOW_LESS': 'Show less', 'SIGN_IN': 'Sign In', 'SIGN_IN_TO_ADD_WATCHLIST': 'Sign in to add to watchlist', 'SIGN_IN_TO_ADD_WATCHLIST_TO_TICKER': 'Sign in to never miss news about {companyName}', 'SIGN_UP_PREMIUM': 'Sign up for Yahoo Finance Premium to get access to this insight', 'SIGN_UP_YAHOO_FINANCE_PLUS': 'Sign up for Yahoo Finance Plus to get access to this insight', 'SIGNIFICANT_DEVELOPMENT': 'Premium Significant Development', 'SIGNIFICANT_DEVELOPMENTS': 'Significant Developments', 'SMALL_BUSINESS_TITLE': 'Small Business', 'SOFTWARE_SERVICES_TITLE': 'Computer Software & Services', 'SPLIT': 'Split', 'SPORTSBOOK_TITLE': 'Sportsbook', 'START': 'Start', 'SUGGESTIONS': 'Suggestions', 'SUMMARY': 'Summary', 'SYMBOLS': 'Symbols', 'TAXES_TITLE': 'Taxes', 'TD_52_WK_HIGH': '52 Week High', 'TD_52_WK_LOW': '52 Week Low', 'TD_52_WK_RANGE': '52 Week Range', 'TD_ALERTS': 'Alerts', 'TD_ASK': 'Ask', 'TD_ASK_SIZE': 'Ask Size', 'TD_BID': 'Bid', 'TD_BID_SIZE': 'Bid Size', 'TD_BOOK_VALUE': 'Book Val', 'TD_CASH_AMOUNT': 'Amount', 'TD_CHANGE': 'Change', 'TD_COST_BASIS': 'Cost Basis', 'TD_CURRENCY': 'Currency', 'TD_DAY_GAIN': 'Day Gain $', 'TD_DAY_GAIN_PERCENT': 'Day Gain %', 'TD_DAY_HIGH': 'Day High', 'TD_DAY_LOW': 'Day Low', 'TD_DAY_RANGE': 'Intraday High/Low', 'TD_DIVIDEND_PAYMENT_DATE': 'Dividend Payment Date', 'TD_DIVIDEND_YIELD': 'Dividend Yield', 'TD_EBITDA': 'EBITDA', 'TD_EPS': 'EPS', 'TD_EXCHANGE': 'Exchange', 'TD_FIVE_YEAR': '5-Yr Return', 'TD_FUND_CATEGORY': 'Category', 'TD_HIGH_LIMIT': 'High Limit', 'TD_LAST_MONTH': 'Last Month', 'TD_LAST_NAV': 'Last NAV', 'TD_LAST_WEEK': 'Last Week', 'TD_LOT_VALUE': 'Lot Value', 'TD_LOW_LIMIT': 'Low Limit', 'TD_MARKET': 'Intraday Return', 'TD_MARKET_CAP': 'Market Cap', 'TD_MARKET_TIME': 'Market Time', 'TD_MARKET_VALUE': 'Market Value', 'TD_MATURITY': 'Maturity', 'TD_NAV_CHANGE': 'NAV $ Change', 'TD_NAV_PERCENT_CHANGE': 'NAV % Change', 'TD_NOTES': 'Notes', 'TD_OPEN': 'Open', 'TD_OPEN_INTEREST': 'Open Interest', 'TD_OPTION_NAME': 'Option', 'TD_PE_RATIO': 'PE Ratio', 'TD_PERCENT_CHANGE': '% Change', 'TD_PREV_CLOSE': 'Prev Close', 'TD_PRICE': 'Last Price', 'TD_PRICE_PAID_PER_SHARE': 'Price Paid', 'TD_SHARES': 'Shares', 'TD_SHARES_OUTSTANDING': 'Shares Out', 'TD_SPARKLINE': 'Day Chart', 'TD_SYMBOL': 'Symbol', 'TD_THREE_MONTH': '3-Mo Return', 'TD_THREE_YEAR': '3-Yr Return', 'TD_TOTAL_GAIN': 'Total Gain $', 'TD_TOTAL_GAIN_PERCENT': 'Total Gain %', 'TD_TRADE_DATE': 'Trade Date', 'TD_VOLUME': 'Volume', 'TD_YEAR_TO_DATE': 'YTD Return', 'TD_YESTERDAY': 'Yesterday', 'TD_YIELD': 'Yield', 'TDG_BASIC': 'Basic Columns', 'TDG_DETAILS': 'Details Columns', 'TDG_FUNDAMENTALS': 'Fundamentals Columns', 'TDG_MARKET': 'Share Statistics', 'TDG_MOVERS': 'Moving Averages Columns', 'TDG_PORTFOLIOS': 'Portfolios Columns', 'TDG_SHARE_STATS': 'Share Statistics', 'TECH_NAV_TITLE': 'Tech', 'TECHNOLOGY_TITLE': 'Technology', 'TELECOM_UTILITIES_TITLE': 'Telecom & Utilities', 'TEXTILES_TITLE': 'Textiles', 'TOP_STORIES_TITLE': 'Top Stories', 'TOURISM_SERVICES_TITLE': 'Tourism and Services', 'TRADE_IDEAS': 'Investment Ideas', 'TRADE_IDEA': 'Premium Investment Idea', 'TRAILING_PE': 'Trailing P/E', 'TRAVEL_TITLE': 'Travel', 'TRENDING_TICKERS_TITLE': 'Trending Tickers', 'TRENDING_TODAY': 'Trending Today', 'TRIGGER_ALERT': 'Price Alert', 'TRY_IT_FREE': 'Try it free', 'TODAY': 'Today', 'UH_SEARCH_MOBILE_WEB': 'Quote Lookup', 'UH_SEARCH_MOBILE_WEB_V2': 'Search for news or symbols', 'UH_SEARCH_WEB': 'Search for news, symbols or companies', 'UNDO': 'Undo', 'UNITED_STATES': 'United States', 'UPDATE_YOUR_SETTINGS': 'Update your settings here to see it.', 'VIDEO_TITLE': 'Video', 'VIEW_CHART': 'View Chart', 'VIEW_QUOTE_DETAILS': 'View quote details', 'WANT_FEWER_ADS': 'Go ad-free*', 'WHY_THIS_AD': 'Why this ad?', 'WATCHLISTS_NAV_TITLE': 'Watchlists', 'WEEK_AHEAD': 'Earnings This Week', 'WORLD_INDICES': 'World Indices', 'WORLD_TITLE': 'World', 'YAHOO_FINANCE': 'Yahoo Finance', 'YF_TITLE': 'Yahoo Finance Lists'}, 'tdv2-applet-swisschamp': {'BROWSER_UPGRADE': 'Some parts of this page is not supported on your current browser version. Please upgrade the browser to the latest.', 'CLOSE': 'Close'}, 'td-ads': {'AD': 'AD', 'ADVERTISEMENT': 'Advertisement', 'SCROLL_TO_CONTINUE': 'Scroll to continue with content'}, 'tdv2-applet-featurebar': {'BREAKING_NEWS': 'Breaking News', 'HIGH_LIGHT': 'Highlight'}, 'tdv2-applet-navrail': {'ABOUT': 'About', 'ACCOUNT_INFO': 'Account Info', 'APPS': 'Apps', 'APPS_ATT': 'AT&T Apps', 'BACK': 'Back', 'FOLLOW': 'Follow', 'FOLLOW_US': 'Follow Us', 'MORE': 'More', 'MORE_NAVLINKS': 'More Navlinks', 'MORE_SITES': 'More Sites', 'PROFILE': 'Profile', 'PROPERTY_HOME': '{property} Home', 'SERVICES_ATT': 'AT&T Services', 'SETTINGS': 'Settings', 'SHOW_LESS': 'Show less', 'SHOW_MORE': 'Show More', 'SHOW_X_MORE': 'Show {number} More', 'SIGNIN': 'Sign in', 'SIGNOUT': 'Sign out', 'SIGNOUT_ALL': 'Sign out all', 'STORYLINES': 'Storylines', 'TOOLS': 'Tools', 'WEATHER_FORECAST': 'Weather Forecast', 'WELCOME_BACK': 'Welcome back', 'VIEW_ON_INSTAGRAM': 'View on Instagram', 'YAHOO': 'Yahoo', 'YAHOO_SITES': 'Yahoo Sites'}, 'tdv2-applet-account-switch': {'ACCOUNT_INFO': 'Account Info', 'MANAGE_PUBLISHERS_SHORT': 'Manage Publishers', 'ACCOUNT_MANAGEMENT': 'Add or Manage accounts', 'ADD_ACCOUNT': 'Add account', 'BACKYARD': 'Backyard', 'SIGNOUT': 'Sign Out', 'SIGNOUT_ALL': 'Sign out all', 'WELCOME': 'Welcome back'}}, 'intlConfig': {'formats': {'date': {'timeStyle': {'hour': 'numeric', 'minute': 'numeric'}, 'short': {'day': 'numeric', 'month': 'short', 'year': 'numeric'}}, 'number': {'twoDecimal': {'minimumFractionDigits': 2, 'maximumFractionDigits': 2}, 'fourDecimal': {'minimumFractionDigits': 4, 'maximumFractionDigits': 4}}}}}, 'BeaconStore': {'beaconConfig': {'enableBatch': True, 'batchInterval': 1000, 'sampleSize': 1, 'pathPrefix': '/_td_api/beacon', 'beaconUncaughtJSError': True, 'sampleSizeUncaughtJSError': 1, 'context': {'prid': 'bae2cj5hu29in', 'authed': '0', 'ynet': '0', 'ssl': '1', 'spdy': '0', 'ytee': '0', 'mode': 'normal', 'site': 'finance', 'region': 'US', 'lang': 'en-US', 'dir': 'ltr', 'bucket': 'finance-US-en-US-def', 'colo': 'bf1', 'device': 'desktop', 'bot': '0', 'browser': 'chrome', 'app': 'unknown', 'ecma': 'default', 'environment': 'prod', 'intl': 'us', 'partner': 'none', 'time': 1675699799240, 'tpConsent': False, 'tz': 'America/New_York', 'usercountry': 'US', 'feature': ['adsMigration', 'canvassOffnet', 'ccOnMute', 'disableCommentsMessage', 'debouncesearch100', 'deferDarla', 'disableMegaModalSa', 'ecmaModern', 'enable3pConsent', 'enableCCPAFooter', 'enableNewCCPAFooter', 'enableCMP', 'enableCompanyInsights', 'enableConsentData', 'enableCorporateActions', 'enableEncryption', 'enableFBRedirect', 'enableFeatureTours', 'enableFinancialsTemplate', 'enableFreeFinRichSearch', 'enableGuceJs', 'enableGuceJsOverlay', 'enableNewChartBeta', 'enablePfSummaryForEveryone', 'enablePlusRedesign', 'enablePrivacyUpdate', 'enableUpgradeLeafPage', 'enableVideoURL', 'enableXrayCardsFollowButton', 'enableXrayHyperloopCards', 'enableXrayNcp', 'enableXrayTickerEntities', 'enableYahooSans', 'enableYodleeErrorMsgCriOS', 'ncpListStream', 'ncpPortfolioStream', 'ncpQspStream', 'ncpQspStreamV2', 'ncpStream', 'ncpStreamIntl', 'ncpTopicStream', 'newContentAttribution', 'newLogo', 'notificationsServiceWorker', 'oathPlayer', 'optimizeSearch', 'premium35', 'rightRailLatestReports', 'rightRailPortfolioReports', 'relatedVideoFeature', 'threeAmigos', 'threeAmigosVideoExperienceEnabled', 'waferHeader', 'useNextGenHistory', 'videoNativePlaylist', 'sunsetMotif2', 'enableMarketingModal', 'enableUserPrefAPI', 'enableCustomSymbolsTotalGain', 'livecoverage', 'darlaFirstRenderingVisible', 'enableAdlite', 'enableTradeit', 'enableFeatureBar', 'enableSearchEnhancement', 'enableUserSentiment', 'enableBankrateWidget', 'enableYodlee', 'canvassReplies', 'enablePremiumFinancials', 'enableNewResearchFilterMW', 'enableMonalixaFreqCapping', 'showExpiredIdeas', 'enableSingleRail', 'enableAmexOffer', 'enableNewCategories', 'enablePremiumScreenerNav2', 'exposePredefinedScreener', 'enableEnhanceScreener', 'enableSECFiling', 'enableFastlink4', 'enableHyperLoop', 'enableScreenerCarousel', 'enablePlusUserInsights', 'enableMegathonFollowQSP', 'enableMegathonFollowCue', 'enableHubPage', 'openWeb', 'enhanceAddToWL', 'article2_csn', 'sponsoredAds', 'enableStageAds', 'enableTradeItLinkBrokerSecondaryPromo', 'enableQspPremiumPromoSmall', 'clientDelayNone', 'threeAmigosMabEnabled', 'threeAmigosAdsEnabledAndStreamIndex0', 'enableRelatedTickers', 'enableTasteMaker', 'enableNotification', 'enableNativeBillboard', 'enableJSErrorBeacon', 'enableQuoteTypeKV', 'enableMonalixaBodySlot', 'enableLiveDynamicData', 'enablePremiumUpsell', 'enableTMD', 'enableBannerOnQuote', 'enableInsightEnhancement', 'enableMonalixaPortfolioHoldings3Day', 'enableMonalixaPortfolioHoldingsOnLoad3Day', 'enableMonalixaFreeTrialResearchReports', 'enableMonalixaFreeTrialPlusDashboard', 'enableMonalixaAdBlockerOverlay', 'enableOnboardingPhaseOne', 'enablePlusRedesignOnboarding', 'enableMegathonFollowEntryPoint'], 'adblock': '0', 'theme': 'none', 'nps': {}}}}, 'AdStore': {'appConfig': {'base': {'debug': False, 'dm': 1, 'disableDocDomain': True, 'aboveFoldPositions': 'WPS,MAST,LDRB,SPRZ,SPL,LREC,BTN,BTN-1,BTN-2,BTN-3,BTN1,BTNA,BTNB,BTNC,BTND,FB2,FB2-1,FB2-2,FB2-3,FB2A,FB2B,FB2C,FB2D,NE4,NE4-1,NE4-2,NE4-3,NE4A,NE4B,NE4C,NE4D', 'allowHostUrlAsReferrer': True, 'autoRotation': 10000, 'autoadrender': True, 'darlaJsAtTop': True, 'darlaVersion': '4-7-1', 'darlaAssetFetch': True, 'cacheDarlaAsset': True, 'darlaConfigFetch': True, 'cacheDarlaConfig': True, 'checkForModalClose': True, 'multipleRenderTargets': True, 'rotationTimingDisabled': False, 'k2': {'res': {'rate': 5, 'pos': ['BTN', 'BTN-1', 'BTN-2', 'BTN-3', 'BTN1', 'LREC', 'LREC2', 'LREC3', 'LDRB', 'MAST']}}, 'positions': {'DEFAULT': {'name': 'DEFAULT', 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False}, 'WPS': {'id': 'WPS', 'clean': 'cleanWPS', 'dest': 'destWPS', 'metaSize': True, 'w': 320, 'h': 50}, 'BTN1': {'id': 'BTN1', 'clean': 'cleanBTN1', 'dest': 'destBTN1', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN1-1': {'id': 'BTN1', 'clean': 'cleanBTN1-1', 'dest': 'destBTN1-1', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN': {'id': 'BTN', 'clean': 'cleanBTN', 'dest': 'destBTN', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-1': {'id': 'BTN-1', 'clean': 'cleanBTN-1', 'dest': 'destBTN-1', 'w': 120, 'h': 60}, 'BTN-2': {'id': 'BTN-2', 'clean': 'cleanBTN-2', 'dest': 'destBTN-2', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-3': {'id': 'BTN-3', 'clean': 'cleanBTN-3', 'dest': 'destBTN-3', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-5': {'id': 'BTN-5', 'clean': 'cleanBTN-5', 'dest': 'destBTN-5', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-6': {'id': 'BTN-6', 'clean': 'cleanBTN-6', 'dest': 'destBTN-6', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-7': {'id': 'BTN-7', 'clean': 'cleanBTN-7', 'dest': 'destBTN-7', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-8': {'id': 'BTN-8', 'clean': 'cleanBTN-8', 'dest': 'destBTN-8', 'metaSize': True, 'w': 120, 'h': 60}, 'BTNA': {'id': 'BTNA', 'clean': 'cleanBTNA', 'dest': 'destBTNA', 'metaSize': True, 'w': 120, 'h': 60}, 'BTNB': {'id': 'BTNB', 'clean': 'cleanBTNB', 'dest': 'destBTNB', 'metaSize': True, 'w': 120, 'h': 60}, 'BTNC': {'id': 'BTNC', 'clean': 'cleanBTNC', 'dest': 'destBTNC', 'metaSize': True, 'w': 120, 'h': 60}, 'BTND': {'id': 'BTND', 'clean': 'cleanBTND', 'dest': 'destBTND', 'metaSize': True, 'w': 120, 'h': 60}, 'WIDGET': {'id': 'WIDGET', 'clean': 'cleanWIDGET', 'dest': 'destWIDGET', 'metaSize': False, 'w': 650, 'h': 635, 'flex': {'w': {'min': 600, 'max': 800}}}, 'WIDGETA': {'id': 'WIDGETA', 'clean': 'cleanWIDGETA', 'dest': 'destWIDGETA', 'metaSize': False, 'w': 758, 'h': 198, 'fdb': True, 'supports': {'exp-ovr': 1, 'exp-push': 1}}, 'WIDGET-1': {'id': 'WIDGET-1', 'metaSize': False, 'w': 300, 'h': 340}, 'FOOT': {'id': 'FOOT', 'clean': 'cleanFOOT', 'dest': 'destFOOT', 'fr': 'expIfr_exp'}, 'FSRVY': {'id': 'FSRVY', 'clean': 'cleanFSRVY', 'dest': 'destFSRVY', 'fr': 'expIfr_exp'}, 'SCREC': {'id': 'SCREC', 'clean': 'cleanSCREC', 'dest': 'destSCREC', 'supports': {'exp-push': 1}, 'w': 300, 'h': 65}, 'LREC': {'id': 'LREC', 'clean': 'cleanLREC', 'dest': 'destLREC', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC-9': {'id': 'LREC-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC2': {'id': 'LREC2', 'clean': 'cleanLREC2', 'dest': 'destLREC2', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC2-4': {'id': 'LREC2-4', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-5': {'id': 'LREC2-5', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-6': {'id': 'LREC2-6', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-7': {'id': 'LREC2-7', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-8': {'id': 'LREC2-8', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-9': {'id': 'LREC2-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC3': {'id': 'LREC3', 'clean': 'cleanLREC3', 'dest': 'destLREC3', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC3-4': {'id': 'LREC3-4', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-5': {'id': 'LREC3-5', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-6': {'id': 'LREC3-6', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-7': {'id': 'LREC3-7', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-8': {'id': 'LREC3-8', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-9': {'id': 'LREC3-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC4': {'id': 'LREC4', 'clean': 'cleanLREC4', 'dest': 'destLREC4', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'overrides': {'doubleBuffering': True}}, 'LREC4-9': {'id': 'LREC4-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB': {'id': 'LDRB', 'clean': 'cleanLDRB', 'dest': 'destLDRB', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB-9': {'id': 'LDRB-9', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2': {'id': 'LDRB2', 'clean': 'cleanLDRB2', 'dest': 'destLDRB2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2-1': {'id': 'LDRB2-1', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2-2': {'id': 'LDRB2-2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2-3': {'id': 'LDRB2-3', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2-4': {'id': 'LDRB2-4', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'MAST': {'id': 'MAST', 'clean': 'cleanMAST', 'dest': 'destMAST', 'w': 970, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1, 'resize-to': 1}, 'fdb': False, 'closeBtn': {'mode': 2, 'useShow': 1, 'adc': 0}, 'metaSize': True}, 'MAST-9': {'id': 'MAST-9', 'w': 970, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1, 'resize-to': 1}, 'fdb': False, 'closeBtn': {'mode': 2, 'useShow': 1, 'adc': 0}, 'metaSize': True}, 'MON': {'id': 'MON', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'MON-1': {'id': 'MON-1', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'MON2': {'id': 'MON2', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'MON2-9': {'id': 'MON2-9', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'MOMENTS': {'id': 'MOMENTS', 'w': 375, 'h': 667, 'flex': {'ratio': '1x1.78', 'w': {'min': 320}, 'h': {'min': 568}}, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 1, 'exp-push': 1, 'resize-to': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3}, 'FB2': {'id': 'FB2', 'clean': 'cleanFB2', 'dest': 'destFB2', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2-1': {'id': 'FB2-1', 'clean': 'cleanFB2-1', 'dest': 'destFB2-1', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2-2': {'id': 'FB2-2', 'clean': 'cleanFB2-2', 'dest': 'destFB2-2', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2-3': {'id': 'FB2-3', 'clean': 'cleanFB2-3', 'dest': 'destFB2-3', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2A': {'id': 'FB2A', 'clean': 'cleanFB2A', 'dest': 'destFB2A', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2B': {'id': 'FB2B', 'clean': 'cleanFB2B', 'dest': 'destFB2B', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2C': {'id': 'FB2C', 'clean': 'cleanFB2C', 'dest': 'destFB2C', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2D': {'id': 'FB2D', 'clean': 'cleanFB2D', 'dest': 'destFB2D', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4': {'id': 'NE4', 'clean': 'cleanNE4', 'dest': 'destNE4', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4-1': {'id': 'NE4-1', 'clean': 'cleanNE4-1', 'dest': 'destNE4-1', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4-2': {'id': 'NE4-2', 'clean': 'cleanNE4-2', 'dest': 'destNE4-2', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4-3': {'id': 'NE4-3', 'clean': 'cleanNE4-3', 'dest': 'destNE4-3', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4A': {'id': 'NE4A', 'clean': 'cleanNE4A', 'dest': 'destNE4A', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4B': {'id': 'NE4B', 'clean': 'cleanNE4B', 'dest': 'destNE4B', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4C': {'id': 'NE4C', 'clean': 'cleanNE4C', 'dest': 'destNE4C', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4D': {'id': 'NE4D', 'clean': 'cleanNE4D', 'dest': 'destNE4D', 'metaSize': True, 'w': 120, 'h': 60}, 'UBALDRB': {'id': 'UBALDRB', 'w': 728, 'h': 90, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'UBALDRB-9': {'id': 'UBALDRB-9', 'w': 728, 'h': 90, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'UBALDRB2': {'id': 'UBALDRB2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALDRB2-1': {'id': 'UBALDRB2-1', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALDRB2-2': {'id': 'UBALDRB2-2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALDRB2-3': {'id': 'UBALDRB2-3', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALDRB2-4': {'id': 'UBALDRB2-4', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALREC': {'id': 'UBALREC', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3}, 'UBALREC-1': {'id': 'UBALREC-1', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3}, 'UBALREC-9': {'id': 'UBALREC-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3}, 'UBALREC2-9': {'id': 'UBALREC2-9', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBALREC2': {'id': 'UBALREC2', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBALREC3': {'id': 'UBALREC3', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBALREC3-9': {'id': 'UBALREC3-9', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBAMON': {'id': 'UBAMON', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBAMON-9': {'id': 'UBAMON-9', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBAMON2': {'id': 'UBAMON2', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'WFPAD': {'id': 'WFPAD', 'w': 320, 'h': 50, 'autoFetch': False, 'enable': True, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1, 'lyr': 1, 'resize-to': 1}, 'metaSize': True, 'staticLayout': False, 'fdb': False}, 'WFPAD2': {'id': 'WFPAD2', 'w': 320, 'h': 50, 'autoFetch': False, 'enable': True, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1, 'lyr': 1, 'resize-to': 1}, 'metaSize': True, 'staticLayout': False, 'fdb': False}, 'SPL': {'id': 'SPL', 'flex': 'both', 'enable': True, 'autoFetch': False, 'staticLayout': False, 'fdb': False, 'supports': {'cmsg': 1}, 'uhslot': '.YDC-UH', 'meta': {'type': 'stream'}, 'css': '.Mags-FontA{font-family:\"HelveticaNeue\",Helvetica,Arial,sans-serif;font-weight:300;}.Mags-FontA.Size1{font-size:13px;}.Mags-FontA.Size2{font-size:16px;}.Mags-FontA.Size3{font-size:20px;}.Mags-FontA.Size4{font-size:22px;}.Mags-FontA.Size5{font-size:33px;}.Mags-FontA.Size6{font-size:35px;}.Mags-FontA.Size7{font-size:58px;}.Mags-FontA.Size8{font-size:70px;}.Mags-FontA.Size9{font-size:100px;}.Mags-FontB{font-family:Georgia,Times,serif;font-weight:400;}.Mags-FontB.Size1{font-size:18px;}.Mags-FontC{font-family:\"HelveticaNeue\",Helvetica,Arial,sans-serif;font-weight:400;}.Mags-FontC.Size1{font-size:11px;}.Mags-FontC.Size2{font-size:14px;}.Mags-FontC.Size3{font-size:16px;}.Mags-FontC.Size4{font-size:20px;}.Mags-FontC.Size5{font-size:30px;}.Mags-FontC.Size6{font-size:32px;}.Mags-FontC.Size7{font-size:52px;}'}, 'TRADENOW': {'id': 'TRADENOW', 'clean': 'cleanTRADENOW', 'dest': 'destTRADENOW', 'w': 280, 'h': 55, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'TRADENOW-1': {'id': 'TRADENOW', 'clean': 'cleanTRADENOW-1', 'dest': 'destTRADENOW-1', 'fr': 'expIfr_exp', 'w': 320, 'h': 114, 'supports': {'exp-ovr': 1, 'exp-push': 1, 'resize-to': 1}, 'flex': {'ratio': '3.28x1', 'h': {'min': 114, 'max': 280}}, 'staticLayout': True, 'fdb': True}, 'INARTICLE': {'id': 'INARTICLE', 'w': 375, 'h': 211, 'autoFetch': False, 'fr': 'expIfr_exp', 'flex': {'ratio': '1.78x1', 'w': {'min': 10}, 'h': {'min': 5}}, 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'z': 9}}, 'events': {'DEFAULT': {'sp': 1183300002, 'ssl': 1, 'secure': 1}, 'adFetch': {'name': 'adFetch', 'dynamic': True, 'viewportOnly': 'MAST,LDRB,LDRB2,LREC,LREC2,MON,FB2,FB2-1,FB2-2,FB2-3,BTN,BTN-1,BTN-2,BTN-3,BTN1,NE4,NE4-1,NE4-2,NE4-3'}, 'AUTO': {'ddd': 0, 'name': 'AUTO', 'autoStart': 1, 'autoMax': 25, 'autoIV': 1, 'autoRT': 10000, 'autoDDG': 1, 'npv': 1, 'ps': {'BTN': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNA': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNB': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTND': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2A': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2B': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2C': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2D': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC4-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': '35000'}, 'MAST': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'MAST-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'MON': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'MON-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4A': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4B': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4C': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4D': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'SCREC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'SPL': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'WIDGETA': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'TRADENOW': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'TRADENOW-1': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'WPS': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'MON2': {'autoRT': 10000}, 'MON2-9': {'autoRT': 10000}}, 'groups': {'LREC3': 'MON2', 'LREC4': 'MON2', 'MON2': 'LREC3,LREC4', 'LREC3-9': 'MON2-9', 'LREC4-9': 'MON2-9', 'MON2-9': 'LREC3-9,LREC4-9'}}}, 'firstRenderingVisible': True, 'viewerAdboost': True, 'timeout': 500, 'adblockPos': 1, 'detectAdblock': True, 'enableUBAMON': True, 'nukeAds': 'LREC,LREC2,LREC-9,LREC2-9,LREC3-9,LREC4-9,LDRB-9,MAST-9,MON-1,SPL', 'enableAdPlaceHolder': True, 'adBoostGroupConf': {'LREC3': {'inview': 'LREC4', 'extrapositions': ['MON2']}, 'LREC4': {'inview': 'LREC3', 'extrapositions': ['MON2']}, 'MON2': {'extrapositions': ['LREC3', 'LREC4']}, 'LREC3-9': {'inview': 'LREC4-9', 'extrapositions': ['MON2-9']}, 'LREC4-9': {'inview': 'LREC3-9', 'extrapositions': ['MON2-9']}, 'MON2-9': {'extrapositions': ['LREC3-9', 'LREC4-9']}}}}, 'pageConfig': {'base': {'events': {'adFetch': {'ps': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,LREC2,FOOT,FSRVY,TRADENOW', 'firstRender': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,TRADENOW', 'sponsoredAds': '', 'sponsoredAdsClass': ''}, 'AUTO': {'autoDDG': 0, 'groups': {'LREC3': 'LREC3', 'LREC4': None, 'MON2': 'LREC3'}, 'ps': {'MON2': {'autoRT': 10000}}}}, 'deferRender': True, 'positions': {'MAST': {'fclose': 2, 'fdb': {'on': '1', 'where': 'inside'}}, 'MAST-9': {'fclose': 2, 'fdb': {'on': '1', 'where': 'inside'}}}, 'removeFSRVY': True, 'enableAdboost': True, 'adBoostGroupConf': {'LREC3': None, 'LREC4': None, 'MON2': {'extrapositions': ['LREC3']}}}, 'header': None}, 'routeConfig': {}, 'failedPositions': {'positions': {'FB2B': {'failed': True}, 'FB2C': {'failed': True}, 'FB2D': {'failed': True}, 'MON': {'failed': True}, 'FOOT': {'failed': True}, 'TRADENOW': {'failed': True}}}, 'darlaConfig': {'debug': False, 'dm': 1, 'aboveFoldPositions': 'WPS,MAST,LDRB,SPRZ,SPL,LREC,BTN,BTN-1,BTN-2,BTN-3,BTN1,BTNA,BTNB,BTNC,BTND,FB2,FB2-1,FB2-2,FB2-3,FB2A,FB2B,FB2C,FB2D,NE4,NE4-1,NE4-2,NE4-3,NE4A,NE4B,NE4C,NE4D', 'autoRotation': 10000, 'rotationTimingDisabled': False, 'k2': {'res': {'rate': 5, 'pos': ['BTN', 'BTN-1', 'BTN-2', 'BTN-3', 'BTN1', 'LREC', 'LREC2', 'LREC3', 'LDRB', 'MAST']}}, 'positions': {'DEFAULT': {'name': 'DEFAULT', 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'clean': 'cleanDEFAULT', 'dest': 'destDEFAULT', 'id': 'DEFAULT', 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'WPS': {'id': 'WPS', 'clean': 'cleanWPS', 'dest': 'destWPS', 'metaSize': True, 'w': 320, 'h': 50, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN1': {'id': 'BTN1', 'clean': 'cleanBTN1', 'dest': 'destBTN1', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN1-1': {'id': 'BTN1', 'clean': 'cleanBTN1-1', 'dest': 'destBTN1-1', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN': {'id': 'BTN', 'clean': 'cleanBTN', 'dest': 'destBTN', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN-1': {'id': 'BTN-1', 'clean': 'cleanBTN-1', 'dest': 'destBTN-1', 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN-2': {'id': 'BTN-2', 'clean': 'cleanBTN-2', 'dest': 'destBTN-2', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN-3': {'id': 'BTN-3', 'clean': 'cleanBTN-3', 'dest': 'destBTN-3', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN-5': {'id': 'BTN-5', 'clean': 'cleanBTN-5', 'dest': 'destBTN-5', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN-6': {'id': 'BTN-6', 'clean': 'cleanBTN-6', 'dest': 'destBTN-6', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN-7': {'id': 'BTN-7', 'clean': 'cleanBTN-7', 'dest': 'destBTN-7', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN-8': {'id': 'BTN-8', 'clean': 'cleanBTN-8', 'dest': 'destBTN-8', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTNA': {'id': 'BTNA', 'clean': 'cleanBTNA', 'dest': 'destBTNA', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTNB': {'id': 'BTNB', 'clean': 'cleanBTNB', 'dest': 'destBTNB', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTNC': {'id': 'BTNC', 'clean': 'cleanBTNC', 'dest': 'destBTNC', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTND': {'id': 'BTND', 'clean': 'cleanBTND', 'dest': 'destBTND', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'WIDGET': {'id': 'WIDGET', 'clean': 'cleanWIDGET', 'dest': 'destWIDGET', 'metaSize': False, 'w': 650, 'h': 635, 'flex': {'w': {'min': 600, 'max': 800}}, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'WIDGETA': {'id': 'WIDGETA', 'clean': 'cleanWIDGETA', 'dest': 'destWIDGETA', 'metaSize': False, 'w': 758, 'h': 198, 'fdb': True, 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'WIDGET-1': {'id': 'WIDGET-1', 'metaSize': False, 'w': 300, 'h': 340, 'clean': 'cleanWIDGET-1', 'dest': 'destWIDGET-1', 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FOOT': {'id': 'FOOT', 'clean': 'cleanFOOT', 'dest': 'destFOOT', 'fr': 'expIfr_exp', 'failed': True, 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FSRVY': {'id': 'FSRVY', 'clean': 'cleanFSRVY', 'dest': 'destFSRVY', 'fr': 'expIfr_exp', 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'SCREC': {'id': 'SCREC', 'clean': 'cleanSCREC', 'dest': 'destSCREC', 'supports': {'exp-push': 1}, 'w': 300, 'h': 65, 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC': {'id': 'LREC', 'clean': 'cleanLREC', 'dest': 'destLREC', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'doubleBuffering': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC-9': {'id': 'LREC-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLREC-9', 'dest': 'destLREC-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC2': {'id': 'LREC2', 'clean': 'cleanLREC2', 'dest': 'destLREC2', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC2-4': {'id': 'LREC2-4', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-4', 'dest': 'destLREC2-4', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC2-5': {'id': 'LREC2-5', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-5', 'dest': 'destLREC2-5', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC2-6': {'id': 'LREC2-6', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-6', 'dest': 'destLREC2-6', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC2-7': {'id': 'LREC2-7', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-7', 'dest': 'destLREC2-7', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC2-8': {'id': 'LREC2-8', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-8', 'dest': 'destLREC2-8', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC2-9': {'id': 'LREC2-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLREC2-9', 'dest': 'destLREC2-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC3': {'id': 'LREC3', 'clean': 'cleanLREC3', 'dest': 'destLREC3', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC3-4': {'id': 'LREC3-4', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-4', 'dest': 'destLREC3-4', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC3-5': {'id': 'LREC3-5', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-5', 'dest': 'destLREC3-5', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC3-6': {'id': 'LREC3-6', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-6', 'dest': 'destLREC3-6', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC3-7': {'id': 'LREC3-7', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-7', 'dest': 'destLREC3-7', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC3-8': {'id': 'LREC3-8', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-8', 'dest': 'destLREC3-8', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC3-9': {'id': 'LREC3-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLREC3-9', 'dest': 'destLREC3-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC4': {'id': 'LREC4', 'clean': 'cleanLREC4', 'dest': 'destLREC4', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'overrides': {'doubleBuffering': True}, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC4-9': {'id': 'LREC4-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLREC4-9', 'dest': 'destLREC4-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LDRB': {'id': 'LDRB', 'clean': 'cleanLDRB', 'dest': 'destLDRB', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LDRB-9': {'id': 'LDRB-9', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB-9', 'dest': 'destLDRB-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LDRB2': {'id': 'LDRB2', 'clean': 'cleanLDRB2', 'dest': 'destLDRB2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LDRB2-1': {'id': 'LDRB2-1', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB2-1', 'dest': 'destLDRB2-1', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LDRB2-2': {'id': 'LDRB2-2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB2-2', 'dest': 'destLDRB2-2', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LDRB2-3': {'id': 'LDRB2-3', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB2-3', 'dest': 'destLDRB2-3', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LDRB2-4': {'id': 'LDRB2-4', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB2-4', 'dest': 'destLDRB2-4', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'MAST': {'id': 'MAST', 'clean': 'cleanMAST', 'dest': 'destMAST', 'w': 970, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1, 'resize-to': 1}, 'fdb': {'on': '1', 'where': 'inside'}, 'closeBtn': {'mode': 2, 'useShow': 1, 'adc': 0}, 'metaSize': True, 'fclose': 2, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'MAST-9': {'id': 'MAST-9', 'w': 970, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1, 'resize-to': 1}, 'fdb': {'on': '1', 'where': 'inside'}, 'closeBtn': {'mode': 2, 'useShow': 1, 'adc': 0}, 'metaSize': True, 'fclose': 2, 'clean': 'cleanMAST-9', 'dest': 'destMAST-9', 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'MON': {'id': 'MON', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'failed': True, 'clean': 'cleanMON', 'dest': 'destMON', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'MON-1': {'id': 'MON-1', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanMON-1', 'dest': 'destMON-1', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'MON2': {'id': 'MON2', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanMON2', 'dest': 'destMON2', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'MON2-9': {'id': 'MON2-9', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanMON2-9', 'dest': 'destMON2-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'MOMENTS': {'id': 'MOMENTS', 'w': 375, 'h': 667, 'flex': {'ratio': '1x1.78', 'w': {'min': 320}, 'h': {'min': 568}}, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 1, 'exp-push': 1, 'resize-to': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3, 'clean': 'cleanMOMENTS', 'dest': 'destMOMENTS', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FB2': {'id': 'FB2', 'clean': 'cleanFB2', 'dest': 'destFB2', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FB2-1': {'id': 'FB2-1', 'clean': 'cleanFB2-1', 'dest': 'destFB2-1', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FB2-2': {'id': 'FB2-2', 'clean': 'cleanFB2-2', 'dest': 'destFB2-2', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FB2-3': {'id': 'FB2-3', 'clean': 'cleanFB2-3', 'dest': 'destFB2-3', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FB2A': {'id': 'FB2A', 'clean': 'cleanFB2A', 'dest': 'destFB2A', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FB2B': {'id': 'FB2B', 'clean': 'cleanFB2B', 'dest': 'destFB2B', 'metaSize': True, 'w': 120, 'h': 60, 'failed': True, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FB2C': {'id': 'FB2C', 'clean': 'cleanFB2C', 'dest': 'destFB2C', 'metaSize': True, 'w': 120, 'h': 60, 'failed': True, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FB2D': {'id': 'FB2D', 'clean': 'cleanFB2D', 'dest': 'destFB2D', 'metaSize': True, 'w': 120, 'h': 60, 'failed': True, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'NE4': {'id': 'NE4', 'clean': 'cleanNE4', 'dest': 'destNE4', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'NE4-1': {'id': 'NE4-1', 'clean': 'cleanNE4-1', 'dest': 'destNE4-1', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'NE4-2': {'id': 'NE4-2', 'clean': 'cleanNE4-2', 'dest': 'destNE4-2', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'NE4-3': {'id': 'NE4-3', 'clean': 'cleanNE4-3', 'dest': 'destNE4-3', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'NE4A': {'id': 'NE4A', 'clean': 'cleanNE4A', 'dest': 'destNE4A', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'NE4B': {'id': 'NE4B', 'clean': 'cleanNE4B', 'dest': 'destNE4B', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'NE4C': {'id': 'NE4C', 'clean': 'cleanNE4C', 'dest': 'destNE4C', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'NE4D': {'id': 'NE4D', 'clean': 'cleanNE4D', 'dest': 'destNE4D', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALDRB': {'id': 'UBALDRB', 'w': 728, 'h': 90, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB', 'dest': 'destUBALDRB', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALDRB-9': {'id': 'UBALDRB-9', 'w': 728, 'h': 90, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB-9', 'dest': 'destUBALDRB-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALDRB2': {'id': 'UBALDRB2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2', 'dest': 'destUBALDRB2', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALDRB2-1': {'id': 'UBALDRB2-1', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2-1', 'dest': 'destUBALDRB2-1', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALDRB2-2': {'id': 'UBALDRB2-2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2-2', 'dest': 'destUBALDRB2-2', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALDRB2-3': {'id': 'UBALDRB2-3', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2-3', 'dest': 'destUBALDRB2-3', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALDRB2-4': {'id': 'UBALDRB2-4', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2-4', 'dest': 'destUBALDRB2-4', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALREC': {'id': 'UBALREC', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3, 'clean': 'cleanUBALREC', 'dest': 'destUBALREC', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALREC-1': {'id': 'UBALREC-1', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3, 'clean': 'cleanUBALREC-1', 'dest': 'destUBALREC-1', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALREC-9': {'id': 'UBALREC-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3, 'clean': 'cleanUBALREC-9', 'dest': 'destUBALREC-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALREC2-9': {'id': 'UBALREC2-9', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBALREC2-9', 'dest': 'destUBALREC2-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALREC2': {'id': 'UBALREC2', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBALREC2', 'dest': 'destUBALREC2', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALREC3': {'id': 'UBALREC3', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBALREC3', 'dest': 'destUBALREC3', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALREC3-9': {'id': 'UBALREC3-9', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBALREC3-9', 'dest': 'destUBALREC3-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBAMON': {'id': 'UBAMON', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBAMON', 'dest': 'destUBAMON', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBAMON-9': {'id': 'UBAMON-9', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBAMON-9', 'dest': 'destUBAMON-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBAMON2': {'id': 'UBAMON2', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBAMON2', 'dest': 'destUBAMON2', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'WFPAD': {'id': 'WFPAD', 'w': 320, 'h': 50, 'autoFetch': False, 'enable': True, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1, 'lyr': 1, 'resize-to': 1}, 'metaSize': True, 'staticLayout': False, 'fdb': False, 'clean': 'cleanWFPAD', 'dest': 'destWFPAD', 'fallback': None, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'WFPAD2': {'id': 'WFPAD2', 'w': 320, 'h': 50, 'autoFetch': False, 'enable': True, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1, 'lyr': 1, 'resize-to': 1}, 'metaSize': True, 'staticLayout': False, 'fdb': False, 'clean': 'cleanWFPAD2', 'dest': 'destWFPAD2', 'fallback': None, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'SPL': {'id': 'SPL', 'flex': 'both', 'enable': True, 'autoFetch': False, 'staticLayout': False, 'fdb': False, 'supports': {'cmsg': 1}, 'uhslot': '.YDC-UH', 'meta': {'type': 'stream', 'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}, 'css': '.Mags-FontA{font-family:\"HelveticaNeue\",Helvetica,Arial,sans-serif;font-weight:300;}.Mags-FontA.Size1{font-size:13px;}.Mags-FontA.Size2{font-size:16px;}.Mags-FontA.Size3{font-size:20px;}.Mags-FontA.Size4{font-size:22px;}.Mags-FontA.Size5{font-size:33px;}.Mags-FontA.Size6{font-size:35px;}.Mags-FontA.Size7{font-size:58px;}.Mags-FontA.Size8{font-size:70px;}.Mags-FontA.Size9{font-size:100px;}.Mags-FontB{font-family:Georgia,Times,serif;font-weight:400;}.Mags-FontB.Size1{font-size:18px;}.Mags-FontC{font-family:\"HelveticaNeue\",Helvetica,Arial,sans-serif;font-weight:400;}.Mags-FontC.Size1{font-size:11px;}.Mags-FontC.Size2{font-size:14px;}.Mags-FontC.Size3{font-size:16px;}.Mags-FontC.Size4{font-size:20px;}.Mags-FontC.Size5{font-size:30px;}.Mags-FontC.Size6{font-size:32px;}.Mags-FontC.Size7{font-size:52px;}', 'clean': 'cleanSPL', 'dest': 'destSPL', 'fallback': None, 'metaSize': False}, 'TRADENOW': {'id': 'TRADENOW', 'clean': 'cleanTRADENOW', 'dest': 'destTRADENOW', 'w': 280, 'h': 55, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'failed': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'TRADENOW-1': {'id': 'TRADENOW', 'clean': 'cleanTRADENOW-1', 'dest': 'destTRADENOW-1', 'fr': 'expIfr_exp', 'w': 320, 'h': 114, 'supports': {'exp-ovr': 1, 'exp-push': 1, 'resize-to': 1}, 'flex': {'ratio': '3.28x1', 'h': {'min': 114, 'max': 280}}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'INARTICLE': {'id': 'INARTICLE', 'w': 375, 'h': 211, 'autoFetch': False, 'fr': 'expIfr_exp', 'flex': {'ratio': '1.78x1', 'w': {'min': 10}, 'h': {'min': 5}}, 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'z': 9, 'clean': 'cleanINARTICLE', 'dest': 'destINARTICLE', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}}, 'events': {'DEFAULT': {'sp': 1183300002, 'ssl': 1, 'secure': 1}, 'adFetch': {'name': 'adFetch', 'dynamic': True, 'viewportOnly': 'MAST,LDRB,LDRB2,LREC,LREC2,MON,FB2,FB2-1,FB2-2,FB2-3,BTN,BTN-1,BTN-2,BTN-3,BTN1,NE4,NE4-1,NE4-2,NE4-3', 'ps': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,LREC2,FOOT,FSRVY,TRADENOW', 'firstRender': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,TRADENOW', 'sponsoredAds': '', 'sponsoredAdsClass': ''}, 'AUTO': {'ddd': 0, 'name': 'AUTO', 'autoStart': 1, 'autoMax': 25, 'autoIV': 1, 'autoRT': 10000, 'autoDDG': 0, 'npv': 1, 'ps': {'BTN': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNA': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNB': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTND': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2A': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2B': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2C': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2D': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC4-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': '35000'}, 'MAST': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'MAST-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'MON': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'MON-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4A': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4B': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4C': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4D': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'SCREC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'SPL': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'WIDGETA': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'TRADENOW': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'TRADENOW-1': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'WPS': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'MON2': {'autoRT': 10000}, 'MON2-9': {'autoRT': 10000}}, 'groups': {'LREC3': 'LREC3', 'LREC4': None, 'MON2': 'LREC3', 'LREC3-9': 'MON2-9', 'LREC4-9': 'MON2-9', 'MON2-9': 'LREC3-9,LREC4-9'}}}, 'firstRenderingVisible': True}, 'adFetchEvent': {'ps': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,LREC2,FOOT,TRADENOW', 'sp': 95993639, 'sa': ' ticker=AAPL Y-BUCKET=finance-US-en-US-def LREC=300x250,1x1 rs=\"pt:utility;site:finance;ver:ydotcom;pct:qsp;lu:0\" migration=1 quote_type=EQUITY', 'optionalps': '', 'launchViewportAdSlot': [], 'site': 'finance'}, 'siteAttrs': ' ticker=AAPL Y-BUCKET=finance-US-en-US-def LREC=300x250,1x1 rs=\"pt:utility;site:finance;ver:ydotcom;pct:qsp;lu:0\" migration=1 quote_type=EQUITY', 'autoAdRender': True, 'supportMultipleRenderTargets': True, 'darlaJsAtTop': True, 'delayedRender': False, 'darlaVersion': '4-7-1', 'disableDarla': False, 'detectAdblock': True, 'inarticleTextEnable': False, 'adblockPos': True, 'disableDocDomain': True, 'removeFSRVY': True, 'enableAdboost': True, 'enableUBAMON': True, 'adBoostGroupConf': {'LREC3': None, 'LREC4': None, 'MON2': {'extrapositions': ['LREC3', 'LREC4']}, 'LREC3-9': {'inview': 'LREC4-9', 'extrapositions': ['MON2-9']}, 'LREC4-9': {'inview': 'LREC3-9', 'extrapositions': ['MON2-9']}, 'MON2-9': {'extrapositions': ['LREC3-9', 'LREC4-9']}}, 'viewerAdboost': True, 'tabswitchRotateTime': 3000, 'deferRender': True, 'keepPerfEntries': False, 'darlaAssetFetch': True, 'cacheDarlaAsset': True, 'darlaConfigFetch': True, 'cacheDarlaConfig': True, 'prefetchedPositions': {'FB2A': {'hasError': False, 'error': 'none', 'size': '120x60', 'slotData': {'trusted_custom': 'false', 'freqcapped': 'false', 'delivery': '-1', 'pacing': '-1', 'expires': '1946941', 'companion': 'false', 'exclusive': 'true', 'redirect': 'false', 'pvid': 'L5Az8Tc0LjZzdcscsMBqhQBsMTI4LgAAAABDSZf2'}, 'serveType': '6'}, 'FB2B': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}, 'FB2C': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}, 'FB2D': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}, 'LDRB': {'hasError': False, 'error': 'none', 'size': '728x90', 'slotData': {}, 'serveType': '7'}, 'LDRB2': {'hasError': False, 'error': 'none', 'size': '728x90', 'slotData': {}, 'serveType': '7'}, 'MON': {'hasError': True, 'error': 'fnad', 'size': 'unknown', 'slotData': None, 'serveType': '0'}, 'LREC': {'hasError': False, 'error': 'none', 'size': '300x250', 'slotData': {}, 'serveType': '7'}, 'LREC2': {'hasError': False, 'error': 'none', 'size': '300x250', 'slotData': {}, 'serveType': '7'}, 'FOOT': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}, 'TRADENOW': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}}, '_newPageRendered': False, 'checkForModalClose': True, 'nukeAds': ['LREC', 'LREC2', 'LREC-9', 'LREC2-9', 'LREC3-9', 'LREC4-9', 'LDRB-9', 'MAST-9', 'MON-1', 'SPL'], 'adfetchTimeout': 500, 'forceSsl': False, 'customPositionEnabled': False, 'customPositionConf': {}, 'reactjsDisabled': False, 'prefetchDisabled': False, 'displayMomentsScroller': False, 'enableJac': False, 'adsMeta': None, 'nonNativeBillboardConf': {'positions': {}}, 'nativeBillboardConf': {'positions': {}}, 'allowHostUrlAsReferrer': True, 'detectExpandEvent': False, 'launchViewportFetch': False, 'checkPrefetchedAdHidden': False, 'enableAdPlaceHolder': True, 'darlaAdBlockExp': False, 'hiddenPrefetchedAds': [], '_childCompositeReady': {}}, 'VideoStore': {'videos': {}, 'microdata': {}, '_cdnBase': 'https://s.yimg.com'}, 'ComponentConfigStore': {'configs': {'Nav-0-DesktopNav': {'enablePremiumNav': True, 'navItems': [{'name': 'Personal Finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}]}], 'ui': {'navCache': True, 'remoteAdapter': True, 'makeSticky': False, 'isNavLink': True, 'relativeLinks': True, 'navFont': 'Ff($yahooSansFinanceFont)!', 'headerTitle': 'finance', 'highlightPropertyHome': False, 'dividerClasses': 'H(0)!', 'offsetHack': 'Pt(2px) Bgc(t)!', 'navMainLeftClasses': 'Mend(80px)', 'leftNavClasses': 'Pstart(10px) Mstart(-10px) nr-applet-main-nav-right_Ov(inh)!', 'navTitleClasses': 'Pstart(10px) Mstart(-10px)!', 'linkItemClasses': 'Bgc($linkColor):h W(230px)!', 'subnavLinkClasses': 'Tt(n)! C($primaryColor) C(white)!:h Maw(200px)!', 'darkTheme': False, 'selectColor': 'C($finNavBlueText)! Bdbw(0px) H(42px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'subnavClasses': 'Bgc($lv3BgColor)!', 'hoverColor': 'C($finNavBlueText):h', 'overrideColor': 'C($finNavBlueText)', 'propertyHomeSelectColor': 'Bdbc($linkColor) Bdbs(s)! Bdbw(4px) H(38px)', 'propertyHomeClasses': 'Tt(c)! Bdbc($linkColor):h Bdbs(s):h Bdbw(4px):h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkClasses': 'Tt(n)!', 'navLinkClassesOnHover': 'Bdbc($linkColor)!:h Bdbs(s)!:h Bdbw(4px)!:h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkNonHoverClasses': 'C($topNavLinkGray) Bdbs(n)', 'highlightTriangleColor': 'transparent transparent #fff', 'navMainRightClasses': 'Bdc(t) Bdrs(1.5px) Bdbs(s):h Px(10px)!'}, 'featureSwitches': {'useNavSelectLogic': True, 'disableDivider': True, 'followButtons': False, 'navLogoAlign': False, 'navrailCollapse': False, 'enableHighlightTriangle': True, 'useSubnavTitleSlk': True}, 'i13n': {'itc': 0, 'sec': 'navrail'}, 'site': 'finance', 'mrt': {'static': False}, 'renderSecondaryNav': True, 'defaultRowNum': 10, 'components': {'finance': {'linkWidth': 230, 'linksRight': ['feature_promo']}}, 'linkMeta': {'feature_promo': {'bundles': {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'isPremium': True, 'autoStart': True, 'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'checkStoreBeforeCall': True, 'placement': 'finance-eyebrow-index'}}}}}, 'Nav-1-NavHelper': {'enablePremiumNav': True, 'navItems': [{'name': 'Yahoo Finance Plus', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}, 'requiresPremiumExperience': True}, {'name': 'Screeners', 'children': [{'name': 'Saved Screeners', 'url': 'https://finance.yahoo.com/screener'}, {'name': 'Equity Screener', 'url': 'https://finance.yahoo.com/screener/new'}, {'name': 'Mutual Fund Screener', 'url': 'https://finance.yahoo.com/screener/mutualfund/new'}, {'name': 'ETF Screener', 'url': 'https://finance.yahoo.com/screener/etf/new'}, {'name': 'Futures Screener', 'url': 'https://finance.yahoo.com/screener/future/new'}, {'name': 'Index Screener', 'url': 'https://finance.yahoo.com/screener/index/new'}, {'name': 'Analyst Rating Screener', 'url': 'https://finance.yahoo.com/screener/analyst_ratings/new?ncid=dcm_320339942_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Technical Events Screener', 'url': 'https://finance.yahoo.com/screener/tradingcentral_event/new?ncid=dcm_320544712_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Smart Money Screener', 'url': 'https://finance.yahoo.com/screener/institutional_interest/new?ncid=dcm_320344326_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Top Holdings Screener', 'url': 'https://finance.yahoo.com/screener/institutional_holdings/new?ncid=dcm_320545006_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}], 'requiresPremiumExperience': True}]}, 'SecondaryNav-0-SecondaryNav': {'enablePremiumNav': True, 'ui': {'enableRelativeUrl': True, 'navCache': True, 'remoteAdapter': True, 'makeSticky': False, 'isNavLink': True, 'relativeLinks': True}, 'featureSwitches': {'useNavSelectLogic': True}, 'i13n': {'itc': 0, 'sec': 'subnav'}, 'site': 'finance', 'navItems': [{'name': 'Screeners', 'children': [{'name': 'Saved Screeners', 'url': 'https://finance.yahoo.com/screener'}, {'name': 'Equity Screener', 'url': 'https://finance.yahoo.com/screener/new'}, {'name': 'Mutual Fund Screener', 'url': 'https://finance.yahoo.com/screener/mutualfund/new'}, {'name': 'ETF Screener', 'url': 'https://finance.yahoo.com/screener/etf/new'}, {'name': 'Futures Screener', 'url': 'https://finance.yahoo.com/screener/future/new'}, {'name': 'Index Screener', 'url': 'https://finance.yahoo.com/screener/index/new'}, {'name': 'Analyst Rating Screener', 'url': 'https://finance.yahoo.com/screener/analyst_ratings/new?ncid=dcm_320339942_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Technical Events Screener', 'url': 'https://finance.yahoo.com/screener/tradingcentral_event/new?ncid=dcm_320544712_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Smart Money Screener', 'url': 'https://finance.yahoo.com/screener/institutional_interest/new?ncid=dcm_320344326_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Top holdings screener', 'url': 'https://finance.yahoo.com/screener/institutional_holdings/new?ncid=dcm_320545006_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}], 'requiresPremiumExperience': True}]}, 'Lead-2-FinanceHeader': {'messaging': {'enabled': False, 'textId': 'DEFAULT_MESSAGE', 'testMsg': ''}}, 'Lead-3-FeatureBar': {'contentSite': '', 'convertContentUrl': True, 'imageSize': {'width': 272, 'height': 144}, 'scoobyCompat': False, 'ui': {'container_classnames': 'W(100%) Bxz(bb) Bdrs(2px) Maw($maxModuleWidth) Mx(a) D(n)--print', 'strictViewMatch': False, 'wrapper_classnames': 'Bgc(white) Pos(r) Bxz(bb) Maw($newGridWidth) Miw($minGridWidth) Miw(a)!--tab768 Miw(a)!--tab1024 Mstart(a) Mend(a) Px(20px) Pb(10px) D(n)--print', 'prerender': {'enabled': False, 'renderTargetId': 'modal'}, 'link_component': 'WaferLink'}, 'useNCP': True, 'site': 'finance'}, 'Lead-5-QuoteHeader': {'cryptocurrency': {'title': 'CoinMarketCap', 'imgUrl': 'https://s.yimg.com/uc/fin/img/19/10/1990f37.png', 'url': 'https://coinmarketcap.com/', 'className': 'W(110px) H(19px) Va(m)!'}, 'updateQuoteDataOnCheck': False, 'enhanceAddToWL': True, 'displayPageviews': True}, 'Lead-6-QuoteNav': {'tabs': {'CHART': True, 'SUSTAINABILITY': True, 'COMPANY_INSIGHTS': True, 'COMPANY_OUTLOOK': False}, 'tickerConfig': {'^FTSE': {'tabs': {'HISTORICAL_DATA': False}}, '^FTAS': {'tabs': {'HISTORICAL_DATA': False}}, '^FTAI': {'tabs': {'HISTORICAL_DATA': False}}, '^FTMC': {'tabs': {'HISTORICAL_DATA': False}}, '^FTLC': {'tabs': {'HISTORICAL_DATA': False}}, '^STI': {'tabs': {'HISTORICAL_DATA': False}}, '^KLSE': {'tabs': {'HISTORICAL_DATA': False}}, 'FTSEMIB.MI': {'tabs': {'HISTORICAL_DATA': False}}}}, 'Lead-7-Rmp': {'headers': {}, 'useDynamicHostHeader': False, 'passBucket': False, 'usePageSpaceId': False, 'assets': {'critical': True, 'dependencies': {'css': [], 'js': []}, 'name': 'SmartAdDynamicData', 'm_id': 'smart-ad-dynamic-data', 'ctrl': 'SmartAdDynamicData'}, 'endpoint': {'query': {'ctrl': 'SmartAdDynamicData', 'm_id': 'smart-ad-dynamic-data'}, 'path': '/_rcv/remote', 'method': 'POST', 'body': {'m_id': 'smart-ad-dynamic-data', 'ctrl': 'SmartAdDynamicData', 'm_mode': 'json', 'site': 'finance', 'config': {'apiVersion': '2', 'adPositions': ['FB2A', 'FB2B', 'FB2C', 'FB2D', 'LDRB', 'LREC', 'MON', 'LREC2', 'MON2', 'LREC3']}}}, 'httpOptions': {'timeout': 1000, 'cacheTTL': 60000, 'fallbackTTL': 3600000, 'fallbackTimeout': 4000, 'fallbackPerfLabel': '', 'cacheEnabled': False, 'verboseDebug': False, 'perfLabel': 'read_smart_dynamic_data_rmp'}, 'mappedDevice': 'desktop', 'disableEndpoint': False, 'wrapperDiv': {'wrapperDivClass': '', 'wrapperDivId': ''}, 'serviceId': 'nel_ms', 'enableNonIstioFallback': False, 'pathParamsToForward': ['symbol']}, 'Col1-1-Financials': {'canvass': {'tickerTagging': True, 'enableRelatedTags': False, 'messagesPerPage': 20, 'oauthConsumerKey': 'finance.oauth.client.canvass.prod.consumerKey', 'oauthConsumerSecret': 'finance.oauth.client.canvass.prod.consumerSecret', 'uploadOptions': 'TEXT,SMARTLINKS,GIF', 'rankingProfile': 'canvassPCRDProfile', 'ui': {'userLabels': {'enable': True, 'labels': {'BULLISH': {'title': 'Bullish', 'icon': {'name': 'traffic', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle'}}}, 'NEUTRAL': {'title': 'Neutral', 'icon': {'name': 'arrow-right', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle', 'transform': 'translateY(-1px)'}}}, 'BEARISH': {'title': 'Bearish', 'icon': {'name': 'traffic', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle', 'transform': 'scaleY(-1)'}}}}}, 'enableRepliesToggle': True}}, 'videoConfig': {'videoFetchCount': 10, 'videoProps': {'expName': 'qsp', 'endscreen': {'show': False}, 'docking': {'enableOnScrollDown': False, 'enableOnScrollUp': False, 'fadeInAnimation': True, 'position': {'left': 'ref', 'right': 0, 'bottom': 55}}, 'vpaidTimeout': 10}}, 'adReTargetBeacon': {'enabled': True, 'url': 'https://sp.analytics.yahoo.com/spp.pl?a=10000&.yp=428726'}, 'chart': {'urlImagePrefix': 'https://s.yimg.com/uc', 'isChartTab': True, 'toolBarItems': ['indicators', 'comparisons', 'separator', 'ranges', 'separator', 'intervals', 'chartTypes', 'drawButton', 'events'], 'font': '500 11px Yahoo Sans Finance, Helvetica Neue, Helvetica, sans-serif', 'rightBarItems': ['settings', 'share', 'reset'], 'useNextGenHistory': True}, 'cryptocurrency': {'title': 'CoinMarketCap', 'imgUrl': 'https://s.yimg.com/uc/fin/img/19/10/1990f37.png', 'url': 'https://coinmarketcap.com/', 'className': 'W(110px) H(19px) Va(m)!'}, 'classNames': {'emptyState': 'Ta(c) D(tb) W(100%) Bgc($lv4BgColor) H($company360EmptyHeight) smartphone_H(220px)'}, 'subtabNavItems': {'CURRENCY': [], 'EQUITY': [{'category': 'summary', 'title': 'ALL', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'all news'}}, {'category': 'news', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'latest news'}}, {'category': 'press-releases', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'press releases'}}], 'ETF': [], 'FUTURE': [], 'INDEX': [], 'MUTUALFUND': [], 'OPTION': [], 'MONEYMARKET': [], 'CRYPTOCURRENCY': []}, 'bundleName': 'tdv2-applet-rmp', 'name': 'Rmp', 'compositeConfig': {'serviceId': 'nel_ms', 'assets': {'m_id': 'spotIm', 'ctrl': 'SpotImJAC'}, 'endpoint': {'method': 'POST', 'path': '/_rcv/remote', 'body': {'ctrl': 'SpotImJAC', 'm_id': 'spotIm', 'm_mode': 'json', 'site': 'finance', 'config': {'conversationEnabled': True, 'leftRailWidth': '', 'messages_cnt': 10, 'passiveReactionEnabled': True, 'showCommentCount': True, 'stageSpotId': 'sp_n93tLsKu', 'spotId': 'sp_Rba9aFpG', 'useStageToken': False, 'useCase': 'qsp', 'xhrPathPrefix': '/nel_ms/_rcv/remote'}}}, 'wrapperDiv': {'wrapperDivClass': 'wafer-rapid-module', 'wrapperDivId': 'openweb-community'}}, 'fredTickerConfig': {'A191RP1Q027SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RP1A027NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RL1Q225SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RL1A225NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDP.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDPA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDPC1.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDPCA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'CPIAUCSL.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'CUUS0000SA0.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'PAYEMS.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'NPPTTL.I': {'dataSource': 'Automatic Data Processing, Inc.'}, 'PPIFIS.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'HOUST.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MSPNHSUS.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MSPUS.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MEHOINUSA646N.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MEHOINUSA672N.I': {'dataSource': 'U.S. Bureau of the Census'}, 'UNRATE.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'A939RX0Q048SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A939RC0A052NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A939RC0Q052SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'AMTMTI.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MNFCTRMPCSMSA.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MNFCTRSMSA.I': {'dataSource': 'U.S. Bureau of the Census'}, 'BOPGSTB.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}}, 'promoConfig': {'imgUrl': 'https://s.yimg.com/cv/apiv2/default/StockPicks_-_E0E4E9_border-1@2x.png', 'enabled': True, 'hideFromHighValueUsers': True, 'liveTitle': 'Yahoo Finance Plus', 'eventUrl': 'https://ad.doubleclick.net/ddm/trackclk/N360801.1913355YAHOOADMANAGER/B23644564.298415483;dc_trk_aid=490172245;dc_trk_cid=127172993;dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;tfua=;gdpr=${GDPR};gdpr_consent=${GDPR_CONSENT_755};ltd='}, 'promoImgUrl': {'src': 'https://s.yimg.com/cv/apiv2/yahoo_finance/yf_company360.png'}}, 'Col2-1-MonalixaComponent': {'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'placement': 'finance-desktop-web-qsp-rightrail'}, 'Col2-6-Footer': {'footer': {'aboutUrl': 'https://policies.oath.com/us/en/oath/privacy/adinfo/index.html', 'companyName': 'Yahoo', 'disclaimerUrl': 'https://help.yahoo.com/kb/finance-for-web/SLN2310.html?locale=en_US', 'helpUrl': 'https://help.yahoo.com/kb/finance-for-web', 'privacyText': 'FOOTER_PRIVACY_TEXT', 'privacyUrl': 'https://policies.oath.com/us/en/oath/privacy/index.html', 'suggestUrl': 'https://yahoo.uservoice.com/forums/382977', 'termsUrl': 'https://legal.yahoo.com/us/en/yahoo/terms/otos/index.html', 'sitemapUrl': 'https://finance.yahoo.com/sitemap/'}, 'followbutton': {'twitter_follow': 'https://twitter.com/YahooFinance', 'linkedin_follow': 'https://www.linkedin.com/company/yahoo-finance', 'facebook_follow': 'https://facebook.com/yahoofinance'}, 'logoUrl': 'https://s.yimg.com/os/finance/dd-site/img/Oath_YFin_Logo_EN.svg'}, 'Nav-0-DesktopNav-0-DesktopNav': {'closeBtn': False, 'renderMobileOnServer': False, 'renderSecondaryNav': True, 'i13n': {'sec': 'navrail', 'itc': 0}, 'i13n_follow': {'sec': 'social-flw', 'elm': 'follow', 'outcm': 'follow', 'itc': 0, 'mpos': ''}, 'ui': {'bgColor': 'Bgc(#f9f9f9)', 'darkTheme': False, 'displayGroupTitle': False, 'headerTitle': 'finance', 'highlightPropertyHome': False, 'isNavLink': True, 'mailBadgeClass': 'Bgc($c-fuji-red-1-a) Bdrs(11px) Bdc(#fff) Bdw(2px) Bds(s) W(8px) H(8px) Pos(a) T(8px) Start(26px)', 'makeSticky': False, 'navCache': True, 'navSections': 'property', 'relativeLinks': True, 'remoteAdapter': True, 'renderLogoNav': False, 'renderPropertyNav': True, 'sections': ['property'], 'showMailCount': False, 'showPropertyHome': True, 'navFont': 'Ff($yahooSansFinanceFont)!', 'dividerClasses': 'H(0)!', 'offsetHack': 'Pt(2px) Bgc(t)!', 'navMainLeftClasses': 'Mend(80px)', 'leftNavClasses': 'Pstart(10px) Mstart(-10px) nr-applet-main-nav-right_Ov(inh)!', 'navTitleClasses': 'Pstart(10px) Mstart(-10px)!', 'linkItemClasses': 'Bgc($linkColor):h W(230px)!', 'subnavLinkClasses': 'Tt(n)! C($primaryColor) C(white)!:h Maw(200px)!', 'selectColor': 'C($finNavBlueText)! Bdbw(0px) H(42px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'subnavClasses': 'Bgc($lv3BgColor)!', 'hoverColor': 'C($finNavBlueText):h', 'overrideColor': 'C($finNavBlueText)', 'propertyHomeSelectColor': 'Bdbc($linkColor) Bdbs(s)! Bdbw(4px) H(38px)', 'propertyHomeClasses': 'Tt(c)! Bdbc($linkColor):h Bdbs(s):h Bdbw(4px):h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkClasses': 'Tt(n)!', 'navLinkClassesOnHover': 'Bdbc($linkColor)!:h Bdbs(s)!:h Bdbw(4px)!:h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkNonHoverClasses': 'C($topNavLinkGray) Bdbs(n)', 'highlightTriangleColor': 'transparent transparent #fff', 'navMainRightClasses': 'Bdc(t) Bdrs(1.5px) Bdbs(s):h Px(10px)!'}, 'theme': {'daaPrivacyRightsIcon': 'https://s.yimg.com/cv/apiv2/default/20200109/Privacy_Rights_icon.png', 'daaPrivacyRightsIconClasses': 'Mstart(1px) Va(m) W(20px) H(20px)', 'mobileIconHeight': 60, 'mobileIconWidth': 150, 'mobileSectionBorder': {}}, 'account_switch': {'isEnabled': True}, 'featureSwitches': {'cobrandLogo': False, 'followButtons': False, 'navLogoAlign': False, 'navrailCollapse': False, 'uhMagDesign': True, 'useNavSelectLogic': True, 'disableDivider': True, 'enableHighlightTriangle': True, 'useSubnavTitleSlk': True}, 'profile': {'mode': 'client', 'avatarSize': '36px', 'loginBaseUrl': 'https://login.yahoo.com/config/login', 'settingUrl': 'https://edit.yahoo.com/config/eval_profile', 'urls': {'signed_in': {'protocol': 'https', 'hostname': 'login.yahoo.com', 'pathname': '/config/login', 'query': {}}, 'signed_out': {'protocol': 'https', 'hostname': 'login.yahoo.com', 'pathname': '/config/login', 'query': {'.direct': 2, 'logout': 1}}, 'signed_out_as': {'protocol': 'https', 'hostname': 'login.yahoo.com', 'pathname': '/config/login', 'query': {'.direct': 1, 'logout_all': 1}}, 'account_info': {'protocol': 'https', 'hostname': 'edit.yahoo.com', 'pathname': '/config/eval_profile', 'query': {}}}}, 'mobileSectionMeta': {'property': {}, 'yahooSites': {'listMeta': {}}, 'services': {}, 'apps': {'listMeta': {}}, 'tools': {'listMeta': {}}}, 'components': {'propertyHome': {'title': 'PROPERTY_HOME', 'dragonFlyKey': 'PROPERTY_HOME'}, 'finance': {'title': 'Finance', 'link': 'https://finance.yahoo.com', 'collapse': True, 'type': 'finance', 'linkWidth': 230, 'i13n': {}, 'links': True, 'propertyColor': '#efefef', 'linksRight': ['feature_promo']}}, 'linkMeta': {'finance': {'link': 'https://finance.yahoo.com'}, 'feature_promo': {'bundles': {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'isPremium': True, 'autoStart': True, 'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'checkStoreBeforeCall': True, 'placement': 'finance-eyebrow-index'}}}}, 'enablePremiumNav': True, 'navItems': [{'name': 'Personal Finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}]}], 'site': 'finance', 'mrt': {'static': False}, 'defaultRowNum': 10}, 'Nav-0-DesktopNav-0-DesktopNav-acct-switch-0-AccountSwitch': {'isEnabled': True, 'clientRender': True, 'accountListLength': 3, 'enableAlphatar': True, 'host': 'login.yahoo.com', 'urlReplacements': {'CRUMB': {'.crumb': '{crumb}'}, 'DONE': {'.done': '{doneUrl}'}, 'DONE_YAHOO': {'.done': '{doneUrlYahoo}'}}, 'urls': {'accountInfo': {'protocol': 'https', 'path': '/account/personalinfo/', 'query': ['DONE', {'.intl': '{intl}'}, {'.lang': '{lang}'}, {'.partner': '{partner}'}, {'.src': '{site}'}, {'activity': 'uh-acctinfo'}]}, 'switchUrl': {'protocol': 'https', 'path': '/d', 'query': ['CRUMB', {'.intl': '{intl}'}, {'.lang': '{lang}'}, {'.partner': '{partner}'}, {'.src': '{site}'}, {'login': '{alias}'}, {'as': '1'}, 'DONE']}, 'manageUrl': {'protocol': 'https', 'path': '/manage_account', 'query': ['CRUMB', {'.intl': '{intl}'}, {'.lang': '{lang}'}, {'.partner': '{partner}'}, {'.src': '{site}'}, {'activity': 'uh-addacct'}, 'DONE']}, 'logoutUrl': {'protocol': 'https', 'path': '/account/logout', 'query': ['CRUMB', {'.src': '{site}'}, {'.intl': '{intl}'}, {'.lang': '{lang}'}, {'.partner': '{partner}'}, {'logout_all': '1'}, {'.direct': '1'}, 'DONE_YAHOO']}, 'requestUrl': {'protocol': 'https', 'path': '/w/device_users', 'query': ['CRUMB']}}, 'styles': {'account_switch_main': {'wrapper': 'Py(16px)', 'account_info': 'C($c-fuji-grey-l) C(asLinkHoverColor):h Td(n) Td(n):h D(ib) Mstart(asIconWidth) Pend(asEndPadding) Whs(nw)'}, 'signed_out': {'wrapper': 'Py(14px) Ta(c) Bdt(asMenuBorder)', 'content': 'C($c-fuji-grey-l) C(asLinkHoverColor):h Td(n) Td(n):h'}, 'add_accounts': {'icon_wrapper': 'W(asIconWidth) D(ib) Va(t) Ta(c)', 'icon_content': 'C($c-fuji-grey-l) Fz(30px) Fw(200) Lh(1.5)', 'text': 'Pt(16px) D(ib) C($c-fuji-grey-l) Zoom Fz(15px)', 'wrapper': 'Bdt(asMenuBorder) Td(n) Td(n):h D(b) Whs(nw) Bgc(asMenuHoverBgc):h H(50px) Pend(asEndPadding)'}, 'avatar': {'size': 40, 'color': '#400090', 'content': 'Bdrs(100px) Bgz(cv) D(ib)', 'panel_content': 'D(ib) Va(m) Bgz(cv) Bdrs(100px)', 'name': 'D(n) Lh(2.6) Mstart(4px)', 'wrapper': 'Zoom Va(t) Ta(c) Fl(start) W(asIconWidth)'}, 'main_account': {'alias': 'C(asLightTextColor) Ell Pt(2px)', 'alias_wrapper': 'Ell C(#000) Fz(13px)', 'content': 'C($c-fuji-grey-l) D(ib) Fz(13px) Pt(10px)', 'name': 'C($c-fuji-grey-l) Ell Fz(15px)', 'name_wrapper': 'Fz(15px) Ell', 'user_info_wrapper': 'W(2/3) D(ib) Zoom Lts(n) Tren(a) Va(t)', 'wrapper': 'Cf'}, 'secondary_accounts': {'list': 'Pos(r) M(0) P(0) List(n)', 'list_item': 'Bdt(asMenuBorder)', 'anchor': 'Td(n) Td(n):h Py(16px) D(b) Cf C(#000) Bgc(asMenuHoverBgc):h'}}}}}, 'CrumbStore': {'crumb': 'Z4T/tWHS.aU'}, 'CompositeStore': {'_instances': {'UH-0-HeaderDesktop': {'status': 'initialized'}, 'Nav-0-DesktopNav': {'status': 'initialized'}, 'SecondaryNav-0-SecondaryNav': {'status': 'initialized'}, 'Lead-2-FinanceHeader': {'status': 'initialized'}, 'Lead-3-FeatureBar': {'status': 'initialized'}, 'Lead-5-QuoteHeader': {'status': 'initialized'}, 'Lead-7-Rmp': {'status': 'initialized'}, 'Col1-1-Financials': {'status': 'initialized'}, 'Col2-1-MonalixaComponent': {'status': 'initialized'}, 'Nav-0-DesktopNav-0-DesktopNav': {'status': 'initialized'}, 'Nav-0-DesktopNav-0-DesktopNav-acct-switch-0-AccountSwitch': {'status': 'initialized'}}}, 'MonalixaStore': {'placements': {}, 'freqCappingEnabled': True}, 'StreamStore': {'articleCategory': {'term': '', 'label': ''}, 'pageCategory': 'YFINANCE:AAPL', 'fallbackCategory': 'YFINANCE:AAPL', 'pageSubsite': ''}, 'UserStore': {'guid': '', 'login': '', 'alias': '', 'firstName': '', 'comscoreParams': {'c14': -1}, 'isSignedIn': False, 'isRecognized': False, 'isLoaded': True}, 'ProfileStore': {'err': {}, 'guid': '', 'profileUrl': '', 'userProfile': {'nickName': '', 'imageUrl': ''}, '_isLoaded': False, '_isRecognized': False, '_isSignedIn': False}, 'QuotePageStore': {'error': None, 'isPageComplete': True, 'pageData': {'componentConfig': {'compositeConfig': {'serviceId': 'nel_ms', 'assets': {'m_id': 'spotIm', 'ctrl': 'SpotImJAC'}, 'endpoint': {'method': 'POST', 'path': '/_rcv/remote', 'body': {'ctrl': 'SpotImJAC', 'm_id': 'spotIm', 'm_mode': 'json', 'site': 'finance', 'config': {'useStageToken': False, 'leftRailWidth': '', 'showCommentCount': True, 'passiveReactionEnabled': True, 'messages_cnt': 10, 'useCase': 'qsp', 'xhrPathPrefix': '/nel_ms/_rcv/remote', 'stageSpotId': 'sp_n93tLsKu', 'spotId': 'sp_Rba9aFpG', 'conversationEnabled': True}}}, 'wrapperDiv': {'wrapperDivClass': 'wafer-rapid-module', 'wrapperDivId': 'openweb-community'}}, 'adReTargetBeacon': {'enabled': True, 'url': 'https://sp.analytics.yahoo.com/spp.pl?a=10000&.yp=428726'}, 'name': 'Rmp', 'bundleName': 'tdv2-applet-rmp', 'classNames': {'emptyState': 'Ta(c) D(tb) W(100%) Bgc($lv4BgColor) H($company360EmptyHeight) smartphone_H(220px)'}, 'promoConfig': {'imgUrl': 'https://s.yimg.com/cv/apiv2/default/StockPicks_-_E0E4E9_border-1@2x.png', 'enabled': True, 'hideFromHighValueUsers': True, 'liveTitle': 'Yahoo Finance Plus', 'eventUrl': 'https://ad.doubleclick.net/ddm/trackclk/N360801.1913355YAHOOADMANAGER/B23644564.298415483;dc_trk_aid=490172245;dc_trk_cid=127172993;dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;tfua=;gdpr=${GDPR};gdpr_consent=${GDPR_CONSENT_755};ltd='}, 'subtabNavItems': {'FUTURE': [], 'EQUITY': [{'category': 'summary', 'title': 'ALL', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'all news'}}, {'category': 'news', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'latest news'}}, {'category': 'press-releases', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'press releases'}}], 'CURRENCY': [], 'INDEX': [], 'CRYPTOCURRENCY': [], 'OPTION': [], 'ETF': [], 'MUTUALFUND': [], 'MONEYMARKET': []}, 'cryptocurrency': {'title': 'CoinMarketCap', 'imgUrl': 'https://s.yimg.com/uc/fin/img/19/10/1990f37.png', 'url': 'https://coinmarketcap.com/', 'className': 'W(110px) H(19px) Va(m)!'}, 'fredTickerConfig': {'PPIFIS.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'MSPUS.I': {'dataSource': 'U.S. Bureau of the Census'}, 'A939RC0Q052SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'CPIAUCSL.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'MNFCTRMPCSMSA.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MSPNHSUS.I': {'dataSource': 'U.S. Bureau of the Census'}, 'GDPA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'HOUST.I': {'dataSource': 'U.S. Bureau of the Census'}, 'A191RP1A027NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDPCA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'CUUS0000SA0.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'GDP.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RL1A225NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'MEHOINUSA646N.I': {'dataSource': 'U.S. Bureau of the Census'}, 'UNRATE.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'AMTMTI.I': {'dataSource': 'U.S. Bureau of the Census'}, 'A939RX0Q048SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RP1Q027SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'MEHOINUSA672N.I': {'dataSource': 'U.S. Bureau of the Census'}, 'A939RC0A052NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'BOPGSTB.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RL1Q225SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'NPPTTL.I': {'dataSource': 'Automatic Data Processing, Inc.'}, 'GDPC1.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'PAYEMS.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'MNFCTRSMSA.I': {'dataSource': 'U.S. Bureau of the Census'}}, 'promoImgUrl': {'src': 'https://s.yimg.com/cv/apiv2/yahoo_finance/yf_company360.png'}, 'canvass': {'tickerTagging': True, 'enableRelatedTags': False, 'messagesPerPage': 20, 'oauthConsumerKey': 'finance.oauth.client.canvass.prod.consumerKey', 'oauthConsumerSecret': 'finance.oauth.client.canvass.prod.consumerSecret', 'uploadOptions': 'TEXT,SMARTLINKS,GIF', 'rankingProfile': 'canvassPCRDProfile', 'ui': {'userLabels': {'enable': True, 'labels': {'BULLISH': {'title': 'Bullish', 'icon': {'name': 'traffic', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle'}}}, 'NEUTRAL': {'title': 'Neutral', 'icon': {'name': 'arrow-right', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle', 'transform': 'translateY(-1px)'}}}, 'BEARISH': {'title': 'Bearish', 'icon': {'name': 'traffic', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle', 'transform': 'scaleY(-1)'}}}}}, 'enableRepliesToggle': True}}, 'videoConfig': {'videoFetchCount': 10, 'videoProps': {'expName': 'qsp', 'endscreen': {'show': False}, 'docking': {'enableOnScrollDown': False, 'enableOnScrollUp': False, 'fadeInAnimation': True, 'position': {'left': 'ref', 'right': 0, 'bottom': 55}}, 'vpaidTimeout': 10}}, 'chart': {'urlImagePrefix': 'https://s.yimg.com/uc', 'isChartTab': True, 'toolBarItems': ['indicators', 'comparisons', 'separator', 'ranges', 'separator', 'intervals', 'chartTypes', 'drawButton', 'events'], 'font': '500 11px Yahoo Sans Finance, Helvetica Neue, Helvetica, sans-serif', 'rightBarItems': ['settings', 'share', 'reset'], 'useNextGenHistory': True}}}}, 'FinancialTemplateStore': {'template': [{'key': 'TotalAssets', 'title': 'TOTAL_ASSETS', 'children': [{'key': 'CurrentAssets', 'title': 'CURRENT_ASSETS', 'children': [{'key': 'CashCashEquivalentsAndShortTermInvestments', 'title': 'CASH_CASH_EQUIVALENTS_AND_SHORT_TERM_INVESTMENTS', 'children': [{'key': 'CashAndCashEquivalents', 'title': 'CASH_AND_CASH_EQUIVALENTS', 'children': [{'key': 'CashFinancial', 'title': 'CASH'}, {'key': 'CashEquivalents', 'title': 'CASH_EQUIVALENTS'}]}, {'key': 'OtherShortTermInvestments', 'title': 'OTHER_SHORT_TERM_INVESTMENTS'}]}, {'key': 'Receivables', 'title': 'RECEIVABLES', 'children': [{'key': 'AccountsReceivable', 'title': 'ACCOUNTS_RECEIVABLE', 'children': [{'key': 'GrossAccountsReceivable', 'title': 'GROSS_ACCOUNTS_RECEIVABLE'}, {'key': 'AllowanceForDoubtfulAccountsReceivable', 'title': 'ALLOWANCE_FOR_DOUBTFUL_ACCOUNTS_RECEIVABLE'}]}, {'key': 'LoansReceivable', 'title': 'LOANS_RECEIVABLE'}, {'key': 'NotesReceivable', 'title': 'NOTES_RECEIVABLE'}, {'key': 'AccruedInterestReceivable', 'title': 'ACCRUED_INTEREST_RECEIVABLE'}, {'key': 'TaxesReceivable', 'title': 'TAXES_RECEIVABLE'}, {'key': 'DuefromRelatedPartiesCurrent', 'title': 'DUEFROM_RELATED_PARTIES_CURRENT'}, {'key': 'OtherReceivables', 'title': 'OTHER_RECEIVABLES'}, {'key': 'ReceivablesAdjustmentsAllowances', 'title': 'RECEIVABLES_ADJUSTMENTS_ALLOWANCES'}]}, {'key': 'Inventory', 'title': 'INVENTORY', 'children': [{'key': 'RawMaterials', 'title': 'RAW_MATERIALS'}, {'key': 'WorkInProcess', 'title': 'WORK_IN_PROCESS'}, {'key': 'FinishedGoods', 'title': 'FINISHED_GOODS'}, {'key': 'OtherInventories', 'title': 'OTHER_INVENTORIES'}, {'key': 'InventoriesAdjustmentsAllowances', 'title': 'INVENTORIES_ADJUSTMENTS_ALLOWANCES'}]}, {'key': 'PrepaidAssets', 'title': 'PREPAID_ASSETS'}, {'key': 'RestrictedCash', 'title': 'RESTRICTED_CASH'}, {'key': 'CurrentDeferredAssets', 'title': 'CURRENT_DEFERRED_ASSETS', 'children': [{'key': 'CurrentDeferredTaxesAssets', 'title': 'CURRENT_DEFERRED_TAXES_ASSETS'}]}, {'key': 'AssetsHeldForSaleCurrent', 'title': 'ASSETS_HELD_FOR_SALE_CURRENT'}, {'key': 'HedgingAssetsCurrent', 'title': 'HEDGING_ASSETS_CURRENT'}, {'key': 'OtherCurrentAssets', 'title': 'OTHER_CURRENT_ASSETS'}]}, {'key': 'TotalNonCurrentAssets', 'title': 'TOTAL_NON_CURRENT_ASSETS', 'children': [{'key': 'NetPPE', 'title': 'NET_PPE', 'children': [{'key': 'GrossPPE', 'title': 'GROSS_PPE', 'children': [{'key': 'Properties', 'title': 'PROPERTIES'}, {'key': 'LandAndImprovements', 'title': 'LAND_AND_IMPROVEMENTS'}, {'key': 'BuildingsAndImprovements', 'title': 'BUILDINGS_AND_IMPROVEMENTS'}, {'key': 'MachineryFurnitureEquipment', 'title': 'MACHINERY_FURNITURE_EQUIPMENT'}, {'key': 'OtherProperties', 'title': 'OTHER_PROPERTIES'}, {'key': 'ConstructionInProgress', 'title': 'CONSTRUCTION_IN_PROGRESS'}, {'key': 'Leases', 'title': 'LEASES'}]}, {'key': 'AccumulatedDepreciation', 'title': 'ACCUMULATED_DEPRECIATION'}]}, {'key': 'GoodwillAndOtherIntangibleAssets', 'title': 'GOODWILL_AND_OTHER_INTANGIBLE_ASSETS', 'children': [{'key': 'Goodwill', 'title': 'GOODWILL'}, {'key': 'OtherIntangibleAssets', 'title': 'OTHER_INTANGIBLE_ASSETS'}]}, {'key': 'InvestmentProperties', 'title': 'INVESTMENT_PROPERTIES'}, {'key': 'InvestmentsAndAdvances', 'title': 'INVESTMENTS_AND_ADVANCES', 'children': [{'key': 'LongTermEquityInvestment', 'title': 'LONG_TERM_EQUITY_INVESTMENT', 'children': [{'key': 'InvestmentsinSubsidiariesatCost', 'title': 'INVESTMENTSIN_SUBSIDIARIESAT_COST'}, {'key': 'InvestmentsinAssociatesatCost', 'title': 'INVESTMENTSIN_ASSOCIATESAT_COST'}, {'key': 'InvestmentsInOtherVenturesUnderEquityMethod', 'title': 'INVESTMENTS_IN_OTHER_VENTURES_UNDER_EQUITY_METHOD'}, {'key': 'InvestmentsinJointVenturesatCost', 'title': 'INVESTMENTSIN_JOINT_VENTURESAT_COST'}]}, {'key': 'InvestmentinFinancialAssets', 'title': 'INVESTMENTIN_FINANCIAL_ASSETS', 'children': [{'key': 'TradingSecurities', 'title': 'TRADING_SECURITIES'}, {'key': 'FinancialAssetsDesignatedasFairValueThroughProfitorLossTotal', 'title': 'FINANCIAL_ASSETS_DESIGNATEDAS_FAIR_VALUE_THROUGH_PROFITOR_LOSS_TOTAL'}, {'key': 'AvailableForSaleSecurities', 'title': 'AVAILABLE_FOR_SALE_SECURITIES'}, {'key': 'HeldToMaturitySecurities', 'title': 'HELD_TO_MATURITY_SECURITIES'}]}, {'key': 'OtherInvestments', 'title': 'OTHER_INVESTMENTS'}]}, {'key': 'FinancialAssets', 'title': 'FINANCIAL_ASSETS'}, {'key': 'NonCurrentAccountsReceivable', 'title': 'NON_CURRENT_ACCOUNTS_RECEIVABLE'}, {'key': 'NonCurrentNoteReceivables', 'title': 'NON_CURRENT_NOTE_RECEIVABLES'}, {'key': 'DuefromRelatedPartiesNonCurrent', 'title': 'DUEFROM_RELATED_PARTIES_NON_CURRENT'}, {'key': 'NonCurrentDeferredAssets', 'title': 'NON_CURRENT_DEFERRED_ASSETS', 'children': [{'key': 'NonCurrentDeferredTaxesAssets', 'title': 'NON_CURRENT_DEFERRED_TAXES_ASSETS'}]}, {'key': 'NonCurrentPrepaidAssets', 'title': 'NON_CURRENT_PREPAID_ASSETS'}, {'key': 'DefinedPensionBenefit', 'title': 'DEFINED_PENSION_BENEFIT'}, {'key': 'OtherNonCurrentAssets', 'title': 'OTHER_NON_CURRENT_ASSETS'}]}]}, {'key': 'TotalLiabilitiesNetMinorityInterest', 'title': 'TOTAL_LIABILITIES_NET_MINORITY_INTEREST', 'children': [{'key': 'CurrentLiabilities', 'title': 'CURRENT_LIABILITIES', 'children': [{'key': 'PayablesAndAccruedExpenses', 'title': 'PAYABLES_AND_ACCRUED_EXPENSES', 'children': [{'key': 'Payables', 'title': 'PAYABLES', 'children': [{'key': 'AccountsPayable', 'title': 'ACCOUNTS_PAYABLE'}, {'key': 'TotalTaxPayable', 'title': 'TOTAL_TAX_PAYABLE', 'children': [{'key': 'IncomeTaxPayable', 'title': 'INCOME_TAX_PAYABLE'}]}, {'key': 'DividendsPayable', 'title': 'DIVIDENDS_PAYABLE'}, {'key': 'DuetoRelatedPartiesCurrent', 'title': 'DUETO_RELATED_PARTIES_CURRENT'}, {'key': 'OtherPayable', 'title': 'OTHER_PAYABLE'}]}, {'key': 'CurrentAccruedExpenses', 'title': 'CURRENT_ACCRUED_EXPENSES', 'children': [{'key': 'InterestPayable', 'title': 'INTEREST_PAYABLE'}]}]}, {'key': 'CurrentProvisions', 'title': 'CURRENT_PROVISIONS'}, {'key': 'PensionandOtherPostRetirementBenefitPlansCurrent', 'title': 'PENSIONAND_OTHER_POST_RETIREMENT_BENEFIT_PLANS_CURRENT'}, {'key': 'CurrentDebtAndCapitalLeaseObligation', 'title': 'CURRENT_DEBT_AND_CAPITAL_LEASE_OBLIGATION', 'children': [{'key': 'CurrentDebt', 'title': 'CURRENT_DEBT', 'children': [{'key': 'CurrentNotesPayable', 'title': 'CURRENT_NOTES_PAYABLE'}, {'key': 'CommercialPaper', 'title': 'COMMERCIAL_PAPER'}, {'key': 'LineOfCredit', 'title': 'LINE_OF_CREDIT'}, {'key': 'OtherCurrentBorrowings', 'title': 'OTHER_CURRENT_BORROWINGS'}]}, {'key': 'CurrentCapitalLeaseObligation', 'title': 'CURRENT_CAPITAL_LEASE_OBLIGATION'}]}, {'key': 'CurrentDeferredLiabilities', 'title': 'CURRENT_DEFERRED_LIABILITIES', 'children': [{'key': 'CurrentDeferredTaxesLiabilities', 'title': 'CURRENT_DEFERRED_TAXES_LIABILITIES'}, {'key': 'CurrentDeferredRevenue', 'title': 'CURRENT_DEFERRED_REVENUE'}]}, {'key': 'OtherCurrentLiabilities', 'title': 'OTHER_CURRENT_LIABILITIES'}]}, {'key': 'TotalNonCurrentLiabilitiesNetMinorityInterest', 'title': 'TOTAL_NON_CURRENT_LIABILITIES_NET_MINORITY_INTEREST', 'children': [{'key': 'LongTermProvisions', 'title': 'LONG_TERM_PROVISIONS'}, {'key': 'LongTermDebtAndCapitalLeaseObligation', 'title': 'LONG_TERM_DEBT_AND_CAPITAL_LEASE_OBLIGATION', 'children': [{'key': 'LongTermDebt', 'title': 'LONG_TERM_DEBT'}, {'key': 'LongTermCapitalLeaseObligation', 'title': 'LONG_TERM_CAPITAL_LEASE_OBLIGATION'}]}, {'key': 'NonCurrentDeferredLiabilities', 'title': 'NON_CURRENT_DEFERRED_LIABILITIES', 'children': [{'key': 'NonCurrentDeferredTaxesLiabilities', 'title': 'NON_CURRENT_DEFERRED_TAXES_LIABILITIES'}, {'key': 'NonCurrentDeferredRevenue', 'title': 'NON_CURRENT_DEFERRED_REVENUE'}]}, {'key': 'TradeandOtherPayablesNonCurrent', 'title': 'TRADEAND_OTHER_PAYABLES_NON_CURRENT'}, {'key': 'DuetoRelatedPartiesNonCurrent', 'title': 'DUETO_RELATED_PARTIES_NON_CURRENT'}, {'key': 'NonCurrentAccruedExpenses', 'title': 'NON_CURRENT_ACCRUED_EXPENSES'}, {'key': 'EmployeeBenefits', 'title': 'EMPLOYEE_BENEFITS', 'children': [{'key': 'NonCurrentPensionAndOtherPostretirementBenefitPlans', 'title': 'NON_CURRENT_PENSION_AND_OTHER_POSTRETIREMENT_BENEFIT_PLANS'}]}, {'key': 'DerivativeProductLiabilities', 'title': 'DERIVATIVE_PRODUCT_LIABILITIES'}, {'key': 'PreferredSecuritiesOutsideStockEquity', 'title': 'PREFERRED_SECURITIES_OUTSIDE_STOCK_EQUITY'}, {'key': 'RestrictedCommonStock', 'title': 'RESTRICTED_COMMON_STOCK'}, {'key': 'LiabilitiesHeldforSaleNonCurrent', 'title': 'LIABILITIES_HELDFOR_SALE_NON_CURRENT'}, {'key': 'OtherNonCurrentLiabilities', 'title': 'OTHER_NON_CURRENT_LIABILITIES'}]}]}, {'key': 'TotalEquityGrossMinorityInterest', 'title': 'TOTAL_EQUITY_GROSS_MINORITY_INTEREST', 'children': [{'key': 'TotalPartnershipCapital', 'title': 'TOTAL_PARTNERSHIP_CAPITAL', 'children': [{'key': 'LimitedPartnershipCapital', 'title': 'LIMITED_PARTNERSHIP_CAPITAL'}, {'key': 'GeneralPartnershipCapital', 'title': 'GENERAL_PARTNERSHIP_CAPITAL'}]}, {'key': 'StockholdersEquity', 'title': 'STOCKHOLDERS_EQUITY', 'children': [{'key': 'CapitalStock', 'title': 'CAPITAL_STOCK', 'children': [{'key': 'PreferredStock', 'title': 'PREFERRED_STOCK'}, {'key': 'CommonStock', 'title': 'COMMON_STOCK'}, {'key': 'OtherCapitalStock', 'title': 'OTHER_CAPITAL_STOCK'}]}, {'key': 'AdditionalPaidInCapital', 'title': 'ADDITIONAL_PAID_IN_CAPITAL'}, {'key': 'RetainedEarnings', 'title': 'RETAINED_EARNINGS'}, {'key': 'TreasuryStock', 'title': 'TREASURY_STOCK'}, {'key': 'GainsLossesNotAffectingRetainedEarnings', 'title': 'GAINS_LOSSES_NOT_AFFECTING_RETAINED_EARNINGS', 'children': [{'key': 'UnrealizedGainLoss', 'title': 'UNREALIZED_GAIN_LOSS'}, {'key': 'MinimumPensionLiabilities', 'title': 'MINIMUM_PENSION_LIABILITIES'}, {'key': 'ForeignCurrencyTranslationAdjustments', 'title': 'FOREIGN_CURRENCY_TRANSLATION_ADJUSTMENTS'}, {'key': 'FixedAssetsRevaluationReserve', 'title': 'FIXED_ASSETS_REVALUATION_RESERVE'}, {'key': 'OtherEquityAdjustments', 'title': 'OTHER_EQUITY_ADJUSTMENTS'}]}, {'key': 'OtherEquityInterest', 'title': 'OTHER_EQUITY_INTEREST'}]}, {'key': 'MinorityInterest', 'title': 'MINORITY_INTEREST'}]}, {'key': 'TotalCapitalization', 'title': 'TOTAL_CAPITALIZATION'}, {'key': 'PreferredStockEquity', 'title': 'PREFERRED_STOCK_EQUITY'}, {'key': 'CommonStockEquity', 'title': 'COMMON_STOCK_EQUITY'}, {'key': 'CapitalLeaseObligations', 'title': 'CAPITAL_LEASE_OBLIGATIONS'}, {'key': 'NetTangibleAssets', 'title': 'NET_TANGIBLE_ASSETS'}, {'key': 'WorkingCapital', 'title': 'WORKING_CAPITAL'}, {'key': 'InvestedCapital', 'title': 'INVESTED_CAPITAL'}, {'key': 'TangibleBookValue', 'title': 'TANGIBLE_BOOK_VALUE'}, {'key': 'TotalDebt', 'title': 'TOTAL_DEBT'}, {'key': 'NetDebt', 'title': 'NET_DEBT'}, {'key': 'ShareIssued', 'title': 'SHARE_ISSUED'}, {'key': 'OrdinarySharesNumber', 'title': 'ORDINARY_SHARES_NUMBER'}, {'key': 'PreferredSharesNumber', 'title': 'PREFERRED_SHARES_NUMBER'}, {'key': 'TreasurySharesNumber', 'title': 'TREASURY_SHARES_NUMBER'}]}, 'QuoteTimeSeriesStore': {'timeSeries': {'annualCashAndCashEquivalents': [{'dataId': 23030, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 48844000000, 'fmt': '48.84B'}}, {'dataId': 23030, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 38016000000, 'fmt': '38.02B'}}, {'dataId': 23030, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 34940000000, 'fmt': '34.94B'}}, {'dataId': 23030, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 23646000000, 'fmt': '23.65B'}}], 'annualNonCurrentDeferredLiabilities': [], 'annualPrepaidAssets': [], 'annualStockholdersEquity': [{'dataId': 23215, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 90488000000, 'fmt': '90.49B'}}, {'dataId': 23215, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 65339000000, 'fmt': '65.34B'}}, {'dataId': 23215, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 63090000000, 'fmt': '63.09B'}}, {'dataId': 23215, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 50672000000, 'fmt': '50.67B'}}], 'annualAllowanceForDoubtfulAccountsReceivable': [], 'annualMachineryFurnitureEquipment': [{'dataId': 23319, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 69797000000, 'fmt': '69.80B'}}, {'dataId': 23319, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 75291000000, 'fmt': '75.29B'}}, {'dataId': 23319, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 78659000000, 'fmt': '78.66B'}}, {'dataId': 23319, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 81060000000, 'fmt': '81.06B'}}], 'annualPensionandOtherPostRetirementBenefitPlansCurrent': [], 'annualProperties': [{'dataId': 23351, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0, 'fmt': '0.00'}}, {'dataId': 23351, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0, 'fmt': '0.00'}}, {'dataId': 23351, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0, 'fmt': '0.00'}}, {'dataId': 23351, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0, 'fmt': '0.00'}}], 'annualGoodwillAndOtherIntangibleAssets': [], 'annualInvestmentsAndAdvances': [{'dataId': 23111, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 105341000000, 'fmt': '105.34B'}}, {'dataId': 23111, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 100887000000, 'fmt': '100.89B'}}, {'dataId': 23111, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 127877000000, 'fmt': '127.88B'}}, {'dataId': 23111, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 120805000000, 'fmt': '120.81B'}}], 'annualCommonStockEquity': [{'dataId': 23280, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 90488000000, 'fmt': '90.49B'}}, {'dataId': 23280, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 65339000000, 'fmt': '65.34B'}}, {'dataId': 23280, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 63090000000, 'fmt': '63.09B'}}, {'dataId': 23280, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 50672000000, 'fmt': '50.67B'}}], 'annualNonCurrentDeferredTaxesLiabilities': [], 'annualIncomeTaxPayable': [], 'annualAvailableForSaleSecurities': [{'dataId': 23020, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 105341000000, 'fmt': '105.34B'}}, {'dataId': 23020, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 100887000000, 'fmt': '100.89B'}}, {'dataId': 23020, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 127877000000, 'fmt': '127.88B'}}, {'dataId': 23020, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 120805000000, 'fmt': '120.81B'}}], 'annualLandAndImprovements': [{'dataId': 23312, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 17085000000, 'fmt': '17.09B'}}, {'dataId': 23312, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 17952000000, 'fmt': '17.95B'}}, {'dataId': 23312, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 20041000000, 'fmt': '20.04B'}}, {'dataId': 23312, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 22126000000, 'fmt': '22.13B'}}], 'annualAdditionalPaidInCapital': [], 'annualTotalTaxPayable': [], 'annualCurrentAccruedExpenses': [], 'annualForeignCurrencyTranslationAdjustments': [], 'annualOtherEquityInterest': [], 'annualInvestmentinFinancialAssets': [{'dataId': 23414, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 105341000000, 'fmt': '105.34B'}}, {'dataId': 23414, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 100887000000, 'fmt': '100.89B'}}, {'dataId': 23414, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 127877000000, 'fmt': '127.88B'}}, {'dataId': 23414, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 120805000000, 'fmt': '120.81B'}}], 'annualCurrentDeferredRevenue': [{'dataId': 23061, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 5522000000, 'fmt': '5.52B'}}, {'dataId': 23061, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 6643000000, 'fmt': '6.64B'}}, {'dataId': 23061, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 7612000000, 'fmt': '7.61B'}}, {'dataId': 23061, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 7912000000, 'fmt': '7.91B'}}], 'annualOtherEquityAdjustments': [], 'annualTotalCapitalization': [{'dataId': 23374, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 182295000000, 'fmt': '182.29B'}}, {'dataId': 23374, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 164006000000, 'fmt': '164.01B'}}, {'dataId': 23374, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 172196000000, 'fmt': '172.20B'}}, {'dataId': 23374, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 149631000000, 'fmt': '149.63B'}}], 'annualCapitalStock': [{'dataId': 23027, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 45174000000, 'fmt': '45.17B'}}, {'dataId': 23027, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 50779000000, 'fmt': '50.78B'}}, {'dataId': 23027, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57365000000, 'fmt': '57.37B'}}, {'dataId': 23027, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 64849000000, 'fmt': '64.85B'}}], 'annualCurrentDeferredAssets': [], 'annualOtherInvestments': [{'dataId': 23540, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 105341000000, 'fmt': '105.34B'}}, {'dataId': 23540, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 100887000000, 'fmt': '100.89B'}}, {'dataId': 23540, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 127877000000, 'fmt': '127.88B'}}, {'dataId': 23540, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 120805000000, 'fmt': '120.81B'}}], 'annualAccountsReceivable': [{'dataId': 23001, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 22926000000, 'fmt': '22.93B'}}, {'dataId': 23001, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16120000000, 'fmt': '16.12B'}}, {'dataId': 23001, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 26278000000, 'fmt': '26.28B'}}, {'dataId': 23001, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 28184000000, 'fmt': '28.18B'}}], 'annualShareIssued': [{'dataId': 23532, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 17772944000, 'fmt': '17.77B'}}, {'dataId': 23532, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16976763000, 'fmt': '16.98B'}}, {'dataId': 23532, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16426786000, 'fmt': '16.43B'}}, {'dataId': 23532, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 15943425000, 'fmt': '15.94B'}}], 'annualPayablesAndAccruedExpenses': [{'dataId': 23166, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 46236000000, 'fmt': '46.24B'}}, {'dataId': 23166, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 42296000000, 'fmt': '42.30B'}}, {'dataId': 23166, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 54763000000, 'fmt': '54.76B'}}, {'dataId': 23166, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 64115000000, 'fmt': '64.11B'}}], 'annualTotalNonCurrentLiabilitiesNetMinorityInterest': [{'dataId': 23260, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 142310000000, 'fmt': '142.31B'}}, {'dataId': 23260, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 153157000000, 'fmt': '153.16B'}}, {'dataId': 23260, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 162431000000, 'fmt': '162.43B'}}, {'dataId': 23260, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 148101000000, 'fmt': '148.10B'}}], 'annualOtherCurrentBorrowings': [{'dataId': 23332, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 10260000000, 'fmt': '10.26B'}}, {'dataId': 23332, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 8773000000, 'fmt': '8.77B'}}, {'dataId': 23332, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 9613000000, 'fmt': '9.61B'}}, {'dataId': 23332, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 11128000000, 'fmt': '11.13B'}}], 'annualCashFinancial': [{'dataId': 23028, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 12204000000, 'fmt': '12.20B'}}, {'dataId': 23028, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 17773000000, 'fmt': '17.77B'}}, {'dataId': 23028, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 17305000000, 'fmt': '17.30B'}}, {'dataId': 23028, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 18546000000, 'fmt': '18.55B'}}], 'annualNonCurrentPrepaidAssets': [], 'annualLongTermDebtAndCapitalLeaseObligation': [{'dataId': 23124, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 91807000000, 'fmt': '91.81B'}}, {'dataId': 23124, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 98667000000, 'fmt': '98.67B'}}, {'dataId': 23124, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 109106000000, 'fmt': '109.11B'}}, {'dataId': 23124, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 98959000000, 'fmt': '98.96B'}}], 'annualOtherShortTermInvestments': [{'dataId': 23163, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 51713000000, 'fmt': '51.71B'}}, {'dataId': 23163, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 52927000000, 'fmt': '52.93B'}}, {'dataId': 23163, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 27699000000, 'fmt': '27.70B'}}, {'dataId': 23163, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 24658000000, 'fmt': '24.66B'}}], 'annualCashCashEquivalentsAndShortTermInvestments': [{'dataId': 23033, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 100557000000, 'fmt': '100.56B'}}, {'dataId': 23033, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 90943000000, 'fmt': '90.94B'}}, {'dataId': 23033, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 62639000000, 'fmt': '62.64B'}}, {'dataId': 23033, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 48304000000, 'fmt': '48.30B'}}], 'annualReceivables': [{'dataId': 23189, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 45804000000, 'fmt': '45.80B'}}, {'dataId': 23189, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 37445000000, 'fmt': '37.45B'}}, {'dataId': 23189, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 51506000000, 'fmt': '51.51B'}}, {'dataId': 23189, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 60932000000, 'fmt': '60.93B'}}], 'annualRawMaterials': [], 'annualOtherIntangibleAssets': [], 'annualBuildingsAndImprovements': [], 'annualPreferredStockEquity': [], 'annualInventory': [{'dataId': 23108, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 4106000000, 'fmt': '4.11B'}}, {'dataId': 23108, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 4061000000, 'fmt': '4.06B'}}, {'dataId': 23108, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 6580000000, 'fmt': '6.58B'}}, {'dataId': 23108, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 4946000000, 'fmt': '4.95B'}}], 'annualAccumulatedDepreciation': [{'dataId': 23008, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -58579000000, 'fmt': '-58.58B'}}, {'dataId': 23008, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -66760000000, 'fmt': '-66.76B'}}, {'dataId': 23008, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -70283000000, 'fmt': '-70.28B'}}, {'dataId': 23008, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -72340000000, 'fmt': '-72.34B'}}], 'annualCurrentLiabilities': [{'dataId': 23047, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 105718000000, 'fmt': '105.72B'}}, {'dataId': 23047, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 105392000000, 'fmt': '105.39B'}}, {'dataId': 23047, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 125481000000, 'fmt': '125.48B'}}, {'dataId': 23047, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 153982000000, 'fmt': '153.98B'}}], 'annualTotalDebt': [{'dataId': 23386, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 108047000000, 'fmt': '108.05B'}}, {'dataId': 23386, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 112436000000, 'fmt': '112.44B'}}, {'dataId': 23386, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 124719000000, 'fmt': '124.72B'}}, {'dataId': 23386, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 120069000000, 'fmt': '120.07B'}}], 'annualNetPPE': [{'dataId': 23139, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 37378000000, 'fmt': '37.38B'}}, {'dataId': 23139, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 36766000000, 'fmt': '36.77B'}}, {'dataId': 23139, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 39440000000, 'fmt': '39.44B'}}, {'dataId': 23139, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 42117000000, 'fmt': '42.12B'}}], 'annualTangibleBookValue': [{'dataId': 23383, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 90488000000, 'fmt': '90.49B'}}, {'dataId': 23383, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 65339000000, 'fmt': '65.34B'}}, {'dataId': 23383, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 63090000000, 'fmt': '63.09B'}}, {'dataId': 23383, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 50672000000, 'fmt': '50.67B'}}], 'annualLeases': [{'dataId': 23313, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 9075000000, 'fmt': '9.07B'}}, {'dataId': 23313, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 10283000000, 'fmt': '10.28B'}}, {'dataId': 23313, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 11023000000, 'fmt': '11.02B'}}, {'dataId': 23313, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 11271000000, 'fmt': '11.27B'}}], 'annualWorkInProcess': [], 'annualCurrentAssets': [{'dataId': 23044, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 162819000000, 'fmt': '162.82B'}}, {'dataId': 23044, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 143713000000, 'fmt': '143.71B'}}, {'dataId': 23044, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 134836000000, 'fmt': '134.84B'}}, {'dataId': 23044, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 135405000000, 'fmt': '135.41B'}}], 'annualOtherNonCurrentAssets': [{'dataId': 23339, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 32978000000, 'fmt': '32.98B'}}, {'dataId': 23339, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 42522000000, 'fmt': '42.52B'}}, {'dataId': 23339, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 48849000000, 'fmt': '48.85B'}}, {'dataId': 23339, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 54428000000, 'fmt': '54.43B'}}], 'annualCurrentNotesPayable': [], 'annualOtherNonCurrentLiabilities': [{'dataId': 23379, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 20958000000, 'fmt': '20.96B'}}, {'dataId': 23379, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 26320000000, 'fmt': '26.32B'}}, {'dataId': 23379, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 28636000000, 'fmt': '28.64B'}}, {'dataId': 23379, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 32485000000, 'fmt': '32.48B'}}], 'annualCurrentDeferredTaxesAssets': [], 'annualOtherCurrentLiabilities': [{'dataId': 23151, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 37720000000, 'fmt': '37.72B'}}, {'dataId': 23151, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 42684000000, 'fmt': '42.68B'}}, {'dataId': 23151, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 47493000000, 'fmt': '47.49B'}}, {'dataId': 23151, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 60845000000, 'fmt': '60.84B'}}], 'annualCurrentDeferredLiabilities': [{'dataId': 23058, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 5522000000, 'fmt': '5.52B'}}, {'dataId': 23058, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 6643000000, 'fmt': '6.64B'}}, {'dataId': 23058, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 7612000000, 'fmt': '7.61B'}}, {'dataId': 23058, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 7912000000, 'fmt': '7.91B'}}], 'annualWorkingCapital': [{'dataId': 23385, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57101000000, 'fmt': '57.10B'}}, {'dataId': 23385, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 38321000000, 'fmt': '38.32B'}}, {'dataId': 23385, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 9355000000, 'fmt': '9.36B'}}, {'dataId': 23385, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -18577000000, 'fmt': '-18.58B'}}], 'annualTotalLiabilitiesNetMinorityInterest': [{'dataId': 23259, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 248028000000, 'fmt': '248.03B'}}, {'dataId': 23259, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 258549000000, 'fmt': '258.55B'}}, {'dataId': 23259, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 287912000000, 'fmt': '287.91B'}}, {'dataId': 23259, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 302083000000, 'fmt': '302.08B'}}], 'annualTradeandOtherPayablesNonCurrent': [{'dataId': 23472, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 29545000000, 'fmt': '29.55B'}}, {'dataId': 23472, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 28170000000, 'fmt': '28.17B'}}, {'dataId': 23472, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 24689000000, 'fmt': '24.69B'}}, {'dataId': 23472, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16657000000, 'fmt': '16.66B'}}], 'annualGoodwill': [], 'annualCurrentDebtAndCapitalLeaseObligation': [{'dataId': 23046, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16240000000, 'fmt': '16.24B'}}, {'dataId': 23046, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 13769000000, 'fmt': '13.77B'}}, {'dataId': 23046, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 15613000000, 'fmt': '15.61B'}}, {'dataId': 23046, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 21110000000, 'fmt': '21.11B'}}], 'annualRetainedEarnings': [{'dataId': 23204, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 45898000000, 'fmt': '45.90B'}}, {'dataId': 23204, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 14966000000, 'fmt': '14.97B'}}, {'dataId': 23204, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 5562000000, 'fmt': '5.56B'}}, {'dataId': 23204, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -3068000000, 'fmt': '-3.07B'}}], 'annualCommonStock': [{'dataId': 23038, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 45174000000, 'fmt': '45.17B'}}, {'dataId': 23038, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 50779000000, 'fmt': '50.78B'}}, {'dataId': 23038, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57365000000, 'fmt': '57.37B'}}, {'dataId': 23038, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 64849000000, 'fmt': '64.85B'}}], 'annualNonCurrentDeferredTaxesAssets': [], 'annualNonCurrentDeferredAssets': [], 'annualOtherProperties': [], 'annualPreferredStock': [], 'annualGainsLossesNotAffectingRetainedEarnings': [{'dataId': 23009, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -584000000, 'fmt': '-584.00M'}}, {'dataId': 23009, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -406000000, 'fmt': '-406.00M'}}, {'dataId': 23009, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 163000000, 'fmt': '163.00M'}}, {'dataId': 23009, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -11109000000, 'fmt': '-11.11B'}}], 'annualTotalEquityGrossMinorityInterest': [{'dataId': 23261, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 90488000000, 'fmt': '90.49B'}}, {'dataId': 23261, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 65339000000, 'fmt': '65.34B'}}, {'dataId': 23261, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 63090000000, 'fmt': '63.09B'}}, {'dataId': 23261, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 50672000000, 'fmt': '50.67B'}}], 'annualOtherCurrentAssets': [{'dataId': 23331, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 12352000000, 'fmt': '12.35B'}}, {'dataId': 23331, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 11264000000, 'fmt': '11.26B'}}, {'dataId': 23331, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 14111000000, 'fmt': '14.11B'}}, {'dataId': 23331, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 21223000000, 'fmt': '21.22B'}}], 'annualPayables': [{'dataId': 23165, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 46236000000, 'fmt': '46.24B'}}, {'dataId': 23165, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 42296000000, 'fmt': '42.30B'}}, {'dataId': 23165, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 54763000000, 'fmt': '54.76B'}}, {'dataId': 23165, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 64115000000, 'fmt': '64.11B'}}], 'annualOtherPayable': [], 'annualAccountsPayable': [{'dataId': 23000, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 46236000000, 'fmt': '46.24B'}}, {'dataId': 23000, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 42296000000, 'fmt': '42.30B'}}, {'dataId': 23000, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 54763000000, 'fmt': '54.76B'}}, {'dataId': 23000, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 64115000000, 'fmt': '64.11B'}}], 'annualCommercialPaper': [{'dataId': 23279, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 5980000000, 'fmt': '5.98B'}}, {'dataId': 23279, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 4996000000, 'fmt': '5.00B'}}, {'dataId': 23279, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 6000000000, 'fmt': '6.00B'}}, {'dataId': 23279, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 9982000000, 'fmt': '9.98B'}}], 'annualLongTermDebt': [{'dataId': 23123, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 91807000000, 'fmt': '91.81B'}}, {'dataId': 23123, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 98667000000, 'fmt': '98.67B'}}, {'dataId': 23123, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 109106000000, 'fmt': '109.11B'}}, {'dataId': 23123, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 98959000000, 'fmt': '98.96B'}}], 'annualInvestedCapital': [{'dataId': 23245, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 198535000000, 'fmt': '198.53B'}}, {'dataId': 23245, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 177775000000, 'fmt': '177.78B'}}, {'dataId': 23245, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 187809000000, 'fmt': '187.81B'}}, {'dataId': 23245, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 170741000000, 'fmt': '170.74B'}}], 'annualCurrentDebt': [{'dataId': 23045, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16240000000, 'fmt': '16.24B'}}, {'dataId': 23045, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 13769000000, 'fmt': '13.77B'}}, {'dataId': 23045, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 15613000000, 'fmt': '15.61B'}}, {'dataId': 23045, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 21110000000, 'fmt': '21.11B'}}], 'annualNetTangibleAssets': [{'dataId': 23403, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 90488000000, 'fmt': '90.49B'}}, {'dataId': 23403, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 65339000000, 'fmt': '65.34B'}}, {'dataId': 23403, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 63090000000, 'fmt': '63.09B'}}, {'dataId': 23403, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 50672000000, 'fmt': '50.67B'}}], 'annualTotalAssets': [{'dataId': 23220, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 338516000000, 'fmt': '338.52B'}}, {'dataId': 23220, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 323888000000, 'fmt': '323.89B'}}, {'dataId': 23220, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 351002000000, 'fmt': '351.00B'}}, {'dataId': 23220, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 352755000000, 'fmt': '352.75B'}}], 'annualOrdinarySharesNumber': [{'dataId': 23393, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 17772944000, 'fmt': '17.77B'}}, {'dataId': 23393, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16976763000, 'fmt': '16.98B'}}, {'dataId': 23393, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16426786000, 'fmt': '16.43B'}}, {'dataId': 23393, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 15943425000, 'fmt': '15.94B'}}], 'annualOtherReceivables': [{'dataId': 23342, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 22878000000, 'fmt': '22.88B'}}, {'dataId': 23342, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 21325000000, 'fmt': '21.32B'}}, {'dataId': 23342, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 25228000000, 'fmt': '25.23B'}}, {'dataId': 23342, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 32748000000, 'fmt': '32.75B'}}], 'annualCashEquivalents': [{'dataId': 23029, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 36640000000, 'fmt': '36.64B'}}, {'dataId': 23029, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 20243000000, 'fmt': '20.24B'}}, {'dataId': 23029, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 17635000000, 'fmt': '17.64B'}}, {'dataId': 23029, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 5100000000, 'fmt': '5.10B'}}], 'annualGrossAccountsReceivable': [], 'annualNonCurrentDeferredRevenue': [], 'annualFinishedGoods': [], 'annualGrossPPE': [{'dataId': 23100, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 95957000000, 'fmt': '95.96B'}}, {'dataId': 23100, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 103526000000, 'fmt': '103.53B'}}, {'dataId': 23100, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 109723000000, 'fmt': '109.72B'}}, {'dataId': 23100, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 114457000000, 'fmt': '114.46B'}}], 'annualTotalNonCurrentAssets': [{'dataId': 23226, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 175697000000, 'fmt': '175.70B'}}, {'dataId': 23226, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 180175000000, 'fmt': '180.18B'}}, {'dataId': 23226, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 216166000000, 'fmt': '216.17B'}}, {'dataId': 23226, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 217350000000, 'fmt': '217.35B'}}], 'annualNetDebt': [{'dataId': 23531, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 59203000000, 'fmt': '59.20B'}}, {'dataId': 23531, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 74420000000, 'fmt': '74.42B'}}, {'dataId': 23531, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 89779000000, 'fmt': '89.78B'}}, {'dataId': 23531, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 96423000000, 'fmt': '96.42B'}}], 'annualPreferredSharesNumber': [], 'annualLongTermCapitalLeaseObligation': [], 'annualOtherInventories': [], 'annualCurrentCapitalLeaseObligation': [], 'annualRestrictedCommonStock': [], 'annualMinimumPensionLiabilities': [], 'annualDuefromRelatedPartiesCurrent': [], 'annualCurrentDeferredTaxesLiabilities': [], 'annualHeldToMaturitySecurities': [], 'annualInvestmentsinJointVenturesatCost': [], 'annualInterestPayable': [], 'annualPreferredSecuritiesOutsideStockEquity': [], 'annualTradingSecurities': [], 'annualAccruedInterestReceivable': [], 'annualNonCurrentNoteReceivables': [], 'annualInvestmentsInOtherVenturesUnderEquityMethod': [], 'annualDuefromRelatedPartiesNonCurrent': [], 'annualDividendsPayable': [], 'annualInvestmentsinAssociatesatCost': [], 'annualNonCurrentAccruedExpenses': [], 'annualNonCurrentAccountsReceivable': [], 'annualLimitedPartnershipCapital': [], 'annualTreasurySharesNumber': [], 'annualEmployeeBenefits': [], 'annualMinorityInterest': [], 'annualRestrictedCash': [], 'annualFinancialAssetsDesignatedasFairValueThroughProfitorLossTotal': [], 'annualDerivativeProductLiabilities': [], 'annualHedgingAssetsCurrent': [], 'annualTreasuryStock': [], 'annualConstructionInProgress': [], 'annualCurrentProvisions': [], 'annualLongTermEquityInvestment': [], 'annualInvestmentsinSubsidiariesatCost': [], 'annualDuetoRelatedPartiesNonCurrent': [], 'annualFixedAssetsRevaluationReserve': [], 'annualNotesReceivable': [], 'annualInvestmentProperties': [], 'annualDefinedPensionBenefit': [], 'annualGeneralPartnershipCapital': [], 'annualCapitalLeaseObligations': [], 'annualLongTermProvisions': [], 'annualTotalPartnershipCapital': [], 'annualLineOfCredit': [], 'annualLoansReceivable': [], 'annualAssetsHeldForSaleCurrent': [], 'annualOtherCapitalStock': [], 'annualLiabilitiesHeldforSaleNonCurrent': [], 'annualReceivablesAdjustmentsAllowances': [], 'annualTaxesReceivable': [], 'annualNonCurrentPensionAndOtherPostretirementBenefitPlans': [], 'annualInventoriesAdjustmentsAllowances': [], 'annualFinancialAssets': [], 'annualUnrealizedGainLoss': [], 'annualDuetoRelatedPartiesCurrent': [], 'timestamp': [1569801600, 1601424000, 1632960000, 1664496000]}, 'meta': {'symbol': 'AAPL', 'start': 493590046, 'end': 1675699799, 'timeUnit': 'annual'}, 'loading': False, 'errorList': []}, 'MarketTimeStore': {'data': {'mins': 50, 'hrs': 4, 'message': 'U.S. markets close in 4 hours 50 minutes'}, 'metadata': {'status': 'YFT_MARKET_WILL_CLOSE', 'time': '2023-02-06T16:09:59Z'}}, 'MarketSummaryStore': {'data': [{'symbol': '^GSPC', 'name': 'S&P 500'}, {'symbol': '^DJI', 'name': 'Dow 30'}, {'symbol': '^IXIC', 'name': 'Nasdaq'}, {'symbol': '^RUT', 'name': 'Russell 2000'}, {'symbol': 'CL=F', 'name': 'Crude Oil'}, {'symbol': 'GC=F', 'name': 'Gold'}, {'symbol': 'SI=F', 'name': 'Silver'}, {'symbol': 'EURUSD=X', 'name': 'EUR/USD'}, {'symbol': '^TNX', 'name': '10-Yr Bond'}, {'symbol': 'GBPUSD=X', 'name': 'GBP/USD'}, {'symbol': 'JPY=X', 'name': 'USD/JPY'}, {'symbol': 'BTC-USD'}, {'symbol': '^CMC200', 'name': 'CMC Crypto 200'}, {'symbol': '^FTSE', 'name': 'FTSE 100'}, {'symbol': '^N225', 'name': 'Nikkei 225'}]}, 'RmpStore': {'data': {'Lead-7-Rmp': {'isStatic': False, 'css': [], 'html': '
', 'js': [], 'mode': 'json', 'assets': {'css': [{'location': 'top', 'value': '/aaq/nel/css/smart-ad-dynamic-data.SmartAdDynamicData.atomic.ltr.88115735231490dcb5680ea5084fb4e1.min.css', 'name': 'smart-ad-dynamic-data.SmartAdDynamicData.atomic'}]}, 'data': {}}}}, 'NavServiceStore': {'nav': {}, 'finance': {'sections': ['property'], 'nav': [{'statusCode': 200, 'message': 'ok', 'data': {'items': [{'name': 'Watchlists', 'url': 'https://finance.yahoo.com/watchlists/', 'children': [], 'id': 'root_1'}, {'name': 'My Portfolio', 'url': 'https://finance.yahoo.com/portfolios/', 'children': [], 'id': 'root_2'}, {'name': 'Crypto', 'url': 'https://finance.yahoo.com/crypto/', 'children': [], 'id': 'root_3'}, {'name': 'Yahoo Finance Plus', 'url': 'https://finance.yahoo.com/plus-dashboard?ncid=dcm_306158762_490172245_127172993', 'children': [{'name': 'Dashboard', 'url': 'https://finance.yahoo.com/plus-dashboard?ncid=dcm_306158759_490172245_127172993', 'id': 'root_4_1'}, {'name': 'Research Reports', 'url': 'https://finance.yahoo.com/research?ncid=dcm_306158756_490172245_127172993', 'id': 'root_4_2'}, {'name': 'Investment Ideas', 'url': 'https://finance.yahoo.com/research/trade-ideas?ncid=dcm_306158753_490172245_127172993', 'id': 'root_4_3'}, {'name': 'Community Insights', 'url': 'https://finance.yahoo.com/user-insights?ncid=dcm_306158750_490172245_127172993', 'id': 'root_4_4'}, {'name': 'Webinars', 'url': 'https://finance.yahoo.com/webinars', 'id': 'root_4_5'}, {'name': 'Blog', 'url': 'https://finance.yahoo.com/topic/plus', 'id': 'root_4_6'}], 'id': 'root_4'}, {'name': 'News', 'url': 'https://finance.yahoo.com/news/', 'children': [{'name': 'Latest News', 'url': 'https://finance.yahoo.com/news/', 'id': 'root_5_1'}, {'name': 'Yahoo Finance Originals', 'url': 'https://finance.yahoo.com/topic/yahoo-finance-originals', 'id': 'root_5_2'}, {'name': 'Stock Market News', 'url': 'https://finance.yahoo.com/topic/stock-market-news/', 'id': 'root_5_3'}, {'name': 'Earnings', 'url': 'https://finance.yahoo.com/topic/earnings', 'id': 'root_5_4'}, {'name': 'Politics', 'url': 'https://finance.yahoo.com/live/politics/', 'id': 'root_5_5'}, {'name': 'Economic News', 'url': 'https://finance.yahoo.com/topic/economic-news', 'id': 'root_5_6'}, {'name': 'Morning Brief', 'url': 'https://finance.yahoo.com/topic/morning-brief/', 'id': 'root_5_7'}, {'name': 'Personal Finance', 'url': 'https://finance.yahoo.com/topic/personal-finance', 'id': 'root_5_8'}, {'name': 'Crypto News', 'url': 'https://finance.yahoo.com/topic/crypto/', 'id': 'root_5_9'}, {'name': 'Bidenomics Report Card', 'url': 'https://finance.yahoo.com/bidenomics/', 'id': 'root_5_10'}], 'id': 'root_5'}, {'name': 'Screeners', 'url': 'https://finance.yahoo.com/screener/', 'children': [{'name': 'Saved Screeners', 'url': 'https://finance.yahoo.com/screener', 'id': 'root_6_1'}, {'name': 'Equity Screener', 'url': 'https://finance.yahoo.com/screener/new', 'id': 'root_6_2'}, {'name': 'Mutual Fund Screener', 'url': 'https://finance.yahoo.com/screener/mutualfund/new', 'id': 'root_6_3'}, {'name': 'ETF Screener', 'url': 'https://finance.yahoo.com/screener/etf/new', 'id': 'root_6_4'}, {'name': 'Futures Screener', 'url': 'https://finance.yahoo.com/screener/future/new', 'id': 'root_6_5'}, {'name': 'Index Screener', 'url': 'https://finance.yahoo.com/screener/index/new', 'id': 'root_6_6'}], 'id': 'root_6'}, {'name': 'Markets', 'url': 'https://finance.yahoo.com/calendar/', 'children': [{'name': 'Calendars', 'url': 'https://finance.yahoo.com/calendar', 'id': 'root_7_1'}, {'name': 'Trending Tickers', 'url': 'https://finance.yahoo.com/trending-tickers', 'id': 'root_7_2'}, {'name': 'Stocks: Most Actives', 'url': 'https://finance.yahoo.com/most-active', 'id': 'root_7_3'}, {'name': 'Stocks: Gainers', 'url': 'https://finance.yahoo.com/gainers', 'id': 'root_7_4'}, {'name': 'Stocks: Losers', 'url': 'https://finance.yahoo.com/losers', 'id': 'root_7_5'}, {'name': 'Top ETFs', 'url': 'https://finance.yahoo.com/etfs', 'id': 'root_7_6'}, {'name': 'Futures', 'url': 'https://finance.yahoo.com/commodities', 'id': 'root_7_7'}, {'name': 'World Indices', 'url': 'https://finance.yahoo.com/world-indices', 'id': 'root_7_8'}, {'name': 'Currencies', 'url': 'https://finance.yahoo.com/currencies', 'id': 'root_7_9'}, {'name': 'Top Mutual Funds', 'url': 'https://finance.yahoo.com/mutualfunds', 'id': 'root_7_10'}, {'name': 'Options: Highest Open Interest', 'url': 'https://finance.yahoo.com/options/highest-open-interest', 'id': 'root_7_11'}, {'name': 'Options: Highest Implied Volatility', 'url': 'https://finance.yahoo.com/options/highest-implied-volatility', 'id': 'root_7_12'}, {'name': 'US Treasury Bonds Rates', 'url': 'https://finance.yahoo.com/bonds', 'id': 'root_7_13'}, {'name': 'Currency Converter', 'url': 'https://finance.yahoo.com/currency-converter', 'id': 'root_7_14'}], 'id': 'root_7'}, {'name': 'Videos', 'url': 'https://finance.yahoo.com/videos/', 'children': [{'name': 'Company of the Year', 'url': 'https://finance.yahoo.com/live/company-of-the-year/', 'id': 'root_8_1'}, {'name': 'Yahoo Finance Live', 'url': 'https://finance.yahoo.com/videos', 'id': 'root_8_2'}, {'name': 'Yahoo Finance Presents', 'url': 'https://finance.yahoo.com/live/yahoo-finance-presents', 'id': 'root_8_3'}, {'name': 'All Markets Summit', 'url': 'https://finance.yahoo.com/live/allmarketssummit', 'id': 'root_8_4'}, {'name': 'Financing Your Future', 'url': 'https://finance.yahoo.com/topic/financing-your-future', 'id': 'root_8_5'}, {'name': 'Real Estate Report', 'url': 'https://finance.yahoo.com/topic/real-estate-report', 'id': 'root_8_6'}, {'name': 'Retirement', 'url': 'https://finance.yahoo.com/topic/retirement', 'id': 'root_8_7'}, {'name': 'ETF Report', 'url': 'https://finance.yahoo.com/topic/etf-report', 'id': 'root_8_8'}, {'name': 'FA Corner', 'url': 'https://finance.yahoo.com/topic/fa-corner', 'id': 'root_8_9'}, {'name': 'Events', 'url': 'https://finance.yahoo.com/show/events', 'id': 'root_8_10'}, {'name': 'Crypto Corner', 'url': 'https://finance.yahoo.com/topic/crypto-corner', 'id': 'root_8_11'}], 'id': 'root_8'}, {'name': 'Personal Finance', 'url': 'https://finance.yahoo.com/topic/personal-finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/', 'id': 'root_9_1'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/', 'id': 'root_9_2'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/', 'id': 'root_9_3'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes', 'id': 'root_9_4'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}], 'id': 'root_9'}, {'name': 'Industries', 'url': 'https://finance.yahoo.com/screener/predefined/ms_basic_materials/', 'children': [{'name': 'Basic Materials', 'url': 'https://finance.yahoo.com/screener/predefined/ms_basic_materials/', 'id': 'root_10_1'}, {'name': 'Communication Services', 'url': 'https://finance.yahoo.com/screener/predefined/ms_communication_services/', 'id': 'root_10_2'}, {'name': 'Consumer Cyclical', 'url': 'https://finance.yahoo.com/screener/predefined/ms_consumer_cyclical/', 'id': 'root_10_3'}, {'name': 'Consumer Defensive', 'url': 'https://finance.yahoo.com/screener/predefined/ms_consumer_defensive/', 'id': 'root_10_4'}, {'name': 'Energy', 'url': 'https://finance.yahoo.com/screener/predefined/ms_energy/', 'id': 'root_10_5'}, {'name': 'Financial Services', 'url': 'https://finance.yahoo.com/screener/predefined/ms_financial_services/', 'id': 'root_10_6'}, {'name': 'Healthcare', 'url': 'https://finance.yahoo.com/screener/predefined/ms_healthcare/', 'id': 'root_10_7'}, {'name': 'Industrials', 'url': 'https://finance.yahoo.com/screener/predefined/ms_industrials/', 'id': 'root_10_8'}, {'name': 'Real Estate', 'url': 'https://finance.yahoo.com/screener/predefined/ms_real_estate/', 'id': 'root_10_9'}, {'name': 'Technology', 'url': 'https://finance.yahoo.com/screener/predefined/ms_technology/', 'id': 'root_10_10'}, {'name': 'Utilities', 'url': 'https://finance.yahoo.com/screener/predefined/ms_utilities/', 'id': 'root_10_11'}], 'id': 'root_10'}, {'name': 'Contact Us', 'url': 'https://yahoo.uservoice.com/forums/382977', 'children': [], 'id': 'root_11'}]}}, None]}}, 'RecommendationStore': {'recommendedSymbols': {'AAPL': [{'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 102.925, 'fmt': '102.93'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699798, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '81.43 - 170.8315', 'fmt': '81.43 - 170.83'}, 'sharesOutstanding': {'raw': 10201700352, 'fmt': '10.202B', 'longFmt': '10,201,700,352'}, 'regularMarketDayHigh': {'raw': 103.9484, 'fmt': '103.95'}, 'shortName': 'Amazon.com, Inc.', 'longName': 'Amazon.com, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -1.8696976, 'fmt': '-1.87'}, 'regularMarketPreviousClose': {'raw': 103.39, 'fmt': '103.39'}, 'fiftyTwoWeekHighChange': {'raw': -69.311195, 'fmt': '-69.31'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 20.090302, 'fmt': '20.09'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 100.65, 'fmt': '100.65'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 101.5203, 'fmt': '101.52'}, 'regularMarketVolume': {'raw': 34788052, 'fmt': '34.788M', 'longFmt': '34,788,052'}, 'isLoading': False, 'score': 0.328489, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 863703000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1035679694848, 'fmt': '1.036T', 'longFmt': '1,035,679,694,848'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'AMZN', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.24671867, 'fmt': '24.67%'}, 'regularMarketDayRange': {'raw': '100.65 - 103.9484', 'fmt': '100.65 - 103.95'}, 'messageBoardId': 'finmb_18749', 'fiftyTwoWeekHigh': {'raw': 170.8315, 'fmt': '170.83'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.40572843, 'fmt': '-40.57%'}, 'uuid': '261fd26b-0151-3813-b0d0-97e4ed4c6505', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 81.43, 'fmt': '81.43'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.808393, 'fmt': '-1.81%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 193.01, 'fmt': '193.01'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699798, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '101.81 - 384.29', 'fmt': '101.81 - 384.29'}, 'sharesOutstanding': {'raw': 3164100096, 'fmt': '3.164B', 'longFmt': '3,164,100,096'}, 'regularMarketDayHigh': {'raw': 198.16, 'fmt': '198.16'}, 'shortName': 'Tesla, Inc.', 'longName': 'Tesla, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 4.720108, 'fmt': '4.72'}, 'regularMarketPreviousClose': {'raw': 189.98, 'fmt': '189.98'}, 'fiftyTwoWeekHighChange': {'raw': -189.5899, 'fmt': '-189.59'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 92.89011, 'fmt': '92.89'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 189.92, 'fmt': '189.92'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 194.7001, 'fmt': '194.70'}, 'regularMarketVolume': {'raw': 86577340, 'fmt': '86.577M', 'longFmt': '86,577,340'}, 'isLoading': False, 'score': 0.308594, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1277818200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 616050589696, 'fmt': '616.051B', 'longFmt': '616,050,589,696'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'TSLA', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.9123869, 'fmt': '91.24%'}, 'regularMarketDayRange': {'raw': '189.92 - 198.16', 'fmt': '189.92 - 198.16'}, 'messageBoardId': 'finmb_27444752', 'fiftyTwoWeekHigh': {'raw': 384.29, 'fmt': '384.29'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.4933511, 'fmt': '-49.34%'}, 'uuid': 'ec367bc4-f92c-397c-ac81-bf7b43cffaf7', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 101.81, 'fmt': '101.81'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 2.484529, 'fmt': '2.48%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 102.685, 'fmt': '102.68'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699797, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '83.45 - 144.1625', 'fmt': '83.45 - 144.16'}, 'sharesOutstanding': {'raw': 5968000000, 'fmt': '5.968B', 'longFmt': '5,968,000,000'}, 'regularMarketDayHigh': {'raw': 104.69, 'fmt': '104.69'}, 'shortName': 'Alphabet Inc.', 'longName': 'Alphabet Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.5599976, 'fmt': '-2.56'}, 'regularMarketPreviousClose': {'raw': 105.22, 'fmt': '105.22'}, 'fiftyTwoWeekHighChange': {'raw': -41.502502, 'fmt': '-41.50'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 19.210007, 'fmt': '19.21'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 102.21, 'fmt': '102.21'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 102.66, 'fmt': '102.66'}, 'regularMarketVolume': {'raw': 9848287, 'fmt': '9.848M', 'longFmt': '9,848,287'}, 'isLoading': False, 'score': 0.290421, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1092922200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1311830573056, 'fmt': '1.312T', 'longFmt': '1,311,830,573,056'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'GOOG', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.23019782, 'fmt': '23.02%'}, 'regularMarketDayRange': {'raw': '102.21 - 104.69', 'fmt': '102.21 - 104.69'}, 'messageBoardId': 'finmb_29096', 'fiftyTwoWeekHigh': {'raw': 144.1625, 'fmt': '144.16'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.28788695, 'fmt': '-28.79%'}, 'uuid': 'ee8cce8c-2475-31c0-8436-ecdf889cbfbd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 83.45, 'fmt': '83.45'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -2.432995, 'fmt': '-2.43%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 186.53, 'fmt': '186.53'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699798, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '88.09 - 238.3', 'fmt': '88.09 - 238.30'}, 'sharesOutstanding': {'raw': 2255320064, 'fmt': '2.255B', 'longFmt': '2,255,320,064'}, 'regularMarketDayHigh': {'raw': 190.7, 'fmt': '190.70'}, 'shortName': 'Meta Platforms, Inc.', 'longName': 'Meta Platforms, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 1.7200012, 'fmt': '1.72'}, 'regularMarketPreviousClose': {'raw': 186.53, 'fmt': '186.53'}, 'fiftyTwoWeekHighChange': {'raw': -50.050003, 'fmt': '-50.05'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 100.16, 'fmt': '100.16'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 185.8, 'fmt': '185.80'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 188.25, 'fmt': '188.25'}, 'regularMarketVolume': {'raw': 17715095, 'fmt': '17.715M', 'longFmt': '17,715,095'}, 'isLoading': False, 'score': 0.290181, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1337347800000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 493629177856, 'fmt': '493.629B', 'longFmt': '493,629,177,856'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'META', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 1.137019, 'fmt': '113.70%'}, 'regularMarketDayRange': {'raw': '185.8 - 190.7', 'fmt': '185.80 - 190.70'}, 'messageBoardId': 'finmb_20765463', 'fiftyTwoWeekHigh': {'raw': 238.3, 'fmt': '238.30'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.21002938, 'fmt': '-21.00%'}, 'uuid': 'e59f1c4f-b1aa-3d70-a8c3-eb59ff3e461b', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 88.09, 'fmt': '88.09'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.92210436, 'fmt': '0.92%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 363.642, 'fmt': '363.64'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699796, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '162.71 - 412.98', 'fmt': '162.71 - 412.98'}, 'sharesOutstanding': {'raw': 445347008, 'fmt': '445.347M', 'longFmt': '445,347,008'}, 'regularMarketDayHigh': {'raw': 368.45, 'fmt': '368.45'}, 'shortName': 'Netflix, Inc.', 'longName': 'Netflix, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.81958, 'fmt': '-2.82'}, 'regularMarketPreviousClose': {'raw': 365.9, 'fmt': '365.90'}, 'fiftyTwoWeekHighChange': {'raw': -49.899597, 'fmt': '-49.90'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 200.3704, 'fmt': '200.37'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 360.7, 'fmt': '360.70'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 363.0804, 'fmt': '363.08'}, 'regularMarketVolume': {'raw': 1894217, 'fmt': '1.894M', 'longFmt': '1,894,217'}, 'isLoading': False, 'score': 0.219644, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1022160600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 161696776192, 'fmt': '161.697B', 'longFmt': '161,696,776,192'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'NFLX', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 1.2314572, 'fmt': '123.15%'}, 'regularMarketDayRange': {'raw': '360.7 - 368.45', 'fmt': '360.70 - 368.45'}, 'messageBoardId': 'finmb_32012', 'fiftyTwoWeekHigh': {'raw': 412.98, 'fmt': '412.98'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.120828114, 'fmt': '-12.08%'}, 'uuid': '1a1cddac-4d41-374d-b202-739314177b67', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 162.71, 'fmt': '162.71'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.7705876, 'fmt': '-0.77%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}]}, 'recommendedSimilarSymbols': {'AAPL': [{'0': 'S', '1': 'O', '2': 'N', '3': 'Y', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 90.86, 'fmt': '90.86'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675699786, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '61.72 - 111.98', 'fmt': '61.72 - 111.98'}, 'sharesOutstanding': {'raw': 1234690048, 'fmt': '1.235B', 'longFmt': '1,234,690,048'}, 'regularMarketDayHigh': {'raw': 90.84, 'fmt': '90.84'}, 'shortName': 'Sony Group Corporation', 'longName': 'Sony Group Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -3.3899994, 'fmt': '-3.39'}, 'regularMarketPreviousClose': {'raw': 93.13, 'fmt': '93.13'}, 'fiftyTwoWeekHighChange': {'raw': -22.240005, 'fmt': '-22.24'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 28.019997, 'fmt': '28.02'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 89.6211, 'fmt': '89.62'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 89.74, 'fmt': '89.74'}, 'regularMarketVolume': {'raw': 236011, 'fmt': '236,011', 'longFmt': '236,011'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 99153000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 110801084416, 'fmt': '110.801B', 'longFmt': '110,801,084,416'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SONY', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.4539857, 'fmt': '45.40%'}, 'regularMarketDayRange': {'raw': '89.6211 - 90.84', 'fmt': '89.62 - 90.84'}, 'messageBoardId': 'finmb_23021', 'fiftyTwoWeekHigh': {'raw': 111.98, 'fmt': '111.98'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.19860694, 'fmt': '-19.86%'}, 'uuid': '51ec1656-6a66-39d0-8159-ed49cf2f2289', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 61.72, 'fmt': '61.72'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.6400726, 'fmt': '-3.64%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, {'0': 'G', '1': 'P', '2': 'R', '3': 'O', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.64, 'fmt': '5.64'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699789, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.5 - 9.42', 'fmt': '4.50 - 9.42'}, 'sharesOutstanding': {'raw': 129668000, 'fmt': '129.668M', 'longFmt': '129,668,000'}, 'regularMarketDayHigh': {'raw': 5.76, 'fmt': '5.76'}, 'shortName': 'GoPro, Inc.', 'longName': 'GoPro, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.19000006, 'fmt': '-0.19'}, 'regularMarketPreviousClose': {'raw': 5.69, 'fmt': '5.69'}, 'fiftyTwoWeekHighChange': {'raw': -3.92, 'fmt': '-3.92'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1, 'fmt': '1.00'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.475, 'fmt': '5.47'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.5, 'fmt': '5.50'}, 'regularMarketVolume': {'raw': 1031197, 'fmt': '1.031M', 'longFmt': '1,031,197'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1403789400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 857598528, 'fmt': '857.599M', 'longFmt': '857,598,528'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'GPRO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.22222222, 'fmt': '22.22%'}, 'regularMarketDayRange': {'raw': '5.475 - 5.76', 'fmt': '5.47 - 5.76'}, 'messageBoardId': 'finmb_113665065', 'fiftyTwoWeekHigh': {'raw': 9.42, 'fmt': '9.42'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.41613588, 'fmt': '-41.61%'}, 'uuid': 'd831d8ea-3a6d-36de-af60-081896d375cd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.5, 'fmt': '4.50'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.3391926, 'fmt': '-3.34%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'0': 'S', '1': 'O', '2': 'N', '3': 'O', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 18.66, 'fmt': '18.66'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699680, 'fmt': '11:08AM EST'}, 'fiftyTwoWeekRange': {'raw': '13.65 - 31.22', 'fmt': '13.65 - 31.22'}, 'sharesOutstanding': {'raw': 127345000, 'fmt': '127.345M', 'longFmt': '127,345,000'}, 'regularMarketDayHigh': {'raw': 18.66, 'fmt': '18.66'}, 'shortName': 'Sonos, Inc.', 'longName': 'Sonos, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.7350006, 'fmt': '-0.74'}, 'regularMarketPreviousClose': {'raw': 18.91, 'fmt': '18.91'}, 'fiftyTwoWeekHighChange': {'raw': -13.045, 'fmt': '-13.05'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 4.5249996, 'fmt': '4.52'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 18.14, 'fmt': '18.14'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 18.175, 'fmt': '18.17'}, 'regularMarketVolume': {'raw': 510481, 'fmt': '510,481', 'longFmt': '510,481'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1533216600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 2314495232, 'fmt': '2.314B', 'longFmt': '2,314,495,232'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SONO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.3315018, 'fmt': '33.15%'}, 'regularMarketDayRange': {'raw': '18.14 - 18.66', 'fmt': '18.14 - 18.66'}, 'messageBoardId': 'finmb_10654809', 'fiftyTwoWeekHigh': {'raw': 31.22, 'fmt': '31.22'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.41784114, 'fmt': '-41.78%'}, 'uuid': '98c419db-3a58-3f86-8eb4-a664481f7d12', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 13.65, 'fmt': '13.65'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.8868356, 'fmt': '-3.89%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'0': 'V', '1': 'U', '2': 'Z', '3': 'I', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.66, 'fmt': '5.66'}, 'exchange': 'NCM', 'regularMarketTime': {'raw': 1675699794, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '3.27 - 10.49', 'fmt': '3.27 - 10.49'}, 'sharesOutstanding': {'raw': 63739600, 'fmt': '63.74M', 'longFmt': '63,739,600'}, 'regularMarketDayHigh': {'raw': 5.8, 'fmt': '5.80'}, 'shortName': 'Vuzix Corporation', 'longName': 'Vuzix Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.17000008, 'fmt': '-0.17'}, 'regularMarketPreviousClose': {'raw': 5.75, 'fmt': '5.75'}, 'fiftyTwoWeekHighChange': {'raw': -4.91, 'fmt': '-4.91'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.31, 'fmt': '2.31'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.49, 'fmt': '5.49'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.58, 'fmt': '5.58'}, 'regularMarketVolume': {'raw': 367918, 'fmt': '367,918', 'longFmt': '367,918'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1270474200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 355666976, 'fmt': '355.667M', 'longFmt': '355,666,976'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'VUZI', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.70642203, 'fmt': '70.64%'}, 'regularMarketDayRange': {'raw': '5.49 - 5.8', 'fmt': '5.49 - 5.80'}, 'messageBoardId': 'finmb_13610016', 'fiftyTwoWeekHigh': {'raw': 10.49, 'fmt': '10.49'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.4680648, 'fmt': '-46.81%'}, 'uuid': 'b42c8863-c6d0-341b-9d51-442783839350', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 3.27, 'fmt': '3.27'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -2.956523, 'fmt': '-2.96%'}, 'fullExchangeName': 'NasdaqCM', 'tradeable': False}, {'0': 'P', '1': 'C', '2': 'R', '3': 'F', '4': 'Y', 'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 8.62, 'fmt': '8.62'}, 'exchange': 'PNK', 'regularMarketTime': {'raw': 1675698716, 'fmt': '10:51AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.66 - 10.89', 'fmt': '6.66 - 10.89'}, 'sharesOutstanding': {'raw': 2334089984, 'fmt': '2.334B', 'longFmt': '2,334,089,984'}, 'regularMarketDayHigh': {'raw': 8.745, 'fmt': '8.74'}, 'shortName': 'PANASONIC HOLDINGS CORP ADR-EAC', 'longName': 'Panasonic Holdings Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.08000088, 'fmt': '-0.08'}, 'regularMarketPreviousClose': {'raw': 8.77, 'fmt': '8.77'}, 'fiftyTwoWeekHighChange': {'raw': -2.2000008, 'fmt': '-2.20'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.0299997, 'fmt': '2.03'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketDayLow': {'raw': 8.62, 'fmt': '8.62'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 8.69, 'fmt': '8.69'}, 'regularMarketVolume': {'raw': 47805, 'fmt': '47,805', 'longFmt': '47,805'}, 'isLoading': False, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 322151400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 20283240448, 'fmt': '20.283B', 'longFmt': '20,283,240,448'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'PCRFY', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.30480477, 'fmt': '30.48%'}, 'regularMarketDayRange': {'raw': '8.62 - 8.745', 'fmt': '8.62 - 8.74'}, 'messageBoardId': 'finmb_320433', 'fiftyTwoWeekHigh': {'raw': 10.89, 'fmt': '10.89'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.20202027, 'fmt': '-20.20%'}, 'uuid': '01e8db59-6c12-3ae1-a223-b71412148081', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.66, 'fmt': '6.66'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.91221064, 'fmt': '-0.91%'}, 'fullExchangeName': 'Other OTC', 'tradeable': False}, {'0': 'H', '1': 'E', '2': 'A', '3': 'R', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 9.29, 'fmt': '9.29'}, 'exchange': 'NGM', 'regularMarketTime': {'raw': 1675699651, 'fmt': '11:07AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.22 - 25.33', 'fmt': '6.22 - 25.33'}, 'sharesOutstanding': {'raw': 16557000, 'fmt': '16.557M', 'longFmt': '16,557,000'}, 'regularMarketDayHigh': {'raw': 9.29, 'fmt': '9.29'}, 'shortName': 'Turtle Beach Corporation', 'longName': 'Turtle Beach Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.28999996, 'fmt': '-0.29'}, 'regularMarketPreviousClose': {'raw': 9.33, 'fmt': '9.33'}, 'fiftyTwoWeekHighChange': {'raw': -16.29, 'fmt': '-16.29'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.8200002, 'fmt': '2.82'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 8.94, 'fmt': '8.94'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 9.04, 'fmt': '9.04'}, 'regularMarketVolume': {'raw': 23439, 'fmt': '23,439', 'longFmt': '23,439'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1289831400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 149675280, 'fmt': '149.675M', 'longFmt': '149,675,280'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'HEAR', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.45337626, 'fmt': '45.34%'}, 'regularMarketDayRange': {'raw': '8.94 - 9.29', 'fmt': '8.94 - 9.29'}, 'messageBoardId': 'finmb_851282', 'fiftyTwoWeekHigh': {'raw': 25.33, 'fmt': '25.33'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.643111, 'fmt': '-64.31%'}, 'uuid': '58194bdb-92f1-3b95-b21e-5b66d5d67f2f', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.22, 'fmt': '6.22'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.1082525, 'fmt': '-3.11%'}, 'fullExchangeName': 'NasdaqGM', 'tradeable': False}, {'0': 'K', '1': 'O', '2': 'S', '3': 'S', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.82, 'fmt': '5.82'}, 'exchange': 'NCM', 'regularMarketTime': {'raw': 1675697530, 'fmt': '10:32AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.44 - 12.86', 'fmt': '4.44 - 12.86'}, 'sharesOutstanding': {'raw': 9189800, 'fmt': '9.19M', 'longFmt': '9,189,800'}, 'regularMarketDayHigh': {'raw': 5.88, 'fmt': '5.88'}, 'shortName': 'Koss Corporation', 'longName': 'Koss Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0.01999998, 'fmt': '0.02'}, 'regularMarketPreviousClose': {'raw': 5.8, 'fmt': '5.80'}, 'fiftyTwoWeekHighChange': {'raw': -7.0399995, 'fmt': '-7.04'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1.3800001, 'fmt': '1.38'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.8, 'fmt': '5.80'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.82, 'fmt': '5.82'}, 'regularMarketVolume': {'raw': 2746, 'fmt': '2,746', 'longFmt': '2,746'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 322151400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 53484636, 'fmt': '53.485M', 'longFmt': '53,484,636'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'KOSS', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.31081083, 'fmt': '31.08%'}, 'regularMarketDayRange': {'raw': '5.8 - 5.88', 'fmt': '5.80 - 5.88'}, 'messageBoardId': 'finmb_283448', 'fiftyTwoWeekHigh': {'raw': 12.86, 'fmt': '12.86'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.54743385, 'fmt': '-54.74%'}, 'uuid': 'ad708ee0-5672-30f5-85f6-bbbcb3e0eccd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.44, 'fmt': '4.44'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.34482723, 'fmt': '0.34%'}, 'fullExchangeName': 'NasdaqCM', 'tradeable': False}, {'0': 'S', '1': 'S', '2': 'N', '3': 'L', '4': 'F', 'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 40.5999, 'fmt': '40.60'}, 'exchange': 'PNK', 'regularMarketTime': {'raw': 1664306331, 'fmt': '3:18PM EDT'}, 'fiftyTwoWeekRange': {'raw': '40.5999 - 57.75', 'fmt': '40.60 - 57.75'}, 'sharesOutstanding': {'raw': 5969780224, 'fmt': '5.97B', 'longFmt': '5,969,780,224'}, 'regularMarketDayHigh': {'raw': 40.5999, 'fmt': '40.60'}, 'shortName': 'SAMSUNG ELECTRONICS CO', 'longName': 'Samsung Electronics Co., Ltd.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0, 'fmt': '0.00'}, 'regularMarketPreviousClose': {'raw': 40.5999, 'fmt': '40.60'}, 'fiftyTwoWeekHighChange': {'raw': -17.1501, 'fmt': '-17.15'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 0, 'fmt': '0.00'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketDayLow': {'raw': 40.5999, 'fmt': '40.60'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 40.5999, 'fmt': '40.60'}, 'regularMarketVolume': {'raw': 200, 'fmt': '200', 'longFmt': '200'}, 'isLoading': False, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 997104600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 301846429696, 'fmt': '301.846B', 'longFmt': '301,846,429,696'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SSNLF', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0, 'fmt': '0.00%'}, 'regularMarketDayRange': {'raw': '40.5999 - 40.5999', 'fmt': '40.60 - 40.60'}, 'messageBoardId': 'finmb_91868', 'fiftyTwoWeekHigh': {'raw': 57.75, 'fmt': '57.75'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.29697144, 'fmt': '-29.70%'}, 'uuid': '5f5ae02b-3a86-367d-b20b-055520cea9ae', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 40.5999, 'fmt': '40.60'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0, 'fmt': '0.00%'}, 'fullExchangeName': 'Other OTC', 'tradeable': False}, {'0': 'V', '1': 'Z', '2': 'I', '3': 'O', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 9.44, 'fmt': '9.44'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675699688, 'fmt': '11:08AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.47 - 15.42', 'fmt': '6.47 - 15.42'}, 'sharesOutstanding': {'raw': 117636000, 'fmt': '117.636M', 'longFmt': '117,636,000'}, 'regularMarketDayHigh': {'raw': 9.505, 'fmt': '9.51'}, 'shortName': 'VIZIO Holding Corp.', 'longName': 'VIZIO Holding Corp.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.34999943, 'fmt': '-0.35'}, 'regularMarketPreviousClose': {'raw': 9.57, 'fmt': '9.57'}, 'fiftyTwoWeekHighChange': {'raw': -6.2, 'fmt': '-6.20'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.7500005, 'fmt': '2.75'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 9.13, 'fmt': '9.13'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 9.22, 'fmt': '9.22'}, 'regularMarketVolume': {'raw': 45393, 'fmt': '45,393', 'longFmt': '45,393'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1616765400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1792829056, 'fmt': '1.793B', 'longFmt': '1,792,829,056'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'VZIO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.42503873, 'fmt': '42.50%'}, 'regularMarketDayRange': {'raw': '9.13 - 9.505', 'fmt': '9.13 - 9.51'}, 'messageBoardId': 'finmb_27650657', 'fiftyTwoWeekHigh': {'raw': 15.42, 'fmt': '15.42'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.4020752, 'fmt': '-40.21%'}, 'uuid': '98dc8f95-157e-3c62-b8f9-ea5c671822cd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.47, 'fmt': '6.47'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.6572564, 'fmt': '-3.66%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, {'0': 'L', '1': 'P', '2': 'L', 'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 5.52, 'fmt': '5.52'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675698891, 'fmt': '10:54AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.08 - 8.53', 'fmt': '4.08 - 8.53'}, 'sharesOutstanding': {'raw': 715630976, 'fmt': '715.631M', 'longFmt': '715,630,976'}, 'regularMarketDayHigh': {'raw': 5.52, 'fmt': '5.52'}, 'shortName': 'LG Display Co, Ltd AMERICAN DEP', 'longName': 'LG Display Co., Ltd.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.1949997, 'fmt': '-0.19'}, 'regularMarketPreviousClose': {'raw': 5.68, 'fmt': '5.68'}, 'fiftyTwoWeekHighChange': {'raw': -3.0449996, 'fmt': '-3.04'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1.4050002, 'fmt': '1.41'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.46, 'fmt': '5.46'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.485, 'fmt': '5.49'}, 'regularMarketVolume': {'raw': 76349, 'fmt': '76,349', 'longFmt': '76,349'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1090503000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 3925235968, 'fmt': '3.925B', 'longFmt': '3,925,235,968'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'LPL', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.3443628, 'fmt': '34.44%'}, 'regularMarketDayRange': {'raw': '5.46 - 5.52', 'fmt': '5.46 - 5.52'}, 'messageBoardId': 'finmb_5471044', 'fiftyTwoWeekHigh': {'raw': 8.53, 'fmt': '8.53'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.35697535, 'fmt': '-35.70%'}, 'uuid': '78df0a6f-207d-3a77-adfe-657f86e6d5c9', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.08, 'fmt': '4.08'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.4330935, 'fmt': '-3.43%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}]}, 'errorList': []}, 'UHAccountSwitchStore': {'site': 'finance', 'crumb': 'Tu0O03hobfX', 'sendRequest': False, 'isEnabled': True}, 'MobileHeaderStore': {'navTitle': 'finance', 'useNavTitle': False}}}} \n", "\n", "__dir__ \t \n", "\n", "__doc__ \t \n", " Arguments\n", " ----------\n", " tickers: str or list\n", " Ticker or listed collection of tickers\n", " Keyword Arguments\n", " -----------------\n", " concurrent: bool, default False, optional\n", " Defines whether the requests are made synchronously or asynchronously.\n", " country: str, default 'US', optional\n", " This allows you to alter the region, lang, corsDomain parameter sent with each request based on selected country\n", " max_workers: int, default 8, optional\n", " Defines the number of workers used to make concurrent requests.\n", " Only relevant if concurrent=True\n", " timeout: int, default 30, optional\n", " Defines how long a request will stay open.\n", " proxies: str or list, default None, optional\n", " Defines any proxies to use during this instantiation.\n", " \n", "\n", "__eq__ \t \n", "\n", "__format__ \t \n", "\n", "__ge__ \t \n", "\n", "__getattribute__ \t \n", "\n", "__getstate__ \t \n", "\n", "__gt__ \t \n", "\n", "__hash__ \t \n", "\n", "__init__ \t > \n", "\n", "__init_subclass__ \t \n", "\n", "__le__ \t \n", "\n", "__lt__ \t \n", "\n", "__module__ \t yahoofinancials.yf \n", "\n", "__ne__ \t \n", "\n", "__new__ \t \n", "\n", "__reduce__ \t \n", "\n", "__reduce_ex__ \t \n", "\n", "__repr__ \t \n", "\n", "__setattr__ \t \n", "\n", "__sizeof__ \t \n", "\n", "__str__ \t \n", "\n", "__subclasshook__ \t \n", "\n", "__weakref__ \t None \n", "\n", "_build_api_url \t > \n", "\n", "_build_historical_url \t > \n", "\n", "_cache \t {'https://finance.yahoo.com/quote/AAPL/financials?p=AAPL&lang=en-US®ion=US': {'PageStore': {'currentPageName': 'quote', 'currentEvent': {'eventName': 'NEW_PAGE_SUCCESS'}, 'currentRenderTargetId': 'default', 'pagesConfigRaw': {'base': {'quote': {'layout': {'bundleName': 'yahoodotcom-layout.TwoColumnLayout', 'name': 'TwoColumnLayout', 'config': {'enableHeaderCollapse': True, 'additionalBodyWrapperClasses': 'Bgc($layoutBgColor)!', 'contentWrapperClasses': 'Bgc($lv2BgColor)!', 'Header': {'isFixed': True, 'uhContainerClasses': 'Bgi($uhGrayGradient) D(n)--print', 'navContainerClasses': 'Bgi($navrailGrayGradient) Bxsh($navrailShadow) Pos(r) hasScrolled_Bxsh(headerShadow) Panel-open_Bxsh(headerShadow)', 'navTransitionClasses': 'HideNavrail_Translate3d(0,-46px,0) Panel-open_Translate3d(0,-46px,0)', 'secondaryNavContainerClasses': 'hasScrolled_Bdbw(0px) Bgc($lv3BgColor) Bxsh($navrailShadow) D(n)--print', 'height': 135}, 'fetchNewAttribution': True, 'Col1': {'containerClasses': 'Z(1)'}}, 'meta': {'property': {'twitter:site': '@YahooFinance'}}}, 'meta': {'property': {'twitter:site': '@YahooFinance', 'fb:pages': '458584288257241', 'og:image': 'https://s.yimg.com/cv/apiv2/social/images/yahoo_default_logo.png'}}, 'enablePremium': True, 'isHighValueUser': False, 'enableTrading': True, 'cryptoUser': False, 'videoOverrides': {'enableOathPlayer': True}, 'regions': {'UH': [{'bundleName': 'tdv2-wafer-header.finance', 'name': 'HeaderDesktop', 'perfLabel': 'WaferHeaderDesktop', 'critical': True, 'config': {'logo': {'brandName': 'YAHOO_FINANCE', 'enableHeading': False, 'link': 'https://finance.yahoo.com', 'imageUri': 'https://s.yimg.com/rz/p/yahoo_finance_en-US_s_f_pw_351X40_finance_2x.png', 'theme': {'heading': 'Fz(0) Pstart(15px) Pos(a) Miw(190px)', 'link': 'Bgp(0) Bgr(nr) Bgz(702px) D(b) H(35px) W(92px) Bgz(702px)!--sm1024 Cur(p) Mx(a)', 'linkLabel': 'Hidden'}}, 'mailMenu': {'i13n': {'sec': 'uh', 'subsec': 'mail', 't1': None, 't2': None, 'slk': 'mail', 'elm': 'btn', 'itc': '0'}, 'mailLink': '', 'signInUrl': 'https://login.yahoo.com/config/login?.src=finance&.intl=us&.lang=en-US&.done=https://finance.yahoo.com&activity=uh-mail', 'xhrPathPrefix': '/_finance_doubledown', 'theme': {'button': 'C(#4d00ae) D(b) H(22px) Lh(22px) Py(7px) Pos(r) Td(n)', 'buttonLabel': 'D(ib) Fz(14px) Fw(b) Lh(24px) Pstart(38px)', 'icon': 'Pos(a) T(4px)', 'loadingImage': 'D(b) M(a) P(20px)', 'menuElement': 'D(ib) H(46px) Mstart(14px) Mt(7px) O(n) Va(t)', 'menuPanel': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) P(0) Pos(a) End(0) Trs($fastMenuTransition) V(h) W(382px) active_Mah(478px) active_Op(1) active_V(v)', 'menuPanelSignIn': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) P(0) Pos(a) End(0) Trs($menuTransition) V(h) W(382px) active_Mah(614px) active_Op(1) active_V(v)', 'menuPanelSignedOut': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Bxz(bb) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) Px(24px) Py(20px) Pos(a) End(0) Ta(c) Trs($menuTransition) V(h) W(382px) active_Mah(60px) active_Op(1) active_V(v)', 'menuPanelPromoSignedOut': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Bxz(bb) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) Px(24px) Py(20px) Pos(a) End(0) Ta(c) Trs($menuTransition) V(h) W(382px) active_Mah(172px) active_Op(1) active_V(v)', 'signInLink': 'C(#0078ff) Fw(b) Td(n)', 'promoContainer': 'D(f) Ta(start) Ai(c) Pt(20px) Pb(10px) Pos(r)', 'promoImg': 'W(53px) H(59px) Mend(14px)', 'promoHeader': 'Fz(13px) Fw(b) Mb(0) C($c-fuji-inkwell)', 'promoContent': 'Fz(13px) C(#59636d) Mt(5px) Mb(5px)', 'promoLink': 'Fz(13px) C($c-fuji-smurfette) Fw(b) Td(n)', '_iconColor': '#6001d2', '_iconHeight': '30', '_iconWidth': '30'}}, 'mrt': {'cache': False, 'static': True, 'enableStaticI13nTracking': False}, 'navigationBar': {'enabled': False}, 'notificationMenu': {'enabled': True, 'badge': {'data-wf-state-text': '[state.financeNotification.unreadCount]', 'data-wf-toggle-class': 'stateChange:toggle:D(n)', 'data-wf-state-key': '[state.financeNotification.hideBadge]'}, 'menuPanel': {'data-wf-trigger': 'onLoad', 'data-wf-url': '/_finance_doubledown/remote?m_id=react-finance.rmp&ctrl=NotificationAlert&includeAssets=0&m_mode=json&config=%7B%22mrt%22%3A%7B%22static%22%3Atrue%7D%7D'}, 'theme': {'button': 'Bgc(t) Bd(0) Cur(p) P(10px) H(36px) Pos(r) W(30px)', 'buttonLabel': 'D(ib) Fz(1orpx) Fw(b) Lh(37px) Mstart(6px) Va(t)', 'countWrapper': 'Pos(r) Z(1)', 'count': 'Bg($fujiGradient) Bgc($c-fuji-red-2-b) Bdrs(24px) C(#fff) D(n) Fz(14px) Fw(b) H(17px) Op(.9) Pb(4px) Pt(3px) Pos(a) Start(16px) Ta(c) T(-8px) W(24px) Ff($yahooSansFinanceFont)! wafer-text wafer-toggle', 'icon': 'Pos(a) Start(2px) T(4px)', 'loadingImage': 'D(b) M(a) P(20px)', 'menuElement': 'D(ib) Mx(8px) Va(t) Mt(7px) O(n):f', 'menuPanel': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) Ov(a) P(0) Pos(a) End(0) Trs($fastMenuTransition) V(h) W(382px) active_Mah(478px) active_Op(1) active_V(v) wafer-fetch', 'messageList': 'Fz(13px) List(n) My(0) P(0) W(100%)', 'messageLink': 'C(#000) D(b) Px(24px) Py(16px) Pos(r) Td(n) Bgc(#c2deff):h', 'newMessageIndicator': 'Bgc(#0078ff) Bdrs(10px) H(6px) Pos(a) Start(9px) T(21px) W(6px)', 'messageTimestamp': 'C(#b2b2b2) Fl(end) Fz(12px)', 'messageSender': 'Ell Fw(b)', 'messageSenderRead': 'Ell Fw(n)', 'messageSubject': 'Cl(b) Ell Pt(4px)', 'panelFooterWrapper': 'Bgc(#f9f9f9) Bdrs(6px) Bdtc(#f2f2f2) Bdts(s) Bdtw(1px) Px(24px) Py(20px)', 'composeLink': 'C(#000) Fl(end) Td(n) C(#0078ff):h', 'composeLinkLabel': 'Va(t)', 'inboxLink': 'C(#000) Ta(start) Td(n) C(#0078ff):h', 'errorMessage': 'Px(20px) Py(20px) Ta(c)', '_iconColor': '#6001d2', '_iconHeight': '26'}}, 'profileMenu': {'accountSwitch': {'enabled': True, 'profileLink': 'https://login.yahoo.com/d?.intl=us&.lang=en-US&.src=finance&login=${ALIAS}&as=1', 'i13n': {'sec': 'uh', 'slk': 'acctswitch', 'subsec': 'profile', 'itc': '0'}}, 'i13nSignInBtn': {'sec': 'uh', 'slk': 'acct-info', 'subsec': 'profile', 'itc': '0'}, 'items': [{'id': 'profile-settings-link', 'i13n': {'sec': 'uh', 'slk': 'acct-info', 'subsec': 'profile', 'itc': '0'}, 'label': 'ACCOUNT_INFO', 'link': 'https://login.yahoo.com/account/personalinfo/?.intl=us&.lang=en-US&.src=finance&.done={PAGE_URL}&activity=uh-acctinfo&pspid={PAGE_SPACEID}', 'theme': {'accordionMenu': 'Bgc(t) Bdw(0) C($c-fuji-grey-l)! D(b) Ell Fz(14px) P(0) Pos(r) O(n) Td(n) W(100%) accordionBtn wafer-toggle', 'icon': 'H(45px) Fl(start) Mstart(2px) Ta(c) panelIcon', 'listItem': ' Cl(b) Cur(p) List(n) Pstart(42px) Fz(13px) Pb(5px) Pt(25px) Mt(-40px)', 'listItemButton': 'Bgc(t) Bdw(0) C($c-fuji-grey-l) Cur(p) D(b) Ell Fz(14px) P(0) W(100%)', 'listItemLink': 'C($c-fuji-grey-l) D(b) Ell Td(n) C($c-fuji-blue-1-c):h', 'listItemLabel': 'Fl(start) Pstart(30px) My(15px) panelIcon+Pstart(10px) panelIcon+Mb(0)', '_iconColor': '#6001d2', '_iconHeight': '18'}, 'type': 'SimplePanelItem'}, {'type': 'AccountSwitch'}, {'icon': 'PlusIcon', 'i13n': {'sec': 'uh', 'slk': 'add-acct', 'subsec': 'profile', 'itc': '0'}, 'id': 'profile-accounts-link', 'label': 'ADD_MANAGE_ACCOUNTS', 'link': 'https://login.yahoo.com/manage_account?.intl=us&.lang=en-US&.src=finance&.done={PAGE_URL}&activity=uh-addacct&pspid={PAGE_SPACEID}', 'type': 'SimplePanelItem'}, {'id': 'profile-signout-link', 'icon': 'LogOut', 'i13n': {'sec': 'uh', 'slk': 'usersigno', 'subsec': 'profile', 'itc': '0'}, 'label': 'SIGN_OUT_ALL', 'link': 'https://login.yahoo.com/config/login/?.intl=us&.lang=en-US&.src=finance&logout_all=1&.direct=1&.done=https://www.yahoo.com', 'signedInOnly': True, 'type': 'SimplePanelItem'}], 'signInUrl': 'https://login.yahoo.com/config/login?.src=finance&.intl=us&.lang=en-US&.done={PAGE_URL}&activity=uh-signin', 'simpleSignOut': {'enabled': False}, 'theme': {'accountSwitchItem': 'Bdtc($c-fuji-grey-c) Bdts(s) Bdtw(1px) Cl(b) Cur(p) Bgc(#c2deff):h', 'accountSwitchLink': 'C($c-fuji-grey-l)! D(b) Ell Mstart(18px) Mih(50px) Pb(5px) Pt(15px) Td(n)', 'alias': 'C($c-fuji-grey-8) Ell Fz(13px) Mend(40px) Mstart(54px)', 'downCaret': 'D(b) Fl(end) H(50px) Mend(40px) accordionOpen_D(n)!', 'firstName': 'Ell Fz(15px) Lh(1.4) Mend(40px) Mstart(54px)', 'icon': '', 'listItem': 'Bdtc($c-fuji-grey-c) Bdts(s) Bdtw(1px) Cl(b) Cur(p) Bgc(#c2deff):h', 'listItemLabel': 'Fl(start) Mstart(10px) Mt(15px)', 'menuElement': 'D(ib) H(46px) Mx(14px) O(n) Va(t)', 'menuPanel': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Fz(14px) List(n) Mt(10px) Mih(200px) Op(0) P(0) Pos(a) End(0) Trs($fastMenuTransition) V(h) W(382px) active_Op(1) active_V(v)', 'notifAccordionList': 'D(n) P(0) header-notification-panel accordionOpen_D(b)!', 'profileText': 'D(ib) H(30px) Mstart(55px) Pt(10px) Ta(c)', 'signInButton': 'Bgc(#fff) Bdc($c-fuji-grape-jelly) Bdrs(3px) Bds(s) Bdw(2px) C(#4d00ae) D(ib) Ell Fz(13px) Fw(b) H(19px) Lh(19px) Mend(5px) Mt(10px) Miw(66px) Px(6px) Py(2px) Ta(c) Td(n) active_Bgc($c-fuji-grape-jelly) active_C(#fff)', 'signInLink': 'C($c-fuji-grey-l)! D(b) Ell Mstart(18px) Mih(50px) Pb(0px) Pt(20px) Td(n)', 'signInText': 'Fz(18px) Mend(40px) Mstart(54px) Pt(10px)', 'signOutLink': 'C($c-fuji-grey-l) D(b) Ell My(15px) Mstart(45px) Td(n)', 'simpleSignOutLink': 'Miw(a)', 'upCaret': 'D(n) Fl(end) H(50px) Mend(40px) accordionOpen_D(b)!', 'userAvatar': 'Bgz(cv) Bgr(nr) Bdrs(45%) H(40px) Pos(a) W(40px)', 'button': 'Bgc(t) Bd(0) Cur(p) H(36px) Mend(5px) Mt(5px) Miw(28px) P(0) Pos(r) Z(1)', 'buttonFirstName': 'C(#4d00ae) Ell Fz(14px) Fw(b) Lh(36px) Mstart(42px) Maw(100px)', 'buttonUserAvatar': 'Bgr(nr) Bgz(34px) Bdrs(45%) H(34px) Pos(a) Start(1px) T(2px) W(34px)', 'signInIcon': 'Pos(a)', 'signOutIcon': 'Pos(a) Start(1px) T(4px)', '_iconColor': '#4d00ae', '_iconHeight': '28', '_signInIconColor': '#C0C0C0', '_signInIconDimension': '40'}}, 'skipLinks': {'enabled': True, 'items': [{'label': 'SKIP_TO_NAVIGATION', 'link': 'Nav-0-DesktopNav'}, {'label': 'SKIP_TO_MAIN_CONTENT', 'link': 'market-summary'}, {'label': 'SKIP_TO_RELATED_CONTENT', 'link': 'Aside'}]}, 'topBar': {'enabled': True, 'flexHeight': True, 'i13n': {'sec': 'uh', 't1': None, 't2': None, 't3': None}}, 'webNotifications': {'enabled': False}, 'searchAssist': {'enabled': False}, 'searchBox': {'addFormAttrs': {'data-finsrch': 'researchReports'}, 'i13nForm': {'tar': 'finance.yahoo.com'}, 'i13nSubmitBtn': {'tar': 'finance.yahoo.com'}, 'inputId': 'yfin-usr-qry', 'formAction': '/quote/', 'placeholder': 'UH_SEARCH_WEB', 'searchQueryParam': 'yfin-usr-qry', 'searchExtraQueryParams': [{'name': 'fr', 'value': 'uh3_finance_vert'}, {'name': 'fr2', 'value': 'p:finvsrp,m:sb'}], 'theme': {'form': 'D(tb) H(35px) Pos(r) Va(m) W(100%) finsrch-enable-perf', 'innerWrapper': 'D(tb) W(100%)', 'input': 'Bgc(t) Bd Bdrsbstart(2px)! Bdc(#b0b0b0) Bdendw(0) Bdrs(0) Bdrststart(2px)! Bxsh(n) Bxz(bb) D(b) Fz(15px) H(inh) M(0) O(0) Px(10px) W(100%) Bdc($c-fuji-blue-1-c):f Bdc(#949494):h finsrch-inpt', 'inputLabel': 'Hidden', 'splitLogo': 'Va(m) D(tbc) W(120px)', 'splitLogoLink': 'Mstart(10px) D(ib) H(32px) W(110px) Bgz(221px) Bgr(nr)', 'submitButton': 'Bgc($c-fuji-blue-1-b) Bd(n) Bdrsbend(2px) Bdrstend(2px) D(b) H(100%) M(0) P(0) rapid-noclick-resp W(100%) Bgc($actionBlueHover):h submit-btn finsrch-btn', 'submitButtonWrapper': 'D(tbc) H(100%) Ta(c) Va(t) W(90px)', 'voiceButton': 'Bgc(t) Bd(n) Cur(p) P(0) D(n) O(n)', 'voiceButtonWrapper': 'Pos(a) T(13px) End(92px) Z(2)', 'wrapper': 'H(35px) Mend(396px) Mstart(255px) Maw(647px) Pos(r) Mstart(200px)--sm1024 Va(t)', '_submitIconColor': '#fff'}}, 'theme': {'fixedHeight': 'fixed-space H(127px) modal-open_H(90px) modal-open_Mb($bottomBarHideMargin)', 'flexHeight': 'fixed-space H(85px) modal-open_H(85px) modal-open_Mb($bottomBarHideMargin)', 'innerWrapper': 'Bgc(t) M(a) Maw(1301px) Miw(1000px) Pb(12px) Pt(15px) Pos(r) TranslateZ(0) Z(6)', 'logoWrapper': 'D(tbc) Va(m)', 'menuList': 'End(48px) List(n) Mt(0) Pos(a) T(10px) header-menu', 'profileButtonWrapper': 'D(tbc) Pstart(12px) Va(m)', 'searchButtonWrapper': 'D(tbc) Pstart(14px) Va(m) W(100%)', 'searchScreen': 'Bgc(#fff) D(n) H(100%) Ov(s) Pos(f) Start(0) T(0) W(100%) Z(2) search-open_D(b)', 'wrapper': 'Bgc(t) Bdbc(t) Bdbs(s) Bdbw(1px) D(tb) Pos(f) Tbl(f) W(100%) Z(10) has-scrolled_Bdc($c-fuji-grey-d) Scrolling_Bdc($c-fuji-grey-d) has-scrolled_Bxsh($headerShadow) Scrolling_Bxsh($headerShadow) Bxz(bb) Mx(a) Miw(1007px) Start(0) wafer-rapid-module'}}, 'props': {'key': 'UH-0-HeaderDesktop', 'id': 'UH-0-HeaderDesktop'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'WaferHeaderHelper', 'config': {'inlineFinSearchInit': True, 'mrt': {'static': True, 'enableStaticI13nTracking': False}, 'finSearchConfig': {'researchReportsCount': 2, 'newsCount': 2}}, 'props': {'key': 'UH-1-WaferHeaderHelper', 'id': 'UH-1-WaferHeaderHelper'}, 'isPageComposite': True}], 'Nav': [{'bundleName': 'react-finance', 'name': 'DesktopNav', 'perfLabel': 'NavLite', 'config': {'ui': {'navCache': True, 'remoteAdapter': True, 'makeSticky': False, 'isNavLink': True, 'relativeLinks': True, 'navFont': 'Ff($yahooSansFinanceFont)!', 'headerTitle': 'finance', 'highlightPropertyHome': False, 'dividerClasses': 'H(0)!', 'offsetHack': 'Pt(2px) Bgc(t)!', 'navMainLeftClasses': 'Mend(80px)', 'leftNavClasses': 'Pstart(10px) Mstart(-10px) nr-applet-main-nav-right_Ov(inh)!', 'navTitleClasses': 'Pstart(10px) Mstart(-10px)!', 'linkItemClasses': 'Bgc($linkColor):h W(230px)!', 'subnavLinkClasses': 'Tt(n)! C($primaryColor) C(white)!:h Maw(200px)!', 'darkTheme': False, 'selectColor': 'C($finNavBlueText)! Bdbw(0px) H(42px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'subnavClasses': 'Bgc($lv3BgColor)!', 'hoverColor': 'C($finNavBlueText):h', 'overrideColor': 'C($finNavBlueText)', 'propertyHomeSelectColor': 'Bdbc($linkColor) Bdbs(s)! Bdbw(4px) H(38px)', 'propertyHomeClasses': 'Tt(c)! Bdbc($linkColor):h Bdbs(s):h Bdbw(4px):h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkClasses': 'Tt(n)!', 'navLinkClassesOnHover': 'Bdbc($linkColor)!:h Bdbs(s)!:h Bdbw(4px)!:h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkNonHoverClasses': 'C($topNavLinkGray) Bdbs(n)', 'highlightTriangleColor': 'transparent transparent #fff', 'navMainRightClasses': 'Bdc(t) Bdrs(1.5px) Bdbs(s):h Px(10px)!'}, 'featureSwitches': {'useNavSelectLogic': True, 'disableDivider': True, 'followButtons': False, 'navLogoAlign': False, 'navrailCollapse': False, 'enableHighlightTriangle': True, 'useSubnavTitleSlk': True}, 'i13n': {'itc': 0, 'sec': 'navrail'}, 'site': 'finance', 'mrt': {'static': False}, 'renderSecondaryNav': True, 'defaultRowNum': 10, 'components': {'finance': {'linkWidth': 230, 'linksRight': ['feature_promo']}}, 'linkMeta': {'feature_promo': {'bundles': {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'isPremium': True, 'autoStart': True, 'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'checkStoreBeforeCall': True, 'placement': 'finance-eyebrow-index'}}}}, 'navItems': [{'name': 'Personal Finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}]}]}, 'props': {'key': 'Nav-0-DesktopNav', 'id': 'Nav-0-DesktopNav'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'NavHelper', 'config': {'navItems': [{'name': 'Yahoo Finance Plus', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}, 'requiresPremiumExperience': True}, {'name': 'Screeners', 'children': [{'name': 'Saved Screeners', 'url': 'https://finance.yahoo.com/screener'}, {'name': 'Equity Screener', 'url': 'https://finance.yahoo.com/screener/new'}, {'name': 'Mutual Fund Screener', 'url': 'https://finance.yahoo.com/screener/mutualfund/new'}, {'name': 'ETF Screener', 'url': 'https://finance.yahoo.com/screener/etf/new'}, {'name': 'Futures Screener', 'url': 'https://finance.yahoo.com/screener/future/new'}, {'name': 'Index Screener', 'url': 'https://finance.yahoo.com/screener/index/new'}, {'name': 'Analyst Rating Screener', 'url': 'https://finance.yahoo.com/screener/analyst_ratings/new?ncid=dcm_320339942_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Technical Events Screener', 'url': 'https://finance.yahoo.com/screener/tradingcentral_event/new?ncid=dcm_320544712_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Smart Money Screener', 'url': 'https://finance.yahoo.com/screener/institutional_interest/new?ncid=dcm_320344326_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Top Holdings Screener', 'url': 'https://finance.yahoo.com/screener/institutional_holdings/new?ncid=dcm_320545006_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}], 'requiresPremiumExperience': True}]}, 'props': {'key': 'Nav-1-NavHelper', 'id': 'Nav-1-NavHelper'}, 'isPageComposite': True}], 'SecondaryNav': [{'bundleName': 'react-finance', 'name': 'SecondaryNav', 'config': {'ui': {'enableRelativeUrl': True}}, 'props': {'key': 'SecondaryNav-0-SecondaryNav', 'id': 'SecondaryNav-0-SecondaryNav'}, 'isPageComposite': True}], 'Overlay': [{'bundleName': 'react-lightbox', 'name': 'Lightbox', 'props': {'key': 'Overlay-0-Lightbox', 'id': 'Overlay-0-Lightbox'}, 'isPageComposite': True}, {'bundleName': 'tdv2-applet-swisschamp', 'name': 'Empty', 'props': {'key': 'Overlay-1-Empty', 'id': 'Overlay-1-Empty'}, 'isPageComposite': True}], 'Lead': [{'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'LDRB', 'className': 'D(n)--print', 'style': {'marginBottom': '8px', 'paddingTop': '0px', 'marginLeft': 'auto', 'marginRight': 'auto', 'textAlign': 'center', 'lineHeight': '0px', 'position': 'relative', 'zIndex': '5'}, 'key': 'Lead-0-Ad', 'id': 'Lead-0-Ad'}, 'isPageComposite': True}, {'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'MAST', 'style': {'marginBottom': '8px', 'paddingTop': '10px', 'marginLeft': '20px', 'marginRight': '20px', 'textAlign': 'center', 'position': 'relative', 'zIndex': '5'}, 'key': 'Lead-1-Ad', 'id': 'Lead-1-Ad'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'FinanceHeader', 'props': {'className': 'Bgc($lv2BgColor) Bxz(bb) Ovx(a) Pos(r) Maw($newGridWidth) Miw($minGridWidth) Miw(a)!--tab768 Miw(a)!--tab1024 Mstart(a) Mend(a) Px(20px) Py(10px) D(n)--print', 'showAds': True, 'adsConfig': {'positions': ['FB2A', 'FB2B', 'FB2C', 'FB2D']}, 'key': 'Lead-2-FinanceHeader', 'id': 'Lead-2-FinanceHeader'}, 'isPageComposite': True}, {'bundleName': 'tdv2-applet-featurebar', 'name': 'FeatureBar', 'props': {'useWrapper': True, 'key': 'Lead-3-FeatureBar', 'id': 'Lead-3-FeatureBar'}, 'config': {'ui': {'wrapper_classnames': 'Bgc(white) Pos(r) Bxz(bb) Maw($newGridWidth) Miw($minGridWidth) Miw(a)!--tab768 Miw(a)!--tab1024 Mstart(a) Mend(a) Px(20px) Pb(10px) D(n)--print', 'container_classnames': 'W(100%) Bxz(bb) Bdrs(2px) Maw($maxModuleWidth) Mx(a) D(n)--print', 'prerender': {'enabled': False, 'renderTargetId': 'modal'}, 'link_component': 'WaferLink'}, 'site': 'finance', 'useNCP': True}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'DcmPixelIFrame', 'props': {'src': 'https://s.yimg.com/jk/gtm/gtm_ns.html?id=GTM-K85MQ6N&cat=wlistclk&u1={u1}', 'hashStr': 'AON9sUIjs65VG3Q0JA40l601TPeUJ097', 'iFrameId': 'quote-dcm-pixel-iframe', 'key': 'Lead-4-DcmPixelIFrame', 'id': 'Lead-4-DcmPixelIFrame'}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteHeader', 'props': {'key': 'Lead-5-QuoteHeader', 'id': 'Lead-5-QuoteHeader'}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteNav', 'props': {'key': 'Lead-6-QuoteNav', 'id': 'Lead-6-QuoteNav'}, 'isPageComposite': True}, {'bundleName': 'tdv2-applet-rmp', 'name': 'Rmp', 'config': {'serviceId': 'nel_ms', 'assets': {'name': 'SmartAdDynamicData', 'm_id': 'smart-ad-dynamic-data', 'ctrl': 'SmartAdDynamicData'}, 'endpoint': {'method': 'POST', 'path': '/_rcv/remote', 'query': {'ctrl': 'SmartAdDynamicData', 'm_id': 'smart-ad-dynamic-data'}, 'body': {'m_id': 'smart-ad-dynamic-data', 'ctrl': 'SmartAdDynamicData', 'm_mode': 'json', 'site': 'finance', 'config': {'apiVersion': '2', 'adPositions': ['FB2A', 'FB2B', 'FB2C', 'FB2D', 'LDRB', 'LREC', 'MON', 'LREC2', 'MON2', 'LREC3']}}}, 'enableNonIstioFallback': False, 'httpOptions': {'perfLabel': 'read_smart_dynamic_data_rmp', 'timeout': 1000, 'cacheTTL': 60000, 'fallbackTTL': 3600000, 'fallbackTimeout': 4000, 'cacheEnabled': False}, 'pathParamsToForward': ['symbol']}, 'props': {'key': 'Lead-7-Rmp', 'id': 'Lead-7-Rmp'}, 'isPageComposite': True}], 'Col1': [{'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'LDRB2', 'style': {'marginBottom': '8px', 'marginTop': '8px', 'marginLeft': 'auto', 'marginRight': 'auto', 'textAlign': 'center', 'lineHeight': '0px', 'position': 'relative', 'zIndex': '4'}, 'key': 'Col1-0-Ad', 'id': 'Col1-0-Ad'}, 'isPageComposite': True}, {'bundleName': 'Quote.financials', 'name': 'Financials', 'props': {'key': 'Col1-1-Financials', 'id': 'Col1-1-Financials'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'AdUnitWithTdAds', 'props': {'className': 'ad-foot', 'positions': ['FOOT'], 'key': 'Col1-2-AdUnitWithTdAds', 'id': 'Col1-2-AdUnitWithTdAds'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'AdUnitWithTdAds', 'props': {'className': 'ad-fsrvy', 'positions': ['FSRVY'], 'key': 'Col1-3-AdUnitWithTdAds', 'id': 'Col1-3-AdUnitWithTdAds'}, 'isPageComposite': True}], 'Col2': [{'bundleName': 'td-ads', 'name': 'ComboAd', 'props': {'adparseStyle': {'marginBottom': '20px'}, 'finishedStyle': {'marginBottom': '20px'}, 'children': [{'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'LREC', 'id': 'cmbLREC', 'key': 'cmbLREC'}}, {'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'MON', 'id': 'cmbMON', 'key': 'cmbMON'}}], 'serverHeight': True, 'key': 'Col2-0-ComboAd', 'id': 'Col2-0-ComboAd'}, 'isPageComposite': True}, {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'type': 'eventPromo', 'key': 'Col2-1-MonalixaComponent', 'id': 'Col2-1-MonalixaComponent'}, 'config': {'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'placement': 'finance-desktop-web-qsp-rightrail'}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteModule', 'props': {'type': 'similarCompanies', 'key': 'Col2-2-QuoteModule', 'id': 'Col2-2-QuoteModule'}, 'initMode': {'deferRender': True}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteModule', 'props': {'type': 'earningsChart', 'key': 'Col2-3-QuoteModule', 'id': 'Col2-3-QuoteModule'}, 'initMode': {'deferRender': True}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteModule', 'props': {'type': 'financialsChart', 'key': 'Col2-4-QuoteModule', 'id': 'Col2-4-QuoteModule'}, 'initMode': {'deferRender': True}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'AdUnitWithTdAds', 'props': {'className': 'ad-lrec2', 'positions': ['LREC2'], 'key': 'Col2-5-AdUnitWithTdAds', 'id': 'Col2-5-AdUnitWithTdAds'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'Footer', 'props': {'className': 'Pb(15px)', 'isNewCCPAEnabled': True, 'isCCPAEnabled': True, 'key': 'Col2-6-Footer', 'id': 'Col2-6-Footer'}, 'isPageComposite': True}]}, 'spaceid': 95993639, 'enableRmpAssets': True, 'ads': {'events': {'adFetch': {'ps': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,LREC2,FOOT,FSRVY,TRADENOW', 'firstRender': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,TRADENOW', 'sponsoredAds': '', 'sponsoredAdsClass': ''}, 'AUTO': {'autoDDG': 0, 'groups': {'LREC3': 'LREC3', 'LREC4': None, 'MON2': 'LREC3'}, 'ps': {'MON2': {'autoRT': 10000}}}}, 'deferRender': True, 'positions': {'MAST': {'fclose': 2, 'fdb': {'on': '1', 'where': 'inside'}}, 'MAST-9': {'fclose': 2, 'fdb': {'on': '1', 'where': 'inside'}}}, 'removeFSRVY': True, 'enableAdboost': True, 'adBoostGroupConf': {'LREC3': None, 'LREC4': None, 'MON2': {'extrapositions': ['LREC3']}}}, 'initializeAction': 'initQuotePage', 'enableNewResearchInsights': True, 'enableTemplates': True, 'featureid': 'HF', 'regionOrder': ['UH', 'Nav', 'SecondaryNav', 'Overlay', 'Lead', 'Col1', 'Col2'], '_context': {'pageType': 'quote', 'subscribed': '0', 'enablePremium': '1', 'eventName': '', 'topicName': '', 'category': 'financials', 'quoteType': 'EQUITY', 'calendarType': '', 'screenerType': '', 'inTrial': '0', 'cryptoUser': '', 'enableTrading': '1'}}}, 'headerOverride': {}, 'queryOverride': {}}, 'compositeConfig': {'Nav-0-DesktopNav': {'name': 'Nav-0-DesktopNav', 'components': [{'bundleName': 'tdv2-applet-navrail', 'name': 'DesktopNav', 'config': {'enablePremiumNav': True, 'navItems': [{'name': 'Personal Finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}]}], 'ui': {'navCache': True, 'remoteAdapter': True, 'makeSticky': False, 'isNavLink': True, 'relativeLinks': True, 'navFont': 'Ff($yahooSansFinanceFont)!', 'headerTitle': 'finance', 'highlightPropertyHome': False, 'dividerClasses': 'H(0)!', 'offsetHack': 'Pt(2px) Bgc(t)!', 'navMainLeftClasses': 'Mend(80px)', 'leftNavClasses': 'Pstart(10px) Mstart(-10px) nr-applet-main-nav-right_Ov(inh)!', 'navTitleClasses': 'Pstart(10px) Mstart(-10px)!', 'linkItemClasses': 'Bgc($linkColor):h W(230px)!', 'subnavLinkClasses': 'Tt(n)! C($primaryColor) C(white)!:h Maw(200px)!', 'darkTheme': False, 'selectColor': 'C($finNavBlueText)! Bdbw(0px) H(42px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'subnavClasses': 'Bgc($lv3BgColor)!', 'hoverColor': 'C($finNavBlueText):h', 'overrideColor': 'C($finNavBlueText)', 'propertyHomeSelectColor': 'Bdbc($linkColor) Bdbs(s)! Bdbw(4px) H(38px)', 'propertyHomeClasses': 'Tt(c)! Bdbc($linkColor):h Bdbs(s):h Bdbw(4px):h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkClasses': 'Tt(n)!', 'navLinkClassesOnHover': 'Bdbc($linkColor)!:h Bdbs(s)!:h Bdbw(4px)!:h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkNonHoverClasses': 'C($topNavLinkGray) Bdbs(n)', 'highlightTriangleColor': 'transparent transparent #fff', 'navMainRightClasses': 'Bdc(t) Bdrs(1.5px) Bdbs(s):h Px(10px)!'}, 'featureSwitches': {'useNavSelectLogic': True, 'disableDivider': True, 'followButtons': False, 'navLogoAlign': False, 'navrailCollapse': False, 'enableHighlightTriangle': True, 'useSubnavTitleSlk': True}, 'i13n': {'itc': 0, 'sec': 'navrail'}, 'site': 'finance', 'mrt': {'static': False}, 'renderSecondaryNav': True, 'defaultRowNum': 10, 'components': {'finance': {'linkWidth': 230, 'linksRight': ['feature_promo']}}, 'linkMeta': {'feature_promo': {'bundles': {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'isPremium': True, 'autoStart': True, 'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'checkStoreBeforeCall': True, 'placement': 'finance-eyebrow-index'}}}}}, 'props': {'key': 'Nav-0-DesktopNav-0-DesktopNav', 'id': 'Nav-0-DesktopNav-0-DesktopNav'}}]}, 'Nav-0-DesktopNav-0-DesktopNav-acct-switch': {'name': 'Nav-0-DesktopNav-0-DesktopNav-acct-switch', 'components': [{'bundleName': 'tdv2-applet-account-switch', 'name': 'AccountSwitch', 'config': {'isEnabled': True}, 'props': {'key': 'Nav-0-DesktopNav-0-DesktopNav-acct-switch-0-AccountSwitch', 'id': 'Nav-0-DesktopNav-0-DesktopNav-acct-switch-0-AccountSwitch'}}]}}, 'compositeStatus': {'Nav-0-DesktopNav': 1, 'Nav-0-DesktopNav-0-DesktopNav-acct-switch': 1}, 'pageData': {'title': 'Apple Inc. (AAPL) Income Statement - Yahoo Finance', 'description': 'Get the detailed quarterly/annual income statement for Apple Inc. (AAPL). Find out the revenue, expenses and profit or loss over the last fiscal year.', 'keywords': 'income statement,gross profit,revenue,operating expenses,operating income,net income,earning,earning per share', 'symbol': 'AAPL', 'category': 'financials', 'meta': {'property': {'twitter:site': '@YahooFinance', 'fb:pages': '458584288257241', 'og:image': 'https://s.yimg.com/cv/apiv2/social/images/yahoo_default_logo.png', 'og:description': 'Get the detailed quarterly/annual income statement for Apple Inc. (AAPL). Find out the revenue, expenses and profit or loss over the last fiscal year.', 'og:title': 'Apple Inc. (AAPL) Income Statement - Yahoo Finance', 'twitter:description': 'Get the detailed quarterly/annual income statement for Apple Inc. (AAPL). Find out the revenue, expenses and profit or loss over the last fiscal year.', 'twitter:title': 'Apple Inc. (AAPL) Income Statement - Yahoo Finance', 'al:ios:app_store_id': '328412701', 'al:ios:app_name': 'Yahoo Finance', 'al:android:url': 'intent://quote/AAPL/#Intent;scheme=yfinance;action=android.intent.action.VIEW;package=com.yahoo.mobile.client.android.finance;S.browser_fallback_url=https%3A%2F%2Fplay.google.com%2Fstore%2Fapps%2Fdetails%3Fid%3Dcom.yahoo.mobile.client.android.finance;end', 'al:android:app_name': 'Yahoo Finance', 'al:android:package': 'com.yahoo.mobile.client.android.finance'}, 'name': {'apple-itunes-app': 'app-id=328412701, app-clip-bundle-id=com.yahoo.finance.clip-qsp, affiliate-data=ct=us.fin.mbl.smart-banner&pt=9029, app-argument=https://finance.yahoo.com/quote/AAPL', 'oath:guce:consent-host': 'guce.yahoo.com'}}}, 'spaceid': 95993639, 'status': {'code': 200, 'headers': {'Cache-Control': 'private, no-store, no-cache, max-age=0'}}, 'appConfig': {'timeouts': {'navigate': 10000}, 'spaceid': 1183300002, 'renderTargets': [{'classNames': 'render-target-default Pos(a) W(100%)', 'id': 'default'}, {'classNames': 'render-target-modal O(n)!:f Bdtw(1px) D(n) H(a)! Mih(100%) modal-postopen_Op(1) Pos(a) T(76px) CollapsibleUh_T(60px) Start(0) End(0) Maw(1230px) Miw(984px) Mx(a) modal-open_D(b) modal-postopen_D(b) W(100%) H(100%) Z(9)', 'id': 'modal'}]}, 'routeConfig': {}, 'renderTargets': {'default': {'id': 'default', 'guid': 0, 'classNames': 'render-target-default Pos(a) W(100%)', 'owner': 'app', 'elementId': 'render-target-default', 'url': ''}, 'modal': {'classNames': 'render-target-modal O(n)!:f Bdtw(1px) D(n) H(a)! Mih(100%) modal-postopen_Op(1) Pos(a) T(76px) CollapsibleUh_T(60px) Start(0) End(0) Maw(1230px) Miw(984px) Mx(a) modal-open_D(b) modal-postopen_D(b) W(100%) H(100%) Z(9)', 'id': 'modal', 'guid': 1, 'elementId': 'render-target-modal', 'owner': 'app', 'url': ''}}, 'renderTargetsInited': True}, 'MRTStore': {'mrtConfigRaw': {'app': {'enable': True, 'loadStaticBundles': False}, 'page': {}, 'route': {}}, 'originRenderTargetId': 'default', 'originUrl': '/quote/AAPL/financials?p=AAPL&lang=en-US®ion=US', 'staticComponents': {'UH-0-HeaderDesktop': {'cache': False, 'static': True, 'enableStaticI13nTracking': False}, 'UH-1-WaferHeaderHelper': {'static': True, 'enableStaticI13nTracking': False}}}, 'RouteStore': {'currentNavigate': {'transactionId': 2666920822851578, 'url': '/quote/AAPL/financials?p=AAPL&lang=en-US®ion=US', 'method': 'GET', 'body': {}, 'externalUrl': 'https://finance.yahoo.com/quote/AAPL/financials?p=AAPL&lang=en-US®ion=US', 'route': None, 'error': None, 'isComplete': True}, 'routes': {'status500': {'path': '/__status500', 'method': 'get', 'page': 'status500', 'action': 'loadConfigAndPage'}, 'status404': {'path': '/__status404', 'method': 'get', 'page': 'status404', 'action': 'loadConfigAndPage'}, 'home': {'path': '/', 'method': 'get', 'page': 'home', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'home', 'ver': 'ydotcom'}}}}, 'personalFinance': {'path': '/personal-finance', 'method': 'get', 'page': 'personalFinance', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'personal-finance', 'ver': 'ydotcom'}}}}, 'earnings': {'path': '/topics/:symbol-:quarter-:full(full-year-)?:year-earnings', 'method': 'get', 'page': 'earnings', 'action': 'loadSubscriptionAndConfig', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'earnings', 'ver': 'ydotcom'}}}}, 'shareholdersMeeting': {'path': '/topics/:symbol(yahoo)-:year-shareholders-meeting', 'method': 'get', 'page': 'shareholdersMeeting', 'action': 'loadSubscriptionAndConfig', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'shareholdersmeeting', 'ver': 'ydotcom'}}}}, 'brkLiveStream': {'path': '/:symbol(brk)livestream', 'method': 'get', 'page': 'brkLiveStream', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'initMarketing': False, 'rapid': {'keys': {'pt': 'minihome', 'pct': 'brklivestream', 'pg_name': 'brklivestream', 'ver': 'ydotcom'}}, 'marketing': {'activity_id': 792877}}}, 'liveStream': {'path': '/live/:eventName', 'method': 'get', 'page': 'liveStream', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'initMarketing': False, 'rapid': {'keys': {'pt': 'minihome', 'pct': 'livestream', 'pg_name': ':eventName', 'ver': 'ydotcom'}}, 'marketing': {'activity_id': 792877}}}, 'quote': {'path': '/quote/:symbol/:category?', 'method': 'get', 'page': 'quote', 'action': 'loadQuotePage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'quoteLeaf': {'path': '/__quoteleaf/:symbol/:quoteType/:category', 'method': 'get', 'page': 'quoteLeaf', 'action': 'loadQuotePage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp-leaf', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'quoteLeaf2': {'path': '/__quoteleaf/:symbol/:category', 'method': 'get', 'page': 'quoteLeaf', 'action': 'loadQuotePage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp-leaf', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'quoteECD': {'path': '/__quoteecd/:symbol', 'method': 'get', 'page': 'quoteECD', 'action': 'loadQuotePage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp-ecd', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'quoteECD2': {'path': '/__quoteecd/:symbol', 'method': 'head', 'page': 'quoteECD', 'action': 'loadQuotePage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp-ecd', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'moduleDetails': {'path': '/__moduleDetails/:type/:id', 'method': 'get', 'page': 'moduleDetails', 'action': 'loadConfigAndPage', 'contentSite': 'finance', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'portal-ecd', 'pstcat': ':type', 'pg_name': ':type', 'rvt': ':id', 'ver': 'ydotcom'}}}}, 'companyInsightsWebview': {'path': '/__companyInsights/:symbol/:category', 'method': 'get', 'page': 'companyInsightsWebview', 'action': 'loadQuotePage', 'contentSite': 'finance', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'comp-ins-webview', 'pstcat': ':category', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'fullScreenChart': {'path': '/chart/:symbol', 'method': 'get', 'page': 'fullScreenChartIQ', 'action': 'loadSubscriptionAndConfig', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'chart', 'pstcat': ':quoteType', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'fullScreenChartWebView': {'path': '/__chart/:symbol', 'method': 'get', 'page': 'chartIQWebView', 'action': 'loadSubscriptionAndConfig', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'chart-webview', 'pstcat': ':quoteType', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'embedStockChartWebView': {'path': '/__embed-chart-v1', 'method': 'get', 'page': 'embedChartWebView', 'pageType': 'embedChartWebView', 'action': 'loadConfigAndPage', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'embchart-webview', 'ver': 'ydotcom'}}}}, 'currencies': {'path': '/currencies', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'listName': 'currencies', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'currencies', 'ver': 'ydotcom'}}}, 'spaceid': 2146786654}, 'bonds': {'path': '/bonds', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'bonds', 'ver': 'ydotcom'}}}, 'spaceid': 42328446}, 'trending_tickers': {'path': '/trending-tickers', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'listName': 'trending-tickers', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'trending', 'ver': 'ydotcom'}}}, 'spaceid': 1183331958}, 'world_indices': {'path': '/world-indices', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'listName': 'world-indices', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'indices', 'ver': 'ydotcom'}}}, 'spaceid': 1183331958}, 'commodities': {'path': '/commodities', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'listName': 'commodities', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'commodities', 'ver': 'ydotcom'}}}, 'spaceid': 97327075}, 'recentQuotes': {'path': '/recent-quotes', 'method': 'get', 'page': 'recentlyViewedList', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'recents', 'ver': 'ydotcom'}}}}, 'screenerLanding': {'path': '/screener', 'method': 'get', 'page': 'screener', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'landing'}}}}, 'plusScreenerLanding': {'path': '/screener/predefined-plus', 'method': 'get', 'page': 'plusScreeners', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'plusScreeners'}}}}, 'screenerDetail': {'path': '/screener/:prefix(predefined|unsaved|equity|mutualfund|insider|etf|future|index|analyst_ratings|tradingcentral_event|institutional_interest|institutional_holdings)?/:screenerId', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'rowCount': 25, 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'detail'}}}}, 'screenerDetail2': {'path': '/screener/:prefix(predefined|analyst_ratings|unsaved|equity|mutualfund|insider|etf)?/:screenerId/:view(heatmap)', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'rowCount': 250, 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'detail'}}}}, 'screenerTypesPage': {'path': '/screeners/types', 'method': 'get', 'page': 'screenerTypesPage', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'types'}}}}, 'portfolios': {'path': '/:prefix(__portfoliow|portfolio|portafoglio|cartera|portafolio|portefeuille)s', 'method': 'get', 'page': 'portfolios', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'watchlist', 'pg_name': 'landing', 'ver': 'ydotcom'}}}}, 'portfolioDetail': {'path': '/:prefix(__portfoliow|portfolio|portafoglio|cartera|portafolio|portefeuille)/:pfId', 'method': 'get', 'page': 'portfolioDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'watchlist', 'pg_name': 'detail', 'ver': 'ydotcom'}}}}, 'portfolioDetail2': {'path': '/:prefix(__portfoliow|portfolio|portafoglio|cartera|portafolio|portefeuille)/:pfId/:viewPrefix(view|visualizzazione|ansicht|vista|visualizacao|vue)/:viewId?', 'method': 'get', 'page': 'portfolioDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'watchlist', 'pg_name': 'detail', 'ver': 'ydotcom'}}}}, 'multiQuote': {'path': '/:prefix(quotes|cotizaciones|cotations|quotazioni|kurse)/:quotes', 'method': 'get', 'page': 'multiQuote', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'multiquotes', 'pg_name': 'multiquotes', 'ver': 'ydotcom'}}}}, 'multiQuote2': {'path': '/:prefix(quotes|cotizaciones|cotations|quotazioni|kurse)/:quotes?/:viewPrefix(view|visualizzazione|ansicht|vista|visualizacao|vue)/:viewId?', 'method': 'get', 'page': 'multiQuote', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'multiquotes', 'pg_name': 'multiquotes', 'ver': 'ydotcom'}}}}, 'quoteLookUp': {'path': '/lookup', 'method': 'get', 'page': 'lookup', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'lookUp', 'ver': 'ydotcom', 'pg_name': 'lookup'}}}}, 'quoteLookUpTabs': {'path': '/lookup/:type(all|equity|mutualfund|etf|index|future|currency)', 'method': 'get', 'page': 'lookup', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'lookUp', 'ver': 'ydotcom', 'pg_name': 'lookup'}}}}, 'calendar': {'path': '/calendar/:calendarType(earnings|splits|ipo|economic)?', 'method': 'get', 'page': 'calendar', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'calendar', 'ver': 'ydotcom', 'pg_name': 'earnings'}}}}, 'currencyConverterECD': {'path': '/__currency-converter', 'method': 'get', 'page': 'currencyConverterECD', 'action': 'loadConfigAndPage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'currency-converter-ecd', 'ver': 'ydotcom'}}}}, 'currencyConverter': {'path': '/currency-converter', 'method': 'get', 'page': 'currencyConverter', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'currency-converter', 'ver': 'ydotcom'}}}}, 'cryptoScreener': {'path': '/crypto/:view(heatmap)?', 'underlyingScrId': 'all_cryptocurrencies_us', 'method': 'get', 'page': 'cryptoLanding', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'cryptocurrency', 'pg_name': 'predefined'}}}}, 'most_activeScreener': {'path': '/:screenerId(most-active)/:view(heatmap)?', 'underlyingScrId': 'most_actives', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'most-active', 'pg_name': 'detail'}}}, 'spaceid': 1183331958}, 'gainersScreener': {'path': '/:screenerId(gainers)/:view(heatmap)?', 'underlyingScrId': 'day_gainers', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'gainers', 'pg_name': 'detail'}}}, 'spaceid': 1183331958}, 'losersScreener': {'path': '/:screenerId(losers)/:view(heatmap)?', 'underlyingScrId': 'day_losers', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'losers', 'pg_name': 'detail'}}}, 'spaceid': 1183331958}, 'mutualfundsScreener': {'path': '/:screenerId(mutualfunds)', 'underlyingScrId': 'top_mutual_funds', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'funds', 'pg_name': 'detail'}}}, 'spaceid': 1183331884}, 'etfsScreener': {'path': '/:screenerId(etfs)', 'underlyingScrId': 'top_etfs_us', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'etfs', 'pg_name': 'detail'}}}, 'spaceid': 1183331881}, 'categoryWatchlists': {'path': '/watchlists/category/:categorySlug', 'method': 'get', 'page': 'categoryWatchlists', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'categoryWatchlists', 'pg_name': ':categorySlug', 'ver': 'ydotcom'}}}}, 'watchlists': {'path': '/watchlists', 'method': 'get', 'page': 'watchlists', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'watchlists', 'pg_name': 'watchlists', 'ver': 'ydotcom'}}}}, 'watchlist': {'path': '/u/:provider/watchlists/:watchlistSlug', 'method': 'get', 'page': 'watchlist', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'watchlist', 'pg_name': ':watchlistSlug', 'ver': 'ydotcom'}}}}, 'eventSplash': {'path': '/splash/:eventName', 'method': 'get', 'page': 'eventSplash', 'action': 'loadConfigAndPage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'initMarketing': False, 'rapid': {'keys': {'pt': 'utility', 'pct': 'event-splash', 'pg_name': ':eventName', 'ver': 'ydotcom'}}}}, 'userInsights': {'path': '/user-insights', 'method': 'get', 'page': 'userInsights', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'user-insights', 'pg_name': 'user_insights', 'ver': 'ydotcom'}}}, 'spaceid': 1197811689}, 'secFilingDetail': {'path': '/sec-filing/:symbol/:secFilingId', 'method': 'get', 'page': 'secFilingDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'secFilingDetail', 'pg_name': 'secFilingDetail', 'ver': 'ydotcom'}}}}, 'videos': {'path': '/videos/:alias?', 'method': 'get', 'page': 'videos', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'video', 'pg_name': 'landing', 'ver': 'ydotcom'}}}}, 'videoDetails': {'path': '/show/:showName', 'method': 'get', 'page': 'videoDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'video', 'pg_name': ':showName', 'ver': 'ydotcom'}}}}, 'rates1': {'path': '/rates/auto/insurance/:state(florida|california|texas|newyork|ohio)', 'method': 'get', 'page': 'rates', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'rates', 'pstcat': 'insurance', 'pg_name': 'insurance', 'ver': 'ydotcom'}}}}, 'rates2': {'path': '/rates/:category(auto|home-equity|credit-card|deposit|mortgage)/:subpath(48-month-new-car-loan|60-month-new-car-loan|72-month-new-car-loan|36-month-used-car-loan|48-month-used-car-loan|60-month-used-car-loan|75k-heloc|50k-heloc|30k-heloc|75k-home-equity-loan|50k-home-equity-loan|30k-home-equity-loan|credit-cards-for-bad-credit|instant-approval-credit-cards|cash-back-credit-cards|reward-credit-cards|airline-credit-cards|student-credit-cards|business-credit-cards|balance-transfer-credit-cards|low-interest-credit-cards|credit|bank|type|jumbo-mma|jumbo-cd|ira-mma|savings|10k-mma|mma|2-year-cd|1-year-cd|6-month-cd|5-1-arm-refinance|30-year-jumbo|15-year-fixed-refinance|30-year-fixed-refinance|15-year-fixed|30-year-fixed|insurance)', 'method': 'get', 'page': 'rates', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'rates', 'pstcat': 'loan', 'pg_name': ':category', 'ver': 'ydotcom'}}}}, 'rates3': {'path': '/rates', 'method': 'get', 'page': 'rates', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'rates', 'pg_name': 'rates', 'ver': 'ydotcom'}}}}, 'personalFinanceStream': {'path': '/personal-finance/:eventName', 'method': 'get', 'page': 'personalFinanceStream', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'initMarketing': False, 'rapid': {'keys': {'pt': 'minihome', 'pct': 'personal-finance', 'pg_name': ':eventName', 'ver': 'ydotcom'}}, 'marketing': {'activity_id': 792877}}}, 'topic': {'path': '/:topic(topic|search|news|budget)/(provider-|):topicName([a-zA-Z0-9-%_]+)', 'method': 'get', 'page': 'topic', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pg_name': ':topicName', 'ver': 'ydotcom'}}}}, 'techTopic': {'path': '/tech', 'method': 'get', 'page': 'techTopic', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'tech', 'pg_name': 'tech', 'ver': 'ydotcom'}}}}, 'techSubpage': {'path': '/:listitem(tech|business)/:topicName', 'method': 'get', 'page': 'techSubpage', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': ':topicName', 'pg_name': ':topicName', 'ver': 'ydotcom'}}}}, 'industries': {'path': '/industries', 'method': 'get', 'page': 'industry', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'industries', 'ver': 'ydotcom', 'pg_name': 'industries'}}}, 'spaceid': 1183335957}, 'industry': {'path': '/industries/:sector(all|financial|healthcare|services|utilities|industrial_goods|basic_materials|conglomerates|consumer_goods|technology)', 'method': 'get', 'page': 'industry', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': ':sector', 'ver': 'ydotcom', 'pg_name': 'industry'}}}, 'spaceid': 1183335957}, 'minihomeNews': {'path': '/news', 'method': 'get', 'page': 'minihomeNews', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'news', 'pg_name': 'news', 'ver': 'ydotcom'}}}}, 'optionsOIScreener': {'path': '/options/:screenerId(highest-open-interest)', 'underlyingScrId': '65f51cea-8dc8-4e56-9f99-6ef7720eb69c', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'options_highest_open_interest', 'pg_name': 'detail'}}}, 'spaceid': 1183331888}, 'optionsScreener': {'path': '/options/:screenerId(highest-implied-volatility)', 'underlyingScrId': '671c40b0-5ea8-4063-89b9-9db45bf9edf0', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'options_highest_implied_volatility', 'pg_name': 'detail'}}}, 'spaceid': 1183331888}, 'companySummary': {'path': '/company/:entitySlug', 'method': 'get', 'page': 'companySummary', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'company', 'pg_name': 'summary', 'rvt': ':entitySlug', 'ver': 'ydotcom'}}}}, 'trumponomics': {'path': '/:presidentOmics(trumponomics|bidenomics)', 'method': 'get', 'page': 'trumponomics', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'trumponomics', 'ver': 'ydotcom'}}}}, 'premiumPortalECD': {'path': '/__premium', 'method': 'get', 'page': 'premiumPortalECD', 'action': 'loadPremiumPortalPage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'premium', 'ver': 'ydotcom', 'pg_name': 'premium_portal'}}}}, 'reportDetail': {'path': '/research/:category(reports)/:contentId', 'method': 'get', 'page': 'reportDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'reportDetail', 'pg_name': ':category', 'ver': 'ydotcom'}}}}, 'seo_research': {'path': '/research/:category(stock-forecast)/:symbol', 'method': 'get', 'page': 'research', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'research', 'pg_name': 'landing', 'ver': 'ydotcom'}}}}, 'plusPortal': {'path': '/plus-dashboard', 'method': 'get', 'page': 'plusDashboard', 'action': 'loadPremiumPortalPage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'premium', 'ver': 'ydotcom', 'pg_name': 'premium_portal'}}}}, 'webinar': {'path': '/webinars', 'method': 'get', 'action': 'loadSubscriptionAndConfig', 'page': 'webinar', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'webinar', 'pg_name': 'webinar', 'ver': 'ydotcom'}}}}, 'hub': {'path': '/taxes', 'method': 'get', 'page': 'hub', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance'}, 'portfolioDetailWebView': {'path': '/:prefix(__portfolio)/:pfId/:viewPrefix(view)/:viewId?', 'method': 'get', 'page': 'portfolioDetailWebView', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'pf-webview', 'pstcat': 'watchlist', 'pg_name': 'detail', 'ver': 'ydotcom'}}}}, 'blogpost': {'path': '/blogs/:contentBlog/:alias.html', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'blogpost', 'pageType': 'content', 'renderTarget': 'modal'}, 'cavideo': {'path': '/video/:alias.html', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'cavideo', 'pageType': 'content', 'renderTarget': 'modal'}, 'preview': {'path': '/m/:uuid([a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12})/:alias.html', 'action': 'loadSubscriptionAndConfig', 'contentType': 'story', 'method': 'get', 'page': 'content', 'pageType': 'content', 'renderTarget': 'modal'}, 'slideshow': {'path': '/photos/:alias', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'slideshow', 'pageType': 'content', 'renderTarget': 'modal'}, 'slideshowPhoto': {'path': '/photos/:alias/:photoAlias.html', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'slideshow', 'pageType': 'content', 'renderTarget': 'modal'}, 'story': {'path': '/:prefix(news)/:alias.html', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'story', 'pageType': 'content', 'renderTarget': 'modal'}, 'premiumPortal': {'path': '/premium', 'method': 'get', 'page': 'premiumPortal', 'action': 'loadPremiumPortalPage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'premium', 'ver': 'ydotcom', 'pg_name': 'premium_portal'}}}}, 'research': {'path': '/research/:category(trade-ideas)?', 'method': 'get', 'page': 'research', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'research', 'pg_name': 'landing', 'ver': 'ydotcom'}}}}}}, 'I13nStore': {'appConfig': {'base': {'initComscore': True, 'initRapid': True, 'enableNielsenBeacon': False, 'enablePartneradobeBeacon': False, 'adobeProp53': '', 'enableDeTrackingBeacon': False, 'enableDcmPixel': False, 'rootModelData': {'sec': 'app'}, 'rapid': {'async_all_clicks': True, 'click_timeout': 300, 'client_only': 1, 'compr_type': 'deflate', 'keys': {'ver': 'ydotcom', 'navtype': 'server'}, 'pageview_on_init': True, 'query_parameters': True, 'test_id': '', 'tracked_mods_viewability': [], 'track_right_click': True, 'viewability': True, 'dwell_on': True, 'perf_navigationtime': 2, 'perf_resourcetime': 1, 'webworker_file': '/__rapidworker-1.2.js'}, 'serverPageview': {'enable': True, 'type': 'nonClassified'}, 'secMapping': {'AddSymbolBtn': 'datautility', 'Analyst.PriceTargets': 'qsp-analyst-price-target', 'Analyst.Ratings': 'qsp-recom-trends', 'Analyst.RecommendationRating': 'qsp-recom-rating', 'Analyst.UpgradeDowngradeHistory': 'analyst-history', 'AnalystsUpsell': 'analysts-upsell', 'AssetProfile': 'qsp-assetprofile', 'BrokerCenter': 'brokercenter-landingpage-table', 'CalCarousel': 'cal-carousel', 'CalDatePicker': 'cal-date-picker', 'CalEvents': 'cal-evnts', 'CalTable': 'cal-table', 'ChartIQChartType': 'chartiq-chart_type', 'ChartIQComparison': 'chartiq-comparison', 'ChartIQDrawingTool': 'chartiq-drawing-tool', 'ChartIQInterval': 'chartiq-interval', 'ChartIQLegend': 'chartiq-legend', 'ChartIQRange': 'chartiq-range', 'ChartIQEvents': 'chartiq-events', 'ChartIQShare': 'chartiq-social-share', 'ColorPicker': 'color-picker', 'CompanyInsights': 'company-insights', 'company-insights': 'company-insights', 'corporate-events': 'company-insights-corp', 'research-reports': 'company-insights-research', 'fair-value': 'company-insights-fair', 'dividends': 'company-insights-divid', 'innovation': 'company-insights-innov', 'hiring-trends': 'company-insights-hiring', 'insider-sentiment': 'company-insights-sentiment', 'CompanyProfile': 'qsp-profile', 'CompanySnapshot': 'company-snapshot', 'ColumnItemEditorial': 'editorial-news', 'ColumnItemImage': 'editorial-image', 'ColumnItemLatestNews': 'latest-news', 'ColumnItem.Featured': 'featured-news-item', 'CommunityProfile': 'community-profile', 'Company': 'company', 'Company360': 'company360', 'Company360Drilldown': 'company360-drilldown', 'CryptoAbout': 'crypto-about', 'CryptoAccountManagement': 'crypto-acct-mgmt', 'CryptoDeactivate': 'crypto-deactivate', 'CryptoDeposit': 'crypto-deposit', 'CryptoWithdrawal': 'crypto-withdrawal', 'CryptoHome': 'crypto-home', 'CryptoKYC': 'crypto-create-account', 'CryptoPortfolio': 'crypto-portfolio', 'CryptoPortfolioFinTab': 'crypto-fin-subtab', 'CryptoTradable': 'crypto-tradable', 'CryptoTrade': 'crypto-trade', 'CuratedWatchlists': 'curated-watchlists', 'CWLCategoryTable': 'cwl-category', 'CWLDetail': 'cwl-detail', 'Earnings': 'earnings', 'EditorialNews': 'editorial-news', 'ColumnItem.Video': 'editorial-video', 'CorporateGovernance': 'qsp-corporate', 'CustomColumns': 'toolbar', 'DataUtility': 'datautility', 'DataUtilityHeader': 'datautility-hdr', 'EarningsRevenueBarChart': 'qsp-revenue-chart', 'EarningsScatterChart': 'qsp-earnings-chart', 'ESGMiniScore': 'qsp-esg-mini-score', 'EditColumns': 'toolbar', 'Sustainability.PeerScoresTable': 'sustainability-peer-scores-table', 'EventPromo': 'event-promo', 'FeaturePromo': 'feature-promo', 'FinancialsLeafPage': 'qsp-financials', 'FinancialStatement': 'qsp-statement', 'Footer': 'footer', 'FredHistoricalDataTable': 'fred-qsp-historical', 'FullScreenChart': 'chart', 'FullScreenChartMW': 'fullscreen-chart-mw', 'FuturesChain': 'futures-chain', 'Following': 'megathon-follow', 'HistoricalDataTable': 'qsp-historical', 'Holders': 'qsp-holders', 'Holders.Insiders': 'qsp-insiders', 'Holders.InsiderTransaction': 'qsp-insider-transaction', 'Holders.InsiderRoster': 'qsp-insider-roster', 'Holders.Summary': 'qsp-holdings', 'IndexComponents': 'top-components', 'IndustryLanding': 'industry-landing', 'KeyStatistics': 'qsp-key-stats', 'KeyStatisticsLeafPage': 'qsp-keystatistics', 'LineWidthSelector': 'line-width-selector', 'MarketDataTable': 'datautility', 'MarketSummary': 'mrkt-sum', 'MarketSummaryItem': 'mrkt-sum', 'MustRead': 'must-read', 'NewsStreamMyQuoteNews': 'my-quote-news-stream', 'NewsSummary': 'news-summary', 'MyMarketNews': 'my-quote-news', 'MarketNews': 'market-news', 'OptionContracts': 'qsp-options', 'OptionContractsTable': 'qsp-option-table', 'OptionContract:ResultItem': 'qsp-options', 'OptOutBtn': 'opt-out', 'PortfolioBreadcrumb': 'pf-breadcrumb', 'PortfolioControls': 'pf-controls', 'PortfolioHeader': 'pf-summary', 'PortfolioNewsStream': 'pf-news', 'PortfolioTable': 'pf-table', 'PortfolioToolbar': 'toolbar', 'PositionRow': 'datautility', 'PlusDashboard': 'plus-dashboard', 'PremiumPortal': 'prm-prtl', 'PremiumPromoHeader': 'prm-prmo-hdr', 'PremiumPromoFooter': 'prm-prmo-ftr', 'PressRelease': 'press-releases', 'QSP.FeaturedNews': 'qsp-featured-news', 'QSPSubNav': 'qsp-subnav', 'QSP.News': 'qsp-news', 'QSP.Section': 'qsp-section', 'QSPAddToWatchlist': 'qsp-hdr', 'Quote': 'qsp', 'QuoteContainer': 'qsp', 'QuoteHeader': 'quote-header', 'QuoteNews': 'quote-news', 'QuotesNews': 'quotes-news', 'QuotePill': 'quote-pill', 'QuoteRelated': 'qsp-related', 'QuoteRelatedVideo': 'related-video', 'QuoteSearchAd': 'qsp-search-ad', 'RecommendationsBySymbol': 'recommended-symbols', 'RecommendationsBySymbolSimilar': 'similar-symbols', 'ReportDetail': 'report-detail', 'Research': 'research', 'ResearchInsights': 'research-insights', 'QSPResearchReports': 'qsp-research-reports', 'ScreenerLanding': 'screener-landing', 'ScreenerPlusList': 'screener-plus-list', 'ScreenerCriteria': 'screener-criteria', 'ScreenerFilter': 'screener-filter', 'ScreenerNewFilter': 'screener-new-filter', 'ScreenerResults': 'screener-results', 'ScreenerSaveModal': 'screener-save-modal', 'ScreenerShare': 'screener-share', 'SecFilings': 'qsp-filings', 'SymbolRemoval': 'datautility', 'VideosLeftNav': 'videos-left-nav', 'SwitchVideo': 'video-switch', 'TableHead': 'datautility', 'TableRow': 'datautility', 'TickerNews': 'ticker-news', 'Trumponomics': 'trumponomics', 'UserInsights': 'user-insights', 'Virgo:ResultItem': 'chart', 'VideoPlayerWithLangSelector': 'video-player', 'YFinListTable': 'yfin-list-table'}, 'enableConsentData': True}}, 'comscoreC7Keyword': '', 'currentUrl': '/quote/AAPL/financials?p=AAPL&lang=en-US®ion=US', 'i13nConfig': {'initComscore': True, 'initRapid': True, 'enableNielsenBeacon': False, 'enablePartneradobeBeacon': False, 'adobeProp53': '', 'enableDeTrackingBeacon': False, 'enableDcmPixel': False, 'rootModelData': {'sec': 'app'}, 'rapid': {'async_all_clicks': True, 'click_timeout': 300, 'client_only': 1, 'compr_type': 'deflate', 'keys': {'ver': 'ydotcom', 'navtype': 'server', 'pt': 'utility', 'pct': 'qsp', 'pstcat': 'equities', 'pg_name': 'financials', 'rvt': 'AAPL', 'ticker': 'AAPL', 'pl1': 'us_market', 'pl2': 'NMS', 'mrkt': 'us', 'site': 'finance', 'lang': 'en-US', 'colo': 'bf1', '_yrid': '28rf3jhhu29if', '_rid': '28rf3jhhu29if', 'abk': ''}, 'pageview_on_init': True, 'query_parameters': True, 'test_id': 'finance-US-en-US-def', 'tracked_mods_viewability': [], 'track_right_click': True, 'viewability': True, 'dwell_on': True, 'perf_navigationtime': 2, 'perf_resourcetime': 1, 'webworker_file': '/__rapidworker-1.2.js', 'spaceid': 95993639}, 'serverPageview': {'enable': True, 'type': 'nonClassified'}, 'secMapping': {'AddSymbolBtn': 'datautility', 'Analyst.PriceTargets': 'qsp-analyst-price-target', 'Analyst.Ratings': 'qsp-recom-trends', 'Analyst.RecommendationRating': 'qsp-recom-rating', 'Analyst.UpgradeDowngradeHistory': 'analyst-history', 'AnalystsUpsell': 'analysts-upsell', 'AssetProfile': 'qsp-assetprofile', 'BrokerCenter': 'brokercenter-landingpage-table', 'CalCarousel': 'cal-carousel', 'CalDatePicker': 'cal-date-picker', 'CalEvents': 'cal-evnts', 'CalTable': 'cal-table', 'ChartIQChartType': 'chartiq-chart_type', 'ChartIQComparison': 'chartiq-comparison', 'ChartIQDrawingTool': 'chartiq-drawing-tool', 'ChartIQInterval': 'chartiq-interval', 'ChartIQLegend': 'chartiq-legend', 'ChartIQRange': 'chartiq-range', 'ChartIQEvents': 'chartiq-events', 'ChartIQShare': 'chartiq-social-share', 'ColorPicker': 'color-picker', 'CompanyInsights': 'company-insights', 'company-insights': 'company-insights', 'corporate-events': 'company-insights-corp', 'research-reports': 'company-insights-research', 'fair-value': 'company-insights-fair', 'dividends': 'company-insights-divid', 'innovation': 'company-insights-innov', 'hiring-trends': 'company-insights-hiring', 'insider-sentiment': 'company-insights-sentiment', 'CompanyProfile': 'qsp-profile', 'CompanySnapshot': 'company-snapshot', 'ColumnItemEditorial': 'editorial-news', 'ColumnItemImage': 'editorial-image', 'ColumnItemLatestNews': 'latest-news', 'ColumnItem.Featured': 'featured-news-item', 'CommunityProfile': 'community-profile', 'Company': 'company', 'Company360': 'company360', 'Company360Drilldown': 'company360-drilldown', 'CryptoAbout': 'crypto-about', 'CryptoAccountManagement': 'crypto-acct-mgmt', 'CryptoDeactivate': 'crypto-deactivate', 'CryptoDeposit': 'crypto-deposit', 'CryptoWithdrawal': 'crypto-withdrawal', 'CryptoHome': 'crypto-home', 'CryptoKYC': 'crypto-create-account', 'CryptoPortfolio': 'crypto-portfolio', 'CryptoPortfolioFinTab': 'crypto-fin-subtab', 'CryptoTradable': 'crypto-tradable', 'CryptoTrade': 'crypto-trade', 'CuratedWatchlists': 'curated-watchlists', 'CWLCategoryTable': 'cwl-category', 'CWLDetail': 'cwl-detail', 'Earnings': 'earnings', 'EditorialNews': 'editorial-news', 'ColumnItem.Video': 'editorial-video', 'CorporateGovernance': 'qsp-corporate', 'CustomColumns': 'toolbar', 'DataUtility': 'datautility', 'DataUtilityHeader': 'datautility-hdr', 'EarningsRevenueBarChart': 'qsp-revenue-chart', 'EarningsScatterChart': 'qsp-earnings-chart', 'ESGMiniScore': 'qsp-esg-mini-score', 'EditColumns': 'toolbar', 'Sustainability.PeerScoresTable': 'sustainability-peer-scores-table', 'EventPromo': 'event-promo', 'FeaturePromo': 'feature-promo', 'FinancialsLeafPage': 'qsp-financials', 'FinancialStatement': 'qsp-statement', 'Footer': 'footer', 'FredHistoricalDataTable': 'fred-qsp-historical', 'FullScreenChart': 'chart', 'FullScreenChartMW': 'fullscreen-chart-mw', 'FuturesChain': 'futures-chain', 'Following': 'megathon-follow', 'HistoricalDataTable': 'qsp-historical', 'Holders': 'qsp-holders', 'Holders.Insiders': 'qsp-insiders', 'Holders.InsiderTransaction': 'qsp-insider-transaction', 'Holders.InsiderRoster': 'qsp-insider-roster', 'Holders.Summary': 'qsp-holdings', 'IndexComponents': 'top-components', 'IndustryLanding': 'industry-landing', 'KeyStatistics': 'qsp-key-stats', 'KeyStatisticsLeafPage': 'qsp-keystatistics', 'LineWidthSelector': 'line-width-selector', 'MarketDataTable': 'datautility', 'MarketSummary': 'mrkt-sum', 'MarketSummaryItem': 'mrkt-sum', 'MustRead': 'must-read', 'NewsStreamMyQuoteNews': 'my-quote-news-stream', 'NewsSummary': 'news-summary', 'MyMarketNews': 'my-quote-news', 'MarketNews': 'market-news', 'OptionContracts': 'qsp-options', 'OptionContractsTable': 'qsp-option-table', 'OptionContract:ResultItem': 'qsp-options', 'OptOutBtn': 'opt-out', 'PortfolioBreadcrumb': 'pf-breadcrumb', 'PortfolioControls': 'pf-controls', 'PortfolioHeader': 'pf-summary', 'PortfolioNewsStream': 'pf-news', 'PortfolioTable': 'pf-table', 'PortfolioToolbar': 'toolbar', 'PositionRow': 'datautility', 'PlusDashboard': 'plus-dashboard', 'PremiumPortal': 'prm-prtl', 'PremiumPromoHeader': 'prm-prmo-hdr', 'PremiumPromoFooter': 'prm-prmo-ftr', 'PressRelease': 'press-releases', 'QSP.FeaturedNews': 'qsp-featured-news', 'QSPSubNav': 'qsp-subnav', 'QSP.News': 'qsp-news', 'QSP.Section': 'qsp-section', 'QSPAddToWatchlist': 'qsp-hdr', 'Quote': 'qsp', 'QuoteContainer': 'qsp', 'QuoteHeader': 'quote-header', 'QuoteNews': 'quote-news', 'QuotesNews': 'quotes-news', 'QuotePill': 'quote-pill', 'QuoteRelated': 'qsp-related', 'QuoteRelatedVideo': 'related-video', 'QuoteSearchAd': 'qsp-search-ad', 'RecommendationsBySymbol': 'recommended-symbols', 'RecommendationsBySymbolSimilar': 'similar-symbols', 'ReportDetail': 'report-detail', 'Research': 'research', 'ResearchInsights': 'research-insights', 'QSPResearchReports': 'qsp-research-reports', 'ScreenerLanding': 'screener-landing', 'ScreenerPlusList': 'screener-plus-list', 'ScreenerCriteria': 'screener-criteria', 'ScreenerFilter': 'screener-filter', 'ScreenerNewFilter': 'screener-new-filter', 'ScreenerResults': 'screener-results', 'ScreenerSaveModal': 'screener-save-modal', 'ScreenerShare': 'screener-share', 'SecFilings': 'qsp-filings', 'SymbolRemoval': 'datautility', 'VideosLeftNav': 'videos-left-nav', 'SwitchVideo': 'video-switch', 'TableHead': 'datautility', 'TableRow': 'datautility', 'TickerNews': 'ticker-news', 'Trumponomics': 'trumponomics', 'UserInsights': 'user-insights', 'Virgo:ResultItem': 'chart', 'VideoPlayerWithLangSelector': 'video-player', 'YFinListTable': 'yfin-list-table'}, 'enableConsentData': True}, 'pageConfig': {'headerOverride': None}, 'routeConfig': {'base': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'runtimeConfig': {'rapid': {'keys': {'rvt': 'AAPL', 'ticker': 'AAPL', 'pl1': 'us_market', 'pl2': 'NMS', 'pstcat': 'equities', 'pg_name': 'financials'}}}}, 'PageTransitionStore': {'_appConfig': {'pageTransition': {'enabled': True, 'handleSameTarget': False, 'pluginName': 'modal-fade'}}, '_currentRoute': {'path': '/quote/:symbol/:category?', 'method': 'get', 'page': 'quote', 'action': 'loadQuotePage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}, 'name': 'quote', 'url': '/quote/AAPL/financials?p=AAPL&lang=en-US®ion=US', 'params': {'symbol': 'AAPL', 'category': 'financials', 'quoteType': 'EQUITY', 'subscribed': '0', 'inTrial': '0', 'enablePremium': '1', 'enableTrading': '1'}, 'query': {'lang': 'en-US', 'p': 'AAPL', 'region': 'US'}}, '_currentRenderTarget': {'referrer': {'route': {}}, 'id': 'default', 'guid': 0, 'classNames': 'render-target-default', 'owner': 'app', 'elementId': 'render-target-default', 'url': ''}, '_renderTargets': {'default': {'referrer': {'route': {}}, 'id': 'default', 'guid': 0, 'classNames': 'render-target-default', 'owner': 'app', 'elementId': 'render-target-default', 'url': ''}}}, 'VideoPlayerStore': {'_config': {'docking': {'enableOnScrollDown': False, 'enableOnScrollUp': False, 'fadeInAnimation': True, 'position': {'left': 'ref', 'right': 0, 'bottom': 45}, 'ref': '.modal-open .render-target-modal .modalRight', 'width': 300, 'height': 168.75, 'threshold': 60, 'enableOnMuted': True, 'showInfoCard': False}, 'enableRestoreOnNavigate': True, 'enableUndockOnNavigate': True, 'refreshDockingOnNavigate': True, 'totalInactivePlayers': 10, 'videoClickSrc': ['video-click', 'startScreen']}, '_playerConfig': {}}, 'QuoteAutoCompleteStore': {'clear': True}, 'NavrailStore': {'showNavrail': False, 'navTitle': 'finance', 'navSections': '', 'currentUrl': '/quote/AAPL/financials?p=AAPL&lang=en-US®ion=US', 'pageType': {}, 'navSectionsDisplayTitle': {}, 'site': 'finance'}, 'StreamDataStore': {'quoteData': {'^TNX': {'sourceInterval': 30, 'exchange': 'NYB', 'regularMarketTime': {'raw': 1675698889, 'fmt': '10:54AM EST'}, 'shortName': '10-Yr Bond', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0.085999966, 'fmt': '0.0860'}, 'regularMarketPreviousClose': {'raw': 3.532, 'fmt': '3.5320'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 10, 'customPriceAlertConfidence': 'LOW', 'priceHint': 4, 'regularMarketPrice': {'raw': 3.618, 'fmt': '3.6180'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': -252356400000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^TNX', 'language': 'en-US', 'market': 'us24_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 2.43488, 'fmt': '2.43%'}, 'fullExchangeName': 'ICE Futures', 'tradeable': False}, 'AMZN': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 102.925, 'fmt': '102.93'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699790, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '81.43 - 170.8315', 'fmt': '81.43 - 170.83'}, 'sharesOutstanding': {'raw': 10201700352, 'fmt': '10.202B', 'longFmt': '10,201,700,352'}, 'regularMarketDayHigh': {'raw': 103.9484, 'fmt': '103.95'}, 'shortName': 'Amazon.com, Inc.', 'longName': 'Amazon.com, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -1.8150024, 'fmt': '-1.82'}, 'regularMarketPreviousClose': {'raw': 103.39, 'fmt': '103.39'}, 'fiftyTwoWeekHighChange': {'raw': -69.2565, 'fmt': '-69.26'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 20.144997, 'fmt': '20.14'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 100.65, 'fmt': '100.65'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 101.575, 'fmt': '101.57'}, 'regularMarketVolume': {'raw': 34760911, 'fmt': '34.761M', 'longFmt': '34,760,911'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 863703000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1036237668352, 'fmt': '1.036T', 'longFmt': '1,036,237,668,352'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'AMZN', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.24739036, 'fmt': '24.74%'}, 'regularMarketDayRange': {'raw': '100.65 - 103.9484', 'fmt': '100.65 - 103.95'}, 'messageBoardId': 'finmb_18749', 'fiftyTwoWeekHigh': {'raw': 170.8315, 'fmt': '170.83'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.40540826, 'fmt': '-40.54%'}, 'uuid': '261fd26b-0151-3813-b0d0-97e4ed4c6505', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 81.43, 'fmt': '81.43'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.7554913, 'fmt': '-1.76%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'GOOG': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 102.685, 'fmt': '102.68'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699788, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '83.45 - 144.1625', 'fmt': '83.45 - 144.16'}, 'sharesOutstanding': {'raw': 5968000000, 'fmt': '5.968B', 'longFmt': '5,968,000,000'}, 'regularMarketDayHigh': {'raw': 104.69, 'fmt': '104.69'}, 'shortName': 'Alphabet Inc.', 'longName': 'Alphabet Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.5699997, 'fmt': '-2.57'}, 'regularMarketPreviousClose': {'raw': 105.22, 'fmt': '105.22'}, 'fiftyTwoWeekHighChange': {'raw': -41.512505, 'fmt': '-41.51'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 19.200005, 'fmt': '19.20'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 102.21, 'fmt': '102.21'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 102.65, 'fmt': '102.65'}, 'regularMarketVolume': {'raw': 9844592, 'fmt': '9.845M', 'longFmt': '9,844,592'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1092922200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1311702777856, 'fmt': '1.312T', 'longFmt': '1,311,702,777,856'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'GOOG', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.23007795, 'fmt': '23.01%'}, 'regularMarketDayRange': {'raw': '102.21 - 104.69', 'fmt': '102.21 - 104.69'}, 'messageBoardId': 'finmb_29096', 'fiftyTwoWeekHigh': {'raw': 144.1625, 'fmt': '144.16'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.28795633, 'fmt': '-28.80%'}, 'uuid': 'ee8cce8c-2475-31c0-8436-ecdf889cbfbd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 83.45, 'fmt': '83.45'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -2.442501, 'fmt': '-2.44%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'NFLX': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 363.642, 'fmt': '363.64'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699786, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '162.71 - 412.98', 'fmt': '162.71 - 412.98'}, 'sharesOutstanding': {'raw': 445347008, 'fmt': '445.347M', 'longFmt': '445,347,008'}, 'regularMarketDayHigh': {'raw': 368.45, 'fmt': '368.45'}, 'shortName': 'Netflix, Inc.', 'longName': 'Netflix, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.7799072, 'fmt': '-2.78'}, 'regularMarketPreviousClose': {'raw': 365.9, 'fmt': '365.90'}, 'fiftyTwoWeekHighChange': {'raw': -49.859924, 'fmt': '-49.86'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 200.41008, 'fmt': '200.41'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 360.7, 'fmt': '360.70'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 363.1201, 'fmt': '363.12'}, 'regularMarketVolume': {'raw': 1893254, 'fmt': '1.893M', 'longFmt': '1,893,254'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1022160600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 161714438144, 'fmt': '161.714B', 'longFmt': '161,714,438,144'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'NFLX', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 1.231701, 'fmt': '123.17%'}, 'regularMarketDayRange': {'raw': '360.7 - 368.45', 'fmt': '360.70 - 368.45'}, 'messageBoardId': 'finmb_32012', 'fiftyTwoWeekHigh': {'raw': 412.98, 'fmt': '412.98'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.120732054, 'fmt': '-12.07%'}, 'uuid': '1a1cddac-4d41-374d-b202-739314177b67', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 162.71, 'fmt': '162.71'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.75974506, 'fmt': '-0.76%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'KOSS': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.82, 'fmt': '5.82'}, 'exchange': 'NCM', 'regularMarketTime': {'raw': 1675697530, 'fmt': '10:32AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.44 - 12.86', 'fmt': '4.44 - 12.86'}, 'sharesOutstanding': {'raw': 9189800, 'fmt': '9.19M', 'longFmt': '9,189,800'}, 'regularMarketDayHigh': {'raw': 5.88, 'fmt': '5.88'}, 'shortName': 'Koss Corporation', 'longName': 'Koss Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0.01999998, 'fmt': '0.02'}, 'regularMarketPreviousClose': {'raw': 5.8, 'fmt': '5.80'}, 'fiftyTwoWeekHighChange': {'raw': -7.0399995, 'fmt': '-7.04'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1.3800001, 'fmt': '1.38'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.8, 'fmt': '5.80'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.82, 'fmt': '5.82'}, 'regularMarketVolume': {'raw': 2746, 'fmt': '2,746', 'longFmt': '2,746'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 322151400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 53484636, 'fmt': '53.485M', 'longFmt': '53,484,636'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'KOSS', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.31081083, 'fmt': '31.08%'}, 'regularMarketDayRange': {'raw': '5.8 - 5.88', 'fmt': '5.80 - 5.88'}, 'messageBoardId': 'finmb_283448', 'fiftyTwoWeekHigh': {'raw': 12.86, 'fmt': '12.86'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.54743385, 'fmt': '-54.74%'}, 'uuid': 'ad708ee0-5672-30f5-85f6-bbbcb3e0eccd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.44, 'fmt': '4.44'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.34482723, 'fmt': '0.34%'}, 'fullExchangeName': 'NasdaqCM', 'tradeable': False}, '^N225': {'sourceInterval': 20, 'quoteSourceName': 'Delayed Quote', 'exchange': 'OSA', 'regularMarketTime': {'raw': 1675664103, 'fmt': '3:15PM JST'}, 'shortName': 'Nikkei 225', 'exchangeTimezoneName': 'Asia/Tokyo', 'regularMarketChange': {'raw': 184.18945, 'fmt': '184.19'}, 'regularMarketPreviousClose': {'raw': 27509.46, 'fmt': '27,509.46'}, 'exchangeTimezoneShortName': 'JST', 'exchangeDataDelayedBy': 20, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 27693.65, 'fmt': '27,693.65'}, 'triggerable': False, 'gmtOffSetMilliseconds': 32400000, 'firstTradeDateMilliseconds': -157420800000, 'region': 'US', 'marketState': 'PREPRE', 'quoteType': 'INDEX', 'symbol': '^N225', 'language': 'en-US', 'market': 'jp_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.6695495, 'fmt': '0.67%'}, 'fullExchangeName': 'Osaka', 'tradeable': False}, 'GC=F': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CMX', 'regularMarketTime': {'raw': 1675699191, 'fmt': '10:59AM EST'}, 'shortName': 'Gold', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 2.4000244, 'fmt': '2.40'}, 'regularMarketPreviousClose': {'raw': 1862.9, 'fmt': '1,862.90'}, 'contractSymbol': False, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 10, 'customPriceAlertConfidence': 'NONE', 'regularMarketPrice': {'raw': 1879, 'fmt': '1,879.00'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 967608000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'FUTURE', 'symbol': 'GC=F', 'language': 'en-US', 'headSymbol': True, 'headSymbolAsString': 'GC=F', 'market': 'us24_market', 'typeDisp': 'Futures', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.12789217, 'fmt': '0.13%'}, 'fullExchangeName': 'COMEX', 'tradeable': False}, 'META': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 186.53, 'fmt': '186.53'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699788, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '88.09 - 238.3', 'fmt': '88.09 - 238.30'}, 'sharesOutstanding': {'raw': 2255320064, 'fmt': '2.255B', 'longFmt': '2,255,320,064'}, 'regularMarketDayHigh': {'raw': 190.7, 'fmt': '190.70'}, 'shortName': 'Meta Platforms, Inc.', 'longName': 'Meta Platforms, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 1.6800079, 'fmt': '1.68'}, 'regularMarketPreviousClose': {'raw': 186.53, 'fmt': '186.53'}, 'fiftyTwoWeekHighChange': {'raw': -50.089996, 'fmt': '-50.09'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 100.12001, 'fmt': '100.12'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 185.8, 'fmt': '185.80'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 188.21, 'fmt': '188.21'}, 'regularMarketVolume': {'raw': 17709651, 'fmt': '17.71M', 'longFmt': '17,709,651'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1337347800000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 493524287488, 'fmt': '493.524B', 'longFmt': '493,524,287,488'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'META', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 1.1365651, 'fmt': '113.66%'}, 'regularMarketDayRange': {'raw': '185.8 - 190.7', 'fmt': '185.80 - 190.70'}, 'messageBoardId': 'finmb_20765463', 'fiftyTwoWeekHigh': {'raw': 238.3, 'fmt': '238.30'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.21019721, 'fmt': '-21.02%'}, 'uuid': 'e59f1c4f-b1aa-3d70-a8c3-eb59ff3e461b', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 88.09, 'fmt': '88.09'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.9006637, 'fmt': '0.90%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, '^DJI': {'sourceInterval': 120, 'quoteSourceName': 'Free Realtime Quote', 'exchange': 'DJI', 'regularMarketTime': {'raw': 1675699791, 'fmt': '11:09AM EST'}, 'shortName': 'Dow 30', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -102.77344, 'fmt': '-102.77'}, 'regularMarketPreviousClose': {'raw': 33926.01, 'fmt': '33,926.01'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 33823.24, 'fmt': '33,823.24'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 694362600000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^DJI', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.30293405, 'fmt': '-0.30%'}, 'fullExchangeName': 'DJI', 'tradeable': False}, 'GPRO': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.64, 'fmt': '5.64'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699789, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.5 - 9.42', 'fmt': '4.50 - 9.42'}, 'sharesOutstanding': {'raw': 129668000, 'fmt': '129.668M', 'longFmt': '129,668,000'}, 'regularMarketDayHigh': {'raw': 5.76, 'fmt': '5.76'}, 'shortName': 'GoPro, Inc.', 'longName': 'GoPro, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.19000006, 'fmt': '-0.19'}, 'regularMarketPreviousClose': {'raw': 5.69, 'fmt': '5.69'}, 'fiftyTwoWeekHighChange': {'raw': -3.92, 'fmt': '-3.92'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1, 'fmt': '1.00'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.475, 'fmt': '5.47'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.5, 'fmt': '5.50'}, 'regularMarketVolume': {'raw': 1028969, 'fmt': '1.029M', 'longFmt': '1,028,969'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1403789400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 857598528, 'fmt': '857.599M', 'longFmt': '857,598,528'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'GPRO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.22222222, 'fmt': '22.22%'}, 'regularMarketDayRange': {'raw': '5.475 - 5.76', 'fmt': '5.47 - 5.76'}, 'messageBoardId': 'finmb_113665065', 'fiftyTwoWeekHigh': {'raw': 9.42, 'fmt': '9.42'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.41613588, 'fmt': '-41.61%'}, 'uuid': 'd831d8ea-3a6d-36de-af60-081896d375cd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.5, 'fmt': '4.50'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.3391926, 'fmt': '-3.34%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'SONY': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 90.86, 'fmt': '90.86'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675699786, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '61.72 - 111.98', 'fmt': '61.72 - 111.98'}, 'sharesOutstanding': {'raw': 1234690048, 'fmt': '1.235B', 'longFmt': '1,234,690,048'}, 'regularMarketDayHigh': {'raw': 90.84, 'fmt': '90.84'}, 'shortName': 'Sony Group Corporation', 'longName': 'Sony Group Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -3.3899994, 'fmt': '-3.39'}, 'regularMarketPreviousClose': {'raw': 93.13, 'fmt': '93.13'}, 'fiftyTwoWeekHighChange': {'raw': -22.240005, 'fmt': '-22.24'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 28.019997, 'fmt': '28.02'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 89.6211, 'fmt': '89.62'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 89.74, 'fmt': '89.74'}, 'regularMarketVolume': {'raw': 235981, 'fmt': '235,981', 'longFmt': '235,981'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 99153000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 110801084416, 'fmt': '110.801B', 'longFmt': '110,801,084,416'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SONY', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.4539857, 'fmt': '45.40%'}, 'regularMarketDayRange': {'raw': '89.6211 - 90.84', 'fmt': '89.62 - 90.84'}, 'messageBoardId': 'finmb_23021', 'fiftyTwoWeekHigh': {'raw': 111.98, 'fmt': '111.98'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.19860694, 'fmt': '-19.86%'}, 'uuid': '51ec1656-6a66-39d0-8159-ed49cf2f2289', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 61.72, 'fmt': '61.72'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.6400726, 'fmt': '-3.64%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, '^IXIC': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'NIM', 'regularMarketTime': {'raw': 1675699785, 'fmt': '11:09AM EST'}, 'shortName': 'Nasdaq', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -86.2168, 'fmt': '-86.22'}, 'regularMarketPreviousClose': {'raw': 12007, 'fmt': '12,007.00'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 11920.738, 'fmt': '11,920.74'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 34612200000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^IXIC', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.7180571, 'fmt': '-0.72%'}, 'fullExchangeName': 'Nasdaq GIDS', 'tradeable': False}, 'LPL': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 5.52, 'fmt': '5.52'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675698891, 'fmt': '10:54AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.08 - 8.53', 'fmt': '4.08 - 8.53'}, 'sharesOutstanding': {'raw': 715630976, 'fmt': '715.631M', 'longFmt': '715,630,976'}, 'regularMarketDayHigh': {'raw': 5.52, 'fmt': '5.52'}, 'shortName': 'LG Display Co, Ltd AMERICAN DEP', 'longName': 'LG Display Co., Ltd.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.1949997, 'fmt': '-0.19'}, 'regularMarketPreviousClose': {'raw': 5.68, 'fmt': '5.68'}, 'fiftyTwoWeekHighChange': {'raw': -3.0449996, 'fmt': '-3.04'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1.4050002, 'fmt': '1.41'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.46, 'fmt': '5.46'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.485, 'fmt': '5.49'}, 'regularMarketVolume': {'raw': 76348, 'fmt': '76,348', 'longFmt': '76,348'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1090503000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 3925235968, 'fmt': '3.925B', 'longFmt': '3,925,235,968'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'LPL', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.3443628, 'fmt': '34.44%'}, 'regularMarketDayRange': {'raw': '5.46 - 5.52', 'fmt': '5.46 - 5.52'}, 'messageBoardId': 'finmb_5471044', 'fiftyTwoWeekHigh': {'raw': 8.53, 'fmt': '8.53'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.35697535, 'fmt': '-35.70%'}, 'uuid': '78df0a6f-207d-3a77-adfe-657f86e6d5c9', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.08, 'fmt': '4.08'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.4330933, 'fmt': '-3.43%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, 'SSNLF': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 40.5999, 'fmt': '40.60'}, 'exchange': 'PNK', 'regularMarketTime': {'raw': 1664306331, 'fmt': '3:18PM EDT'}, 'fiftyTwoWeekRange': {'raw': '40.5999 - 57.75', 'fmt': '40.60 - 57.75'}, 'sharesOutstanding': {'raw': 5969780224, 'fmt': '5.97B', 'longFmt': '5,969,780,224'}, 'regularMarketDayHigh': {'raw': 40.5999, 'fmt': '40.60'}, 'shortName': 'SAMSUNG ELECTRONICS CO', 'longName': 'Samsung Electronics Co., Ltd.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0, 'fmt': '0.00'}, 'regularMarketPreviousClose': {'raw': 40.5999, 'fmt': '40.60'}, 'fiftyTwoWeekHighChange': {'raw': -17.1501, 'fmt': '-17.15'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 0, 'fmt': '0.00'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketDayLow': {'raw': 40.5999, 'fmt': '40.60'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 40.5999, 'fmt': '40.60'}, 'regularMarketVolume': {'raw': 200, 'fmt': '200', 'longFmt': '200'}, 'isLoading': False, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 997104600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 301846429696, 'fmt': '301.846B', 'longFmt': '301,846,429,696'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SSNLF', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0, 'fmt': '0.00%'}, 'regularMarketDayRange': {'raw': '40.5999 - 40.5999', 'fmt': '40.60 - 40.60'}, 'messageBoardId': 'finmb_91868', 'fiftyTwoWeekHigh': {'raw': 57.75, 'fmt': '57.75'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.29697144, 'fmt': '-29.70%'}, 'uuid': '5f5ae02b-3a86-367d-b20b-055520cea9ae', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 40.5999, 'fmt': '40.60'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0, 'fmt': '0.00%'}, 'fullExchangeName': 'Other OTC', 'tradeable': False}, 'VZIO': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 9.44, 'fmt': '9.44'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675699688, 'fmt': '11:08AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.47 - 15.42', 'fmt': '6.47 - 15.42'}, 'sharesOutstanding': {'raw': 117636000, 'fmt': '117.636M', 'longFmt': '117,636,000'}, 'regularMarketDayHigh': {'raw': 9.505, 'fmt': '9.51'}, 'shortName': 'VIZIO Holding Corp.', 'longName': 'VIZIO Holding Corp.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.34999943, 'fmt': '-0.35'}, 'regularMarketPreviousClose': {'raw': 9.57, 'fmt': '9.57'}, 'fiftyTwoWeekHighChange': {'raw': -6.2, 'fmt': '-6.20'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.7500005, 'fmt': '2.75'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 9.13, 'fmt': '9.13'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 9.22, 'fmt': '9.22'}, 'regularMarketVolume': {'raw': 45393, 'fmt': '45,393', 'longFmt': '45,393'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1616765400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1792829056, 'fmt': '1.793B', 'longFmt': '1,792,829,056'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'VZIO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.42503873, 'fmt': '42.50%'}, 'regularMarketDayRange': {'raw': '9.13 - 9.505', 'fmt': '9.13 - 9.51'}, 'messageBoardId': 'finmb_27650657', 'fiftyTwoWeekHigh': {'raw': 15.42, 'fmt': '15.42'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.4020752, 'fmt': '-40.21%'}, 'uuid': '98dc8f95-157e-3c62-b8f9-ea5c671822cd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.47, 'fmt': '6.47'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.6572564, 'fmt': '-3.66%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, 'BTC-USD': {'sourceInterval': 15, 'quoteSourceName': 'CoinMarketCap', 'exchange': 'CCC', 'regularMarketTime': {'raw': 1675699620, 'fmt': '4:07PM UTC'}, 'exchangeTimezoneName': 'UTC', 'regularMarketChange': {'raw': -65.80469, 'fmt': '-65.80'}, 'regularMarketPreviousClose': {'raw': 22959.066, 'fmt': '22,959.07'}, 'exchangeTimezoneShortName': 'UTC', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketPrice': {'raw': 23061.99, 'fmt': '23,061.99'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 1410912000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'CRYPTOCURRENCY', 'symbol': 'BTC-USD', 'language': 'en-US', 'market': 'ccc_market', 'typeDisp': 'Cryptocurrency', 'cryptoTradeable': True, 'regularMarketChangePercent': {'raw': -0.284531, 'fmt': '-0.28%'}, 'fullExchangeName': 'CCC', 'tradeable': False}, 'GBPUSD=X': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CCY', 'regularMarketTime': {'raw': 1675699673, 'fmt': '4:07PM GMT'}, 'shortName': 'GBP/USD', 'exchangeTimezoneName': 'Europe/London', 'regularMarketChange': {'raw': -0.003478527, 'fmt': '-0.0035'}, 'regularMarketPreviousClose': {'raw': 1.2056472, 'fmt': '1.2056'}, 'exchangeTimezoneShortName': 'GMT', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 4, 'currency': 'USD', 'regularMarketPrice': {'raw': 1.2021687, 'fmt': '1.2022'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 1070236800000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'CURRENCY', 'symbol': 'GBPUSD=X', 'language': 'en-US', 'market': 'ccy_market', 'typeDisp': 'Currency', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.28852537, 'fmt': '-0.29%'}, 'fullExchangeName': 'CCY', 'tradeable': False}, 'HEAR': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 9.29, 'fmt': '9.29'}, 'exchange': 'NGM', 'regularMarketTime': {'raw': 1675699651, 'fmt': '11:07AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.22 - 25.33', 'fmt': '6.22 - 25.33'}, 'sharesOutstanding': {'raw': 16557000, 'fmt': '16.557M', 'longFmt': '16,557,000'}, 'regularMarketDayHigh': {'raw': 9.29, 'fmt': '9.29'}, 'shortName': 'Turtle Beach Corporation', 'longName': 'Turtle Beach Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.28999996, 'fmt': '-0.29'}, 'regularMarketPreviousClose': {'raw': 9.33, 'fmt': '9.33'}, 'fiftyTwoWeekHighChange': {'raw': -16.29, 'fmt': '-16.29'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.8200002, 'fmt': '2.82'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 8.94, 'fmt': '8.94'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 9.04, 'fmt': '9.04'}, 'regularMarketVolume': {'raw': 23439, 'fmt': '23,439', 'longFmt': '23,439'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1289831400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 149675280, 'fmt': '149.675M', 'longFmt': '149,675,280'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'HEAR', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.45337626, 'fmt': '45.34%'}, 'regularMarketDayRange': {'raw': '8.94 - 9.29', 'fmt': '8.94 - 9.29'}, 'messageBoardId': 'finmb_851282', 'fiftyTwoWeekHigh': {'raw': 25.33, 'fmt': '25.33'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.643111, 'fmt': '-64.31%'}, 'uuid': '58194bdb-92f1-3b95-b21e-5b66d5d67f2f', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.22, 'fmt': '6.22'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.1082525, 'fmt': '-3.11%'}, 'fullExchangeName': 'NasdaqGM', 'tradeable': False}, 'VUZI': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.66, 'fmt': '5.66'}, 'exchange': 'NCM', 'regularMarketTime': {'raw': 1675699642, 'fmt': '11:07AM EST'}, 'fiftyTwoWeekRange': {'raw': '3.27 - 10.49', 'fmt': '3.27 - 10.49'}, 'sharesOutstanding': {'raw': 63739600, 'fmt': '63.74M', 'longFmt': '63,739,600'}, 'regularMarketDayHigh': {'raw': 5.8, 'fmt': '5.80'}, 'shortName': 'Vuzix Corporation', 'longName': 'Vuzix Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.14069986, 'fmt': '-0.14'}, 'regularMarketPreviousClose': {'raw': 5.75, 'fmt': '5.75'}, 'fiftyTwoWeekHighChange': {'raw': -4.8806996, 'fmt': '-4.88'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.3393002, 'fmt': '2.34'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.49, 'fmt': '5.49'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.6093, 'fmt': '5.61'}, 'regularMarketVolume': {'raw': 367816, 'fmt': '367,816', 'longFmt': '367,816'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1270474200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 357534560, 'fmt': '357.535M', 'longFmt': '357,534,560'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'VUZI', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.71538234, 'fmt': '71.54%'}, 'regularMarketDayRange': {'raw': '5.49 - 5.8', 'fmt': '5.49 - 5.80'}, 'messageBoardId': 'finmb_13610016', 'fiftyTwoWeekHigh': {'raw': 10.49, 'fmt': '10.49'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.46527165, 'fmt': '-46.53%'}, 'uuid': 'b42c8863-c6d0-341b-9d51-442783839350', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 3.27, 'fmt': '3.27'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -2.4469543, 'fmt': '-2.45%'}, 'fullExchangeName': 'NasdaqCM', 'tradeable': False}, 'JPY=X': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CCY', 'regularMarketTime': {'raw': 1675699790, 'fmt': '4:09PM GMT'}, 'shortName': 'USD/JPY', 'exchangeTimezoneName': 'Europe/London', 'regularMarketChange': {'raw': 1.6840057, 'fmt': '1.6840'}, 'regularMarketPreviousClose': {'raw': 131.15, 'fmt': '131.1500'}, 'exchangeTimezoneShortName': 'GMT', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 4, 'currency': 'JPY', 'regularMarketPrice': {'raw': 132.834, 'fmt': '132.8340'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 846633600000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'CURRENCY', 'symbol': 'JPY=X', 'language': 'en-US', 'market': 'ccy_market', 'typeDisp': 'Currency', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 1.2840303, 'fmt': '1.28%'}, 'fullExchangeName': 'CCY', 'tradeable': False}, 'PCRFY': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 8.62, 'fmt': '8.62'}, 'exchange': 'PNK', 'regularMarketTime': {'raw': 1675698716, 'fmt': '10:51AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.66 - 10.89', 'fmt': '6.66 - 10.89'}, 'sharesOutstanding': {'raw': 2334089984, 'fmt': '2.334B', 'longFmt': '2,334,089,984'}, 'regularMarketDayHigh': {'raw': 8.745, 'fmt': '8.74'}, 'shortName': 'PANASONIC HOLDINGS CORP ADR-EAC', 'longName': 'Panasonic Holdings Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.08000088, 'fmt': '-0.08'}, 'regularMarketPreviousClose': {'raw': 8.77, 'fmt': '8.77'}, 'fiftyTwoWeekHighChange': {'raw': -2.2000008, 'fmt': '-2.20'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.0299997, 'fmt': '2.03'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketDayLow': {'raw': 8.62, 'fmt': '8.62'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 8.69, 'fmt': '8.69'}, 'regularMarketVolume': {'raw': 47805, 'fmt': '47,805', 'longFmt': '47,805'}, 'isLoading': False, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 322151400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 20283240448, 'fmt': '20.283B', 'longFmt': '20,283,240,448'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'PCRFY', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.30480477, 'fmt': '30.48%'}, 'regularMarketDayRange': {'raw': '8.62 - 8.745', 'fmt': '8.62 - 8.74'}, 'messageBoardId': 'finmb_320433', 'fiftyTwoWeekHigh': {'raw': 10.89, 'fmt': '10.89'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.20202027, 'fmt': '-20.20%'}, 'uuid': '01e8db59-6c12-3ae1-a223-b71412148081', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.66, 'fmt': '6.66'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.91221064, 'fmt': '-0.91%'}, 'fullExchangeName': 'Other OTC', 'tradeable': False}, 'CL=F': {'sourceInterval': 30, 'quoteSourceName': 'Delayed Quote', 'exchange': 'NYM', 'regularMarketTime': {'raw': 1675699192, 'fmt': '10:59AM EST'}, 'shortName': 'Crude Oil', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.94000244, 'fmt': '-0.94'}, 'regularMarketPreviousClose': {'raw': 73.39, 'fmt': '73.39'}, 'contractSymbol': False, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 10, 'customPriceAlertConfidence': 'NONE', 'regularMarketPrice': {'raw': 72.45, 'fmt': '72.45'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 967003200000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'FUTURE', 'symbol': 'CL=F', 'language': 'en-US', 'headSymbol': True, 'headSymbolAsString': 'CL=F', 'market': 'us24_market', 'typeDisp': 'Futures', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.2808318, 'fmt': '-1.28%'}, 'fullExchangeName': 'NY Mercantile', 'tradeable': False}, '^RUT': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'WCB', 'regularMarketTime': {'raw': 1675698890, 'fmt': '10:54AM EST'}, 'shortName': 'Russell 2000', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -23.233154, 'fmt': '-23.23'}, 'regularMarketPreviousClose': {'raw': 1985.5343, 'fmt': '1,985.53'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 15, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 1962.3011, 'fmt': '1,962.30'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 558279000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^RUT', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.1701211, 'fmt': '-1.17%'}, 'fullExchangeName': 'Chicago Options', 'tradeable': False}, 'TSLA': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 193.01, 'fmt': '193.01'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699791, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '101.81 - 384.29', 'fmt': '101.81 - 384.29'}, 'sharesOutstanding': {'raw': 3164100096, 'fmt': '3.164B', 'longFmt': '3,164,100,096'}, 'regularMarketDayHigh': {'raw': 198.16, 'fmt': '198.16'}, 'shortName': 'Tesla, Inc.', 'longName': 'Tesla, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 4.7882996, 'fmt': '4.79'}, 'regularMarketPreviousClose': {'raw': 189.98, 'fmt': '189.98'}, 'fiftyTwoWeekHighChange': {'raw': -189.52171, 'fmt': '-189.52'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 92.9583, 'fmt': '92.96'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 189.92, 'fmt': '189.92'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 194.7683, 'fmt': '194.77'}, 'regularMarketVolume': {'raw': 86488569, 'fmt': '86.489M', 'longFmt': '86,488,569'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1277818200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 616266399744, 'fmt': '616.266B', 'longFmt': '616,266,399,744'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'TSLA', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.9130567, 'fmt': '91.31%'}, 'regularMarketDayRange': {'raw': '189.92 - 198.16', 'fmt': '189.92 - 198.16'}, 'messageBoardId': 'finmb_27444752', 'fiftyTwoWeekHigh': {'raw': 384.29, 'fmt': '384.29'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.49317366, 'fmt': '-49.32%'}, 'uuid': 'ec367bc4-f92c-397c-ac81-bf7b43cffaf7', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 101.81, 'fmt': '101.81'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 2.520423, 'fmt': '2.52%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, '^CMC200': {'sourceInterval': 15, 'quoteSourceName': 'Free Realtime Quote', 'exchange': 'NIM', 'regularMarketTime': {'raw': 1675699637, 'fmt': '11:07AM EST'}, 'shortName': 'CMC Crypto 200', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 4.818054, 'fmt': '4.82'}, 'regularMarketPreviousClose': {'raw': 525.1342, 'fmt': '525.13'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 529.9523, 'fmt': '529.95'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1546266600000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^CMC200', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.91749, 'fmt': '0.92%'}, 'fullExchangeName': 'Nasdaq GIDS', 'tradeable': False}, 'AAPL': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 152.575, 'fmt': '152.57'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699791, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '124.17 - 179.61', 'fmt': '124.17 - 179.61'}, 'sharesOutstanding': {'raw': 15821899776, 'fmt': '15.822B', 'longFmt': '15,821,899,776'}, 'regularMarketDayHigh': {'raw': 153.1, 'fmt': '153.10'}, 'shortName': 'Apple Inc.', 'longName': 'Apple Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.2789001, 'fmt': '-2.28'}, 'regularMarketPreviousClose': {'raw': 154.5, 'fmt': '154.50'}, 'fiftyTwoWeekHighChange': {'raw': -27.3889, 'fmt': '-27.39'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 28.051102, 'fmt': '28.05'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 150.9, 'fmt': '150.90'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 152.2211, 'fmt': '152.22'}, 'regularMarketVolume': {'raw': 27877131, 'fmt': '27.877M', 'longFmt': '27,877,131'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 345479400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 2408427028480, 'fmt': '2.408T', 'longFmt': '2,408,427,028,480'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [{'header': 'Dividend', 'message': 'AAPL announced a cash dividend of 0.23 with an ex-date of Feb. 10, 2023', 'meta': {'eventType': 'DIVIDEND', 'dateEpochMs': 1675969200000}}], 'symbol': 'AAPL', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.22590885, 'fmt': '22.59%'}, 'regularMarketDayRange': {'raw': '150.9 - 153.1', 'fmt': '150.90 - 153.10'}, 'messageBoardId': 'finmb_24937', 'fiftyTwoWeekHigh': {'raw': 179.61, 'fmt': '179.61'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.15249096, 'fmt': '-15.25%'}, 'uuid': '8b10e4ae-9eeb-3684-921a-9ab27e4d87aa', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 124.17, 'fmt': '124.17'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.4750162, 'fmt': '-1.48%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'SONO': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 18.66, 'fmt': '18.66'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699680, 'fmt': '11:08AM EST'}, 'fiftyTwoWeekRange': {'raw': '13.65 - 31.22', 'fmt': '13.65 - 31.22'}, 'sharesOutstanding': {'raw': 127345000, 'fmt': '127.345M', 'longFmt': '127,345,000'}, 'regularMarketDayHigh': {'raw': 18.66, 'fmt': '18.66'}, 'shortName': 'Sonos, Inc.', 'longName': 'Sonos, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.7350006, 'fmt': '-0.74'}, 'regularMarketPreviousClose': {'raw': 18.91, 'fmt': '18.91'}, 'fiftyTwoWeekHighChange': {'raw': -13.045, 'fmt': '-13.05'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 4.5249996, 'fmt': '4.52'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 18.14, 'fmt': '18.14'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 18.175, 'fmt': '18.17'}, 'regularMarketVolume': {'raw': 510481, 'fmt': '510,481', 'longFmt': '510,481'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1533216600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 2314495232, 'fmt': '2.314B', 'longFmt': '2,314,495,232'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SONO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.3315018, 'fmt': '33.15%'}, 'regularMarketDayRange': {'raw': '18.14 - 18.66', 'fmt': '18.14 - 18.66'}, 'messageBoardId': 'finmb_10654809', 'fiftyTwoWeekHigh': {'raw': 31.22, 'fmt': '31.22'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.41784114, 'fmt': '-41.78%'}, 'uuid': '98c419db-3a58-3f86-8eb4-a664481f7d12', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 13.65, 'fmt': '13.65'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.8868356, 'fmt': '-3.89%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, '^GSPC': {'sourceInterval': 15, 'quoteSourceName': 'Free Realtime Quote', 'exchange': 'SNP', 'regularMarketTime': {'raw': 1675699790, 'fmt': '11:09AM EST'}, 'shortName': 'S&P 500', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -23.29004, 'fmt': '-23.29'}, 'regularMarketPreviousClose': {'raw': 4136.48, 'fmt': '4,136.48'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 4113.19, 'fmt': '4,113.19'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': -1325583000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^GSPC', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.5630401, 'fmt': '-0.56%'}, 'fullExchangeName': 'SNP', 'tradeable': False}, '^FTSE': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'FGI', 'regularMarketTime': {'raw': 1675698890, 'fmt': '3:54PM GMT'}, 'shortName': 'FTSE 100', 'exchangeTimezoneName': 'Europe/London', 'regularMarketChange': {'raw': -70.41992, 'fmt': '-70.42'}, 'regularMarketPreviousClose': {'raw': 7901.8, 'fmt': '7,901.80'}, 'exchangeTimezoneShortName': 'GMT', 'exchangeDataDelayedBy': 15, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 7831.38, 'fmt': '7,831.38'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 441964800000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^FTSE', 'language': 'en-US', 'market': 'gb_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.8911883, 'fmt': '-0.89%'}, 'fullExchangeName': 'FTSE Index', 'tradeable': False}, 'SI=F': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CMX', 'regularMarketTime': {'raw': 1675699192, 'fmt': '10:59AM EST'}, 'shortName': 'Silver', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.125, 'fmt': '-0.12'}, 'regularMarketPreviousClose': {'raw': 22.405, 'fmt': '22.41'}, 'contractSymbol': False, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 10, 'customPriceAlertConfidence': 'NONE', 'regularMarketPrice': {'raw': 22.28, 'fmt': '22.28'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 967608000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'FUTURE', 'symbol': 'SI=F', 'language': 'en-US', 'headSymbol': True, 'headSymbolAsString': 'SI=F', 'market': 'us24_market', 'typeDisp': 'Futures', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.55791116, 'fmt': '-0.56%'}, 'fullExchangeName': 'COMEX', 'tradeable': False}, 'EURUSD=X': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CCY', 'regularMarketTime': {'raw': 1675699673, 'fmt': '4:07PM GMT'}, 'shortName': 'EUR/USD', 'exchangeTimezoneName': 'Europe/London', 'regularMarketChange': {'raw': -0.005566597, 'fmt': '-0.0056'}, 'regularMarketPreviousClose': {'raw': 1.0796804, 'fmt': '1.0797'}, 'exchangeTimezoneShortName': 'GMT', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 4, 'currency': 'USD', 'regularMarketPrice': {'raw': 1.0741138, 'fmt': '1.0741'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 1070236800000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'CURRENCY', 'symbol': 'EURUSD=X', 'language': 'en-US', 'market': 'ccy_market', 'typeDisp': 'Currency', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.5155769, 'fmt': '-0.52%'}, 'fullExchangeName': 'CCY', 'tradeable': False}}, 'mktmData': {}}, 'QuoteSummaryStore': {'financialsTemplate': {'code': 'N', 'maxAge': 1}, 'cashflowStatementHistory': {'cashflowStatements': [{'investments': {'raw': -9560000000, 'fmt': '-9.56B', 'longFmt': '-9,560,000,000'}, 'changeToLiabilities': {'raw': 9926000000, 'fmt': '9.93B', 'longFmt': '9,926,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -22354000000, 'fmt': '-22.35B', 'longFmt': '-22,354,000,000'}, 'netBorrowings': {'raw': -123000000, 'fmt': '-123M', 'longFmt': '-123,000,000'}, 'totalCashFromFinancingActivities': {'raw': -110749000000, 'fmt': '-110.75B', 'longFmt': '-110,749,000,000'}, 'changeToOperatingActivities': {'raw': -8387000000, 'fmt': '-8.39B', 'longFmt': '-8,387,000,000'}, 'netIncome': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}, 'changeInCash': {'raw': -10952000000, 'fmt': '-10.95B', 'longFmt': '-10,952,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'repurchaseOfStock': {'raw': -95625000000, 'fmt': '-95.62B', 'longFmt': '-95,625,000,000'}, 'totalCashFromOperatingActivities': {'raw': 122151000000, 'fmt': '122.15B', 'longFmt': '122,151,000,000'}, 'depreciation': {'raw': 11104000000, 'fmt': '11.1B', 'longFmt': '11,104,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -1780000000, 'fmt': '-1.78B', 'longFmt': '-1,780,000,000'}, 'dividendsPaid': {'raw': -14841000000, 'fmt': '-14.84B', 'longFmt': '-14,841,000,000'}, 'changeToInventory': {'raw': 1484000000, 'fmt': '1.48B', 'longFmt': '1,484,000,000'}, 'changeToAccountReceivables': {'raw': -1823000000, 'fmt': '-1.82B', 'longFmt': '-1,823,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -160000000, 'fmt': '-160M', 'longFmt': '-160,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 10044000000, 'fmt': '10.04B', 'longFmt': '10,044,000,000'}, 'capitalExpenditures': {'raw': -10708000000, 'fmt': '-10.71B', 'longFmt': '-10,708,000,000'}}, {'investments': {'raw': -3075000000, 'fmt': '-3.08B', 'longFmt': '-3,075,000,000'}, 'changeToLiabilities': {'raw': 14002000000, 'fmt': '14B', 'longFmt': '14,002,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -14545000000, 'fmt': '-14.54B', 'longFmt': '-14,545,000,000'}, 'netBorrowings': {'raw': 12665000000, 'fmt': '12.66B', 'longFmt': '12,665,000,000'}, 'totalCashFromFinancingActivities': {'raw': -93353000000, 'fmt': '-93.35B', 'longFmt': '-93,353,000,000'}, 'changeToOperatingActivities': {'raw': -6146000000, 'fmt': '-6.15B', 'longFmt': '-6,146,000,000'}, 'netIncome': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}, 'changeInCash': {'raw': -3860000000, 'fmt': '-3.86B', 'longFmt': '-3,860,000,000'}, 'endDate': {'raw': 1632528000, 'fmt': '2021-09-25'}, 'repurchaseOfStock': {'raw': -92527000000, 'fmt': '-92.53B', 'longFmt': '-92,527,000,000'}, 'totalCashFromOperatingActivities': {'raw': 104038000000, 'fmt': '104.04B', 'longFmt': '104,038,000,000'}, 'depreciation': {'raw': 11284000000, 'fmt': '11.28B', 'longFmt': '11,284,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -352000000, 'fmt': '-352M', 'longFmt': '-352,000,000'}, 'dividendsPaid': {'raw': -14467000000, 'fmt': '-14.47B', 'longFmt': '-14,467,000,000'}, 'changeToInventory': {'raw': -2642000000, 'fmt': '-2.64B', 'longFmt': '-2,642,000,000'}, 'changeToAccountReceivables': {'raw': -10125000000, 'fmt': '-10.12B', 'longFmt': '-10,125,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': 976000000, 'fmt': '976M', 'longFmt': '976,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 2985000000, 'fmt': '2.98B', 'longFmt': '2,985,000,000'}, 'capitalExpenditures': {'raw': -11085000000, 'fmt': '-11.09B', 'longFmt': '-11,085,000,000'}}, {'investments': {'raw': 5453000000, 'fmt': '5.45B', 'longFmt': '5,453,000,000'}, 'changeToLiabilities': {'raw': -1981000000, 'fmt': '-1.98B', 'longFmt': '-1,981,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -4289000000, 'fmt': '-4.29B', 'longFmt': '-4,289,000,000'}, 'netBorrowings': {'raw': 2499000000, 'fmt': '2.5B', 'longFmt': '2,499,000,000'}, 'totalCashFromFinancingActivities': {'raw': -86820000000, 'fmt': '-86.82B', 'longFmt': '-86,820,000,000'}, 'changeToOperatingActivities': {'raw': 881000000, 'fmt': '881M', 'longFmt': '881,000,000'}, 'netIncome': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}, 'changeInCash': {'raw': -10435000000, 'fmt': '-10.44B', 'longFmt': '-10,435,000,000'}, 'endDate': {'raw': 1601078400, 'fmt': '2020-09-26'}, 'repurchaseOfStock': {'raw': -75992000000, 'fmt': '-75.99B', 'longFmt': '-75,992,000,000'}, 'totalCashFromOperatingActivities': {'raw': 80674000000, 'fmt': '80.67B', 'longFmt': '80,674,000,000'}, 'depreciation': {'raw': 11056000000, 'fmt': '11.06B', 'longFmt': '11,056,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -909000000, 'fmt': '-909M', 'longFmt': '-909,000,000'}, 'dividendsPaid': {'raw': -14081000000, 'fmt': '-14.08B', 'longFmt': '-14,081,000,000'}, 'changeToInventory': {'raw': -127000000, 'fmt': '-127M', 'longFmt': '-127,000,000'}, 'changeToAccountReceivables': {'raw': 6917000000, 'fmt': '6.92B', 'longFmt': '6,917,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': 754000000, 'fmt': '754M', 'longFmt': '754,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 6517000000, 'fmt': '6.52B', 'longFmt': '6,517,000,000'}, 'capitalExpenditures': {'raw': -7309000000, 'fmt': '-7.31B', 'longFmt': '-7,309,000,000'}}, {'investments': {'raw': 58093000000, 'fmt': '58.09B', 'longFmt': '58,093,000,000'}, 'changeToLiabilities': {'raw': -2548000000, 'fmt': '-2.55B', 'longFmt': '-2,548,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': 45896000000, 'fmt': '45.9B', 'longFmt': '45,896,000,000'}, 'netBorrowings': {'raw': -7819000000, 'fmt': '-7.82B', 'longFmt': '-7,819,000,000'}, 'totalCashFromFinancingActivities': {'raw': -90976000000, 'fmt': '-90.98B', 'longFmt': '-90,976,000,000'}, 'changeToOperatingActivities': {'raw': -896000000, 'fmt': '-896M', 'longFmt': '-896,000,000'}, 'issuanceOfStock': {'raw': 781000000, 'fmt': '781M', 'longFmt': '781,000,000'}, 'netIncome': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}, 'changeInCash': {'raw': 24311000000, 'fmt': '24.31B', 'longFmt': '24,311,000,000'}, 'endDate': {'raw': 1569628800, 'fmt': '2019-09-28'}, 'repurchaseOfStock': {'raw': -69714000000, 'fmt': '-69.71B', 'longFmt': '-69,714,000,000'}, 'totalCashFromOperatingActivities': {'raw': 69391000000, 'fmt': '69.39B', 'longFmt': '69,391,000,000'}, 'depreciation': {'raw': 12547000000, 'fmt': '12.55B', 'longFmt': '12,547,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -1078000000, 'fmt': '-1.08B', 'longFmt': '-1,078,000,000'}, 'dividendsPaid': {'raw': -14119000000, 'fmt': '-14.12B', 'longFmt': '-14,119,000,000'}, 'changeToInventory': {'raw': -289000000, 'fmt': '-289M', 'longFmt': '-289,000,000'}, 'changeToAccountReceivables': {'raw': 245000000, 'fmt': '245M', 'longFmt': '245,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -105000000, 'fmt': '-105M', 'longFmt': '-105,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 5076000000, 'fmt': '5.08B', 'longFmt': '5,076,000,000'}, 'capitalExpenditures': {'raw': -10495000000, 'fmt': '-10.49B', 'longFmt': '-10,495,000,000'}}], 'maxAge': 86400}, 'balanceSheetHistoryQuarterly': {'balanceSheetStatements': [{'totalLiab': {'raw': 290020000000, 'fmt': '290.02B', 'longFmt': '290,020,000,000'}, 'totalStockholderEquity': {'raw': 56727000000, 'fmt': '56.73B', 'longFmt': '56,727,000,000'}, 'otherCurrentLiab': {'raw': 67885000000, 'fmt': '67.89B', 'longFmt': '67,885,000,000'}, 'totalAssets': {'raw': 346747000000, 'fmt': '346.75B', 'longFmt': '346,747,000,000'}, 'endDate': {'raw': 1672444800, 'fmt': '2022-12-31'}, 'commonStock': {'raw': 66399000000, 'fmt': '66.4B', 'longFmt': '66,399,000,000'}, 'otherCurrentAssets': {'raw': 16422000000, 'fmt': '16.42B', 'longFmt': '16,422,000,000'}, 'retainedEarnings': {'raw': 3240000000, 'fmt': '3.24B', 'longFmt': '3,240,000,000'}, 'otherLiab': {'raw': 53107000000, 'fmt': '53.11B', 'longFmt': '53,107,000,000'}, 'treasuryStock': {'raw': -12912000000, 'fmt': '-12.91B', 'longFmt': '-12,912,000,000'}, 'otherAssets': {'raw': 60924000000, 'fmt': '60.92B', 'longFmt': '60,924,000,000'}, 'cash': {'raw': 20535000000, 'fmt': '20.54B', 'longFmt': '20,535,000,000'}, 'totalCurrentLiabilities': {'raw': 137286000000, 'fmt': '137.29B', 'longFmt': '137,286,000,000'}, 'shortLongTermDebt': {'raw': 9740000000, 'fmt': '9.74B', 'longFmt': '9,740,000,000'}, 'otherStockholderEquity': {'raw': -12912000000, 'fmt': '-12.91B', 'longFmt': '-12,912,000,000'}, 'propertyPlantEquipment': {'raw': 42951000000, 'fmt': '42.95B', 'longFmt': '42,951,000,000'}, 'totalCurrentAssets': {'raw': 128777000000, 'fmt': '128.78B', 'longFmt': '128,777,000,000'}, 'longTermInvestments': {'raw': 114095000000, 'fmt': '114.09B', 'longFmt': '114,095,000,000'}, 'netTangibleAssets': {'raw': 56727000000, 'fmt': '56.73B', 'longFmt': '56,727,000,000'}, 'shortTermInvestments': {'raw': 30820000000, 'fmt': '30.82B', 'longFmt': '30,820,000,000'}, 'netReceivables': {'raw': 54180000000, 'fmt': '54.18B', 'longFmt': '54,180,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 99627000000, 'fmt': '99.63B', 'longFmt': '99,627,000,000'}, 'inventory': {'raw': 6820000000, 'fmt': '6.82B', 'longFmt': '6,820,000,000'}, 'accountsPayable': {'raw': 57918000000, 'fmt': '57.92B', 'longFmt': '57,918,000,000'}}, {'totalLiab': {'raw': 302083000000, 'fmt': '302.08B', 'longFmt': '302,083,000,000'}, 'totalStockholderEquity': {'raw': 50672000000, 'fmt': '50.67B', 'longFmt': '50,672,000,000'}, 'otherCurrentLiab': {'raw': 67094000000, 'fmt': '67.09B', 'longFmt': '67,094,000,000'}, 'totalAssets': {'raw': 352755000000, 'fmt': '352.75B', 'longFmt': '352,755,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'commonStock': {'raw': 64849000000, 'fmt': '64.85B', 'longFmt': '64,849,000,000'}, 'otherCurrentAssets': {'raw': 21223000000, 'fmt': '21.22B', 'longFmt': '21,223,000,000'}, 'retainedEarnings': {'raw': -3068000000, 'fmt': '-3.07B', 'longFmt': '-3,068,000,000'}, 'otherLiab': {'raw': 38394000000, 'fmt': '38.39B', 'longFmt': '38,394,000,000'}, 'treasuryStock': {'raw': -11109000000, 'fmt': '-11.11B', 'longFmt': '-11,109,000,000'}, 'otherAssets': {'raw': 44011000000, 'fmt': '44.01B', 'longFmt': '44,011,000,000'}, 'cash': {'raw': 23646000000, 'fmt': '23.65B', 'longFmt': '23,646,000,000'}, 'totalCurrentLiabilities': {'raw': 153982000000, 'fmt': '153.98B', 'longFmt': '153,982,000,000'}, 'shortLongTermDebt': {'raw': 11128000000, 'fmt': '11.13B', 'longFmt': '11,128,000,000'}, 'otherStockholderEquity': {'raw': -11109000000, 'fmt': '-11.11B', 'longFmt': '-11,109,000,000'}, 'propertyPlantEquipment': {'raw': 52534000000, 'fmt': '52.53B', 'longFmt': '52,534,000,000'}, 'totalCurrentAssets': {'raw': 135405000000, 'fmt': '135.41B', 'longFmt': '135,405,000,000'}, 'longTermInvestments': {'raw': 120805000000, 'fmt': '120.81B', 'longFmt': '120,805,000,000'}, 'netTangibleAssets': {'raw': 50672000000, 'fmt': '50.67B', 'longFmt': '50,672,000,000'}, 'shortTermInvestments': {'raw': 24658000000, 'fmt': '24.66B', 'longFmt': '24,658,000,000'}, 'netReceivables': {'raw': 60932000000, 'fmt': '60.93B', 'longFmt': '60,932,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 98959000000, 'fmt': '98.96B', 'longFmt': '98,959,000,000'}, 'inventory': {'raw': 4946000000, 'fmt': '4.95B', 'longFmt': '4,946,000,000'}, 'accountsPayable': {'raw': 64115000000, 'fmt': '64.11B', 'longFmt': '64,115,000,000'}}, {'totalLiab': {'raw': 278202000000, 'fmt': '278.2B', 'longFmt': '278,202,000,000'}, 'totalStockholderEquity': {'raw': 58107000000, 'fmt': '58.11B', 'longFmt': '58,107,000,000'}, 'otherCurrentLiab': {'raw': 56539000000, 'fmt': '56.54B', 'longFmt': '56,539,000,000'}, 'totalAssets': {'raw': 336309000000, 'fmt': '336.31B', 'longFmt': '336,309,000,000'}, 'endDate': {'raw': 1656115200, 'fmt': '2022-06-25'}, 'commonStock': {'raw': 62115000000, 'fmt': '62.12B', 'longFmt': '62,115,000,000'}, 'otherCurrentAssets': {'raw': 16386000000, 'fmt': '16.39B', 'longFmt': '16,386,000,000'}, 'retainedEarnings': {'raw': 5289000000, 'fmt': '5.29B', 'longFmt': '5,289,000,000'}, 'otherLiab': {'raw': 53629000000, 'fmt': '53.63B', 'longFmt': '53,629,000,000'}, 'treasuryStock': {'raw': -9297000000, 'fmt': '-9.3B', 'longFmt': '-9,297,000,000'}, 'otherAssets': {'raw': 52605000000, 'fmt': '52.6B', 'longFmt': '52,605,000,000'}, 'cash': {'raw': 27502000000, 'fmt': '27.5B', 'longFmt': '27,502,000,000'}, 'totalCurrentLiabilities': {'raw': 129873000000, 'fmt': '129.87B', 'longFmt': '129,873,000,000'}, 'shortLongTermDebt': {'raw': 14009000000, 'fmt': '14.01B', 'longFmt': '14,009,000,000'}, 'otherStockholderEquity': {'raw': -9297000000, 'fmt': '-9.3B', 'longFmt': '-9,297,000,000'}, 'propertyPlantEquipment': {'raw': 40335000000, 'fmt': '40.34B', 'longFmt': '40,335,000,000'}, 'totalCurrentAssets': {'raw': 112292000000, 'fmt': '112.29B', 'longFmt': '112,292,000,000'}, 'longTermInvestments': {'raw': 131077000000, 'fmt': '131.08B', 'longFmt': '131,077,000,000'}, 'netTangibleAssets': {'raw': 58107000000, 'fmt': '58.11B', 'longFmt': '58,107,000,000'}, 'shortTermInvestments': {'raw': 20729000000, 'fmt': '20.73B', 'longFmt': '20,729,000,000'}, 'netReceivables': {'raw': 42242000000, 'fmt': '42.24B', 'longFmt': '42,242,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 94700000000, 'fmt': '94.7B', 'longFmt': '94,700,000,000'}, 'inventory': {'raw': 5433000000, 'fmt': '5.43B', 'longFmt': '5,433,000,000'}, 'accountsPayable': {'raw': 48343000000, 'fmt': '48.34B', 'longFmt': '48,343,000,000'}}, {'totalLiab': {'raw': 283263000000, 'fmt': '283.26B', 'longFmt': '283,263,000,000'}, 'totalStockholderEquity': {'raw': 67399000000, 'fmt': '67.4B', 'longFmt': '67,399,000,000'}, 'otherCurrentLiab': {'raw': 58168000000, 'fmt': '58.17B', 'longFmt': '58,168,000,000'}, 'totalAssets': {'raw': 350662000000, 'fmt': '350.66B', 'longFmt': '350,662,000,000'}, 'endDate': {'raw': 1648252800, 'fmt': '2022-03-26'}, 'commonStock': {'raw': 61181000000, 'fmt': '61.18B', 'longFmt': '61,181,000,000'}, 'otherCurrentAssets': {'raw': 15809000000, 'fmt': '15.81B', 'longFmt': '15,809,000,000'}, 'retainedEarnings': {'raw': 12712000000, 'fmt': '12.71B', 'longFmt': '12,712,000,000'}, 'otherLiab': {'raw': 52432000000, 'fmt': '52.43B', 'longFmt': '52,432,000,000'}, 'treasuryStock': {'raw': -6494000000, 'fmt': '-6.49B', 'longFmt': '-6,494,000,000'}, 'otherAssets': {'raw': 51959000000, 'fmt': '51.96B', 'longFmt': '51,959,000,000'}, 'cash': {'raw': 28098000000, 'fmt': '28.1B', 'longFmt': '28,098,000,000'}, 'totalCurrentLiabilities': {'raw': 127508000000, 'fmt': '127.51B', 'longFmt': '127,508,000,000'}, 'shortLongTermDebt': {'raw': 9659000000, 'fmt': '9.66B', 'longFmt': '9,659,000,000'}, 'otherStockholderEquity': {'raw': -6494000000, 'fmt': '-6.49B', 'longFmt': '-6,494,000,000'}, 'propertyPlantEquipment': {'raw': 39304000000, 'fmt': '39.3B', 'longFmt': '39,304,000,000'}, 'totalCurrentAssets': {'raw': 118180000000, 'fmt': '118.18B', 'longFmt': '118,180,000,000'}, 'longTermInvestments': {'raw': 141219000000, 'fmt': '141.22B', 'longFmt': '141,219,000,000'}, 'netTangibleAssets': {'raw': 67399000000, 'fmt': '67.4B', 'longFmt': '67,399,000,000'}, 'shortTermInvestments': {'raw': 23413000000, 'fmt': '23.41B', 'longFmt': '23,413,000,000'}, 'netReceivables': {'raw': 45400000000, 'fmt': '45.4B', 'longFmt': '45,400,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 103323000000, 'fmt': '103.32B', 'longFmt': '103,323,000,000'}, 'inventory': {'raw': 5460000000, 'fmt': '5.46B', 'longFmt': '5,460,000,000'}, 'accountsPayable': {'raw': 52682000000, 'fmt': '52.68B', 'longFmt': '52,682,000,000'}}], 'maxAge': 86400}, 'earnings': {'maxAge': 86400, 'earningsChart': {'quarterly': [{'date': '1Q2022', 'actual': {'raw': 1.52, 'fmt': '1.52'}, 'estimate': {'raw': 1.43, 'fmt': '1.43'}}, {'date': '2Q2022', 'actual': {'raw': 1.2, 'fmt': '1.20'}, 'estimate': {'raw': 1.16, 'fmt': '1.16'}}, {'date': '3Q2022', 'actual': {'raw': 1.29, 'fmt': '1.29'}, 'estimate': {'raw': 1.27, 'fmt': '1.27'}}, {'date': '4Q2022', 'actual': {'raw': 1.88, 'fmt': '1.88'}, 'estimate': {'raw': 1.94, 'fmt': '1.94'}}], 'currentQuarterEstimate': {'raw': 1.43, 'fmt': '1.43'}, 'currentQuarterEstimateDate': '1Q', 'currentQuarterEstimateYear': 2023, 'earningsDate': [{'raw': 1682506740, 'fmt': '2023-04-26'}, {'raw': 1682942400, 'fmt': '2023-05-01'}]}, 'financialsChart': {'yearly': [{'date': 2019, 'revenue': {'raw': 260174000000, 'fmt': '260.17B', 'longFmt': '260,174,000,000'}, 'earnings': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}}, {'date': 2020, 'revenue': {'raw': 274515000000, 'fmt': '274.51B', 'longFmt': '274,515,000,000'}, 'earnings': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}}, {'date': 2021, 'revenue': {'raw': 365817000000, 'fmt': '365.82B', 'longFmt': '365,817,000,000'}, 'earnings': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}}, {'date': 2022, 'revenue': {'raw': 394328000000, 'fmt': '394.33B', 'longFmt': '394,328,000,000'}, 'earnings': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}}], 'quarterly': [{'date': '1Q2022', 'revenue': {'raw': 97278000000, 'fmt': '97.28B', 'longFmt': '97,278,000,000'}, 'earnings': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}}, {'date': '2Q2022', 'revenue': {'raw': 82959000000, 'fmt': '82.96B', 'longFmt': '82,959,000,000'}, 'earnings': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}}, {'date': '3Q2022', 'revenue': {'raw': 90146000000, 'fmt': '90.15B', 'longFmt': '90,146,000,000'}, 'earnings': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}}, {'date': '4Q2022', 'revenue': {'raw': 117154000000, 'fmt': '117.15B', 'longFmt': '117,154,000,000'}, 'earnings': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}}]}, 'financialCurrency': 'USD'}, 'price': {'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 152.575, 'fmt': '152.57'}, 'averageDailyVolume3Month': {'raw': 78381785, 'fmt': '78.38M', 'longFmt': '78,381,785'}, 'exchange': 'NMS', 'regularMarketTime': 1675699791, 'volume24Hr': {}, 'regularMarketDayHigh': {'raw': 153.1, 'fmt': '153.10'}, 'shortName': 'Apple Inc.', 'averageDailyVolume10Day': {'raw': 81876490, 'fmt': '81.88M', 'longFmt': '81,876,490'}, 'longName': 'Apple Inc.', 'regularMarketChange': {'raw': -2.2789001, 'fmt': '-2.28'}, 'currencySymbol': '$', 'regularMarketPreviousClose': {'raw': 154.5, 'fmt': '154.50'}, 'preMarketPrice': {'raw': 152.5, 'fmt': '152.50'}, 'preMarketTime': 1675693799, 'exchangeDataDelayedBy': 0, 'toCurrency': None, 'postMarketChange': {}, 'postMarketPrice': {}, 'exchangeName': 'NasdaqGS', 'preMarketChange': {'raw': -2, 'fmt': '-2.00'}, 'circulatingSupply': {}, 'regularMarketDayLow': {'raw': 150.9, 'fmt': '150.90'}, 'priceHint': {'raw': 2, 'fmt': '2', 'longFmt': '2'}, 'currency': 'USD', 'regularMarketPrice': {'raw': 152.2211, 'fmt': '152.22'}, 'regularMarketVolume': {'raw': 27877131, 'fmt': '27.88M', 'longFmt': '27,877,131.00'}, 'lastMarket': None, 'regularMarketSource': 'FREE_REALTIME', 'openInterest': {}, 'marketState': 'REGULAR', 'underlyingSymbol': None, 'marketCap': {'raw': 2408427028480, 'fmt': '2.41T', 'longFmt': '2,408,427,028,480.00'}, 'quoteType': 'EQUITY', 'preMarketChangePercent': {'raw': -0.012945, 'fmt': '-1.29%'}, 'volumeAllCurrencies': {}, 'strikePrice': {}, 'symbol': 'AAPL', 'preMarketSource': 'FREE_REALTIME', 'maxAge': 1, 'fromCurrency': None, 'regularMarketChangePercent': {'raw': -0.014750162, 'fmt': '-1.48%'}}, 'incomeStatementHistoryQuarterly': {'incomeStatementHistory': [{'researchDevelopment': {'raw': 7709000000, 'fmt': '7.71B', 'longFmt': '7,709,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 35623000000, 'fmt': '35.62B', 'longFmt': '35,623,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}, 'sellingGeneralAdministrative': {'raw': 6607000000, 'fmt': '6.61B', 'longFmt': '6,607,000,000'}, 'grossProfit': {'raw': 50332000000, 'fmt': '50.33B', 'longFmt': '50,332,000,000'}, 'ebit': {'raw': 36016000000, 'fmt': '36.02B', 'longFmt': '36,016,000,000'}, 'endDate': {'raw': 1672444800, 'fmt': '2022-12-31'}, 'operatingIncome': {'raw': 36016000000, 'fmt': '36.02B', 'longFmt': '36,016,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -1003000000, 'fmt': '-1B', 'longFmt': '-1,003,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 5625000000, 'fmt': '5.62B', 'longFmt': '5,625,000,000'}, 'totalRevenue': {'raw': 117154000000, 'fmt': '117.15B', 'longFmt': '117,154,000,000'}, 'totalOperatingExpenses': {'raw': 81138000000, 'fmt': '81.14B', 'longFmt': '81,138,000,000'}, 'costOfRevenue': {'raw': 66822000000, 'fmt': '66.82B', 'longFmt': '66,822,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': -393000000, 'fmt': '-393M', 'longFmt': '-393,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}}, {'researchDevelopment': {'raw': 6761000000, 'fmt': '6.76B', 'longFmt': '6,761,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 24657000000, 'fmt': '24.66B', 'longFmt': '24,657,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}, 'sellingGeneralAdministrative': {'raw': 6440000000, 'fmt': '6.44B', 'longFmt': '6,440,000,000'}, 'grossProfit': {'raw': 38095000000, 'fmt': '38.09B', 'longFmt': '38,095,000,000'}, 'ebit': {'raw': 24894000000, 'fmt': '24.89B', 'longFmt': '24,894,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'operatingIncome': {'raw': 24894000000, 'fmt': '24.89B', 'longFmt': '24,894,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -827000000, 'fmt': '-827M', 'longFmt': '-827,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 3936000000, 'fmt': '3.94B', 'longFmt': '3,936,000,000'}, 'totalRevenue': {'raw': 90146000000, 'fmt': '90.15B', 'longFmt': '90,146,000,000'}, 'totalOperatingExpenses': {'raw': 65252000000, 'fmt': '65.25B', 'longFmt': '65,252,000,000'}, 'costOfRevenue': {'raw': 52051000000, 'fmt': '52.05B', 'longFmt': '52,051,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': -237000000, 'fmt': '-237M', 'longFmt': '-237,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}}, {'researchDevelopment': {'raw': 6797000000, 'fmt': '6.8B', 'longFmt': '6,797,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 23066000000, 'fmt': '23.07B', 'longFmt': '23,066,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}, 'sellingGeneralAdministrative': {'raw': 6012000000, 'fmt': '6.01B', 'longFmt': '6,012,000,000'}, 'grossProfit': {'raw': 35885000000, 'fmt': '35.88B', 'longFmt': '35,885,000,000'}, 'ebit': {'raw': 23076000000, 'fmt': '23.08B', 'longFmt': '23,076,000,000'}, 'endDate': {'raw': 1656115200, 'fmt': '2022-06-25'}, 'operatingIncome': {'raw': 23076000000, 'fmt': '23.08B', 'longFmt': '23,076,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -719000000, 'fmt': '-719M', 'longFmt': '-719,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 3624000000, 'fmt': '3.62B', 'longFmt': '3,624,000,000'}, 'totalRevenue': {'raw': 82959000000, 'fmt': '82.96B', 'longFmt': '82,959,000,000'}, 'totalOperatingExpenses': {'raw': 59883000000, 'fmt': '59.88B', 'longFmt': '59,883,000,000'}, 'costOfRevenue': {'raw': 47074000000, 'fmt': '47.07B', 'longFmt': '47,074,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': -10000000, 'fmt': '-10M', 'longFmt': '-10,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}}, {'researchDevelopment': {'raw': 6387000000, 'fmt': '6.39B', 'longFmt': '6,387,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 30139000000, 'fmt': '30.14B', 'longFmt': '30,139,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}, 'sellingGeneralAdministrative': {'raw': 6193000000, 'fmt': '6.19B', 'longFmt': '6,193,000,000'}, 'grossProfit': {'raw': 42559000000, 'fmt': '42.56B', 'longFmt': '42,559,000,000'}, 'ebit': {'raw': 29979000000, 'fmt': '29.98B', 'longFmt': '29,979,000,000'}, 'endDate': {'raw': 1648252800, 'fmt': '2022-03-26'}, 'operatingIncome': {'raw': 29979000000, 'fmt': '29.98B', 'longFmt': '29,979,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -691000000, 'fmt': '-691M', 'longFmt': '-691,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 5129000000, 'fmt': '5.13B', 'longFmt': '5,129,000,000'}, 'totalRevenue': {'raw': 97278000000, 'fmt': '97.28B', 'longFmt': '97,278,000,000'}, 'totalOperatingExpenses': {'raw': 67299000000, 'fmt': '67.3B', 'longFmt': '67,299,000,000'}, 'costOfRevenue': {'raw': 54719000000, 'fmt': '54.72B', 'longFmt': '54,719,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': 160000000, 'fmt': '160M', 'longFmt': '160,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}}], 'maxAge': 86400}, 'incomeStatementHistory': {'incomeStatementHistory': [{'researchDevelopment': {'raw': 26251000000, 'fmt': '26.25B', 'longFmt': '26,251,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 119103000000, 'fmt': '119.1B', 'longFmt': '119,103,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}, 'sellingGeneralAdministrative': {'raw': 25094000000, 'fmt': '25.09B', 'longFmt': '25,094,000,000'}, 'grossProfit': {'raw': 170782000000, 'fmt': '170.78B', 'longFmt': '170,782,000,000'}, 'ebit': {'raw': 119437000000, 'fmt': '119.44B', 'longFmt': '119,437,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'operatingIncome': {'raw': 119437000000, 'fmt': '119.44B', 'longFmt': '119,437,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -2931000000, 'fmt': '-2.93B', 'longFmt': '-2,931,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 19300000000, 'fmt': '19.3B', 'longFmt': '19,300,000,000'}, 'totalRevenue': {'raw': 394328000000, 'fmt': '394.33B', 'longFmt': '394,328,000,000'}, 'totalOperatingExpenses': {'raw': 274891000000, 'fmt': '274.89B', 'longFmt': '274,891,000,000'}, 'costOfRevenue': {'raw': 223546000000, 'fmt': '223.55B', 'longFmt': '223,546,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': -334000000, 'fmt': '-334M', 'longFmt': '-334,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}}, {'researchDevelopment': {'raw': 21914000000, 'fmt': '21.91B', 'longFmt': '21,914,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 109207000000, 'fmt': '109.21B', 'longFmt': '109,207,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}, 'sellingGeneralAdministrative': {'raw': 21973000000, 'fmt': '21.97B', 'longFmt': '21,973,000,000'}, 'grossProfit': {'raw': 152836000000, 'fmt': '152.84B', 'longFmt': '152,836,000,000'}, 'ebit': {'raw': 108949000000, 'fmt': '108.95B', 'longFmt': '108,949,000,000'}, 'endDate': {'raw': 1632528000, 'fmt': '2021-09-25'}, 'operatingIncome': {'raw': 108949000000, 'fmt': '108.95B', 'longFmt': '108,949,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -2645000000, 'fmt': '-2.65B', 'longFmt': '-2,645,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 14527000000, 'fmt': '14.53B', 'longFmt': '14,527,000,000'}, 'totalRevenue': {'raw': 365817000000, 'fmt': '365.82B', 'longFmt': '365,817,000,000'}, 'totalOperatingExpenses': {'raw': 256868000000, 'fmt': '256.87B', 'longFmt': '256,868,000,000'}, 'costOfRevenue': {'raw': 212981000000, 'fmt': '212.98B', 'longFmt': '212,981,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': 258000000, 'fmt': '258M', 'longFmt': '258,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}}, {'researchDevelopment': {'raw': 18752000000, 'fmt': '18.75B', 'longFmt': '18,752,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 67091000000, 'fmt': '67.09B', 'longFmt': '67,091,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}, 'sellingGeneralAdministrative': {'raw': 19916000000, 'fmt': '19.92B', 'longFmt': '19,916,000,000'}, 'grossProfit': {'raw': 104956000000, 'fmt': '104.96B', 'longFmt': '104,956,000,000'}, 'ebit': {'raw': 66288000000, 'fmt': '66.29B', 'longFmt': '66,288,000,000'}, 'endDate': {'raw': 1601078400, 'fmt': '2020-09-26'}, 'operatingIncome': {'raw': 66288000000, 'fmt': '66.29B', 'longFmt': '66,288,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -2873000000, 'fmt': '-2.87B', 'longFmt': '-2,873,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 9680000000, 'fmt': '9.68B', 'longFmt': '9,680,000,000'}, 'totalRevenue': {'raw': 274515000000, 'fmt': '274.51B', 'longFmt': '274,515,000,000'}, 'totalOperatingExpenses': {'raw': 208227000000, 'fmt': '208.23B', 'longFmt': '208,227,000,000'}, 'costOfRevenue': {'raw': 169559000000, 'fmt': '169.56B', 'longFmt': '169,559,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': 803000000, 'fmt': '803M', 'longFmt': '803,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}}, {'researchDevelopment': {'raw': 16217000000, 'fmt': '16.22B', 'longFmt': '16,217,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 65737000000, 'fmt': '65.74B', 'longFmt': '65,737,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}, 'sellingGeneralAdministrative': {'raw': 18245000000, 'fmt': '18.25B', 'longFmt': '18,245,000,000'}, 'grossProfit': {'raw': 98392000000, 'fmt': '98.39B', 'longFmt': '98,392,000,000'}, 'ebit': {'raw': 63930000000, 'fmt': '63.93B', 'longFmt': '63,930,000,000'}, 'endDate': {'raw': 1569628800, 'fmt': '2019-09-28'}, 'operatingIncome': {'raw': 63930000000, 'fmt': '63.93B', 'longFmt': '63,930,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -3576000000, 'fmt': '-3.58B', 'longFmt': '-3,576,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 10481000000, 'fmt': '10.48B', 'longFmt': '10,481,000,000'}, 'totalRevenue': {'raw': 260174000000, 'fmt': '260.17B', 'longFmt': '260,174,000,000'}, 'totalOperatingExpenses': {'raw': 196244000000, 'fmt': '196.24B', 'longFmt': '196,244,000,000'}, 'costOfRevenue': {'raw': 161782000000, 'fmt': '161.78B', 'longFmt': '161,782,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': 1807000000, 'fmt': '1.81B', 'longFmt': '1,807,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}}], 'maxAge': 86400}, 'balanceSheetHistory': {'balanceSheetStatements': [{'totalLiab': {'raw': 302083000000, 'fmt': '302.08B', 'longFmt': '302,083,000,000'}, 'totalStockholderEquity': {'raw': 50672000000, 'fmt': '50.67B', 'longFmt': '50,672,000,000'}, 'otherCurrentLiab': {'raw': 67094000000, 'fmt': '67.09B', 'longFmt': '67,094,000,000'}, 'totalAssets': {'raw': 352755000000, 'fmt': '352.75B', 'longFmt': '352,755,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'commonStock': {'raw': 64849000000, 'fmt': '64.85B', 'longFmt': '64,849,000,000'}, 'otherCurrentAssets': {'raw': 21223000000, 'fmt': '21.22B', 'longFmt': '21,223,000,000'}, 'retainedEarnings': {'raw': -3068000000, 'fmt': '-3.07B', 'longFmt': '-3,068,000,000'}, 'otherLiab': {'raw': 38394000000, 'fmt': '38.39B', 'longFmt': '38,394,000,000'}, 'treasuryStock': {'raw': -11109000000, 'fmt': '-11.11B', 'longFmt': '-11,109,000,000'}, 'otherAssets': {'raw': 44011000000, 'fmt': '44.01B', 'longFmt': '44,011,000,000'}, 'cash': {'raw': 23646000000, 'fmt': '23.65B', 'longFmt': '23,646,000,000'}, 'totalCurrentLiabilities': {'raw': 153982000000, 'fmt': '153.98B', 'longFmt': '153,982,000,000'}, 'shortLongTermDebt': {'raw': 11128000000, 'fmt': '11.13B', 'longFmt': '11,128,000,000'}, 'otherStockholderEquity': {'raw': -11109000000, 'fmt': '-11.11B', 'longFmt': '-11,109,000,000'}, 'propertyPlantEquipment': {'raw': 52534000000, 'fmt': '52.53B', 'longFmt': '52,534,000,000'}, 'totalCurrentAssets': {'raw': 135405000000, 'fmt': '135.41B', 'longFmt': '135,405,000,000'}, 'longTermInvestments': {'raw': 120805000000, 'fmt': '120.81B', 'longFmt': '120,805,000,000'}, 'netTangibleAssets': {'raw': 50672000000, 'fmt': '50.67B', 'longFmt': '50,672,000,000'}, 'shortTermInvestments': {'raw': 24658000000, 'fmt': '24.66B', 'longFmt': '24,658,000,000'}, 'netReceivables': {'raw': 60932000000, 'fmt': '60.93B', 'longFmt': '60,932,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 98959000000, 'fmt': '98.96B', 'longFmt': '98,959,000,000'}, 'inventory': {'raw': 4946000000, 'fmt': '4.95B', 'longFmt': '4,946,000,000'}, 'accountsPayable': {'raw': 64115000000, 'fmt': '64.11B', 'longFmt': '64,115,000,000'}}, {'totalLiab': {'raw': 287912000000, 'fmt': '287.91B', 'longFmt': '287,912,000,000'}, 'totalStockholderEquity': {'raw': 63090000000, 'fmt': '63.09B', 'longFmt': '63,090,000,000'}, 'otherCurrentLiab': {'raw': 53577000000, 'fmt': '53.58B', 'longFmt': '53,577,000,000'}, 'totalAssets': {'raw': 351002000000, 'fmt': '351B', 'longFmt': '351,002,000,000'}, 'endDate': {'raw': 1632528000, 'fmt': '2021-09-25'}, 'commonStock': {'raw': 57365000000, 'fmt': '57.37B', 'longFmt': '57,365,000,000'}, 'otherCurrentAssets': {'raw': 14111000000, 'fmt': '14.11B', 'longFmt': '14,111,000,000'}, 'retainedEarnings': {'raw': 5562000000, 'fmt': '5.56B', 'longFmt': '5,562,000,000'}, 'otherLiab': {'raw': 43050000000, 'fmt': '43.05B', 'longFmt': '43,050,000,000'}, 'treasuryStock': {'raw': 163000000, 'fmt': '163M', 'longFmt': '163,000,000'}, 'otherAssets': {'raw': 38762000000, 'fmt': '38.76B', 'longFmt': '38,762,000,000'}, 'cash': {'raw': 34940000000, 'fmt': '34.94B', 'longFmt': '34,940,000,000'}, 'totalCurrentLiabilities': {'raw': 125481000000, 'fmt': '125.48B', 'longFmt': '125,481,000,000'}, 'shortLongTermDebt': {'raw': 9613000000, 'fmt': '9.61B', 'longFmt': '9,613,000,000'}, 'otherStockholderEquity': {'raw': 163000000, 'fmt': '163M', 'longFmt': '163,000,000'}, 'propertyPlantEquipment': {'raw': 49527000000, 'fmt': '49.53B', 'longFmt': '49,527,000,000'}, 'totalCurrentAssets': {'raw': 134836000000, 'fmt': '134.84B', 'longFmt': '134,836,000,000'}, 'longTermInvestments': {'raw': 127877000000, 'fmt': '127.88B', 'longFmt': '127,877,000,000'}, 'netTangibleAssets': {'raw': 63090000000, 'fmt': '63.09B', 'longFmt': '63,090,000,000'}, 'shortTermInvestments': {'raw': 27699000000, 'fmt': '27.7B', 'longFmt': '27,699,000,000'}, 'netReceivables': {'raw': 51506000000, 'fmt': '51.51B', 'longFmt': '51,506,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 109106000000, 'fmt': '109.11B', 'longFmt': '109,106,000,000'}, 'inventory': {'raw': 6580000000, 'fmt': '6.58B', 'longFmt': '6,580,000,000'}, 'accountsPayable': {'raw': 54763000000, 'fmt': '54.76B', 'longFmt': '54,763,000,000'}}, {'totalLiab': {'raw': 258549000000, 'fmt': '258.55B', 'longFmt': '258,549,000,000'}, 'totalStockholderEquity': {'raw': 65339000000, 'fmt': '65.34B', 'longFmt': '65,339,000,000'}, 'otherCurrentLiab': {'raw': 47867000000, 'fmt': '47.87B', 'longFmt': '47,867,000,000'}, 'totalAssets': {'raw': 323888000000, 'fmt': '323.89B', 'longFmt': '323,888,000,000'}, 'endDate': {'raw': 1601078400, 'fmt': '2020-09-26'}, 'commonStock': {'raw': 50779000000, 'fmt': '50.78B', 'longFmt': '50,779,000,000'}, 'otherCurrentAssets': {'raw': 11264000000, 'fmt': '11.26B', 'longFmt': '11,264,000,000'}, 'retainedEarnings': {'raw': 14966000000, 'fmt': '14.97B', 'longFmt': '14,966,000,000'}, 'otherLiab': {'raw': 46108000000, 'fmt': '46.11B', 'longFmt': '46,108,000,000'}, 'treasuryStock': {'raw': -406000000, 'fmt': '-406M', 'longFmt': '-406,000,000'}, 'otherAssets': {'raw': 33952000000, 'fmt': '33.95B', 'longFmt': '33,952,000,000'}, 'cash': {'raw': 38016000000, 'fmt': '38.02B', 'longFmt': '38,016,000,000'}, 'totalCurrentLiabilities': {'raw': 105392000000, 'fmt': '105.39B', 'longFmt': '105,392,000,000'}, 'shortLongTermDebt': {'raw': 8773000000, 'fmt': '8.77B', 'longFmt': '8,773,000,000'}, 'otherStockholderEquity': {'raw': -406000000, 'fmt': '-406M', 'longFmt': '-406,000,000'}, 'propertyPlantEquipment': {'raw': 45336000000, 'fmt': '45.34B', 'longFmt': '45,336,000,000'}, 'totalCurrentAssets': {'raw': 143713000000, 'fmt': '143.71B', 'longFmt': '143,713,000,000'}, 'longTermInvestments': {'raw': 100887000000, 'fmt': '100.89B', 'longFmt': '100,887,000,000'}, 'netTangibleAssets': {'raw': 65339000000, 'fmt': '65.34B', 'longFmt': '65,339,000,000'}, 'shortTermInvestments': {'raw': 52927000000, 'fmt': '52.93B', 'longFmt': '52,927,000,000'}, 'netReceivables': {'raw': 37445000000, 'fmt': '37.45B', 'longFmt': '37,445,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 98667000000, 'fmt': '98.67B', 'longFmt': '98,667,000,000'}, 'inventory': {'raw': 4061000000, 'fmt': '4.06B', 'longFmt': '4,061,000,000'}, 'accountsPayable': {'raw': 42296000000, 'fmt': '42.3B', 'longFmt': '42,296,000,000'}}, {'totalLiab': {'raw': 248028000000, 'fmt': '248.03B', 'longFmt': '248,028,000,000'}, 'totalStockholderEquity': {'raw': 90488000000, 'fmt': '90.49B', 'longFmt': '90,488,000,000'}, 'otherCurrentLiab': {'raw': 43242000000, 'fmt': '43.24B', 'longFmt': '43,242,000,000'}, 'totalAssets': {'raw': 338516000000, 'fmt': '338.52B', 'longFmt': '338,516,000,000'}, 'endDate': {'raw': 1569628800, 'fmt': '2019-09-28'}, 'commonStock': {'raw': 45174000000, 'fmt': '45.17B', 'longFmt': '45,174,000,000'}, 'otherCurrentAssets': {'raw': 12352000000, 'fmt': '12.35B', 'longFmt': '12,352,000,000'}, 'retainedEarnings': {'raw': 45898000000, 'fmt': '45.9B', 'longFmt': '45,898,000,000'}, 'otherLiab': {'raw': 50503000000, 'fmt': '50.5B', 'longFmt': '50,503,000,000'}, 'treasuryStock': {'raw': -584000000, 'fmt': '-584M', 'longFmt': '-584,000,000'}, 'otherAssets': {'raw': 32978000000, 'fmt': '32.98B', 'longFmt': '32,978,000,000'}, 'cash': {'raw': 48844000000, 'fmt': '48.84B', 'longFmt': '48,844,000,000'}, 'totalCurrentLiabilities': {'raw': 105718000000, 'fmt': '105.72B', 'longFmt': '105,718,000,000'}, 'shortLongTermDebt': {'raw': 10260000000, 'fmt': '10.26B', 'longFmt': '10,260,000,000'}, 'otherStockholderEquity': {'raw': -584000000, 'fmt': '-584M', 'longFmt': '-584,000,000'}, 'propertyPlantEquipment': {'raw': 37378000000, 'fmt': '37.38B', 'longFmt': '37,378,000,000'}, 'totalCurrentAssets': {'raw': 162819000000, 'fmt': '162.82B', 'longFmt': '162,819,000,000'}, 'longTermInvestments': {'raw': 105341000000, 'fmt': '105.34B', 'longFmt': '105,341,000,000'}, 'netTangibleAssets': {'raw': 90488000000, 'fmt': '90.49B', 'longFmt': '90,488,000,000'}, 'shortTermInvestments': {'raw': 51713000000, 'fmt': '51.71B', 'longFmt': '51,713,000,000'}, 'netReceivables': {'raw': 45804000000, 'fmt': '45.8B', 'longFmt': '45,804,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 91807000000, 'fmt': '91.81B', 'longFmt': '91,807,000,000'}, 'inventory': {'raw': 4106000000, 'fmt': '4.11B', 'longFmt': '4,106,000,000'}, 'accountsPayable': {'raw': 46236000000, 'fmt': '46.24B', 'longFmt': '46,236,000,000'}}], 'maxAge': 86400}, 'cashflowStatementHistoryQuarterly': {'cashflowStatements': [{'investments': {'raw': 2483000000, 'fmt': '2.48B', 'longFmt': '2,483,000,000'}, 'changeToLiabilities': {'raw': -5944000000, 'fmt': '-5.94B', 'longFmt': '-5,944,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -1445000000, 'fmt': '-1.45B', 'longFmt': '-1,445,000,000'}, 'netBorrowings': {'raw': -9615000000, 'fmt': '-9.62B', 'longFmt': '-9,615,000,000'}, 'totalCashFromFinancingActivities': {'raw': -35563000000, 'fmt': '-35.56B', 'longFmt': '-35,563,000,000'}, 'changeToOperatingActivities': {'raw': 1979000000, 'fmt': '1.98B', 'longFmt': '1,979,000,000'}, 'netIncome': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}, 'changeInCash': {'raw': -3003000000, 'fmt': '-3B', 'longFmt': '-3,003,000,000'}, 'endDate': {'raw': 1672444800, 'fmt': '2022-12-31'}, 'repurchaseOfStock': {'raw': -21791000000, 'fmt': '-21.79B', 'longFmt': '-21,791,000,000'}, 'totalCashFromOperatingActivities': {'raw': 34005000000, 'fmt': '34.01B', 'longFmt': '34,005,000,000'}, 'depreciation': {'raw': 2916000000, 'fmt': '2.92B', 'longFmt': '2,916,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -141000000, 'fmt': '-141M', 'longFmt': '-141,000,000'}, 'dividendsPaid': {'raw': -3768000000, 'fmt': '-3.77B', 'longFmt': '-3,768,000,000'}, 'changeToInventory': {'raw': -1807000000, 'fmt': '-1.81B', 'longFmt': '-1,807,000,000'}, 'changeToAccountReceivables': {'raw': 4275000000, 'fmt': '4.28B', 'longFmt': '4,275,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -389000000, 'fmt': '-389M', 'longFmt': '-389,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 2588000000, 'fmt': '2.59B', 'longFmt': '2,588,000,000'}, 'capitalExpenditures': {'raw': -3787000000, 'fmt': '-3.79B', 'longFmt': '-3,787,000,000'}}, {'investments': {'raw': 2806000000, 'fmt': '2.81B', 'longFmt': '2,806,000,000'}, 'changeToLiabilities': {'raw': 15774000000, 'fmt': '15.77B', 'longFmt': '15,774,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -1217000000, 'fmt': '-1.22B', 'longFmt': '-1,217,000,000'}, 'netBorrowings': {'raw': 1657000000, 'fmt': '1.66B', 'longFmt': '1,657,000,000'}, 'totalCashFromFinancingActivities': {'raw': -26794000000, 'fmt': '-26.79B', 'longFmt': '-26,794,000,000'}, 'changeToOperatingActivities': {'raw': -9873000000, 'fmt': '-9.87B', 'longFmt': '-9,873,000,000'}, 'netIncome': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}, 'changeInCash': {'raw': -3884000000, 'fmt': '-3.88B', 'longFmt': '-3,884,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'repurchaseOfStock': {'raw': -24736000000, 'fmt': '-24.74B', 'longFmt': '-24,736,000,000'}, 'totalCashFromOperatingActivities': {'raw': 24127000000, 'fmt': '24.13B', 'longFmt': '24,127,000,000'}, 'depreciation': {'raw': 2865000000, 'fmt': '2.87B', 'longFmt': '2,865,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -597000000, 'fmt': '-597M', 'longFmt': '-597,000,000'}, 'dividendsPaid': {'raw': -3703000000, 'fmt': '-3.7B', 'longFmt': '-3,703,000,000'}, 'changeToInventory': {'raw': 435000000, 'fmt': '435M', 'longFmt': '435,000,000'}, 'changeToAccountReceivables': {'raw': -6384000000, 'fmt': '-6.38B', 'longFmt': '-6,384,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -12000000, 'fmt': '-12M', 'longFmt': '-12,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 589000000, 'fmt': '589M', 'longFmt': '589,000,000'}, 'capitalExpenditures': {'raw': -3289000000, 'fmt': '-3.29B', 'longFmt': '-3,289,000,000'}}, {'investments': {'raw': 6953000000, 'fmt': '6.95B', 'longFmt': '6,953,000,000'}, 'changeToLiabilities': {'raw': -4725000000, 'fmt': '-4.72B', 'longFmt': '-4,725,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': 4234000000, 'fmt': '4.23B', 'longFmt': '4,234,000,000'}, 'netBorrowings': {'raw': 971000000, 'fmt': '971M', 'longFmt': '971,000,000'}, 'totalCashFromFinancingActivities': {'raw': -27445000000, 'fmt': '-27.45B', 'longFmt': '-27,445,000,000'}, 'changeToOperatingActivities': {'raw': 2497000000, 'fmt': '2.5B', 'longFmt': '2,497,000,000'}, 'netIncome': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}, 'changeInCash': {'raw': -319000000, 'fmt': '-319M', 'longFmt': '-319,000,000'}, 'endDate': {'raw': 1656115200, 'fmt': '2022-06-25'}, 'repurchaseOfStock': {'raw': -24562000000, 'fmt': '-24.56B', 'longFmt': '-24,562,000,000'}, 'totalCashFromOperatingActivities': {'raw': 22892000000, 'fmt': '22.89B', 'longFmt': '22,892,000,000'}, 'depreciation': {'raw': 2805000000, 'fmt': '2.81B', 'longFmt': '2,805,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -615000000, 'fmt': '-615M', 'longFmt': '-615,000,000'}, 'dividendsPaid': {'raw': -3811000000, 'fmt': '-3.81B', 'longFmt': '-3,811,000,000'}, 'changeToInventory': {'raw': -16000000, 'fmt': '-16M', 'longFmt': '-16,000,000'}, 'changeToAccountReceivables': {'raw': -981000000, 'fmt': '-981M', 'longFmt': '-981,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -43000000, 'fmt': '-43M', 'longFmt': '-43,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 3870000000, 'fmt': '3.87B', 'longFmt': '3,870,000,000'}, 'capitalExpenditures': {'raw': -2102000000, 'fmt': '-2.1B', 'longFmt': '-2,102,000,000'}}, {'investments': {'raw': -6390000000, 'fmt': '-6.39B', 'longFmt': '-6,390,000,000'}, 'changeToLiabilities': {'raw': -21398000000, 'fmt': '-21.4B', 'longFmt': '-21,398,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -9265000000, 'fmt': '-9.27B', 'longFmt': '-9,265,000,000'}, 'netBorrowings': {'raw': -1751000000, 'fmt': '-1.75B', 'longFmt': '-1,751,000,000'}, 'totalCashFromFinancingActivities': {'raw': -28351000000, 'fmt': '-28.35B', 'longFmt': '-28,351,000,000'}, 'changeToOperatingActivities': {'raw': 9486000000, 'fmt': '9.49B', 'longFmt': '9,486,000,000'}, 'netIncome': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}, 'changeInCash': {'raw': -9450000000, 'fmt': '-9.45B', 'longFmt': '-9,450,000,000'}, 'endDate': {'raw': 1648252800, 'fmt': '2022-03-26'}, 'repurchaseOfStock': {'raw': -22961000000, 'fmt': '-22.96B', 'longFmt': '-22,961,000,000'}, 'totalCashFromOperatingActivities': {'raw': 28166000000, 'fmt': '28.17B', 'longFmt': '28,166,000,000'}, 'depreciation': {'raw': 2737000000, 'fmt': '2.74B', 'longFmt': '2,737,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -194000000, 'fmt': '-194M', 'longFmt': '-194,000,000'}, 'dividendsPaid': {'raw': -3595000000, 'fmt': '-3.6B', 'longFmt': '-3,595,000,000'}, 'changeToInventory': {'raw': 384000000, 'fmt': '384M', 'longFmt': '384,000,000'}, 'changeToAccountReceivables': {'raw': 9476000000, 'fmt': '9.48B', 'longFmt': '9,476,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -44000000, 'fmt': '-44M', 'longFmt': '-44,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 2471000000, 'fmt': '2.47B', 'longFmt': '2,471,000,000'}, 'capitalExpenditures': {'raw': -2514000000, 'fmt': '-2.51B', 'longFmt': '-2,514,000,000'}}], 'maxAge': 86400}, 'quoteType': {'exchange': 'NMS', 'shortName': 'Apple Inc.', 'longName': 'Apple Inc.', 'exchangeTimezoneName': 'America/New_York', 'exchangeTimezoneShortName': 'EST', 'isEsgPopulated': False, 'gmtOffSetMilliseconds': '-18000000', 'quoteType': 'EQUITY', 'symbol': 'AAPL', 'messageBoardId': 'finmb_24937', 'market': 'us_market'}, 'summaryDetail': {'previousClose': {'raw': 154.5, 'fmt': '154.50'}, 'regularMarketOpen': {'raw': 152.575, 'fmt': '152.57'}, 'twoHundredDayAverage': {'raw': 147.80174, 'fmt': '147.80'}, 'trailingAnnualDividendYield': {'raw': 0.005889968, 'fmt': '0.59%'}, 'payoutRatio': {'raw': 0.1545, 'fmt': '15.45%'}, 'volume24Hr': {}, 'regularMarketDayHigh': {'raw': 153.1, 'fmt': '153.10'}, 'navPrice': {}, 'averageDailyVolume10Day': {'raw': 81876490, 'fmt': '81.88M', 'longFmt': '81,876,490'}, 'totalAssets': {}, 'regularMarketPreviousClose': {'raw': 154.5, 'fmt': '154.50'}, 'fiftyDayAverage': {'raw': 138.8904, 'fmt': '138.89'}, 'trailingAnnualDividendRate': {'raw': 0.91, 'fmt': '0.91'}, 'open': {'raw': 152.575, 'fmt': '152.57'}, 'toCurrency': None, 'averageVolume10days': {'raw': 81876490, 'fmt': '81.88M', 'longFmt': '81,876,490'}, 'expireDate': {}, 'yield': {}, 'algorithm': None, 'dividendRate': {'raw': 0.92, 'fmt': '0.92'}, 'exDividendDate': {'raw': 1675987200, 'fmt': '2023-02-10'}, 'beta': {'raw': 1.277894, 'fmt': '1.28'}, 'circulatingSupply': {}, 'startDate': {}, 'regularMarketDayLow': {'raw': 150.9, 'fmt': '150.90'}, 'priceHint': {'raw': 2, 'fmt': '2', 'longFmt': '2'}, 'currency': 'USD', 'trailingPE': {'raw': 25.84399, 'fmt': '25.84'}, 'regularMarketVolume': {'raw': 27877131, 'fmt': '27.88M', 'longFmt': '27,877,131'}, 'lastMarket': None, 'maxSupply': {}, 'openInterest': {}, 'marketCap': {'raw': 2408427028480, 'fmt': '2.41T', 'longFmt': '2,408,427,028,480'}, 'volumeAllCurrencies': {}, 'strikePrice': {}, 'averageVolume': {'raw': 78381785, 'fmt': '78.38M', 'longFmt': '78,381,785'}, 'priceToSalesTrailing12Months': {'raw': 6.214702, 'fmt': '6.21'}, 'dayLow': {'raw': 150.9, 'fmt': '150.90'}, 'ask': {'raw': 152.31, 'fmt': '152.31'}, 'ytdReturn': {}, 'askSize': {'raw': 2200, 'fmt': '2.2k', 'longFmt': '2,200'}, 'volume': {'raw': 27877131, 'fmt': '27.88M', 'longFmt': '27,877,131'}, 'fiftyTwoWeekHigh': {'raw': 179.61, 'fmt': '179.61'}, 'forwardPE': {'raw': 23.02891, 'fmt': '23.03'}, 'maxAge': 1, 'fromCurrency': None, 'fiveYearAvgDividendYield': {'raw': 0.96, 'fmt': '0.96'}, 'fiftyTwoWeekLow': {'raw': 124.17, 'fmt': '124.17'}, 'bid': {'raw': 152.34, 'fmt': '152.34'}, 'tradeable': False, 'dividendYield': {'raw': 0.006, 'fmt': '0.60%'}, 'bidSize': {'raw': 3000, 'fmt': '3k', 'longFmt': '3,000'}, 'dayHigh': {'raw': 153.1, 'fmt': '153.10'}, 'coinMarketCapLink': None}, 'symbol': 'AAPL', 'pageViews': {'shortTermTrend': 'UP', 'midTermTrend': 'UP', 'longTermTrend': 'UP', 'maxAge': 1}}, 'FinanceConfigStore': {'app': {'base': {'feedback': {'enabled': False}, 'marketdata': {'lists': {'most_active': {'name': 'MOST_ACTIVE_TITLE', 'uri': '/most-active', 'count': 5, 'listCount': 30, 'predefinedScrId': 'most_actives'}, 'options_highest_open_interest': {'name': 'OPTIONS_HIGHEST_OPEN_INTEREST_TITLE', 'uri': '/options/highest-open-interest', 'predefinedScrId': '65f51cea-8dc8-4e56-9f99-6ef7720eb69c'}, 'gainers': {'name': 'GAINERS_TITLE', 'uri': '/gainers', 'count': 5, 'listCount': 30, 'predefinedScrId': 'day_gainers'}, 'commodities': {'name': 'FUTURES', 'uri': '/commodities', 'count': 5, 'listCount': 30}, 'currencies': {'name': 'CURRENCIES_TITLE', 'uri': '/currencies', 'count': 5, 'listCount': 30}, 'trending_tickers': {'name': 'TRENDING_TICKERS_TITLE', 'uri': '/trending-tickers', 'count': 5, 'listCount': 30}, 'bonds': {'name': 'BONDS_TITLE', 'uri': '/bonds', 'count': 5, 'listCount': 30}, 'cryptocurrencies': {'name': 'CRYPTO_CURRENCIES', 'uri': '/crypto', 'count': 5, 'predefinedScrId': 'all_cryptocurrencies_us'}, 'losers': {'name': 'LOSERS_TITLE', 'uri': '/losers', 'count': 5, 'listCount': 30, 'predefinedScrId': 'day_losers'}, 'options_highest_implied_volatility': {'name': 'OPTIONS_HIGHEST_IMPLIED_VOLATALITY_TITLE', 'uri': '/options/highest-implied-volatility', 'predefinedScrId': '671c40b0-5ea8-4063-89b9-9db45bf9edf0'}, 'mutualfunds': {'name': 'MUTUALFUNDS_TITLE', 'uri': '/mutualfunds', 'count': 5, 'listCount': 30, 'predefinedScrId': 'top_mutual_funds'}, 'world_indices': {'name': 'WORLD_INDICES', 'uri': '/world-indices', 'count': 5, 'listCount': 30}, 'etfs': {'name': 'ETFS_TITLE', 'uri': '/etfs', 'count': 5, 'listCount': 30, 'predefinedScrId': 'top_etfs_us'}}, 'defaultLists': ['recentQuotes', 'cryptocurrencies', 'trending_tickers', 'most_active', 'gainers', 'losers', 'mutualfunds', 'etfs', 'currencies', 'commodities', 'options_highest_open_interest', 'options_highest_implied_volatility'], 'orderedLists': ['cryptocurrencies', 'trending_tickers', 'most_active', 'gainers', 'losers', 'mutualfunds', 'etfs', 'commodities', 'options_highest_open_interest', 'options_highest_implied_volatility', 'world_indices', 'currencies', 'bonds']}, 'host': 'finance.yahoo.com', 'hiringLinks': {'snv': 'https://www.linkedin.com/jobs2/cap/view/208631894?pathWildcard=208631894&trk=job_capjs', 'nyc': 'https://www.linkedin.com/jobs/view/188529482'}, 'timeouts': {'navigate': 10000}, 'spaceIds': {'TRADE_IDEAS': 1197807300, 'most_active': 1183331958, 'fullScreenChart': 2022773886, 'FUTURE': 97327109, 'EQUITY': 95993639, 'gainers': 1183331958, 'SCREENER_FUTURE': 1183336017, 'CRYPTO_PORTFOLIO': 1197812219, 'commodities': 97327075, 'SCREENER_EQUITY': 1183335883, 'SCREENER_INDEX': 1183336019, 'COMMODITY': 97327109, 'currencies': 2146786654, 'trending_tickers': 1183331958, 'BONDS': 95993639, 'bonds': 42328446, 'SCREENER_INSIDER': 1183335958, 'CURRENCY': 96390611, 'SCREENER_ETF': 1183335947, 'INDEX': 95993639, 'CRYPTOCURRENCY': 1197805203, 'QUOTE_BASE': 95993639, 'OPTION': 1197783905, 'fullScreenChart_MUTUALFUND': 1197773430, 'losers': 1183331958, 'SCREENER_BASE': 1183335867, 'ETF': 96469363, 'SCREENER_CRYPTOCURRENCY': 1183335995, 'CUL_IDX': 95993639, 'MUTUALFUND': 2712295, 'CUL_SUB_IDX': 95993639, 'mutualfunds': 1183331884, 'world_indices': 1183331958, 'SCREENER_OPTION': 1183335974, 'RESEARCH_REPORTS': 1197807299, 'etfs': 1183331881, 'industries': 1183331958, 'CATEGORY_options': 28951412, 'options': 1183331888, 'SCREENER_MUTUALFUND': 1183335884}, 'videoReel': {'capPortfolioSymbols': 20, 'capRecentQuotes': 20}, 'enableVideoManager': True, 'premium': {'sku': {'monthly': 'fin-yh-ft22178', 'annually': 'fin-yh-fte993687'}}, 'nativeAds': {'se': 4492794}, 'videoPlayer': {'baseUrl': 'https://yep.video.yahoo.com/oath/js/1/oath-player.js', 'device': 'nextgen-desktop', 'docking': {'fadeInAnimation': True, 'width': 300, 'height': 168.75, 'position': {'left': 'ref', 'right': 0, 'bottom': 45}, 'enableOnMuted': True, 'enableOnScrollUp': False, 'threshold': 60, 'enableOnScrollDown': False, 'ref': '.modal-open .render-target-modal .modalRight', 'showInfoCard': False}, 'enableRestoreOnNavigate': True, 'refreshDockingOnNavigate': True, 'version': None, 'vpaidTimeout': 10}}}}, 'LangStore': {'defaultBundle': 'td-app-finance', 'baseLangs': {'td-app-finance': {'10_YEARS': '10 Years', '1_D': '1D', '1_DAY_CHANGE': 'Change (1D)', '1_D_PERFORMANCE': '1D Performance', '1_D_PERF_ASC': '1D Performance Asc', '1_D_PERF_DESC': '1D Performance Desc', '1_M': '1M', '1_Y': '1Y', '1_YEAR': '1 Year', '200_DAY_MOVING_AVG': '200-Day Moving Average', '2_Y': '2Y', '30_DAYS_AGO': '30 Days Ago', '3_M': '3M', '3_YEARS': '3 Years', '50_DAY_MOVING_AVG': '50-Day Moving Average', '52_WEEK_CHANGE': '52-Week Change', '5_D': '5D', '5_Y': '5Y', '5_YEARS': '5 Years', '5_YEAR_AVERAGE_DIVIDEND_YIELD': '5 Year Average Dividend Yield', '60_DAYS_AGO': '60 Days Ago', '6_M': '6M', '7_DAYS_AGO': '7 Days Ago', '7_DAY_VISITS': 'Visits (7D)', '7_DAY_YIELD': '7 Day Yield', '90_DAYS_AGO': '90 Days Ago', 'ABOUT_TEXT': 'About {value}', 'ABOVE_AVG': 'Above Average', 'ACCIDENT_HEALTH_INSURANCE': 'Accident & Health Insurance', 'ACCIDENT_HEALTH_INSURANCE_DESC': 'Accident & Health Insurance Stocks', 'ACCOUNTS_PAYABLE': 'Accounts Payable', 'ACCOUNTS_RECEIVABLE': 'Accounts receivable', 'ACCOUNT_INFO': 'Account Info', 'ACCOUNT': 'Account', 'ACCRUED_INTEREST_RECEIVABLE': 'Accrued Interest Receivable', 'ACCRUED_INVESTMENT_INCOME': 'Accrued Investment Income', 'ACCUMULATED_AMORTIZATION': 'Accumulated Amortization', 'ACCUMULATED_DEPRECIATION': 'Accumulated Depreciation', 'ACCUMULATED_OTHER_COMPREHENSIVE_INCOME': 'Accumulated other comprehensive income', 'ACCURED_LIABILITES': 'Accrued liabilities', 'ACQUISITIONS_NET': 'Acquisitions, net', 'ACTIONS': 'Actions', 'ACTUAL': 'Actual', 'ADD': 'Add', 'ADDED': 'Added', 'ADDITIONAL_PAID_IN_CAPITAL': 'Additional Paid in Capital', 'ADDRESS': 'Address', 'ADD_AVATAR': 'Add avatar', 'ADD_CHART_COMPARISONS': 'Add Comparisons', 'ADD_CHART_INDICATORS': 'Add Indicators', 'ADD_FIELD': 'Add {field}', 'ADD_FILTER': 'Add another filter', 'ADD_HOLDINGS': 'Add Holdings', 'ADD_INDICATORS': 'Indicators', 'ADD_LOT': 'Add Lot', 'ADD_MANAGE_ACCOUNTS': 'Add or Manage accounts', 'ADD_REMOVE_LIST': 'Add to or remove from my watchlist', 'ADD_CASH_HOLDING': 'Add cash holding', 'ADD_NEW_CASH_TRANSACTION': 'Add Cash Transaction', 'ADD_NEW_TRANSACTION': 'Add a new transaction - {symbol} ({name})', 'ADD_SELECTED_STOCKS': 'Add Selected Stocks to...', 'ADD_SELECTED_STOCKS_SIGNED_OUT': '{content} to add selected stocks to your portfolios.', 'ADD_SYMBOL': 'Add Symbol', 'ADD_TO_PORTFOLIO': 'Add to Portfolio', 'ADD_TO_TOTAL_HOLDINGS': 'Add to Total Holdings', 'ADD_TO_WATCHLIST': 'Add to watchlist', 'ADD_TRANSACTION': 'Add a transaction', 'ADJUSTED_CLOSE': 'Adj Close**', 'ADJUSTED_GEOGRAPHY_SEGMENT_DATA': 'Adjusted Geography Segment Data', 'ADJUSTMENT_TO_NET_INCOME': 'Adjustments To Net Income', 'ADS_RELATED_TO': 'Ads related to: {name}', 'ADVANCE_FROM_FEDERAL_HOME_LOAN_BANKS': 'Advance From Federal Home Loan Banks', 'ADVERTISE_WITH_US': 'Advertise with us', 'ADVERTISING_AGENCIES': 'Advertising Agencies', 'ADVERTISING_AGENCIES_DESC': 'Advertising Agencies Stocks', 'ADVANCED_CHART': 'Advanced Chart', 'AD_ABBR': 'Ad', 'AD_DISLIKE': \"I don't like this ad\", 'AD_FEEDBACK_ADLITE_PROMO': 'Try Yahoo Finance Plus', 'AD_FEEDBACK_MESSAGE': 'Improve your future experience.', 'AD_FEEDBACK_NEGATIVE': \"Why don't you like this ad?\", 'AD_FEEDBACK_REVIEW': \"We'll review and make changes needed.\", 'AD_FEEDBACK_THANKYOU': 'Thanks for your feedback', 'AD_HIDDEN': 'This ad has been hidden', 'AD_LIKE': 'I like this ad', 'AD_TERMS': 'Why this ad?', 'ADD_DATE': 'Add date', 'AERONAUTIQUE_TITLE': 'Aeronautics', 'AEROSPACE_DEFENSE_MAJOR_DIVERSIFIED': 'Aerospace/Defense - Major Diversified', 'AEROSPACE_DEFENSE_MAJOR_DIVERSIFIED_DESC': 'Aerospace/Defense - Major Diversified Stocks', 'AEROSPACE_DEFENSE_PRODUCTS_SERVICES': 'Aerospace/Defense Products & Services', 'AEROSPACE_DEFENSE_PRODUCTS_SERVICES_DESC': 'Aerospace/Defense Products & Services Stocks', 'AGE': 'Age', 'AGGRESSIVE_SMALL_CAPS': 'Aggressive Small Caps', 'AGGRESSIVE_SMALL_CAPS_DESC': 'Small cap stocks with earnings growth rates better than 25%.', 'AGRICULTURAL_CHEMICALS': 'Agricultural Chemicals', 'AGRICULTURAL_CHEMICALS_DESC': 'Agricultural Chemicals Stocks', 'AIR_DELIVERY_FREIGHT_SERVICES': 'Air Delivery & Freight Services', 'AIR_DELIVERY_FREIGHT_SERVICES_DESC': 'Air Delivery & Freight Services Stocks', 'AIR_SERVICES_OTHER': 'Air Services, Other', 'AIR_SERVICES_OTHER_DESC': 'Air Services, Other Stocks', 'ALGORITHM': 'Algorithm', 'ALGO_WATCHLIST': 'Watchlist', 'ALIMENTACION-Y-CONSUMO_TITLE': 'Food and Consumption', 'ALL': 'All', 'ALLOCATION': 'Allocation', 'ALLOWANCE_FOR_DOUBTFUL_ACCOUNTS_RECEIVABLE': 'Allowance For Doubtful Accounts Receivable', 'ALLOWANCE_FOR_LOANS_AND_LEASE_LOSSES': 'Allowance for Loans And Lease Losses', 'ALLOWANCE_FOR_NOTES_RECEIVABLE': 'Allowance for Notes Receivable', 'ALL_EVENTS': 'All Events', 'ALL_INDICATORS': 'All Indicators', 'ALL_MARKETS': 'All Markets', 'ALL_NUMBER_IN_THOUSANDS': 'All numbers in thousands', 'ALL_PORTFOLIOS': 'All Portfolios', 'ALL_POSITIONS': 'All Positions', 'ALL_REPORTS': 'All reports', 'ALL_SCREENERS': 'All Screeners', 'ALL_TAXES_PAID': 'All Taxes Paid', 'ALPHA': 'Alpha', 'ALUMINUM': 'Aluminum', 'ALUMINUM_DESC': 'Aluminum Stocks', 'AMORTIZATION': 'Amortization', 'AMORTIZATION_AMORTIZATION_CASH_FLOW': 'Amortization & Amortization Cash Flow', 'AMORTIZATION_OF_FINANCING_COSTS_AND_DISCOUNTS': 'Amortization of Financing Costs And Discounts', 'AMORTIZATION_OF_INTANGIBLES': 'Amortization of Intangibles', 'AMORTIZATION_OF_SECURITIES': 'Amortization of Securities', 'ANALYSIS': 'Analysis', 'ANALYSTS': 'Analysts', 'ANALYST_PRICE_TARGETS': 'Analyst Price Targets', 'ANALYST_PROFILE': 'Analyst Profile', 'ANALYST_QUARTER_LABEL': '{label} ({month} {year})', 'ANALYST_RATING': 'Analyst Rating', 'ANALYST_RATINGS': 'Analyst Ratings', 'ANALYST_REPORT': 'Analyst Report', 'ANALYST_STRONG_BUY_STOCKS': 'Analyst Strong Buy Stocks', 'ANALYST_YEAR_LABEL': '{label} ({year})', 'ANALYSTS_ARE_SAYING': 'Analysts Are Saying', 'ANALYTICS': 'Analytics', 'AND': 'and', 'ANNOUNCEMENT': 'Announcement', 'ANNOUNCEMENT_PLACEHOLDER': 'Users will be able to see your anouncement in your livestream room', 'ANNUAL': 'Annual', 'ANNUAL_HOLDINGS_TURNOVER': 'Holdings Turnover', 'ANNUAL_REPORT_EXPENSE_RATIO': 'Annual Report Expense Ratio (net)', 'ANNUAL_TOTAL_RETURNS': 'Annual Total Return (%) History', 'ANNUAL_STOCK_PERFORMANCE_DATA': 'Annual Stock Performance Data', 'APPAREL_STORES': 'Apparel Stores', 'APPAREL_STORES_DESC': 'Apparel Stores Stocks', 'APPLET_COMMENT_COMMENTS': 'Comments', 'APPLIANCES': 'Appliances', 'APPLIANCES_DESC': 'Appliances Stocks', 'APPLICATION_SOFTWARE': 'Application Software', 'APPLICATION_SOFTWARE_DESC': 'Application Software Stocks', 'APPLIED': 'Applied', 'APPLIED_FILTERS': 'Applied Filters for {type} screener', 'APPLY': 'Apply', 'APP_PROMO_ALERTS': 'News and price alerts', 'APP_PROMO_FREE_DATA': 'Free real-time data', 'APP_PROMO_GET_APP': 'Get the App', 'APP_PROMO_HOLDINGS': 'Add and edit holdings', 'APP_PROMO_OPEN_APP': 'Open in App', 'APP_PROMO_PERFORMANCE': 'Track performance', 'APP_PROMO_WATCHLISTS': 'Create multiple watchlists', 'AREA': 'Area', 'ARGUS_RATING': 'Argus Rating', 'ARROW': 'Arrow', 'ASC_ORDER': 'Ascending Order', 'AS_OF': 'As of:', 'ASK': 'Ask', 'ASSET': 'Asset', 'ASSETS': 'Assets', 'ASSET_CLASS': 'Asset Class', 'ASSETS_HELD_FOR_SALE': 'Assets Held for Sale', 'ASSETS_HELD_FOR_SALE_CURRENT': 'Assets Held for Sale Current', 'ASSETS_OF_DISCONTINUED_OPERATIONS': 'Assets of Discontinued Operations', 'ASSET_IMPAIRMENT_CHARGE': 'Asset Impairment Charge', 'ASSET_MANAGEMENT': 'Asset Management', 'ASSET_MANAGEMENT_DESC': 'Asset Management Stocks', 'ATTRIBUTES': 'Attributes', 'AUDIOVISUAL-Y-MEDIOS_TITLE': 'Audiovisual and Media', 'AUSTRALIA': 'Australia', 'AUTO': 'Auto', 'AUTOCOMPLETE_PLACEHOLDER': 'VZ, AAPL, TSLA', 'AUTOMATIC_PICK': 'Automatic Pick', 'AUTOMOBILE_TITLE': 'Automobile', 'AUTOS_TITLE': 'Autos', 'AUTOS_TRANSPORTATION_TITLE': 'Autos & Transportation', 'AUTO_DEALERSHIPS': 'Auto Dealerships', 'AUTO_DEALERSHIPS_DESC': 'Auto Dealerships Stocks', 'AUTO_MANUFACTURERS_MAJOR': 'Auto Manufacturers - Major', 'AUTO_MANUFACTURERS_MAJOR_DESC': 'Auto Manufacturers - Major Stocks', 'AUTO_PARTS': 'Auto Parts', 'AUTO_PARTS_DESC': 'Auto Parts Stocks', 'AUTO_PARTS_STORES': 'Auto Parts Stores', 'AUTO_PARTS_STORES_DESC': 'Auto Parts Stores Stocks', 'AUTO_PARTS_WHOLESALE': 'Auto Parts Wholesale', 'AUTO_PARTS_WHOLESALE_DESC': 'Auto Parts Wholesale Stocks', 'AVAILABLE_FOR_SALE_SECURITIES': 'Available for Sale Securities', 'AVATAR_COPY': 'Choosing a more professional avatar will gain more trust from your followers.', 'AVERAGE': 'Average', 'AVERAGE_DILUTION_EARNINGS': 'Average Dilution Earnings', 'AVERAGE_FOR_CATEGORY': 'Average for Category', 'AVERAGE_VOLUME_3MONTH': 'Avg. Volume', 'AVG_COST_PER_QUANTITY': 'Avg Cost / Quantity', 'AVG_COST_PER_SHARE': 'Avg Cost / Share', 'AVERAGE_COST_PER_SHARE': 'Average Cost / Share', 'AVG_ESTIMATE': 'Avg. Estimate', 'AVG_HOURLY_EARNINGS': 'Average \\nHourly Earnings', 'AVG_MATURITY': 'Avg Maturity (days)', 'AVG_VOL_10_DAY': 'Avg Vol (10 day)', 'AVG_VOL_3_MONTH': 'Avg Vol (3 month)', 'BACK': 'Back', 'BALANCE_SHEET': 'Balance Sheet', 'BANCA-Y-SEGUROS_TITLE': 'Banking & Insurance', 'BANK_INDEBTEDNESS': 'Bank Indebtedness', 'BANK_OWNED_LIFE_INSURANCE': 'Bank Owned Life Insurance', 'BANQUE-ET-ASSURANCE_TITLE': 'Banking & Insurance', 'BAR': 'Bar', 'BASIC': 'Basic', 'BASIC_ACCOUNTING_CHANGE': 'Basic Accounting Change', 'BASIC_AVERAGE_SHARES': 'Basic Average Shares', 'BASIC_CONTINUOUS_OPERATIONS': 'Basic Continuous Operations', 'BASIC_DISCONTINUOUS_OPERATIONS': 'Basic Discontinuous Operations', 'BASIC_EPS': 'Basic EPS', 'BASIC_EPS_OTHER_GAINS_LOSSES': 'Basic EPS Other Gains Losses', 'BASIC_EXTRAORDINARY': 'Basic Extraordinary', 'BASIC_MATERIALS': 'Basic Materials', 'BASIC_MATERIALS_DESC': 'Basic Materials Stocks', 'BASIC_MATERIALS_WHOLESALE': 'Basic Materials Wholesale', 'BASIC_MATERIALS_WHOLESALE_DESC': 'Basic Materials Wholesale Stocks', 'BASIC_PORTFOLIO': 'Basic Portfolio', 'BEARISH': 'Bearish', 'BEARISH_STOCKS_RIGHT_NOW': 'Bearish Stocks Right Now', 'BEARS_SAY': 'Bears Say', 'BEAT': 'Beat', 'BEA_CODE': 'BEA Code', 'BEGINNING_CASH_POSITION': 'Beginning Cash Position', 'BEHAVIOR': 'Behavior', 'BELOW_AVG': 'Below Average', 'BENI-DI-CONSUMO_TITLE': 'Consumer Goods', 'BENS-DE-CONSUMO_TITLE': 'Consumer goods', 'BEST_ONE_YR_TOTAL_RETURN': 'Best 1 Yr Total Return ({date})', 'BEST_THREE_YR_TOTAL_RETURN': 'Best 3-Yr Total Return', 'BETA': 'BETA', 'BETA_5Y': 'Beta (5Y Monthly)', 'BETA_PORTFOLIO': 'Beta portfolio', 'BEVERAGES_BREWERS': 'Beverages - Brewers', 'BEVERAGES_BREWERS_DESC': 'Beverages - Brewers Stocks', 'BEVERAGES_SOFT_DRINKS': 'Beverages - Soft Drinks', 'BEVERAGES_SOFT_DRINKS_DESC': 'Beverages - Soft Drinks Stocks', 'BEVERAGES_WINERIES_DISTILLERS': 'Beverages - Wineries & Distillers', 'BEVERAGES_WINERIES_DISTILLERS_DESC': 'Beverages - Wineries & Distillers Stocks', 'BECOME_STREAMER': 'Become a livestreamer', 'BI_WEEKLY': 'Bi-weekly', 'BID': 'Bid', 'BILLION_SHORT': '{num}B', 'BIO': 'Bio', 'BIOTECHNOLOGY': 'Biotechnology', 'BIOTECHNOLOGY_DESC': 'Biotechnology Stocks', 'BIO_PLACEHOLDER': 'Tell your followers more about you', 'BLOCK_NO': 'Block No.', 'BLOCK_REWARD': 'Block Reward', 'BLOCK_RR': 'Block RR.', 'BLOG': 'Blog', 'BONDS': 'Bonds', 'BOND_A': 'A', 'BOND_AA': 'AA', 'BOND_AAA': 'AAA', 'BOND_B': 'B', 'BOND_BB': 'BB', 'BOND_BBB': 'BBB', 'BOND_BELOW_B': 'Below B', 'BOND_HOLDINGS': 'Bond Holdings', 'BOND_RATINGS': 'Bond Ratings', 'BOND_US_GOVERMENT': 'US Government', 'BOOK_VALUE_PER_SHARE': 'Book Value Per Share', 'BRAZIL': 'Brazil', 'BREXIT_TITLE': 'Brexit', 'BROADCASTING_RADIO': 'Broadcasting - Radio', 'BROADCASTING_RADIO_DESC': 'Broadcasting - Radio Stocks', 'BROADCASTING_TV': 'Broadcasting - TV', 'BROADCASTING_TV_DESC': 'Broadcasting - TV Stocks', 'BROKERAGE_AVAILABILITY': 'Brokerage Availability', 'BROUGHT_TO_YOU_BY_ISS': 'Corporate governance scores courtesy of', 'BROUGHT_TO_YOU_BY_ISS_CONTEXT': 'Scores indicate decile rank relative to index or region. A decile score of 1 indicates lower governance risk, while a 10 indicates higher governance risk.', 'BROWSER_UPGRADE': 'Some parts of this page is not supported on your current browser version. Please upgrade the browser to the latest.', 'BUILDINGS_AND_IMPROVEMENTS': 'Buildings And Improvements', 'BUILDING_MATERIALS_WHOLESALE': 'Building Materials Wholesale', 'BUILDING_MATERIALS_WHOLESALE_DESC': 'Building Materials Wholesale Stocks', 'BUILD_SCREENER_MSG': 'Build {type} screener with filters below', 'BULLISH': 'Bullish', 'BULLISH_STOCKS_RIGHT_NOW': 'Bullish Stocks Right Now', 'BULLS_SAY': 'Bulls Say', 'BULLISH_BEARISH_TITLE': 'How do you feel about {symbol}?', 'BUSINESS_EQUIPMENT': 'Business Equipment', 'BUSINESS_EQUIPMENT_DESC': 'Business Equipment Stocks', 'BUSINESS_SERVICES': 'Business Services', 'BUSINESS_SERVICES_DESC': 'Business Services Stocks', 'BUSINESS_SERVICES_TITLE': 'Business Services', 'BUSINESS_SOFTWARE_SERVICES': 'Business Software & Services', 'BUSINESS_SOFTWARE_SERVICES_DESC': 'Business Software & Services Stocks', 'BUY': 'Buy', 'BUY_SLASH_SELL': 'Buy/Sell', 'BUY_TO_COVER': 'Buy to Cover', 'BY': 'By', 'BY_ENTITY': 'by {entity}', 'CALENDAR': 'Calendar', 'CALENDAR_FRI': 'Fri', 'CALENDAR_MON': 'Mon', 'CALENDAR_MONTH_0': 'Jan', 'CALENDAR_MONTH_1': 'Feb', 'CALENDAR_MONTH_10': 'Nov', 'CALENDAR_MONTH_11': 'Dec', 'CALENDAR_MONTH_2': 'Mar', 'CALENDAR_MONTH_3': 'Apr', 'CALENDAR_MONTH_4': 'May', 'CALENDAR_MONTH_5': 'Jun', 'CALENDAR_MONTH_6': 'Jul', 'CALENDAR_MONTH_7': 'Aug', 'CALENDAR_MONTH_8': 'Sep', 'CALENDAR_MONTH_9': 'Oct', 'CALENDAR_SAT': 'Sat', 'CALENDAR_SUN': 'Sun', 'CALENDAR_THU': 'Thu', 'CALENDAR_TUES': 'Tues', 'CALENDAR_WED': 'Wed', 'CALLOUT': 'Callout', 'CANADA_TITLE': 'Canada', 'CANCEL': 'Cancel', 'CANDLE': 'Candle', 'CANVASS DISPLAY_TEXT': '${symbol} conversation', 'CANVASS SENTIMENT_PROMPT': 'How are you feeling about {symbol}?', 'CAPITAL_EX': 'Capital Expenditure', 'CAPITAL_EXPENDITURE': 'Capital Expenditure', 'CAPITAL_EXPENDITURE_REPORTED': 'Capital Expenditure Reported', 'CAPITAL_GAIN': 'Capital Gain', 'CAPITAL_LEASE_OBLIGATIONS': 'Capital Lease Obligations', 'CAPITAL_OR': 'OR', 'CAPITAL_STOCK': 'Capital Stock', 'CAPITAL_SURPLUS': 'Capital Surplus', 'CAREERS_TITLE': 'Careers', 'CASH': 'Cash', 'CASH_AND_CASH_EQUIVALENTS': 'Cash And Cash Equivalents', 'CASH_AND_DUE_FROM_BANKS': 'Cash And Due from Banks', 'CASH_AT_BEGINNING_OF_PERIOD': 'Cash at beginning of period', 'CASH_AT_END_OF_PERIOD': 'Cash at end of period', 'CASH_CASH_EQUIVALENTS_AND_FEDERAL_FUNDS_SOLD': 'Cash, Cash Equivalents & Federal Funds Sold', 'CASH_CASH_EQUIVALENTS_AND_SHORT_TERM_INVESTMENTS': 'Cash, Cash Equivalents & Short Term Investments', 'CASH_DEPOSIT': 'Cash Deposit', 'CASH_DIVIDENDS_PAID': 'Cash Dividends Paid', 'CASH_EQUIVALENTS': 'Cash Equivalents', 'CASH_FLOW': 'Cash Flow', 'CASH_FLOWSFROMUSEDIN_OPERATING_ACTIVITIES_DIRECT': 'Cash Flows from Used in Operating Activities Direct', 'CASH_FLOW_FROM_CONTINUING_FINANCING_ACTIVITIES': 'Cash Flow from Continuing Financing Activities', 'CASH_FLOW_FROM_CONTINUING_INVESTING_ACTIVITIES': 'Cash Flow from Continuing Investing Activities', 'CASH_FLOW_FROM_CONTINUING_OPERATING_ACTIVITIES': 'Cash Flow from Continuing Operating Activities', 'CASH_FLOW_FROM_DISCONTINUED_OPERATION': 'Cash Flow from Discontinued Operation', 'CASH_FLOW_FROM_FINANCING_ACT': 'Cash flows from financing activities', 'CASH_FLOW_FROM_INVESTING_ACT': 'Cash flows from investing activities ', 'CASH_FLOW_FROM_OP_ACT': 'Cash flows from operating activities', 'CASH_FLOW_STATEMENT': 'Cash Flow Statement', 'CASH_FROM_DISCONTINUED_FINANCING_ACTIVITIES': 'Cash from Discontinued Financing Activities', 'CASH_FROM_DISCONTINUED_INVESTING_ACTIVITIES': 'Cash from Discontinued Investing Activities', 'CASH_FROM_DISCONTINUED_OPERATING_ACTIVITIES': 'Cash from Discontinued Operating Activities', 'CASH_HOLDINGS': 'Cash Holdings', 'CASH_MANAGEMENT': 'Cash management', 'CASH_MANAGEMENT_CAPS': 'Cash Management', 'CASH_PAIDFOR_INSURANCE_ACTIVITIES': 'Cash Paid for Insurance Activities', 'CASH_PAIDTO_REINSURERS': 'Cash Paid to Reinsurers', 'CASH_PAYMENTSFOR_DEPOSITSBY_BANKSAND_CUSTOMERS': 'Cash Payments for Depositsby Banks & Customers', 'CASH_PAYMENTSFOR_LOANS': 'Cash Payments for Loans', 'CASH_RECEIPTSFROM_DEPOSITSBY_BANKSAND_CUSTOMERS': 'Cash Receipts from Depositsby Banks & Customers', 'CASH_RECEIPTSFROM_FEESAND_COMMISSIONS': 'Cash Receipts from Fees & Commissions', 'CASH_RECEIPTSFROM_LOANS': 'Cash Receipts from Loans', 'CASH_RECEIPTSFROM_SECURITIES_RELATED_ACTIVITIES': 'Cash Receipts from Securities Related Activities', 'CASH_RECEIPTSFROM_TAX_REFUNDS': 'Cash Receipts from Tax Refunds', 'CASH_RECEIVEDFROM_INSURANCE_ACTIVITIES': 'Cash Received from Insurance Activities', 'CASH_SETTINGS_BUY_BEHAVIOR': 'Use available cash holdings', 'CASH_SETTINGS_BUY_BEHAVIOR_LONG': 'Use available cash holdings to purchase new stocks', 'CASH_SETTINGS_SELL_BEHAVIOR': 'Auto-add proceeds to cash holdings', 'CASH_SETTINGS_SELL_BEHAVIOR_LONG': 'Auto-add sell proceeds to my Cash holdings', 'CASH_SETTINGS_DIVIDENDS_BEHAVIOR': 'Auto-add payouts to cash holdings', 'CASH_SETTINGS_DIVIDENDS_BEHAVIOR_LONG': 'Auto-add dividend payouts to my Cash holdings', 'CASH_TIP': 'Tip: Type \"$$\" to enter custom symbols such as \"$$CASH\"', 'CASH_WITHDRAW': 'Cash Withdraw', 'CATALOG_MAIL_ORDER_HOUSES': 'Catalog & Mail Order Houses', 'CATALOG_MAIL_ORDER_HOUSES_DESC': 'Catalog & Mail Order Houses Stocks', 'CATEGORY': 'Category', 'CATEGORY_AVG': 'Category Average', 'CATEGORY_RANK_YDT': 'Rank in Category (ytd)', 'CATEGORY_RANK_YDT_PERCENT': '% Rank in Category (ytd)', 'CATV_SYSTEMS': 'CATV Systems', 'CATV_SYSTEMS_DESC': 'CATV Systems Stocks', 'CEDED_PREMIUMS': 'Ceded Premiums', 'CEMENT': 'Cement', 'CEMENT_DESC': 'Cement Stocks', 'CHANGE': 'Change', 'CHANGEIN_INSURANCE_CONTRACT_ASSETS': 'Change in Insurance Contract Assets', 'CHANGES_IN_ACCOUNTS_RECEIVABLES': 'Changes in Accounts Receivables', 'CHANGES_IN_ACCOUNT_RECEIVABLES': 'Changes in Account Receivables', 'CHANGES_IN_CASH': 'Changes in Cash', 'CHANGES_IN_INVENTORIES': 'Changes In Inventories', 'CHANGES_IN_LIABILITIES': 'Changes In Liabilities', 'CHANGES_IN_OTHER_OPERATING_ACT': 'Changes In Other Operating Activities', 'CHANGES_IN_PRICE_AND_MARKET_CAP': 'Changes in Price and Market Cap', 'CHANGES_IN_VOLUME_AND_OWNERSHIP': 'Changes in Volume and Ownership', 'CHANGE_IN_ACCOUNT_PAYABLE': 'Change in Account Payable', 'CHANGE_IN_ACCRUED_EXPENSE': 'Change in Accrued Expense', 'CHANGE_IN_ACCRUED_INVESTMENT_INCOME': 'Change in Accrued Investment Income', 'CHANGE_IN_CASH_AND_EQ': 'Change in Cash and Cash Equivalents', 'CHANGE_IN_DEFERRED_ACQUISITION_COSTS': 'Change in Deferred Acquisition Costs', 'CHANGE_IN_DEFERRED_CHARGES': 'Change in Deferred Charges', 'CHANGE_IN_DIVIDEND_PAYABLE': 'Change in Dividend Payable', 'CHANGE_IN_FEDERAL_FUNDS_AND_SECURITIES_SOLD_FOR_REPURCHASE': 'Change in Federal Funds And Securities Sold for Repurchase', 'CHANGE_IN_FUNDS_WITHHELD': 'Change in Funds Withheld', 'CHANGE_IN_INCOME_TAX_PAYABLE': 'Change in Income Tax Payable', 'CHANGE_IN_INTEREST_PAYABLE': 'Change in Interest Payable', 'CHANGE_IN_INVENTORY': 'Change in Inventory', 'CHANGE_IN_LOANS': 'Change in Loans', 'CHANGE_IN_LOSS_AND_LOSS_ADJUSTMENT_EXPENSE_RESERVES': 'Change in Loss And Loss Adjustment Expense Reserves', 'CHANGE_IN_OTHER_CURRENT_ASSETS': 'Change in Other Current Assets', 'CHANGE_IN_OTHER_CURRENT_LIABILITIES': 'Change in Other Current Liabilities', 'CHANGE_IN_OTHER_WORKING_CAPITAL': 'Change in Other Working Capital', 'CHANGE_IN_PAYABLE': 'Change in Payable', 'CHANGE_IN_PAYABLES_AND_ACCRUED_EXPENSE': 'Change in Payables And Accrued Expense', 'CHANGE_IN_PREPAID_ASSETS': 'Change in Prepaid Assets', 'CHANGE_IN_RECEIVABLES': 'Change in Receivables', 'CHANGE_IN_REINSURANCE_RECOVERABLE_ON_PAID_AND_UNPAID_LOSSES': 'Change in Reinsurance Recoverable on Paid And Unpaid Losses', 'CHANGE_IN_RESTRICTED_CASH': 'Change in Restricted Cash', 'CHANGE_IN_TAX_PAYABLE': 'Change in Tax Payable', 'CHANGE_IN_TRADING_ACCOUNT_SECURITIES': 'Change in Trading Account Securities', 'CHANGE_IN_UNEARNED_PREMIUMS': 'Change in Unearned Premiums', 'CHANGE_IN_WORKING_CAPITAL': 'Change in working capital', 'CHARACTERISTICS': 'Characteristics', 'CHART': 'Chart', 'CHART_EVENTS': 'Chart Events', 'CHARTIQ_DISCLAIMER_TEXT': 'In partnership with ChartIQ', 'CHARTIQ_FEEDBACK': 'Give feedback', 'CHARTIQ_INTERVAL_DAY': '1 day', 'CHARTIQ_INTERVAL_DAYS': '{n} days', 'CHARTIQ_INTERVAL_HOUR': '1 hour', 'CHARTIQ_INTERVAL_HOURS': '{n} hours', 'CHARTIQ_INTERVAL_MIN': '1 min', 'CHARTIQ_INTERVAL_MINS': '{n} mins', 'CHARTIQ_INTERVAL_MONTH': '1 month', 'CHARTIQ_INTERVAL_MONTHS': '{n} months', 'CHARTIQ_INTERVAL_WEEK': '1 week', 'CHARTIQ_INTERVAL_YEAR': '1 year', 'CHART_NOT_AVAILABLE': 'This chart is not available', 'CHART_NOT_SUPPORTED': 'Stock chart is not supported by your current browser', 'CHART_PREFERENCE': 'Chart Preference', 'CHART_TEMP_NOT_AVAILABLE': 'Unable to display charts. Please try again later.', 'CHART_TYPE': 'Chart Type', 'CHART_FEATURE_CUE_EXPERT_1': 'See all the pro tools we have for you! Expand to explore', 'CHART_FEATURE_CUE_EXPERT_2': 'You asked, we added! Expand to explore our new features', 'CHART_FEATURE_CUE_START_1': 'This graph has more to offer! Expand to explore', 'CHART_FEATURE_CUE_START_2': 'See what else our graphs can do! Expand now', 'CHART_FEATURE_MARKETING_HEADLINE': 'NEW: Experience our best charts yet.', 'CHART_FEATURE_MARKETING_SUBHEAD': 'Everything you need for any kind of investing', 'CHART_FEATURE_MARKETING_ACTION': 'Explore new charts', 'CHART_FEATURE_MARKETING_TIP_1': 'Find MACD, RSI, and more than 100 different indicators', 'CHART_FEATURE_MARKETING_TIP_2': 'Compare multiple stocks, indexes, and more, all at once', 'CHART_FEATURE_MARKETING_TIP_3': 'Create your own analysis with 37 drawing tools ', 'CHART_FEATURE_MARKETING_TIP_4': 'Download your chart information in table format', 'CHART_FEATURE_MARKETING_TIP_5': 'Use Line, Candle, and other 30 different type of graphs', 'CHART_FEATURE_MARKETING_TIP_6': \"Light or Dark mode, that's up to you\", 'CHART_FEATURE_MARKETING_TIP_7': 'Real Time for all US exchanges (equities and etfs)', 'CHART_FEATURE_MARKETING_TIP_8': 'Accessibility: keyboard navigation for dialogs & UI controls', 'CHEMICALS_MAJOR_DIVERSIFIED': 'Chemicals - Major Diversified', 'CHEMICALS_MAJOR_DIVERSIFIED_DESC': 'Chemicals - Major Diversified Stocks', 'CHEMIE_TITLE': 'Chemie', 'CHIMICA-E-MATERIE-PRIME_TITLE': 'Chemical and Basic materials', 'CHOOSE_FILTERS': 'Choose filters to screen {quoteType}', 'CHOOSE_RECENT_VIEW': 'Recently viewed symbols', 'CIGARETTES': 'Cigarettes', 'CIGARETTES_DESC': 'Cigarettes Stocks', 'CIRCULATING_SUPPLY': 'Circulating Supply', 'CLAIMS_PAID': 'Claims Paid', 'CLASSESOF_CASH_PAYMENTS': 'Classes of Cash Payments', 'CLASSESOF_CASH_RECEIPTSFROM_OPERATING_ACTIVITIES': 'Classes of Cash Receipts from Operating Activities', 'CLEANING_PRODUCTS': 'Cleaning Products', 'CLEANING_PRODUCTS_DESC': 'Cleaning Products Stocks', 'CLEAR': 'Clear', 'CLEAR_DRAWINGS': 'Clear Drawings', 'CLOSE': 'Close', 'CLOSED': 'Closed', 'CLOSEDEND_FUND_DEBT': 'Closed-End Fund - Debt', 'CLOSEDEND_FUND_DEBT_DESC': 'Closed-End Fund - Debt Stocks', 'CLOSEDEND_FUND_EQUITY': 'Closed-End Fund - Equity', 'CLOSEDEND_FUND_EQUITY_DESC': 'Closed-End Fund - Equity Stocks', 'CLOSEDEND_FUND_FOREIGN': 'Closed-End Fund - Foreign', 'CLOSEDEND_FUND_FOREIGN_DESC': 'Closed-End Fund - Foreign Stocks', 'COIN_MARKET_CAP': 'CoinMarketCap', 'COIN_TYPE': 'Coin Type', 'COLLAPSE': 'Collapse', 'COLLAPSE_ALL': 'Collapse All', 'COLOR': 'Color', 'COLORED_BAR': 'Colored Bar', 'COMMERCIAL_LOAN': 'Commercial Loan', 'COMMERCIAL_PAPER': 'Commercial Paper', 'COMMISSION': 'Commission', 'COMMISSION_PAID': 'Commission Paid', 'COMMODITIES_TITLE': 'Futures', 'COMMONLY_USED': 'Commonly used', 'COMMON_STOCK': 'Common Stock', 'COMMON_STOCK_DIVIDEND_PAID': 'Common Stock Dividend Paid', 'COMMON_STOCK_EQUITY': 'Common Stock Equity', 'COMMON_STOCK_ISSUANCE': 'Common Stock Issuance', 'COMMON_STOCK_ISSUED': 'Common stock issued', 'COMMON_STOCK_PAYMENTS': 'Common Stock Payments', 'COMMON_STOCK_REPURCHASED': 'Common stock repurchased', 'COMMON_UTILITY_PLANT': 'Common Utility Plant', 'COMMUNICATION_EQUIPMENT': 'Communication Equipment', 'COMMUNICATION_EQUIPMENT_DESC': 'Communication Equipment Stocks', 'COMMUNICATION_SERVICES': 'Communication Services', 'COMMUNITY': 'Message Boards', 'COMMUNITY_SENTIMENT_DESC': 'We’ve tracked changes in conversation so you can see what the buzz is about.', 'COMMUNITY_SENTIMENT_TITLE': 'Community Conversation', 'COMPACT_TABLE_DENSITY': 'Compact Table Density', 'COMPANIES': 'Companies', 'COMPANY': 'Name', 'COMPANY360': 'Company 360', 'COMPANY_360_FOOTER_DIVIDENDS': 'Morningstar calculates dividend yield based on distributions. It measures the income generated by investing in a stock.', 'COMPANY_360_FOOTER_EARNINGS': \"Refinitiv's I/B/E/S database aggregates earnings estimates from sell-side analysts and derives a consensus forecast.\", 'COMPANY_360_FOOTER_INNOVATION': \"Trea's Innovation Index provides a comprehensive look into every aspect of a company's research and development.\", 'COMPANY_360_FOOTER_SIGDEV': \"Refinitiv's Significant Developments highlight the most pertinent market-moving company news headlines.\", 'COMPANY_360_LEGEND_INNOVATION': 'Sector score {score}', 'COMPANY_360_MOST_RECENT': 'most recent', 'COMPANY_360_NO_DATA': '{type} data is not made public by this company', 'COMPANY_ANALYSIS': 'Company analysis', 'COMPANY_DATA_PROVIDED_BY': '{companyName} data provided by', 'COMPANY_INSIGHTS': 'Company Insights', 'COMPANY_METRICS': 'Company Metrics', 'COMPANY_NAME': 'Company Name', 'COMPANY_OUTLOOK': 'Company Outlook', 'COMPANY_PROFILE': 'Profile', 'COMPANY_SUMMARY': 'Company Summary', 'COMPANY_VS_SECTOR': '{company} vs Sector', 'COMPARABLE': 'Comparable', 'COMPARISON': 'Comparison', 'COMPENSATION_DISCLOSURE': 'Amounts are as of {date} and compensation values are for the last fiscal year ending on that date. Pay is salary, bonuses, etc. Exercised is the value of options exercised during the fiscal year. Currency in {currency}.', 'COMPETITOR_FILINGS': 'Competitor Filings', 'COMPLETE_LIST': 'Complete list', 'COMPONENTS': 'Components', 'COMPUTERS_WHOLESALE': 'Computers Wholesale', 'COMPUTERS_WHOLESALE_DESC': 'Computers Wholesale Stocks', 'COMPUTER_BASED_SYSTEMS': 'Computer Based Systems', 'COMPUTER_BASED_SYSTEMS_DESC': 'Computer Based Systems Stocks', 'COMPUTER_PERIPHERALS': 'Computer Peripherals', 'COMPUTER_PERIPHERALS_DESC': 'Computer Peripherals Stocks', 'CONFECTIONERS': 'Confectioners', 'CONFECTIONERS_DESC': 'Confectioners Stocks', 'CONFIRM': 'Confirm', 'CONFIRM_DELETE': 'Confirm Delete', 'CONFIRM_DELETE_MSG': 'Are you sure you want to delete {pfName}?', 'CONFIRM_DELETE_SCREENER_MSG': 'Are you sure you want to delete {scrName} screener?', 'CONFIRM_DELETE_TICKER': 'Are you sure you want to remove {symbol}?', 'CONFIRM_DELETE_ALL_TICKERS': 'Are you sure you want to remove all of these symbols from this portfolio?', 'CONFIRM_DELETE_TICKER_TRANSACTIONS_PLURAL': 'There are {transactionsCount} transactions associated with this symbol. Are you sure you want to remove {symbol}?', 'CONFIRM_UNLINK_MSG': 'Are you sure you want to unlink {pfName}?', 'CONGLOMERATES': 'Conglomerates', 'CONGLOMERATES_DESC': 'Conglomerates Stocks', 'CONSERVATIVE_FOREIGN_FUNDS': 'Conservative Foreign Funds', 'CONSERVATIVE_FOREIGN_FUNDS_DESC': 'Foreign funds with Performance Rating of 4 & 5, low risk and top-half returns', 'CONSTRUCAO-EQUIPAMENTOS_TITLE': 'Construction & Equipment', 'CONSTRUCCION-Y-TRANSPORTES_TITLE': 'Construction and Transportation', 'CONSTRUCCION_TITLE': 'Building', 'CONSTRUCTION_IN_PROGRESS': 'Construction in Progress', 'CONSUMER_CYCLICAL': 'Consumer Cyclical', 'CONSUMER_DEFENSIVE': 'Consumer Defensive', 'CONSUMER_GOODS': 'Consumer Goods', 'CONSUMER_GOODS_DESC': 'Consumer Goods Stocks', 'CONSUMER_LOAN': 'Consumer Loan', 'CONSUMER_PRODUCTS_MEDIA_TITLE': 'Consumer Products & Media', 'CONSUMER_SERVICES': 'Consumer Services', 'CONSUMER_SERVICES_DESC': 'Consumer Services Stocks', 'CONTINUING_AND_DISCONTINUED_BASIC_EPS': 'Continuing & Discontinued Basic EPS', 'CONTINUING_AND_DISCONTINUED_DILUTED_EPS': 'Continuing & Discontinued Diluted EPS', 'CONTRACT_NAME': 'Contract Name', 'CONTRACT_RANGE': 'Contract Range', 'CONVERSATIONS': 'Conversations', 'CONVERTIBLE': 'Convertable', 'CONVERT_TO_WATCHLIST': 'Convert this to watchlist', 'CONVO_MSG_APPS_TITLE_END': '{host} is removing Conversations', 'CONVO_MSG_END_1': '{host} will soon be removing our Conversations message boards. Thanks for being such a loyal member of our Finance Conversations community!', 'CONVO_MSG_END_2': '{host} will be removing our Conversations message boards on Aug. 15. Thanks for being such a loyal member of our Finance Conversations community!', 'CONVO_MSG_HK_1': 'Our goal is to create a safe and engaging place for users to connect over interests and passions. In order to improve our community experience, we will soon be disabling commenting.', 'CONVO_MSG_HK_2': 'Our goal is to create a safe and engaging place for users to connect over interests and passions. In order to improve our community experience, we will soon be disabling commenting on August 15.', 'COPIED_TO_CLIPBOARD': 'Copied to clipboard.', 'COLORED_AREA': 'Colored Area', 'COPPER': 'Copper', 'COPPER_DESC': 'Copper Stocks', 'COPY': 'Copy', 'CORPORATE_ACTIONS': 'Corporate Actions', 'CORPORATE_EVENTS': 'Corporate Events', 'CORPORATE_GOVERNANCE': 'Corporate Governance', 'CORRECTIVE': 'Corrective:', 'COST_OF_REVENUE': 'Cost of Revenue', 'COST_PER_QUANTITY': 'Cost / Quantity', 'COST_PER_SHARE': 'Cost / Share', 'COST_PER_SHARE_DESCRIPTION': 'Price paid for buying an individual stock, or simply price per share.', 'CREATE': 'Create', 'CREATE_NEW_PORTFOLIO': 'Create New Portfolio', 'CREATE_NEW_LIST': 'Create list', 'CREATE_NEW_SCREENER': 'Create New Screener', 'CREATE_A_NEW_SCREENER': 'Create a New Screener', 'CREATE_NEW_SCREENER_DES': 'Pick a screener type to get started', 'CREATE_NEW_VIEW': 'Create New View', 'CREATE_PF_ERROR': 'Unable to create new portfolio. Please retry.', 'CREATE_PORTFOLIO': 'Create Portfolio', 'CREATE_STREAM_PROFILE': 'Create my Streamer profile', 'CREATE_WATCHLIST_UPSELL': 'Create watchlists to find unexpected patterns', 'CREATOR_TERMS_AGREEMENT': \"You agree to our {termsAndConditionsLink} Also, each product may be subject to additional terms required by the product's vendor, which you can review here.\", 'CREDIT_CARD': 'Credit Card', 'CREDIT_LOSSES_PROVISION': 'Credit Losses Provision', 'CREDIT_QUALITY': 'Credit Quality', 'CREDIT_SERVICES': 'Credit Services', 'CREDIT_SERVICES_DESC': 'Credit Services Stocks', 'CRYPTO_CURRENCIES': 'Cryptocurrencies', 'CRYPTO_ACCOUNT_MANAGEMENT': 'Crypto Account Management', 'CRYPTO_ACCOUNT_REMAINING_STEPS': 'Remaining steps', 'CRYPTO_ACCOUNT_REMAINING_STEPS_INFO': 'You are close to finishing up your account creation. Initiate fund transfer and start trading', 'CRYPTO_INITIATE_FUNDS': 'Add your bank account using Plaid and start initiating funds for crypto trading.', 'CRYPTO_TRADABLE_TITLE': 'Browse over 300 cryptos on Yahoo from here', 'CRYPTO_TRADABLE_INFO': 'Learn about Yahoo Crypto now, sign up today and start browsing. Certain limitations apply.', 'CRYPTO_TRADING_ACTION': 'Browse tradable coins', 'CRYPTO_TRADING_INFO': 'Learn about Yahoo Crypto now, sign up today and start browsing 21 cryptos. Certain limitations apply.', 'CRYPTO_TRADING_LEARN_MORE': 'Learn more about Yahoo Crypto', 'CRYPTO_TRADING_TITLE': 'The new crypto trading starts from here', 'CRYPTO_TRANSACTION_LIMIT_TITLE': 'Your current transaction limit', 'CRYPTO_TRANSACTION_UNLOCK_LIMIT_TITLE': 'Unlock unlimited trading', 'CRYPTO_TRANSACTION_UNLOCK_LIMIT_INFO': 'Don’t want to be limited? Send a link to your phone to verify your government ID and get unlimited crypto trading today!', 'CROSSHAIR': 'Crosshair', 'CRYPTO_ALL_IN_ONE': 'Security and simplicity, all in one place', 'CRYPTO_3_EASY_STEPS': 'Start buying cryptos in 3 Easy Steps', 'CRYPTO_CREATE_ACCT': 'Create account', 'CRYPTO_EXPLORE': 'Explore 300+ coins for your trading', 'CRYPTO_HOURS': 'Full extended hours trading with 24/7 live help and support', 'CRYPTO_EXT_HOURS': 'Extended Trading Hours', 'CRYPTO_HOW_IT_WORKS': 'How it works', 'CRYPTO_OPEN_ACCT': 'Open an account at Yahoo to trade 300+ coins', 'CRYPTO_OPEN_ACCT2': 'Open an account at Yahoo to trade these coins', 'CRYPTO_NO_TX_FEES': 'No transactional fees', 'CRYPTO_MARKETING': 'Security and simplicity, all in one place', 'CRYPTO_SECURITY': 'Security', 'CRYPTO_TRANSFER_FUND_TX': 'Transfer your funds and start transacting', 'CRYPTO_TRANSFER_FUND': 'Transfer Funds', 'CRYPTO_VERIFY_ID': 'Verify your identity', 'ALL_CRYPTOCURRENCIES_US': 'Cryptocurrencies', 'ALL_CRYPTOCURRENCIES_EU': 'Cryptocurrencies', 'CURATED_BY': 'Curated by', 'CURRENCY': 'Currency', 'CURRENCY_NOTICE': 'Currency in {currency}', 'CURRENCY_VALUE': 'Currency: {currency}', 'CURRENT': 'Current', 'CURRENT_ACCRUED_EXPENSES': 'Current Accrued Expenses', 'CURRENT_ASSETS': 'Current Assets', 'CURRENT_CAPITAL_LEASE_OBLIGATION': 'Current Capital Lease Obligation', 'CURRENT_DEBT': 'Current Debt', 'CURRENT_DEBT_AND_CAPITAL_LEASE_OBLIGATION': 'Current Debt And Capital Lease Obligation', 'CURRENT_DEFERRED_ASSETS': 'Current Deferred Assets', 'CURRENT_DEFERRED_LIABILITIES': 'Current Deferred Liabilities', 'CURRENT_DEFERRED_REVENUE': 'Current Deferred Revenue', 'CURRENT_DEFERRED_TAXES_ASSETS': 'Current Deferred Taxes Assets', 'CURRENT_DEFERRED_TAXES_LIABILITIES': 'Current Deferred Taxes Liabilities', 'CURRENT_ESTIMATE': 'Current Estimate', 'CURRENT_LIABILITIES': 'Current Liabilities', 'CURRENT_NOTES_PAYABLE': 'Current Notes Payable', 'CURRENT_PRICE': 'Current Price', 'CURRENT_PROVISIONS': 'Current Provisions', 'CURRENT_QTR': 'Current Qtr.', 'CURRENT_RATIO': 'Current Ratio', 'CURRENT_YEAR': 'Current Year', 'CUSTOM': 'Custom', 'CUSTOMER_ACCEPTANCES': 'Customer Acceptances', 'CUSTOMER_ACCOUNTS': 'Customer Accounts', 'CUSTOMIZE': 'Customize', 'CWL_FOLLOWING_EMPTY': 'You are currently not following any lists', 'CWL_SIGN_IN_TO_VIEW': 'Sign in to view your followed lists', 'DAILY': 'Daily', 'DAILY_GAIN': 'Daily Gain', 'DAILY_PERCENT_GAIN': 'Daily % Gain', 'DAIRY_PRODUCTS': 'Dairy Products', 'DAIRY_PRODUCTS_DESC': 'Dairy Products Stocks', 'DARK': 'Dark', 'DASH': '-', 'DASHBOARD': 'Dashboard', 'DATA_NA': 'Data N/A', 'DATA_PROVIDED_BY': 'Data provided by {dataSource}', 'DATA_STORAGE_DEVICES': 'Data Storage Devices', 'DATA_STORAGE_DEVICES_DESC': 'Data Storage Devices Stocks', 'DATA_UTILITY_PF_TITLE': 'My Portfolio & Markets', 'DATA_UNAVAILABLE': 'Data unavailable', 'DATE': 'Date', 'DATES': 'Dates', 'DATE_FORMAT_ERROR': \"Date format should be 'mm/dd/yyyy'\", 'DATE_PRIOR_THAN_MIN_ERROR': \"Date shouldn't be prior to '{date}'\", 'DATE_RANGE': 'Date Range', 'DATE_RANGE_ERROR': \"'Start' date must be prior to 'End' date.\", 'DATE_REPORTED': 'Date Reported', 'DAYS_RANGE': \"Day's Range\", 'DAY_CHG': 'Day Chg', 'DAY_CHG_PCT': 'Day Chg %', 'DAY_GAIN': 'Day Gain', 'DAY_GAINERS': 'Day Gainers', 'DAY_GAINERS_DESC': 'Stocks ordered in descending order by price percent change with respect to the previous close.', 'DAY_LOSERS': 'Day Losers', 'DAY_LOSERS_DESC': 'Stocks ordered in ascending order by price percent change with respect to the previous close.', 'DC_1YR_TARGET_EST': '1yr Target Est', 'DC_200_DMA': '200-DMA', 'DC_200_DMA_CHG': '200-DMA Chg', 'DC_200_DMA_CHG_P': '200-DMA Chg %', 'DC_50_DMA': '50-DMA', 'DC_50_DMA_CHG': '50-DMA Chg', 'DC_50_DMA_CHG_P': '50-DMA Chg %', 'DC_52_WK_HIGH': '52-Wk High', 'DC_52_WK_HIGH_CHG': '52-Wk High Chg', 'DC_52_WK_HIGH_CHG_P': '52-Wk High Chg %', 'DC_52_WK_LOW': '52-Wk Low', 'DC_52_WK_LOW_CHG': '52-Wk Low Chg', 'DC_52_WK_LOW_CHG_P': '52-Wk Low Chg %', 'DC_52_WK_RANGE': '52-Wk Range', 'DC_ANNUALIZED_GAIN': 'Annualized Gain', 'DC_ANNUALIZED_GAIN_PERCENT': 'Annualized Gain %', 'DC_AVG_VOL_10DAY': 'Avg Vol (10day)', 'DC_AVG_VOL_3M': 'Avg Vol (3m)', 'DC_CHG_P': 'Chg %', 'DC_EX_DIV_DATE': 'Ex-Div Date', 'DC_FORWARD_ANNUAL_DIV_RATE': 'Forward Annual Div Rate', 'DC_FORWARD_ANNUAL_DIV_YIELD': 'Forward Annual Div Yield', 'DC_NO_OF_LOTS': 'No. of Lots', 'DC_PEG_RATIO_5YR_EXPECTED': 'PEG Ratio (5yr expected)', 'DC_POST_MKT_CHG': 'Post-Mkt Chg', 'DC_POST_MKT_CHG_P': 'Post-Mkt Chg %', 'DC_POST_MKT_PRICE': 'Post-Mkt Price', 'DC_POST_MKT_TIME': 'Post-Mkt Time', 'DC_PRE_MKT_CHG': 'Pre-Mkt Chg', 'DC_PRE_MKT_CHG_P': 'Pre-Mkt Chg %', 'DC_PRE_MKT_PRICE': 'Pre-Mkt Price', 'DC_PRE_MKT_TIME': 'Pre-Mkt Time', 'DC_TRAILING_ANNUAL_DIV_RATE': 'Trailing Annual Div Rate', 'DC_TRAILING_ANNUAL_DIV_YIELD': 'Trailing Annual Div Yield', 'DC_TRAILING_P_E': 'Trailing P/E', 'DDA_COSTOF_REVENUE': 'DDA Cost of Revenue', 'DEBT_RATIOS': 'Debt Ratios', 'DEBT_REPAYMENT': 'Debt repayment', 'DECORATION': 'Decoration:', 'DECREASEIN_INTEREST_BEARING_DEPOSITSIN_BANK': 'Decrease in Interest Bearing Depositsin Bank', 'DEFERRED_ASSETS': 'Deferred Assets', 'DEFERRED_INCOME_TAX': 'Deferred Income Tax', 'DEFERRED_INCOME_TAXES': 'Deferred income taxes', 'DEFERRED_LONG_TERM_ASSET_CHARGES': 'Deferred Long Term Asset Charges', 'DEFERRED_LONG_TERM_LIABILITY_CHARGES': 'Deferred Long Term Liability Charges', 'DEFERRED_POLICY_ACQUISITION_COSTS': 'Deferred Policy Acquisition Costs', 'DEFERRED_REVENUES': 'Deferred revenues', 'DEFERRED_TAX': 'Deferred Tax', 'DEFERRED_TAXES_LIABILITIES': 'Deferred taxes liabilities', 'DEFERRED_TAX_ASSETS': 'Deferred Tax Assets', 'DEFINED_PENSION_BENEFIT': 'Defined Pension Benefit', 'DELETE': 'Delete', 'DELETE_LOT': 'Delete Lot', 'DELETE_PORTFOLIO': 'Delete Portfolio', 'DELETE_PORTFOLIO_ERROR': 'Unable to delete portfolio. Please retry.', 'DELETE_PORTFOLIO_TITLE': 'Delete Portfolio?', 'DELETE_SCREENER': 'Delete Screener', 'DELETE_SYMBOLS': 'Delete Symbols', 'DELETE_SYMBOLS_ERROR': 'Unable to delete symbols. Please retry.', 'DELETE_SYMBOLS_TITLE': 'Delete Symbols?', 'DELETE_TRANSACTION': 'Delete transaction', 'DELETE_TRANSACTION_MESSAGE': 'Are you sure you want to remove this {transactionType} transaction for {symbol}?', 'DELETE_TRANSACTION_MESSAGE_CASH': 'Are you sure you want to remove this {transactionType} cash transaction?', 'DELETE_VIEW': 'Delete View', 'DELETE_VIEW_ERROR': 'Unable to delete view. Please retry.', 'DELETE_VIEW_TITLE': 'Delete View?', 'DEPARTMENT_STORES': 'Department Stores', 'DEPARTMENT_STORES_DESC': 'Department Stores Stocks', 'DEPLETION': 'Depletion', 'DEPLETION_DEPLETION_INCOME_STATEMENT': 'Depletion & Depletion Income Statement', 'DEPOSITSBY_BANK': 'Depositsby Bank', 'DEPRECIATION': 'Depreciation', 'DEPRECIATION_AMORTIZATION_DEPLETION': 'Depreciation Amortization Depletion', 'DEPRECIATION_AND_AMORTIZATION': 'Depreciation & amortization', 'DEPRECIATION_DEPRECIATION_INCOME_STATEMENT': 'Depreciation & Depreciation Income Statement', 'DERIVATIVE_ASSETS': 'Derivative Assets', 'DERIVATIVE_PRODUCT_LIABILITIES': 'Derivative Product Liabilities', 'DESCRIPTION': 'Description', 'DESC_ORDER': 'Descending Order', 'DETAILS': 'Details', 'DG_BASIC': 'Basic', 'DG_DETAILS': 'Details', 'DG_ESTIMATES': 'Estimates', 'DG_EXTENDED_HOURS': 'Extended Hours', 'DG_MOVING_AVERAGES': 'Moving Averages', 'DG_PORTFOLIOS': 'Portfolios', 'DIAGNOSTIC_SUBSTANCES': 'Diagnostic Substances', 'DIAGNOSTIC_SUBSTANCES_DESC': 'Diagnostic Substances Stocks', 'DIFF': 'Diff', 'DIFFERENCE': 'Difference', 'DILUTED': 'Diluted', 'DILUTED_ACCOUNTING_CHANGE': 'Diluted Accounting Change', 'DILUTED_AVERAGE_SHARES': 'Diluted Average Shares', 'DILUTED_CONTINUOUS_OPERATIONS': 'Diluted Continuous Operations', 'DILUTED_DISCONTINUOUS_OPERATIONS': 'Diluted Discontinuous Operations', 'DILUTED_EPS': 'Diluted EPS', 'DILUTED_EPS_OTHER_GAINS_LOSSES': 'Diluted EPS Other Gains Losses', 'DILUTED_EXTRAORDINARY': 'Diluted Extraordinary', 'DILUTED_NI_AVAILTO_COM_STOCKHOLDERS': 'Diluted NI Available to Com Stockholders', 'DIRECT': 'Direct', 'DISABLED': 'Disabled', 'DISCONTINUED_OPS': 'Discontinued Operations', 'DISCOUNT_VARIETY_STORES': 'Discount, Variety Stores', 'DISCOUNT_VARIETY_STORES_DESC': 'Discount, Variety Stores Stocks', 'DISCOVER_INVESTMENT_IDEAS': 'Discover Investment Ideas', 'DIVERSIFIED_BUSINESS_TITLE': 'Diversified Business', 'DIVERSIFIED_COMMUNICATION_SERVICES': 'Diversified Communication Services', 'DIVERSIFIED_COMMUNICATION_SERVICES_DESC': 'Diversified Communication Services Stocks', 'DIVERSIFIED_COMPUTER_SYSTEMS': 'Diversified Computer Systems', 'DIVERSIFIED_COMPUTER_SYSTEMS_DESC': 'Diversified Computer Systems Stocks', 'DIVERSIFIED_ELECTRONICS': 'Diversified Electronics', 'DIVERSIFIED_ELECTRONICS_DESC': 'Diversified Electronics Stocks', 'DIVERSIFIED_INVESTMENTS': 'Diversified Investments', 'DIVERSIFIED_INVESTMENTS_DESC': 'Diversified Investments Stocks', 'DIVERSIFIED_MACHINERY': 'Diversified Machinery', 'DIVERSIFIED_MACHINERY_DESC': 'Diversified Machinery Stocks', 'DIVERSIFIED_UTILITIES': 'Diversified Utilities', 'DIVERSIFIED_UTILITIES_DESC': 'Diversified Utilities Stocks', 'DIVIDEND_MANAGEMENT': 'Dividend Management', 'DIVIDEND_PAYOUT': 'Your next dividend payout is scheduled for {date}. Payouts are reflected in your Cash Holdings and will also be added here automatically.', 'DIVIDEND_PAYOUT_LABEL': 'Dividend payout', 'DIVIDEND_PAYOUT_RATIO': 'Dividend Payout Ratio', 'DIVIDENDS': 'Dividends', 'DIVIDENDS_AND_SPLITS': 'Dividends & Splits', 'DIVIDENDS_ONLY': 'Dividends Only', 'DIVIDENDS_PAID': 'Dividends Paid', 'DIVIDENDS_PAID_DIRECT': 'Dividends Paid Direct', 'DIVIDENDS_PAYABLE': 'Dividends Payable', 'DIVIDENDS_RECEIVED_CFI': 'Dividends Received CFI', 'DIVIDENDS_RECEIVED_DIRECT': 'Dividends Received Direct', 'DIVIDEND_AND_YIELD': 'Forward Dividend & Yield', 'DIVIDEND_DATE': 'Dividend Date', 'DIVIDEND_INCOME': 'Dividend Income', 'DIVIDEND_PAID_CFO': 'Dividend Paid CFO', 'DIVIDEND_PER_SHARE': 'Dividend Per Share', 'DIVIDEND_RECEIVED_CFO': 'Dividend Received CFO', 'DOMESTIC_SALES': 'Domestic Sales', 'DONE': 'Done', 'DOODLE': 'Doodle', 'DOWN': 'Down', 'DOWNGRADE': 'Downgrade', 'DOWNLOAD': 'Download', 'DOWNLOAD_APP_NOTE': 'To view complete list, get the Yahoo Finance App', 'DOWN_LAST_30_DAYS': 'Down Last 30 Days', 'DOWN_LAST_7_DAYS': 'Down Last 7 Days', 'DRAW': 'Draw', 'DRUGS_GENERIC': 'Drugs - Generic', 'DRUGS_GENERIC_DESC': 'Drugs - Generic Stocks', 'DRUGS_WHOLESALE': 'Drugs Wholesale', 'DRUGS_WHOLESALE_DESC': 'Drugs Wholesale Stocks', 'DRUG_DELIVERY': 'Drug Delivery', 'DRUG_DELIVERY_DESC': 'Drug Delivery Stocks', 'DRUG_MANUFACTURERS_MAJOR': 'Drug Manufacturers - Major', 'DRUG_MANUFACTURERS_MAJOR_DESC': 'Drug Manufacturers - Major Stocks', 'DRUG_MANUFACTURERS_OTHER': 'Drug Manufacturers - Other', 'DRUG_MANUFACTURERS_OTHER_DESC': 'Drug Manufacturers - Other Stocks', 'DRUG_RELATED_PRODUCTS': 'Drug Related Products', 'DRUG_RELATED_PRODUCTS_DESC': 'Drug Related Products Stocks', 'DRUG_STORES': 'Drug Stores', 'DRUG_STORES_DESC': 'Drug Stores Stocks', 'DUEFROM_RELATED_PARTIES_CURRENT': 'Due from Related Parties Current', 'DUEFROM_RELATED_PARTIES_NON_CURRENT': 'Due from Related Parties Non Current', 'DUETO_RELATED_PARTIES': 'Due to Related Parties', 'DUETO_RELATED_PARTIES_CURRENT': 'Due to Related Parties Current', 'DUETO_RELATED_PARTIES_NON_CURRENT': 'Due to Related Parties Non Current', 'DUE_FROM_RELATED_PARTIES': 'Due from Related Parties', 'DURATION': 'Duration', 'DYNAMIC': 'Dynamic', 'EARNINGS': 'Earnings', 'EARNINGS_BEFORE_INTEREST_TAX': 'Earnings Before Interest and Taxes', 'EARNINGS_CALENDAR': 'Earnings Calendar', 'EARNINGS_CALL': 'Earnings Call', 'EARNINGS_DATE': 'Earnings Date', 'EARNINGS_DOWNLOAD_TITLE': 'Download {earnings} slides', 'EARNINGS_ESTIMATE': 'Earnings Estimate', 'EARNINGS_FROM_EQUITY_INTEREST': 'Earnings from Equity Interest', 'EARNINGS_FROM_EQUITY_INTEREST_NET_OF_TAX': 'Earnings from Equity Interest Net of Tax', 'EARNINGS_HISTORY': 'Earnings History', 'EARNINGS_LOSSES_FROM_EQUITY_INVESTMENTS': 'Earnings Losses from Equity Investments', 'EARNINGS_PER_SHARE': 'Earnings Per Share', 'EARNINGS_REPORT': 'Earnings Report', 'EBIT': 'EBIT', 'EBITDA': 'EBITDA', 'ECONOMIC': 'Economic', 'ECONOMIC_INDICATOR': 'Economic Indicator', 'ECONOMIC_MOAT': 'Economic Moat', 'ECONOMIC_TRENDS': 'Economic Trends', 'EDIT': 'Edit', 'EDITORS_PICK': \"Editor's Pick\", 'EDIT_CASH_SETTINGS': 'Edit Cash Settings', 'EDIT_CURRENCY': 'Edit Currency', 'EDIT_CURRENCY_ERROR': 'Unable to change currency. Please retry.', 'EDIT_EXISTING_CASH_TRANSACTION': 'Edit Cash Transaction', 'EDIT_EXISTING_TRANSACTION': 'Edit transaction - {symbol} ({name})', 'EDIT_PORTOFLIO': 'Edit Portfolio', 'EDIT_SYMBOLS': 'Edit Symbols', 'EDIT_TOTAL_HOLDINGS_SETTINGS': 'Edit Total Holdings Settings', 'EDIT_TRANSACTION': 'Edit transaction', 'EDIT_VIEW': 'Edit View', 'EDUCATION_LOT': 'Share lots are the summary of your key purchasing of stocks on different days.', 'EDUCATION_TRAINING_SERVICES': 'Education & Training Services', 'EDUCATION_TRAINING_SERVICES_DESC': 'Education & Training Services Stocks', 'EDUCATION_TRANSACTION': 'Transactions will record every transaction you do including buy, sell, etc.', 'EFFECT_OF_ACCOUNTING_CHANGES': 'Effect of Accounting Changes', 'EFFECT_OF_EXCHANGE_RATE_CHANGES': 'Effect of Exchange Rate Changes', 'ELECTRIC_UTILITIES': 'Electric Utilities', 'ELECTRIC_UTILITIES_DESC': 'Electric Utilities Stocks', 'ELECTRIC_UTILITY_PLANT': 'Electric Utility Plant', 'ELECTRONICS_STORES': 'Electronics Stores', 'ELECTRONICS_STORES_DESC': 'Electronics Stores Stocks', 'ELECTRONICS_WHOLESALE': 'Electronics Wholesale', 'ELECTRONICS_WHOLESALE_DESC': 'Electronics Wholesale Stocks', 'ELECTRONIC_EQUIPMENT': 'Electronic Equipment', 'ELECTRONIC_EQUIPMENT_DESC': 'Electronic Equipment Stocks', 'ELLIPSE': 'Ellipse', 'EMAIL': 'Email', 'EMPLOYEE_BENEFITS': 'Employee Benefits', 'EMPLOYEES': 'Employees', 'EMPLOYMENT_ENTERPRISING_TITLE': 'Employment and enterprising', 'ENABLED': 'Enabled', 'END_CASH_POSITION': 'End Cash Position', 'END_DATE': 'End Date', 'ENERGIA-PETROLEO-GAS_TITLE': 'Energy & Oil & Gas', 'ENERGIA_TITLE': 'Energy', 'ENERGIE-ET-ENVIRONNEMENT_TITLE': 'Energy & Environment', 'ENERGY_TITLE': 'Energy', 'ENTERPRISE_VALUE': 'Enterprise Value', 'ENTERPRISE_VALUE_TO_EBITDA': 'Enterprise Value/EBITDA', 'ENTERPRISE_VALUE_TO_REVENUE': 'Enterprise Value/Revenue', 'ENTERTAINMENT_DIVERSIFIED': 'Entertainment - Diversified', 'ENTERTAINMENT_DIVERSIFIED_DESC': 'Entertainment - Diversified Stocks', 'ENTER_COMMUNITY_ROOM': 'Enter this livestream room for more', 'ENTER_EMAIL': 'Enter email', 'ENTER_PERSONAL_INFO': 'Enter your personal information', 'ENTER_PORTFOLIO_NAME': 'Enter Portfolio Name', 'ENTER_SYMBOL_COMPANY': 'Enter symbols or company names', 'ENTER_VIEW_NAME': 'Enter View Name', 'ENVIRONMENT': 'Environment Risk Score', 'ENVIRONMENTAL': 'Environmental', 'EPS_ACTUAL': 'EPS Actual', 'EPS_AND_INCOME_STATEMENT': 'EPS and Income Statement', 'EPS_EST': 'EPS Est.', 'EPS_RATIO': 'EPS (TTM)', 'EPS_REVISIONS': 'EPS Revisions', 'EPS_TREND': 'EPS Trend', 'EQUIPMENT': 'Equipment', 'EQUITY_AND_OTHER_INVESTMENTS': 'Equity and other investments', 'EQUITY_HOLDINGS': 'Equity Holdings', 'EQUITY_INVESTMENTS': 'Equity Investments', 'EQUITY_SCREENER': 'Equity Screener', 'EQUITY_SCREENER_DES': 'Find the best stocks according to your criteria with coverage that includes global markets with more than 50 regions', 'ESG_ADULT': 'Adult Entertainment', 'ESG_AGGREGATE_PERF': 'AGGREGATE PERFORMANCE', 'ESG_ALCOHOLIC': 'Alcoholic Beverages', 'ESG_ANIMALTESTING': 'Animal Testing', 'ESG_AUM_DEF': \"The percent of a fund's assets under management that has ESG scores from Sustainalytics.\", 'ESG_AUM_PERCENTAGE': 'based on {percentage}% AUM', 'ESG_AVG_PERF': 'Medium', 'ESG_CATHOLIC': 'Catholic Values', 'ESG_CATHOLIC_DEF': 'Flags a company’s involvement in abortion, contraceptives, or human embryonic stem cell and fetal tissue research.', 'ESG_CAT_PERCENT_RANK': 'Sustainability % rank in category: {rank}', 'ESG_COAL': 'Thermal Coal', 'ESG_CONTROVERSIALWEAPONS': 'Controversial Weapons', 'ESG_CONTROVERSY_DEDUCTION': 'Controversy Deduction', 'ESG_CONTROVERSY_LEVEL': '{level} Controversy level', 'ESG_CONTROVERSY_LEVEL_DEF': 'Sustainalytics’ Controversies Research identifies companies involved in incidents and events that may negatively impact stakeholders, the environment or the company’s operations. Controversies are rated on a scale from one to five with five denoting the most serious controversies with the largest potential impact.', 'ESG_CONTROVERSY_LEVEL_TITLE': 'Controversy Level', 'ESG_DATA_NOT_AVAILABLE': 'Sustainability data is not available', 'ESG_E': 'E', 'ESG_FOCUS': 'Yes, ESG Focus', 'ESG_FOOTER_MSG': \"Sustainalytics' ESG Risk Ratings measure how well a company manages environmental, social, and governance issues.\", 'ESG_FURLEATHER': 'Fur and Specialty Leather', 'ESG_G': 'G', 'ESG_GAMBLING': 'Gambling', 'ESG_GMO': 'GMO', 'ESG_LAG_PERF': 'Negligible', 'ESG_LAST_UPDATED': 'Last updated on {month}/{year}', 'ESG_LEAD_PERF': 'Severe', 'ESG_MILITARYCONTRACT': 'Military Contracting', 'ESG_NUCLEAR': 'Nuclear', 'ESG_OUT_PERF': 'High', 'ESG_PALMOIL': 'Palm Oil', 'ESG_PEER_CATEGORY_AVG': 'Peer avg.', 'ESG_PERFORMANCE_FUNDS': 'ESG Performance for the Fund Portfolio Snapshot', 'ESG_PERFORMANCE_VS_PEER': 'ESG Performance vs {peerCount} Peer Companies', 'ESG_PERF_HISTORICAL': 'Historical ESG Performance', 'ESG_PERF_TITLE': 'ESG PERFORMANCE', 'ESG_PESTICIDES': 'Pesticides', 'ESG_PORT_CONTROVERSY_DEF': 'The Portfolio Controversy Score is the asset-weighted average level of the seriousness of the controversial incidents of companies in the portfolio. A lower score is better than a higher score, as it indicates fewer controversies. Controversies are represented as: Low, Moderate, Significant, High, or Severe, or None, if there is no evidence of controversy.', 'ESG_PORT_ESG_DEF': \"The Portfolio ESG Score is the asset-weighted average of the normalized company ESG Scores for the covered holdings in a portfolio. Higher scores are better than lower scores and, at the portfolio level, indicate that a fund has more of its assets invested in companies that score well under Sustainalytics' ESG methodology, which evaluates company preparedness, disclosure. \", 'ESG_PORT_SCORE': 'Portfolio Sustainability Score', 'ESG_POWERED_BY': 'ESG data provided by Sustainalytics, Inc.', 'ESG_PRODUCT_INVOLVE_DEF': 'Flags a company’s involvement in products, services and business activities commonly used for screening purposes.', 'ESG_RATINGS': 'Environment, Social and Governance (ESG) Risk Ratings', 'ESG_RATINGS_DEF': 'Sustainalytics’ ESG Risk Ratings assess the degree to which a company’s enterprise business value is at risk driven by environmental, social and governance issues. The rating employs a two-dimensional framework that combines an assessment of a company’s exposure to industry-specific material ESG issues with an assessment of how well the company is managing those issues. The final ESG Risk Ratings scores are a measure of unmanaged risk on an absolute scale of 0-100, with a lower score signaling less unmanaged ESG Risk.', 'ESG_REL_CAT': 'Relative to Morningstar Category: {relation}', 'ESG_S': 'S', 'ESG_SCORE': 'ESG Risk Score', 'ESG_SCORES': 'ESG Scores', 'ESG_SCORE_PEERS': 'ESG Risk Score for Peers', 'ESG_SMALLARMS': 'Small Arms', 'ESG_SOCIALLY_RESPONSIBLE_FUND_DEF': 'An indication that the fund discloses in their prospectus that they employ socially responsible or ESG principles in their investment selection processes. These funds make investments based on ethics or values on issues like environmental responsibility, human rights, or religious views. This group also includes funds that may avoid investing in companies that produce or distribute alcohol, tobacco, or weapons.', 'ESG_SUSTAINABILITY_MANDATE': 'Sustainability mandate: {responsible}', 'ESG_SUSTAINABILITY_RATING': 'Sustainability Rating', 'ESG_SUSTAINABILITY_SCORE': 'Sustainability Score', 'ESG_SUSTAINABILITY_SCORE_DEF': 'Morningstar assigns Sustainability Ratings by ranking all scored funds within a Morningstar Category by their Portfolio Sustainability Scores. The ranked funds are then divided into five groups, based on a normal distribution to assign a rating from \"High\" to \"Low\", or 5 globes to 1 globe.', 'ESG_THIS_COMPANY': '( this company )', 'ESG_TOBACCO': 'Tobacco Products', 'ESG_TOTAL_SCORE': 'Total ESG Risk score', 'ESG_UNDER_PERF': 'Low', 'EST': 'Est.', 'ESTIMATE': 'Estimate', 'ESTIMATED_RESULTS': 'Estimated results', 'ETF': 'ETF', 'ETF_SCREENER': 'ETF Screener', 'ETF_SCREENER_DES': 'Search hundreds of ETFs by criteria such as the expense ratio, historical performance, and more', 'ETFS': 'ETFs', 'ETF_LEGAL_TYPE': 'Legal Type', 'EVENTS': 'Events', 'EVENTS_CALENDAR_MSG': 'Events Calendar for:', 'EVENTS_NONE': 'No events found', 'EVENTS_SELECT_A_FEW': 'Select a few events to plot.', 'EVENT_DESCRIPTION': 'Event Description', 'EVENT_FILTERS': 'Event Filters', 'EVENT_LIST': 'Event List', 'EVENT_LIST_BACK': 'Back to events list', 'EVENT_TIME_TYPE_AMC': 'After Market Close', 'EVENT_TIME_TYPE_BMO': 'Before Market Open', 'EVENT_TIME_TYPE_TAS': 'Time As Supplied', 'EVENT_TIME_TYPE_TNS': 'Time Not Supplied', 'EXCESS_TAX_BENEFIT_FROM_STOCK_BASED_COMPENSATION': 'Excess Tax Benefit from Stock Based Compensation', 'EXCISE_TAXES': 'Excise Taxes', 'EXERCISED': 'Exercised', 'EXHIBITS': 'Exhibits', 'EXPAND': 'Expand', 'EXPAND_ALL': 'Expand All', 'EXPAND_SLASH_COLLAPSE_ALL': 'Expand/Collapse All', 'EXPAND_SLASH_COLLAPSE_ALL_SPACE': 'Expand / Collapse All', 'EXPENSE': 'Expense', 'EXPENSE_RATIO': 'Expense Ratio (net)', 'EXPIRED': 'Expired', 'EXPIRE_DATE': 'Expire Date', 'EXPLORATION_DEVELOPMENT_AND_MINERAL_PROPERTY_LEASE_EXPENSES': 'Exploration Development & Mineral Property Lease Expenses', 'EXPLORE': 'Explore', 'EXPLORE_NEW_FINANCIALS': 'Explore detailed look into companies’ financial history', 'EXPORT': 'Export', 'EXPORTS': 'Exports', 'EXPORT_VIEW': 'Export View', 'EXPOSURE': 'Exposure', 'EXTENDED_HOURS': 'Extended hours', 'EXTENSION_PROMO_TITLE': 'Get live quotes and news on new tabs', 'EXTRAORDINARY_ITEMS': 'Extraordinary Items', 'EX_DIVIDEND_DATE': 'Ex-Dividend Date', 'FACEBOOK': 'Facebook', 'FACEBOOK_SHARE': 'Share', 'FAILED_TO_COPY': 'Failed to copy.', 'FAILED_TO_LOAD_SCREENERS_LINE_1': 'We are working on getting your other screeners ready.', 'FAILED_TO_LOAD_SCREENERS_LINE_2': 'You can still create another one.', 'FAILSAFE_CACHE_MESSAGE': 'We are experiencing some temporary issues. The market data on this page is currently delayed. Please bear with us as we address this and restore your personalized lists.', 'FAIR_VALUE': 'Fair Value', 'FARMACEUTICA_TITLE': 'Pharmaceutical', 'FARM_CONSTRUCTION_MACHINERY': 'Farm & Construction Machinery', 'FARM_CONSTRUCTION_MACHINERY_DESC': 'Farm & Construction Machinery Stocks', 'FARM_PRODUCTS': 'Farm Products', 'FARM_PRODUCTS_DESC': 'Farm Products Stocks', 'FEATURECUE_BETA_PORTFOLIO': 'Create a new Beta Portfolio to experience all the new features.', 'FEATURECUE_CHART_SLT': 'Click here to switch to Line, Candle or Bar charts!', 'FEATURECUE_QUOTE_TRADE': 'See all your accounts in one place. Trade quickly and easily with any US broker.', 'FEATURECUE_TICKER_SHARE_LIST': 'NEW: Share lists of your favorite tickers', 'FEATURECUE_TICKER_SHARE_LIST_SHORT': 'NEW: Share ticker lists', 'FEATURECUE_CUSTOMSYMBOL_IN_TOTALGAINS': 'NEW: Custom symbols like $$CASH are now reflected in your day and total gain percentages', 'FEATURECUE_CRYPTOCURRENCIES_NAV': \"NEW: We've added over 9,000 cryptocurrencies\", 'FEDERAL_FUNDS_PURCHASED': 'Federal Funds Purchased', 'FEDERAL_FUNDS_PURCHASED_AND_SECURITIES_SOLD_UNDER_AGREEMENT_TO_REPURCHASE': 'Federal Funds Purchased And Securities Sold Under Agreement To Repurchase', 'FEDERAL_FUNDS_SOLD': 'Federal Funds Sold', 'FEDERAL_FUNDS_SOLD_AND_SECURITIES_PURCHASE_UNDER_AGREEMENTS_TO_RESELL': 'Federal Funds Sold & Securities Purchased Under Agreements to Resell', 'FEDERAL_HOME_LOAN_BANK_STOCK': 'Federal Home Loan Bank Stock', 'FEE': 'Fee', 'FEESAND_COMMISSION_EXPENSE': 'Fees & Commission Expense', 'FEESAND_COMMISSION_INCOME': 'Fees & Commission Income', 'FEES_AND_COMMISSIONS': 'Fees And Commissions', 'FEES_AND_EXPENSES': 'Fees & Expenses', 'FEE_REVENUE_AND_OTHER_INCOME': 'Fee Revenue & Other Income', 'FIBONACCI': 'Fibonacci', 'FIBONACCI_RATIOS': 'Fibonacci Ratios', 'FIBONACCI_TIMEZONE': 'Fibonacci Timezone', 'FIFTY_TWO_WK_RANGE': '52 Week Range', 'FILINGS': 'Filings', 'FILLED_JOBS': 'Filled Jobs', 'FILTERS': 'Filters', 'FILTER_CREATED': 'Created on {date}', 'FILTER_REPORTS': 'Filter reports', 'FILTER_TRADE_IDEAS': 'Filter investment ideas', 'FILTER_UPDATED': 'Updated on {date}', 'FINAL_ROUND_TITLE': 'The Final Round', 'FINANCIAL': 'Financial', 'FINANCIALS': 'Financials', 'FINANCIAL_ASSETS': 'Financial Assets', 'FINANCIAL_ASSETS_DESIGNATEDAS_FAIR_VALUE_THROUGH_PROFITOR_LOSS_TOTAL': 'Financial Assets Designatedas Fair Value Through Profitor Loss Total', 'FINANCIAL_CURRENCY': 'Currency in {currency}. {thousandsMessage}', 'FINANCIAL_DESC': 'Financial Stocks', 'FINANCIAL_HIGHLIGHTS': 'Financial Highlights', 'FINANCIAL_INSTRUMENTS_SOLD_UNDER_AGREEMENTS_TO_REPURCHASE': 'Financial Instruments Sold Under Agreements To Repurchase', 'FINANCIAL_SERVICES': 'Financial Services', 'FINANCIAL_TITLE': 'Financial', 'FINANCING_ACTIVITIES_CASHFLOWS_PROVIDED': 'Financing Activities, Cash Flows Provided By or Used In', 'FINANCING_CASH_FLOW': 'Financing Cash Flow', 'FINANZAS_TITLE': 'Finance & Banking', 'FINANZA_TITLE': 'Finance & Banking', 'FIND_EARNINGS_FOR_SYMBOLS': 'Find earnings for symbols', 'FIND_FILTERS': 'Find filters', 'FIND_RESULTS': 'Find {text}', 'FINISHED_GOODS': 'Finished Goods', 'FISCAL_YEAR': 'Fiscal Year', 'FISCAL_YEAR_ENDS': 'Fiscal Year Ends', 'FIVE_YEAR': '5-Year', 'FIVE_YEAR_AVERAGE_RETURN': '5y Average Return', 'FIVE_YEAR_EXPENSE_PROJECTION': '5 Yr Expense Projection', 'FIVE_YEAR_GROWTH_RATE': 'PE Growth Rate(5Y)', 'FIVE_YR_AVG_RETURN_PCT': '5-Year Average Return', 'FIXED_ASSETS_REVALUATION_RESERVE': 'Fixed Assets Revaluation Reserve', 'FIXED_MATURITY_INVESTMENTS': 'Fixed Maturity Investments', 'FLIGHT_FLEET_VEHICLE_AND_RELATED_EQUIPMENTS': 'Flight Fleet Vehicle & Related Equipments', 'FLOATING': 'Floating', 'FOLLOW': 'Follow', 'FOLLOWER_COUNT': '{count} followers', 'FOLLOWING_TITLE': 'Following', 'FOLLOW_ONBOARDING_TITLE': 'Follow the right companies and find patterns you need.', 'FOLLOW_ONBOARDING_DESC': 'Follow stocks with a click, and we’ll organize them into lists. You can also create and organize watchlists under Following', 'UNFOLLOW': 'Unfollow', 'FOLLOWING_TICKER': 'Now following {ticker}', 'TICKERS_IN_LIST': 'Watchlists with {ticker}:', 'UNFOLLOW_EVERYWHERE': 'Unfollow {ticker} everywhere', 'FOOD_MAJOR_DIVERSIFIED': 'Food - Major Diversified', 'FOOD_MAJOR_DIVERSIFIED_DESC': 'Food - Major Diversified Stocks', 'FOOD_WHOLESALE': 'Food Wholesale', 'FOOD_WHOLESALE_DESC': 'Food Wholesale Stocks', 'FOOTER_COMPANY_TEXT': '{copyright}. All rights reserved.', 'FOOT_NOTES': 'Footnotes', 'FOR': 'for', 'FORECLOSED_ASSETS': 'Foreclosed Assets', 'FOREIGN_CURRENCY_TRANSLATION_ADJUSTMENTS': 'Foreign Currency Translation Adjustments', 'FOREIGN_EXCHANGE_TRADING_GAINS': 'Foreign Exchange Trading Gains', 'FOREIGN_MONEY_CENTER_BANKS': 'Foreign Money Center Banks', 'FOREIGN_MONEY_CENTER_BANKS_DESC': 'Foreign Money Center Banks Stocks', 'FOREIGN_REGIONAL_BANKS': 'Foreign Regional Banks', 'FOREIGN_REGIONAL_BANKS_DESC': 'Foreign Regional Banks Stocks', 'FOREIGN_SALES': 'Foreign Sales', 'FOREIGN_UTILITIES': 'Foreign Utilities', 'FOREIGN_UTILITIES_DESC': 'Foreign Utilities Stocks', 'FORWARD_ANNUAL_DIVIDEND_RATE': 'Forward Annual Dividend Rate', 'FORWARD_ANNUAL_DIVIDEND_YIELD': 'Forward Annual Dividend Yield', 'FORWARD_PE': 'Forward P/E', 'FRANCE': 'France', 'FREE_CASH_FLOW': 'Free Cash Flow', 'FREE_REALTIME': 'Real Time Price', 'FREQUENCY': 'Frequency', 'FROM': 'From', 'FUEL_AND_PURCHASE_POWER': 'Fuel & Purchase Power', 'FULL_CHART_VIEW': 'Full Chart View', 'FULL_FILING_AT_EDGAR_ONLINE': 'Full Filing', 'FULL_SCREEN': 'Full screen', 'FULL_TIME_EMPLOYEES': 'Full Time Employees', 'FUNDAMENTAL': 'Fundamental', 'FUNDAMENTALS': 'Fundamentals', 'FUND_FAMILY': 'Fund Family', 'FUND_INCEPTION_DATE': 'Inception Date', 'FUND_OPERATIONS': 'Fund Operations', 'FUND_OVERVIEW': 'Fund Overview', 'FUND_SUMMARY': 'Fund Summary', 'FUTURE': 'Future', 'FUTURES_SCREENER': 'Futures Screener', 'FUTURES_SCREENER_DES': 'Find the contracts to invest in and includes exchanges, day percent change, and region filters for further customization', 'FUTURES': 'Futures', 'FUTURES_CHAIN': 'Futures Chain', 'FUTURE_POLICY_BENEFITS': 'Future Policy Benefits', 'FYE': 'fye', 'GAINON_SALEOF_INVESTMENT_PROPERTY': 'Gain on Saleof Investment Property', 'GAINON_SALEOF_LOANS': 'Gain on Saleof Loans', 'GAINS_LOSSES_NOT_AFFECTING_RETAINED_EARNINGS': 'Gains Losses Not Affecting Retained Earnings', 'GAIN_LOSSON_SALEOF_ASSETS': 'Gain Losson Saleof Assets', 'GAIN_LOSS_ON_INVESTMENT_SECURITIES': 'Gain Loss On Investment Securities', 'GAIN_LOSS_ON_SALE_OF_BUSINESS': 'Gain Loss On Sale of Business', 'GAIN_LOSS_ON_SALE_OF_PPE': 'Gain Loss On Sale of PPE', 'GAIN_ON_SALE_OF_BUSINESS': 'Gain on Sale of Business', 'GAIN_ON_SALE_OF_PPE': 'Gain on Sale of PPE', 'GAIN_ON_SALE_OF_SECURITY': 'Gain on Sale of Security', 'GAMING_ACTIVITIES': 'Gaming Activities', 'GAMING_ACTIVITIES_DESC': 'Gaming Activities Stocks', 'GAS_UTILITIES': 'Gas Utilities', 'GAS_UTILITIES_DESC': 'Gas Utilities Stocks', 'GATHERING_HOLDINGS': 'Gathering holdings...', 'GDP_REAL': 'Real GDP per Capita', 'GDP_VALUE': 'GDP Value', 'GENERAL': 'Breaking News', 'GENERAL_AND_ADMINISTRATIVE_EXPENSE': 'General & Administrative Expense', 'GENERAL_BUILDING_MATERIALS': 'General Building Materials', 'GENERAL_BUILDING_MATERIALS_DESC': 'General Building Materials Stocks', 'GENERAL_CONTRACTORS': 'General Contractors', 'GENERAL_CONTRACTORS_DESC': 'General Contractors Stocks', 'GENERAL_ENTERTAINMENT': 'General Entertainment', 'GENERAL_ENTERTAINMENT_DESC': 'General Entertainment Stocks', 'GENERAL_PARTNERSHIP_CAPITAL': 'General Partnership Capital', 'GENERATE_LINK': 'Generate Sharable Link', 'GERMANY': 'Germany', 'GET_FINANCE_APP': 'Get the Yahoo Finance app', 'GET_STARTED': 'Get started', 'GIVE_FEEDBACK': 'Give feedback', 'GOLD': 'Gold', 'GOLD_DESC': 'Gold Stocks', 'GOODWILL': 'Goodwill', 'GOODWILL_AND_OTHER_INTANGIBLE_ASSETS': 'Goodwill And Other Intangible Assets', 'GOOD_LIFE_TITLE': 'The Good Life', 'GOTO_SYMBOL': 'Go to Symbol', 'GOTO_TEXT': 'Go to {text}', 'GOTO_TRANSACTION': 'Go to Transaction', 'GOVERNANCE': 'Governance Risk Score', 'GOVERNANCE_QUICKSCORE': '{company}’s ISS Governance QualityScore as of {date} is {score}.', 'GRAY_BACKGROUND_STRIPS': 'Gray background strips', 'GROCERY_STORES': 'Grocery Stores', 'GROCERY_STORES_DESC': 'Grocery Stores Stocks', 'GROSS_ACCOUNTS_RECEIVABLE': 'Gross Accounts Receivable', 'GROSS_LOAN': 'Gross Loan', 'GROSS_PPE': 'Gross PPE', 'GROSS_PREMIUMS_WRITTEN': 'Gross Premiums Written', 'GROSS_PROFIT': 'Gross Profit', 'GROSS_PROPERTY_PLANT_AND_EQUIPMENT': 'Gross property, plant and equipment', 'GROWTH_ESTIMATES': 'Growth Estimates', 'GROWTH_TECHNOLOGY_STOCKS': 'Growth Technology Stocks', 'GROWTH_TECHNOLOGY_STOCKS_DESC': 'Technology stocks with revenue and earnings growth in excess of 25%.', 'HARDWARE_ELECTRONICS_TITLE': 'Computer Hardware & Electronics', 'HAVE_NO_SCREENERS': 'Screeners lets you choose from hundreds of data filters to discover Stocks, Mutual Funds, ETFs and more. {more}', 'HEADS_UP_DISPLAY_HIDE': 'Hide Heads-Up Display', 'HEADS_UP_DISPLAY_SHOW': 'Show Heads-Up Display', 'HELP': 'Help', 'HEALTHCARE': 'Healthcare', 'HEALTHCARE_DESC': 'Healthcare Stocks', 'HEALTHCARE_INFORMATION_SERVICES': 'Healthcare Information Services', 'HEALTHCARE_INFORMATION_SERVICES_DESC': 'Healthcare Information Services Stocks', 'HEALTHCARE_TITLE': 'Healthcare', 'HEALTH_CARE_PLANS': 'Health Care Plans', 'HEALTH_CARE_PLANS_DESC': 'Health Care Plans Stocks', 'HEATMAP_VIEW': 'Heatmap View', 'HEAVY_CONSTRUCTION': 'Heavy Construction', 'HEAVY_CONSTRUCTION_DESC': 'Heavy Construction Stocks', 'HEDGING_ASSETS_CURRENT': 'Hedging Assets Current', 'HELD_TO_MATURITY_SECURITIES': 'Held To Maturity Securities', 'HELP_INFO_ADJ_CLOSE': '**Adjusted close price adjusted for splits and dividend and/or capital gain distributions.', 'HELP_INFO_CLOSE': '*Close price adjusted for splits.', 'HIDE_ALL': 'Hide all', 'HIDE_OUTLIERS': 'Hide outliers', 'HIGH': 'High', 'HIGH-TECH_TITLE': 'Tech', 'HIGH_ESTIMATE': 'High Estimate', 'HIGH_YIELD_BOND': 'High Yield Bond', 'HIGH_YIELD_BOND_DESC': 'High Yield Bond with Performance Rating of 4 & 5, low risk and top-half returns', 'HIRING': 'Hiring', 'HIRING_FOOTER_MSG': 'Greenwich HR aggregates job listings from public and private sources. Job listings signal hiring action 1-3m ahead.', 'HIRING_LEGEND_MSG': '% Change in total hiring', 'HIRING_TRENDS': 'Hiring Trends', 'HISTORICAL_DATA': 'Historical Data', 'HISTORICAL_PERFORMANCE': 'Historical Performance', 'HISTORICAL_PRICE': 'Historical Prices', 'HOLD': 'Hold', 'HOLDER': 'Holder', 'HOLDERS': 'Holders', 'HOLDINGS': 'Holdings', 'HOLLOW_CANDLE': 'Hollow Candle', 'HOME_FURNISHINGS_FIXTURES': 'Home Furnishings & Fixtures', 'HOME_FURNISHINGS_FIXTURES_DESC': 'Home Furnishings & Fixtures Stocks', 'HOME_FURNISHING_STORES': 'Home Furnishing Stores', 'HOME_FURNISHING_STORES_DESC': 'Home Furnishing Stores Stocks', 'HOME_HEALTH_CARE': 'Home Health Care', 'HOME_HEALTH_CARE_DESC': 'Home Health Care Stocks', 'HOME_IMPROVEMENT_STORES': 'Home Improvement Stores', 'HOME_IMPROVEMENT_STORES_DESC': 'Home Improvement Stores Stocks', 'HONG_KONG_STOCKS': 'Hong Kong Stocks', 'HORIZONTAL': 'Horizontal', 'HOSPITALS': 'Hospitals', 'HOSPITALS_DESC': 'Hospitals Stocks', 'HOUSEWARES_ACCESSORIES': 'Housewares & Accessories', 'HOUSEWARES_ACCESSORIES_DESC': 'Housewares & Accessories Stocks', 'IDENTITY_VERIFICATION': 'Identity verification', 'IMMOBILIER-ET-BTP_TITLE': 'Construction and public works', 'IMPAIRMENT_OF_CAPITAL_ASSETS': 'Impairment of Capital Assets', 'IMPLIED_SHARES_OUTSTANDING': 'Implied Shares Outstanding', 'IMPORT': 'Import', 'IMPORT_PF_ERROR': 'There was some error while importing your portfolio. Please Try Again.', 'IMPORT_PORTFOLIO': 'Import Portfolio', 'IMPORT_PORTFOLIO_MSG': 'Import your portfolio via CSV file', 'IMPULSE': 'Impulse:', 'INCLUDE_BETA_PORTFOLIO_VALUES': 'Include Beta portfolio values', 'INCOME': 'Income', 'INCOMEFROM_ASSOCIATESAND_OTHER_PARTICIPATING_INTERESTS': 'Income from Associates & Other Participating Interests', 'INCOME_BEFORE_TAX': 'Income Before Tax', 'INCOME_FROM_CONTINUING_OPS': 'Income from Continuing Operations', 'INCOME_STATEMENT': 'Income Statement', 'INCOME_TAX_EXPENSE': 'Income Tax Expense', 'INCOME_TAX_PAID_SUPPLEMENTAL_DATA': 'Income Tax Paid Supplemental Data', 'INCOME_TAX_PAYABLE': 'Income Tax Payable', 'INCREASEIN_INTEREST_BEARING_DEPOSITSIN_BANK': 'Increase in Interest Bearing Depositsin Bank', 'INCREASE_DECREASE_IN_DEPOSIT': 'Increase Decrease in Deposit', 'INCREASE_DECREASE_IN_NET_UNEARNED_PREMIUM_RESERVES': 'Increase Decrease in Net Unearned Premium Reserves', 'INDEPENDENT_OIL_GAS': 'Independent Oil & Gas', 'INDEPENDENT_OIL_GAS_DESC': 'Independent Oil & Gas Stocks', 'INDEX': 'Index', 'INDEX_SCREENER': 'Index Screener', 'INDEX_SCREENER_DES': 'Find stock market indexes often grouped around a particular sector, industry, or the stock market overall', 'INDEXES': 'Indexes', 'INDEX_COMPONENTS_NO_DATA': 'Components data is not available', 'INDEX_PROFILE': 'Index Profile', 'INDEX_WEIGHT': '% Index Weight', 'INDIA': 'India', 'INDIRECT': 'Indirect', 'INDIVIDUAL_OR_ENTITY': 'Individual or Entity', 'INDUSTRIA-ALIMENTICIA_TITLE': 'Food industry', 'INDUSTRIA-FINANCEIRA_TITLE': 'Financial Industry', 'INDUSTRIA-MANUFACTURERA_TITLE': 'Industrial Manufacturing', 'INDUSTRIA-MANUFATUREIRA_TITLE': 'Manufacturing industry', 'INDUSTRIALS_TITLE': 'Industrials', 'INDUSTRIAL_ELECTRICAL_EQUIPMENT': 'Industrial Electrical Equipment', 'INDUSTRIAL_ELECTRICAL_EQUIPMENT_DESC': 'Industrial Electrical Equipment Stocks', 'INDUSTRIAL_EQUIPMENT_COMPONENTS': 'Industrial Equipment & Components', 'INDUSTRIAL_EQUIPMENT_COMPONENTS_DESC': 'Industrial Equipment & Components Stocks', 'INDUSTRIAL_EQUIPMENT_WHOLESALE': 'Industrial Equipment Wholesale', 'INDUSTRIAL_EQUIPMENT_WHOLESALE_DESC': 'Industrial Equipment Wholesale Stocks', 'INDUSTRIAL_GOODS': 'Industrial Goods', 'INDUSTRIAL_GOODS_DESC': 'Industrial Goods Stocks', 'INDUSTRIAL_METALS_MINERALS': 'Industrial Metals & Minerals', 'INDUSTRIAL_METALS_MINERALS_DESC': 'Industrial Metals & Minerals Stocks', 'INDUSTRIAS-EM-GERAL_TITLE': 'Industries in general', 'INDUSTRIA_TITLE': 'Industrials', 'INDUSTRIE-LOURDE_TITLE': 'Industrials', 'INDUSTRY': 'Industry', 'INDUSTRY_CATEGORY': 'Industry / Category', 'INFORMATION_DELIVERY_SERVICES': 'Information & Delivery Services', 'INFORMATION_DELIVERY_SERVICES_DESC': 'Information & Delivery Services Stocks', 'INFORMATION_TECHNOLOGY_SERVICES': 'Information Technology Services', 'INFORMATION_TECHNOLOGY_SERVICES_DESC': 'Information Technology Services Stocks', 'INITIATE_FUND_TRANSFER': 'Initiate fund transfer', 'INITIATED': 'Initiated', 'INNOVATION': 'Innovation', 'INNOVATION_OUTLOOK': 'Innovation Outlook', 'INSIDER': 'Insider', 'INSIDER_OWNERSHIP': 'Insider Ownership', 'INSIDER_PURCHASES_LAST_SIX_MONTHS': 'Insider Purchases Last 6 Months', 'INSIDER_ROSTER': 'Insider Roster', 'INSIDER_SENTIMENT': 'Insider Sentiment', 'INSIDER_TRANSACTIONS': 'Insider Transactions', 'INSIGHTS': 'Insights', 'INSTITUTIONAL_OWNERSHIP': 'Institutional Ownership', 'INSTITUTIONAL_INTEREST': 'Institutional Interest', 'INSTITUTIONAL_HOLDINGS': 'Institutional Holdings', 'INSURANCE_AND_CLAIMS': 'Insurance & Claims', 'INSURANCE_BROKERS': 'Insurance Brokers', 'INSURANCE_BROKERS_DESC': 'Insurance Brokers Stocks', 'INTANGIBLE_ASSETS': 'Intangible Assets', 'INTERESTAND_COMMISSION_PAID': 'Interestand Commission Paid', 'INTEREST_BEARING_DEPOSITS_ASSETS': 'Interest Bearing Deposits Assets', 'INTEREST_BEARING_DEPOSITS_LIABILITIES': 'Interest Bearing Deposits Liabilities', 'INTEREST_CREDITED_ON_POLICYHOLDER_DEPOSITS': 'Interest Credited On Policyholder Deposits', 'INTEREST_EXPENSE': 'Interest Expense', 'INTEREST_EXPENSE_FOR_DEPOSIT': 'Interest Expense for Deposit', 'INTEREST_EXPENSE_FOR_FEDERAL_FUNDS_SOLD_AND_SECURITIES_PURCHASE_UNDER_AGREEMENTS_TO_RESELL': 'Interest Expense for Federal Funds Sold And Securities Purchase Under Agreements To Resell', 'INTEREST_EXPENSE_FOR_LONG_TERM_DEBT_AND_CAPITAL_SECURITIES': 'Interest Expense for Long Term Debt And Capital Securities', 'INTEREST_EXPENSE_FOR_SHORT_TERM_DEBT': 'Interest Expense for Short Term Debt', 'INTEREST_EXPENSE_NON_OPERATING': 'Interest Expense Non Operating', 'INTEREST_INCOME': 'Interest Income', 'INTEREST_INCOME_FROM_DEPOSITS': 'Interest Income from Deposits', 'INTEREST_INCOME_FROM_FEDERAL_FUNDS_SOLD_AND_SECURITIES_PURCHASE_UNDER_AGREEMENTS_TO_RESELL': 'Interest Income from Federal Funds Sold And Securities Purchase Under Agreements To Resell', 'INTEREST_INCOME_FROM_LEASES': 'Interest Income from Leases', 'INTEREST_INCOME_FROM_LOANS': 'Interest Income from Loans', 'INTEREST_INCOME_FROM_LOANS_AND_LEASE': 'Interest Income from Loans And Lease', 'INTEREST_INCOME_FROM_SECURITIES': 'Interest Income from Securities', 'INTEREST_INCOME_NON_OPERATING': 'Interest Income Non Operating', 'INTEREST_PAID_CFF': 'Interest Paid CFF', 'INTEREST_PAID_CFO': 'Interest Paid CFO', 'INTEREST_PAID_DIRECT': 'Interest Paid Direct', 'INTEREST_PAID_SUPPLEMENTAL_DATA': 'Interest Paid Supplemental Data', 'INTEREST_PAYABLE': 'Interest Payable', 'INTEREST_RECEIVED_CFI': 'Interest Received CFI', 'INTEREST_RECEIVED_CFO': 'Interest Received CFO', 'INTEREST_RECEIVED_DIRECT': 'Interest Received Direct', 'INTERIM_REVENUE': 'Interim Revenue', 'INTERNET_INFORMATION_PROVIDERS': 'Internet Information Providers', 'INTERNET_INFORMATION_PROVIDERS_DESC': 'Internet Information Providers Stocks', 'INTERNET_SERVICE_PROVIDERS': 'Internet Service Providers', 'INTERNET_SERVICE_PROVIDERS_DESC': 'Internet Service Providers Stocks', 'INTERNET_SOFTWARE_SERVICES': 'Internet Software & Services', 'INTERNET_SOFTWARE_SERVICES_DESC': 'Internet Software & Services Stocks', 'INTERNET_TITLE': 'Internet', 'INTERVAL': 'Interval', 'INVALID_INPUT': 'Invalid Input', 'INVENTORIES_ADJUSTMENTS_ALLOWANCES': 'Inventories Adjustments Allowances', 'INVENTORY': 'Inventory', 'INVERT': 'Invert', 'INVESTED_CAPITAL': 'Invested Capital', 'INVESTING_ACTIVITIES_CASHFLOWS_PROVIDED': 'Investing Activities, Cash Flows Provided By or Used In', 'INVESTING_CASH_FLOW': 'Investing Cash Flow', 'INVESTMENTIN_FINANCIAL_ASSETS': 'Investment in Financial Assets', 'INVESTMENTS': 'Investments', 'INVESTMENTSIN_ASSOCIATESAT_COST': 'Investments in Associatesat Cost', 'INVESTMENTSIN_JOINT_VENTURESAT_COST': 'Investments in Joint Venturesat Cost', 'INVESTMENTSIN_SUBSIDIARIESAT_COST': 'Investments in Subsidiariesat Cost', 'INVESTMENTS_AND_ADVANCES': 'Investments And Advances', 'INVESTMENTS_IN_OTHER_VENTURES_UNDER_EQUITY_METHOD': 'Investments in Other Ventures Under Equity Method', 'INVESTMENTS_PROPERTY_PLANT': 'Investments in property, plant and equipment', 'INVESTMENT_BANKING_PROFIT': 'Investment Banking Profit', 'INVESTMENT_BROKERAGE_NATIONAL': 'Investment Brokerage - National', 'INVESTMENT_BROKERAGE_NATIONAL_DESC': 'Investment Brokerage - National Stocks', 'INVESTMENT_BROKERAGE_REGIONAL': 'Investment Brokerage - Regional', 'INVESTMENT_BROKERAGE_REGIONAL_DESC': 'Investment Brokerage - Regional Stocks', 'INVESTMENT_INFORMATION': 'Investment Information', 'INVESTMENT_PROPERTIES': 'Investment Properties', 'INVOLVEMENT': 'Significant Involvement', 'IN_WATCHLIST': 'In watchlist', 'ISS': 'Institutional Shareholder Services (ISS)', 'ISSUANCE_OF_CAPITAL_STOCK': 'Issuance of Capital Stock', 'ISSUANCE_OF_DEBT': 'Issuance of Debt', 'ITALIA': 'Italia', 'JEWELRY_STORES': 'Jewelry Stores', 'JEWELRY_STORES_DESC': 'Jewelry Stores Stocks', 'JOIN_BETA': 'Join BETA', 'KEY_EXECUTIVES': 'Key Executives', 'KEY_STATISTICS': 'Key Statistics', 'KEY_STATS_DIVIDEND_AND_YIELD': '{0} ({1})', 'KEY_TECHNICALS': 'Key Technicals', 'KS_HELP_FYE_DETAIL': 'Fiscal Year Ending', 'KS_HELP_GUIDE': 'Abbreviation Guide:', 'KS_HELP_LFY_DETAIL': 'Last Fiscal Year', 'KS_HELP_LINK': 'See {link} for definitions of terms used.', 'KS_HELP_MRQ_DETAIL': 'Most Recent Quarter', 'KS_HELP_SUP_1': 'Data provided by Refinitiv.', 'KS_HELP_SUP_2': 'Data provided by EDGAR Online.', 'KS_HELP_SUP_3': 'Data derived from multiple sources or calculated by Yahoo Finance.', 'KS_HELP_SUP_4': 'Data provided by Morningstar, Inc.', 'KS_HELP_SUP_5': 'Shares outstanding is taken from the most recently filed quarterly or annual report and Market Cap is calculated using shares outstanding.', 'KS_HELP_SUP_6': 'Implied Shares Outstanding of common equity, assuming the conversion of all convertible subsidiary equity into common.', 'KS_HELP_SUP_7': 'EBITDA is calculated by S&P Global Market Intelligence using methodology that may differ from that used by a company in its reporting.', 'KS_HELP_SUP_8': \"A company's float is a measure of the number of shares available for trading by the public. It's calculated by taking the number of issued and outstanding shares minus any restricted stock, which may not be publicly traded.\", 'KS_HELP_TTM_DETAIL': 'Trailing Twelve Months', 'KS_HELP_YOY_DETAIL': 'Year Over Year', 'LAND_AND_IMPROVEMENTS': 'Land And Improvements', 'LANGUAGE': 'Language', 'LAST_BEAR_MKT': 'Last Bear Market', 'LAST_BULL_MKT': 'Last Bull Market', 'LAST_CAP_GAIN': 'Last Cap Gain', 'LAST_DIVIDEND': 'Last Dividend', 'LAST_PRICE': 'Last Price', 'LAST_SPLIT_DATE': 'Last Split Date', 'LAST_SPLIT_FACTOR': 'Last Split Factor', 'LATEST': 'Latest', 'LATEST_ANALYST_UPGRADED_STOCKS': 'Latest Analyst Upgraded Stocks', 'LATEST_SYMBOL_NEWS': 'Latest {symbol} news', 'LEAD_MANAGER_SINCE': 'Lead Manager since {date}', 'LEARN_MORE': 'Learn more', 'LEARN_MORE_STREAM': 'Learn More about Yahoo Finance Livestreaming', 'LEASES': 'Leases', 'LEGAL_TYPE': 'Legal Type', 'LEISURE_INDUSTRIES_TITLE': 'Leisure Industries', 'LEISURE_TITLE': 'Leisure Industries', 'LEVERED_FREE_CASH_FLOW': 'Levered Free Cash Flow', 'LFY': 'lfy', 'LIABILITIES': 'Liabilities', 'LIABILITIES_AND_STOCKHOLDERS_EQUITY': \"Liabilities and stockholders' equity\", 'LIABILITIES_HELDFOR_SALE_NON_CURRENT': 'Liabilities Held for Sale Non Current', 'LIABILITIES_OF_DISCONTINUED_OPERATIONS': 'Liabilities of Discontinued Operations', 'LIFESTYLE_TITLE': 'Health & Lifestyle', 'LIFE_INSURANCE': 'Life Insurance', 'LIFE_INSURANCE_DESC': 'Life Insurance Stocks', 'LIFE_MONEY_TITLE': 'Life and money', 'LIGHT': 'Light', 'LIMITED_PARTNERSHIP_CAPITAL': 'Limited Partnership Capital', 'LIMITS': 'Limits', 'LINE': 'Line', 'LINEAR': 'Linear', 'LINE_AVERAGE': 'Average Line', 'LINE_CROSS': 'Cross Line', 'LINE_OF_CREDIT': 'Line of Credit', 'LINE_QUADRANT': 'Quadrant Line', 'LINE_SIZE': 'Line Size', 'LINE_TREND': 'Trend Line', 'LINKED_ACCOUNT': 'Linked account', 'LINKED_ACCOUNTS': 'Linked Accounts', 'LINKED_ACCOUNT_LAST_UPDATED_TIME': 'Linked account data was last updated {date}', 'LINK_BROKER': 'Link Broker', 'LINK_BROKERS_TO_TRACK_PF': 'Link brokers to track portfolios', 'CONNECT_BROKERS_TO_TRACK_PF': 'Connect brokerage account', 'LINK_YOUR_BROKER': 'Link your real broker and trade', 'LINK_LIVESTREAM_TITLE': 'Please link your signal to start livestream', 'LINK_LIVESTREAM_TEXT': 'In your livestream tool, please input the URL as well as the livestream key below to connect your livestream signal. After everything’s ready, you may start your livestream.', 'LIQUIDITY_RATIOS': 'Liquidity Ratios', 'LISTS': 'Lists', 'LIVE': 'Live!', 'LIVESTREAM_IDEAS': 'Livestream your financial ideas', 'LIVESTREAM_KEY': 'Live Stream Key', 'LIVESTREAM_UPSELL_SUBTEXT': 'Learn about Yahoo Fiannce Livestream now, start livestrreaming. Certain limitations apply.', 'LIVESTREAM_STUDIO_ENTER': 'Enter Livestream Studio', 'LIVESTREAM_STUDIO_TITLE': 'Livestream Studio', 'LIVESTREAM_TAGS': 'Livestream Tags', 'LIVESTREAM_TICKERS': 'Related Tickers', 'LIVESTREAM_TITLE': 'Livestream Title', 'LIVE_NOW': 'LIVE NOW', 'LIVE_STATUS': 'LIVE', 'LIVE_VIDEO': 'Live Video', 'LOADING_FULL_CHART': 'Loading interactive chart...', 'LOADING_MORE_DATA': 'Loading more data...', 'LOAD_ADJUSTED_RETURNS': 'Load Adjusted Returns', 'LOANS_HELD_FOR_SALE': 'Loans Held for Sale', 'LOANS_RECEIVABLE': 'Loans Receivable', 'LODGING': 'Lodging', 'LODGING_DESC': 'Lodging Stocks', 'LOGARITHMIC': 'Logarithmic', 'LOGIN': 'Login', 'LONGTERM_CARE_FACILITIES': 'Long-Term Care Facilities', 'LONGTERM_CARE_FACILITIES_DESC': 'Long-Term Care Facilities Stocks', 'LONG_DISTANCE_CARRIERS': 'Long Distance Carriers', 'LONG_DISTANCE_CARRIERS_DESC': 'Long Distance Carriers Stocks', 'LONG_TERM_CAPITAL_LEASE_OBLIGATION': 'Long Term Capital Lease Obligation', 'LONG_TERM_DEBT': 'Long Term Debt', 'LONG_TERM_DEBT_AND_CAPITAL_LEASE_OBLIGATION': 'Long Term Debt And Capital Lease Obligation', 'LONG_TERM_DEBT_ISSUANCE': 'Long Term Debt Issuance', 'LONG_TERM_DEBT_PAYMENTS': 'Long Term Debt Payments', 'LONG_TERM_EQUITY_INVESTMENT': 'Long Term Equity Investment', 'LONG_TERM_INVESTMENTS': 'Long Term Investments', 'LONG_TERM_PROVISIONS': 'Long Term Provisions', 'LOOKUP_FOOTER_TIP': 'Tip: Use comma to separate multiple quotes and then press enter', 'LOOKUP_NO_RSULT': \"No results for '{searchPhrase}'\", 'LOOKUP_OPTION': 'Option Lookup', 'LOOKUP_TAB_all': 'All ({count})', 'LOOKUP_TAB_currency': 'Currencies ({count})', 'LOOKUP_TAB_equity': 'Stocks ({count})', 'LOOKUP_TAB_etf': 'ETFs ({count})', 'LOOKUP_TAB_future': 'Futures ({count})', 'LOOKUP_TAB_index': 'Indices ({count})', 'LOOKUP_TAB_mutualfund': 'Mutual Funds ({count})', 'LOSSON_EXTINGUISHMENTOF_DEBT': 'Loss on Extinguishment of Debt', 'LOSS_ADJUSTMENT_EXPENSE': 'Loss Adjustment Expense', 'LOW': 'Low', 'LOW_ESTIMATE': 'Low Estimate', 'LUMBER_WOOD_PRODUCTION': 'Lumber, Wood Production', 'LUMBER_WOOD_PRODUCTION_DESC': 'Lumber, Wood Production Stocks', 'MACHINERY_FURNITURE_EQUIPMENT': 'Machinery Furniture Equipment', 'MACHINE_TOOLS_ACCESSORIES': 'Machine Tools & Accessories', 'MACHINE_TOOLS_ACCESSORIES_DESC': 'Machine Tools & Accessories Stocks', 'MAINTAINS': 'Maintains', 'MAINTENANCE_AND_REPAIRS': 'Maintenance & Repairs', 'MAJOR_AIRLINES': 'Major Airlines', 'MAJOR_AIRLINES_DESC': 'Major Airlines Stocks', 'MAJOR_INTEGRATED_OIL_GAS': 'Major Integrated Oil & Gas', 'MAJOR_INTEGRATED_OIL_GAS_DESC': 'Major Integrated Oil & Gas Stocks', 'MANAGEMENT_EFFECTIVENESS': 'Management Effectiveness', 'MANAGEMENT_INFORMATION': 'Management Information', 'MANAGEMENT_SERVICES': 'Management Services', 'MANAGEMENT_SERVICES_DESC': 'Management Services Stocks', 'MANAGE_SETTINGS': 'Manage Settings', 'MANAGE_SUBSCRIPTION': 'Manage Subscription', 'MANUFACTURED_HOUSING': 'Manufactured Housing', 'MANUFACTURED_HOUSING_DESC': 'Manufactured Housing Stocks', 'MANUFACTURING_MATERIALS_TITLE': 'Manufacturing & Materials', 'MANUF_EMPLOYMENT': 'Manufacturing \\nEmployment', 'MARKETING_SERVICES': 'Marketing Services', 'MARKETING_SERVICES_DESC': 'Marketing Services Stocks', 'MARKETS_CLOSED': 'Market closed.', 'MARKETS_OPEN': 'Market open.', 'MARKETS_TITLE': 'Markets', 'MARKET_BLOGS_TITLE': 'Market Blogs', 'MARKET_CAP': 'Market Cap', 'MARKET_CAP_INTRADAY': 'Market Cap (intraday)', 'MARKET_DIGEST': 'Market digest', 'MARKET_MOVERS_TITLE': 'Market Movers', 'MARKET_REVIEW': 'Market Review', 'MARKET_SUMMARY': 'Market Summary', 'MARKET_TIME_NOTICE_CLOSED': 'As of {date} {time}. {marketState}', 'MARKET_TIME_NOTICE_CLOSED_SHORT': 'At close: {date} {time}', 'MARKET_TIME_NOTICE_OPEN': 'As of {date} {time}. {exchange} {marketSource}. {marketState}', 'MARKET_TIME_RELATED_COMPANIES': 'As of {time}', 'MARKET_TITLE': 'Market', 'MARKET_VALUE': 'Market Value', 'MATCHES': 'Matches', 'MATCHING_STOCKS': 'Matching stocks', 'MATCH_RESULTS': '{start}-{end} of {total} results', 'MATCH_RESULTS_INDUSTRY': '{total} results', 'MATERIALES-BASICOS_TITLE': 'Basic materials', 'MATERIALS_AND_SUPPLIES': 'Materials & Supplies', 'MATIERES-PREMIERES_TITLE': 'Raw materials', 'MATURITY': 'Maturity', 'MAX': 'Max', 'MAX_12B1_FEE': 'Max 12b1 Fee', 'MAX_DEFERRED_SALES_LOAD': 'Max Deferred Sales Load', 'MAX_FRONT_END_SALES_LOAD': 'Max Front End Sales Load', 'MAX_SUPPLY': 'Max Supply', 'MEAN_ANNUAL_RETURN': 'Mean Annual Return', 'MEAT_PRODUCTS': 'Meat Products', 'MEAT_PRODUCTS_DESC': 'Meat Products Stocks', 'MEDIAN': 'Median', 'MEDIAN_MARKET_CAP': 'Median Market Cap', 'MEDICAL_APPLIANCES_EQUIPMENT': 'Medical Appliances & Equipment', 'MEDICAL_APPLIANCES_EQUIPMENT_DESC': 'Medical Appliances & Equipment Stocks', 'MEDICAL_EQUIPMENT_WHOLESALE': 'Medical Equipment Wholesale', 'MEDICAL_EQUIPMENT_WHOLESALE_DESC': 'Medical Equipment Wholesale Stocks', 'MEDICAL_INSTRUMENTS_SUPPLIES': 'Medical Instruments & Supplies', 'MEDICAL_INSTRUMENTS_SUPPLIES_DESC': 'Medical Instruments & Supplies Stocks', 'MEDICAL_LABORATORIES_RESEARCH': 'Medical Laboratories & Research', 'MEDICAL_LABORATORIES_RESEARCH_DESC': 'Medical Laboratories & Research Stocks', 'MEDICAL_PRACTITIONERS': 'Medical Practitioners', 'MEDICAL_PRACTITIONERS_DESC': 'Medical Practitioners Stocks', 'MET': 'Met', 'METAL_FABRICATION': 'Metal Fabrication', 'METAL_FABRICATION_DESC': 'Metal Fabrication Stocks', 'META_DESCRIPTION': 'At Yahoo Finance, you get free stock quotes, up-to-date news, portfolio management resources, international market data, social interaction and mortgage rates that help you manage your financial life.', 'META_DESCRIPTION_CURRENCY_CONVERTER': 'Get fast and easy calculator for converting one currency to another using the latest live exchange rates. Also, get the latest news that could affect currency exchange rates.', 'META_DESCRIPTION_INDUSTRY': 'Search quotes and news for all sectors, industries and sub-industries.', 'META_DESCRIPTION_LOOKUP': 'Search for ticker symbols for Stocks, Mutual Funds, ETFs, Indices and Futures on Yahoo! Finance.', 'META_DESCRIPTION_MINIHOME_NEWS': 'Today’s business and financial news, plus the latest updates that may affect your money, investments, savings, and financial health', 'META_DESC_CALENDAR_ALL': 'Find earnings, economic, stock splits and IPO calendars to track upcoming financial events from Yahoo Finance.', 'META_DESC_CALENDAR_EARNINGS': 'Learn when companies announce their quarterly and annual earnings, along with the latest EPS estimates and conference call times from Yahoo Finance.', 'META_DESC_CALENDAR_EARNINGS_SYMBOL': 'Learn when {symbol} announce their quarterly, annual earnings. See the latest EPS estimates. Listen to the conference call and remind yourself by adding it to your calendar.', 'META_DESC_CALENDAR_ECONOMIC': 'Track economic announcements with forecast and actuals to help your trading and investment decisions.', 'META_DESC_CALENDAR_IPO': 'Learn which companies are planning to go public soon, and when they are scheduling their IPOs.', 'META_DESC_CALENDAR_SPLITS': 'Learn which company shares are splitting and when in this stocks splits calendar from Yahoo Finance.', 'META_DESC_CRYPTO_ABOUT': \"Get started with trading and investing in crypto with these helpful FAQ's and how to sign up for an account.\", 'META_DESC_CRYPTO_ACCOUNT': 'Manage your crypto trading account with notification settings, account statements, option to deactivate account.', 'META_DESC_CRYPTO_DEACTIVATE': 'Deactivate your crypto trading account.', 'META_DESC_CRYPTO_DEPOSIT': 'Deposit fund to your crypto trading account.', 'META_DESC_CRYPTO_HELP': \"Help page for crypto trading, including TOS, FAQ's and customer service contact info.\", 'META_DESC_CRYPTO_KYC': 'Find forms requesting crypto trading user info and/or identity verifcation documents.', 'META_DESC_CRYPTO_LINKED_ACCOUNTS': 'Link your ACH accounts, with option to deposit/withdraw and refresh/link/unlink accounts.', 'META_DESC_CRYPTO_TRADING': 'Buy, sell, trade and store crypto the safe and easy way. Customer service will always be there to help.', 'META_DESC_CRYPTO_WITHDRAW': 'Withdraw fund from your crypto trading account.', 'META_DESC_CRYPTOCURRENCY_LANDING': 'Find a list of top cryptocurrencies and their prices in real time, including percentage change, charts, history, volume and more.', 'META_DESC_EARNINGS': 'Yahoo {quarter} {year} Earnings', 'META_DESC_HUB': 'Find the latest tax news, tips, dates and info that you need to file taxes in 2023. ', 'META_DESC_INDUS': '{listId} Services - Industry Center - Financial data, performance information for the {listId} Services.', 'META_DESC_LIST_BONDS': 'Bonds Center - Learn the basics of bond investing, get current quotes, news, commentary and more.', 'META_DESC_LIST_COMMODITIES': 'See the list of commodity futures with price and percentage change for the day, trading volume, open interest, and day chart', 'META_DESC_LIST_CURRENCIES': 'See the complete list of latest currency exchange rates with price and percentage changes, 52 week range and day charts.', 'META_DESC_LIST_ETFS': \"Learn about Exchange-Traded Funds, read ETF news, and see which ETFs are performing the best with Yahoo Finance's ETF Center.\", 'META_DESC_LIST_GAINERS': 'View performance of stock gainers on Yahoo Finance', 'META_DESC_LIST_LOSERS': 'View performance of stock losers on Yahoo Finance', 'META_DESC_LIST_MOST_ACTIVE': 'View performance of most active stocks on Yahoo Finance', 'META_DESC_LIST_MUTUALFUNDS': 'Mutual Funds Center - Get investing strategies, data, and mutual fund news in the Yahoo Finance Mutual Fund Center. The Fund Screener surfaces low-cost and top-performing funds for each asset category and provides detailed fund profiles, fund charts, and news on fund manage', 'META_DESC_LIST_OPTIONS': 'Options Tools, Education and News on Yahoo Finance', 'META_DESC_LIST_TRENDING_TICKERS': 'See the list of trending stocks today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_LIST_WORLD_INDICES': 'See the complete list of world stock indexes with points and percentage change, volume, intraday highs and lows, 52 week range, and day charts.', 'META_DESC_MULTIQUOTE': 'View and compare {quotes} on Yahoo Finance.', 'META_DESC_MULTIQUOTE_EMPTY': 'View and compare quotes on Yahoo Finance.', 'META_DESC_PERSONAL_FINANCE': 'Read latest personal finance articles about loans, saving & spending, lifestyle, insurance, taxes, career & education, retirement, and real estate. Try our calculators for setting your savings goals for a car, down payment for a home, education and other needs as well as mortgage calculator to determine monthly payments for a home. Search glossary to better understand financial terms and their meanings.', 'META_DESC_PORTFOLIO': 'Track your personal stock portfolios and watch lists, and automatically determine your day gain and total gain at Yahoo Finance', 'META_DESC_QUOTE': 'Find the latest {shortName} ({symbol}) stock quote, history, news and other vital information to help you with your stock trading and investing.', 'META_DESC_QUOTE_ANALYSIS': 'See {shortName} ({symbol}) stock analyst estimates, including earnings and revenue, EPS, upgrades and downgrades.', 'META_DESC_QUOTE_BALANCE-SHEET': \"Get the annual and quarterly balance sheet of {shortName} ({symbol}) including details of assets, liabilities and shareholders' equity.\", 'META_DESC_QUOTE_CASH-FLOW': 'Understand the cash flow statement for {shortName} ({symbol}), learn where the money comes from and how the company spends it.', 'META_DESC_QUOTE_CHART': 'Interactive Chart for {shortName} ({symbol}), analyze all the data with a huge range of indicators.', 'META_DESC_QUOTE_COMMUNITY': \"Find the latest {shortName} ({symbol}) stock discussion in Yahoo Finance's forum. Share your opinion and gain insight from other stock traders and investors.\", 'META_DESC_QUOTE_COMPANY360': 'Get {shortName} ({symbol}) exclusive data and insights at your fingertips with intuitive visualizations.', 'META_DESC_QUOTE_COMPANY_INSIGHTS': 'Find essential company insights and stock analysis for {companyName} ({symbol}), including the Yahoo Finance company insight score, to help you with your stock trading and investing', 'META_DESC_QUOTE_COMPONENTS': 'View the basic {symbol} stock chart on Yahoo Finance and learn which stocks are present under {shortName} ({symbol}).', 'META_DESC_QUOTE_CORPORATE_EVENTS': 'Find earnings dates, report releases and other corporate events for {companyName} ({symbol}) to help you with your stock trading and investing', 'META_DESC_QUOTE_CRYPTOCURRENCY': 'Find the latest {shortName} ({symbol}) price quote, history, news and other vital information to help you with your cryptocurrency trading and investing.', 'META_DESC_QUOTE_CRYPTOCURRENCY_CHART': 'Interactive Chart for {shortName} ({symbol}), analyze all the data with a huge range of indicators.', 'META_DESC_QUOTE_CRYPTOCURRENCY_COMMUNITY': \"Find the latest {shortName} ({symbol}) cryptocurrency discussion in Yahoo Finance's forum. Share your opinions and get diverse opinions from other crypto traders and investors.\", 'META_DESC_QUOTE_CRYPTOCURRENCY_HISTORY': 'Discover historical prices of {shortName} ({symbol}) on Yahoo Finance. View daily, weekly or monthly formats.', 'META_DESC_QUOTE_CRYPTOCURRENCY_PROFILE': 'Find key facts about {shortName} ({symbol}) to help you with your cryptocurrency trading and investing.', 'META_DESC_QUOTE_CURRENCY': 'Find the latest {shortName} ({symbol}) currency exchange rate, plus historical data, charts, relevant news and more', 'META_DESC_QUOTE_CURRENCY_COMMUNITY': \"Find the latest {shortName} ({symbol}) forex discussions in Yahoo Finance's forum. Share your opinion and gain insight from other traders and investors.\", 'META_DESC_QUOTE_FAIR_VALUE': \"See the fair value of {companyName} ({symbol}) stock to learn if it is overvalued or undervalued with it's current price, and see the outlook for the stock.\", 'META_DESC_QUOTE_FINANCIALS': 'Get the detailed quarterly/annual income statement for {shortName} ({symbol}). Find out the revenue, expenses and profit or loss over the last fiscal year.', 'META_DESC_QUOTE_FUTURES': \"Yahoo Finance is a leading financial destination, providing consumers with a broad range of comprehensive online financial services and information essential to managing one's financial life. By providing access to up-to-date, international market data, real-time stock quotes, portfolio management resources, and community tools such as message boards and clubs, Yahoo Finance empowers consumers to make well-informed investment decisions.\", 'META_DESC_QUOTE_HISTORY': 'Discover historical prices for {symbol} stock on Yahoo Finance. View daily, weekly or monthly format back to when {shortName} stock was issued.', 'META_DESC_QUOTE_HOLDERS': 'Find out the direct holders, institutional holders and mutual fund holders for {shortName} ({symbol}).', 'META_DESC_QUOTE_HOLDINGS': 'View Top Holdings and Key Holding Information for {shortName} ({symbol}).', 'META_DESC_QUOTE_INDEX': 'Find the latest information on {shortName} ({symbol}) including data, charts, related news and more from Yahoo Finance', 'META_DESC_QUOTE_INDEX_COMMUNITY': \"Find the latest {shortName} ({symbol}) discussion in Yahoo Finance's forum. Share your opinion and gain insight from other traders and investors.\", 'META_DESC_QUOTE_INDEX_COMPONENTS': 'Get the components of the {shortName} ({symbol}) to help your investment decision from Yahoo Finance', 'META_DESC_QUOTE_INDEX_HISTORY': 'Get historical data for the {shortName} ({symbol}) on Yahoo Finance. View and download daily, weekly or monthly data to help your investment decisions.', 'META_DESC_QUOTE_INDEX_OPTIONS': 'Get the basic {shortName} ({symbol}) option chain and pricing options for different maturity periods from Yahoo Finance.', 'META_DESC_QUOTE_INSIDER-ROSTER': 'Get the latest updated list of insiders for {shortName} ({symbol}). Find out the total of insider shares held, purchased and sold.', 'META_DESC_QUOTE_INSIDER-TRANSACTIONS': 'Get the latest insider transactions for {shortName} ({symbol}). Find out the total of insider shares held, purchased and sold.', 'META_DESC_QUOTE_KEY-STATISTICS': 'Find out all the key statistics for {shortName} ({symbol}), including valuation measures, fiscal year financial statistics, trading record, share statistics and more.', 'META_DESC_QUOTE_NEWS': 'Get the latest {shortName} ({symbol}) stock news and headlines to help you in your trading and investing decisions.', 'META_DESC_QUOTE_OPTIONS': 'View the basic {symbol} option chain and compare options of {shortName} on Yahoo Finance.', 'META_DESC_QUOTE_PERFORMANCE': 'Current and Historical Performance Performance for {shortName} on Yahoo Finance.', 'META_DESC_QUOTE_PRESS-RELEASES': 'Get the latest {shortName} ({symbol}) stock news and headlines to help you in your trading and investing decisions.', 'META_DESC_QUOTE_PROFILE': 'See the company profile for {shortName} ({symbol}) including business summary, industry/sector information, number of employees, business summary, corporate governance, key executives and their compensation.', 'META_DESC_QUOTE_PURCHASE-INFO': 'View Minimum Investment Information and Available Brokerage for {shortName} ({symbol})', 'META_DESC_QUOTE_RESEARCH_REPORTS': 'See the latest analyst reports for {companyName} ({symbol}), including analyst ratings and price targets to help you with your stock trading and investing.', 'META_DESC_QUOTE_RISK': 'View Historical Risk Statistics for {shortName} ({symbol}).', 'META_DESC_QUOTE_SUSTAINABILITY': 'See {shortName} ({symbol}) Environment, Social and Governance Ratings to help you in your stock buying decisions.', 'META_DESC_QUOTE_UNKNOWN': 'The requested symbol was not found in our database. Try searching for some other symbol on Yahoo Finance', 'META_DESC_SCREENERS': 'Find Yahoo Finance predefined, ready-to-use stock screeners to search stocks by industry, index membership, and more. Create your own screens with over 150 different screening criteria.', 'META_DESC_SCREENERS_CRYPTOCURRENCY': 'Create your own cryptocurrency screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_EQUITY': 'Create your own stock screener with over 150 different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_EQUITY_DAY_GAINERS': 'See the list of the top gaining stocks today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_SCREENERS_EQUITY_DAY_LOSERS': 'See the list of the top losing stocks today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_SCREENERS_EQUITY_MOST_ACTIVES': 'See the list of the most active stocks today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_SCREENERS_ETF': 'Create your own ETF screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_ETF_TOP_ETFS_US': 'See the list of the top ETFs today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_SCREENERS_FUTURE': 'Create your own futures screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_INDEX': 'Create your own stock index screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_MUTUALFUND': 'Create your own mutual fund screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_ANALYST_RATINGS': 'Create your own analyst rating screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_MUTUALFUND_TOP_MUTUAL_FUNDS': 'See the complete list of mutual funds with price percent changes, 50 and 200 day averages, 3 month returns and YTD returns.', 'META_DESC_SCREENERS_OPTION': 'Option Screener: Option Research Center - Use the Option screener to search options by industry, index membership, share data such as price, market cap, beta, sales and profitability, valuation ratios, analyst estimates. Create your own screens with over 150 different screening criteria', 'META_DESC_SCREENERS_PREDEFINED': 'See a list of {title} using the Yahoo Finance screener. Create your own screens with over 150 different screening criteria.', 'META_DESC_WATCHLISTS': 'Explore curated stock watchlists to track and discover assets in a variety of categories', 'META_DESC_WATCHLISTS_CATEGORY': 'See a list of {metaTitle} from Yahoo Finance, with latest stock price and other details.', 'META_DESC_WATCHLISTS_THE_FIGHT_AGAINST_COVID19': 'Follow this list to discover and track the stocks of publicly traded companies with COVID-19 related treatments and healthcare plans.', 'META_KEYWORDS': '401k, Business, Financial Information, Investing, Investor, Market News, Stock Research, Stock Valuation, business news, economy, finance, investment tools, mortgage, mutual funds, personal finance, quote, real estate, retirement, stock, stocks, Suze Orman, tax, track portfolio', 'META_KEYWORDS_INDUSTRY': 'Industry, Sector, Energy, Materials, Industrials, Consumer Discretionary, Consumer Staples, Health Care, Financials, Information Technology, Telecommunication Services, Utilities, Real Estate', 'META_KEYWORDS_LOOKUP': 'symbol lookup, ticker lookup, stock symbol lookup', 'META_KWORDS_CALENDAR_EARNINGS': 'Earnings Announcements, Company Earnings, EPS Estimates, Earnings Per Share, Conference Calls, Before Market Open, After Market Close', 'META_KWORDS_CALENDAR_ECONOMIC': 'Economic Calendar, Forecast, Actual, Market Experts, Revised Forecast, FOMC, Unemployment Rate, GDP, Consumer Confidence, Durable Orders, Existing Home Sales, Nonfarm Payrolls, Initial Claims, Factory Orders, Construction Spending, ISM Index, Personal Income, Personal Spending', 'META_KWORDS_CALENDAR_IPO': 'Earnings Announcements, Company Earnings, EPS Estimates, IPO, IPOs, new companies', 'META_KWORDS_CALENDAR_SPLITS': 'Earnings Announcements, Company Earnings, EPS Estimates, Splits, Stock Split, Ratios', 'META_KWORDS_CRYPTOCURRENCY_LANDING': 'Cryptocurrency, cryptocurrencies, crypto, currencies, currency, bitcoin, etherium, litecoin, share data, option price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value', 'META_KWORDS_HUB': 'hub, news, tips, dates, taxes', 'META_KWORDS_INDUS': '{listId}, services, industries, Industry Center, Financial data, performance information, {listId} Services, utilities', 'META_KWORDS_LIST_BONDS': 'Bond, treasury, zero coupon, rate, interest rate, corporate bond, junk bond, municipal bond, muni bond, yield curve, coupon rate, maturity, rating, AAA, BBB, CCC, par value, callable bond, credit ratings', 'META_KWORDS_LIST_COMMODITIES': 'Commodities, Futures, futures headlines, futures chain', 'META_KWORDS_LIST_CURRENCIES': 'currency trading, forex currency trading, forex trading, yahoo finance', 'META_KWORDS_LIST_ETFS': 'index fund indexing ishares spdr qubes streettracks diamonds vipers', 'META_KWORDS_LIST_GAINERS': 'most active actives volumes leaders price percent percentage gainers losers nyse nasdaq amex', 'META_KWORDS_LIST_LOSERS': 'most active actives volumes leaders price percent percentage gainers losers nyse nasdaq amex', 'META_KWORDS_LIST_MOST_ACTIVE': 'most active actives volumes leaders price percent percentage gainers losers nyse nasdaq amex', 'META_KWORDS_LIST_MUTUALFUNDS': 'mutual fund, mutual, fund, funds, portfolio, fund family, fund manager, vanguard, fidelity, Morningstar, no-load, front-load, back-load, expense ratio, 12b-1, fund analysts, fund performance, index fund, actively managed fund', 'META_KWORDS_LIST_TRENDING_TICKERS': 'trending tickers, popular tickers, trending, popular, now, most popular, people', 'META_KWORDS_LIST_WORLD_INDICES': 'major world indices, indexes, index americas europe asia pacific africa middle east composite', 'META_KWORDS_QUOTE': '{symbol}, {shortName}, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_ANALYSIS': 'recommendation,analyst,analyst rating,strong buy,strong sell,hold,buy,sell,overweight,underweight,upgrade,downgrade,price target,EPS estimate,revenue estimate,growth estimate,p/e estimate,recommendation,analyst,analyst rating,strong buy,strong sell,hold,buy,sell,overweight,underweight,upgrade,downgrade,price target,EPS estimate,revenue estimate,growth estimate,p/e estimate', 'META_KWORDS_QUOTE_BALANCE-SHEET': 'balance sheet,asset,liabilities,shareholders equity,return on equity,cash equivalents,retained earning', 'META_KWORDS_QUOTE_CASH-FLOW': 'cash flow statement,operating activities,cash flows,investing,financing,cash,net cash', 'META_KWORDS_QUOTE_CHART': 'chart, interactive chart, graph, data graph, data points, analyze, analysis, data analysis', 'META_KWORDS_QUOTE_COMMUNITY': 'finance message boards, financial message boards, financial forum, financial chat, finance chat, finance forum, stock forum, stock message boards, investment forum, investing ideas, investing suggestions, investing tips, investment suggestion, investing ideas, messages, message board, Business Opportunity Board', 'META_KWORDS_QUOTE_COMPONENTS': '{symbol}, {shortName}, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_FINANCIALS': 'income statement,gross profit,revenue,operating expenses,operating income,net income,earning,earning per share', 'META_KWORDS_QUOTE_FUTURES': '{symbol}, {shortName}, {symbol} futures, {shortName} futures, finance, stocks, Investing, Investor, Business, Stock Research, Stock Valuation, Market News, Financial Information, stock market, charts, stock charts', 'META_KWORDS_QUOTE_HISTORY': '{symbol}, {shortName}, {symbol} historical prices, {shortName} historical prices, historical prices, stocks, quotes, finance', 'META_KWORDS_QUOTE_HOLDERS': 'direct holders,institutional holders,mutual fund holders,holding,holding shares,floating shares,major holders,form 144 holders', 'META_KWORDS_QUOTE_HOLDINGS': 'Top holdings, Holdings, Portfolio Composition, Equity Holdings, Sector Weightings, Bond holdings, Bond Ratings', 'META_KWORDS_QUOTE_INSIDER-ROSTER': 'insider selling,insider buying,shareholder,insider purchase,insider sale,earning per share,form 144 holders', 'META_KWORDS_QUOTE_INSIDER-TRANSACTIONS': 'insider selling,insider buying,shareholder,insider purchase,insider sale,form 144 holders', 'META_KWORDS_QUOTE_KEY-STATISTICS': 'key statistics,financial statistics,valuation,measurement,market cap,EPS,P/E,PEG,Price/book. EBITDA,Profit margin,operating Margin,Return on Equity,Beta,short ratio', 'META_KWORDS_QUOTE_NEWS': 'company headlines,news,latest happenings,latest news,recent news,{symbol}, {shortName}, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_OPTIONS': '{symbol}, {shortName}, {symbol} options, {shortName} options, {symbol} option chain, {shortName} option chain, option, option chain, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_PERFORMANCE': 'Performance , Trailing Returns vs. Benchmarks, Annual Total Return History, Past Quarterly Returns, Load Adjusted Returns', 'META_KWORDS_QUOTE_PRESS-RELEASES': 'press releases, company headlines,news,latest happenings,latest news,recent news,{symbol}, {shortName}, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_PROFILE': 'company profile,business summary,company management,company introduction,key statistics,officers', 'META_KWORDS_QUOTE_PURCHASE-INFO': 'Minimum Investment, Brokerage , Min Subsequent Investment, Purchase Info', 'META_KWORDS_QUOTE_RISK': 'Risk Statistics, Risk Overview, Risk Rating', 'META_KWORDS_SCREENERS': 'Stock Screener, industry, index membership, share data, stock price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_CRYPTOCURRENCY': 'Cryptocurrency screener, cryptocurrency, cryptocurrencies, crypto, currencies, currency, bitcoin, etherium, litecoin, share data, option price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value', 'META_KWORDS_SCREENERS_EQUITY': 'Stock Screener, industry, index membership, share data, stock price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_ETF': 'ETF Screener, industry, index membership, share data, etf price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_FUTURE': 'Future screener, share data, future price, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_INDEX': 'Index screener, exchange, share data, index price, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_MUTUALFUND': 'Mutual Fund Screener, industry, index membership, share data, mutual fund price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_OPTION': 'Option Screener, industry, index membership, share data, option price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_ANALYST_RATINGS': 'Analyst rating', 'META_KWORDS_WATCHLISTS': 'Curated watchlists, watchlists, watched, added, cryptocurrency, cryptocurrencies, crypto, cryptos, currencies, currency, bitcoin, etherium, litecoin, tokens, share data, option price, market cap, beta, sales, profitability, volatility, volatile, bets, volume, valuation ratios, analyst estimates, large cap value, sustainable, ethical', 'META_LOOKUP_DESCRIPTION': 'Search for ticker symbols for Stocks, Mutual Funds, ETFs, Indices and Futures on Yahoo! Finance.', 'META_LOOKUP_KEYWORDS': 'symbol lookup, ticker lookup, stock symbol lookup', 'META_LOOKUP_TITLE': 'Symbol Lookup from Yahoo Finance', 'META_TITLE': 'Yahoo Finance - Stock Market Live, Quotes, Business & Finance News', 'META_TITLE_CALENDAR_ALL': 'Financial Calendars - Yahoo Finance', 'META_TITLE_CALENDAR_EARNINGS': 'Company Earnings Calendar - Yahoo Finance', 'META_TITLE_CALENDAR_EARNINGS_SYMBOL': 'Earnings {symbol}: Company Earnings Calendar for {symbol} - Yahoo Finance', 'META_TITLE_CALENDAR_ECONOMIC': 'Economic Calendar - Yahoo Finance', 'META_TITLE_CALENDAR_IPO': \"Upcoming & Recent IPO's - IPOs Calendar - Yahoo Finance\", 'META_TITLE_CALENDAR_SPLITS': 'Stock Splits Calendar - Yahoo Finance', 'META_TITLE_CHART': '{symbol} Interactive Stock Chart | {shortName} Stock - Yahoo Finance', 'META_TITLE_CRYPTO_ABOUT': \"Crypto Trading & Investing: FAQ's & Other Info - Yahoo Finance\", 'META_TITLE_CRYPTO_ACCOUNT': 'Crypto Account Management - Yahoo Finance', 'META_TITLE_CRYPTO_DEACTIVATE': 'Crypto Deactivate Account - Yahoo Finance', 'META_TITLE_CRYPTO_DEPOSIT': 'Crypto Fund Deposit - Yahoo Finance', 'META_TITLE_CRYPTO_HELP': 'Crypto Trading Help - Contact Us - Yahoo Finance', 'META_TITLE_CRYPTO_KYC': 'Crypto Trading User Info - Yahoo Finance', 'META_TITLE_CRYPTO_LINKED_ACCOUNTS': 'Crypto Linked Accounts - Yahoo Finance', 'META_TITLE_CRYPTO_TRADING': 'Crypto Exchange - Buy, Sell And Trade Bitcoin & Other Crypto - Yahoo Finance', 'META_TITLE_CRYPTO_WITHDRAW': 'Crypto Fund Withdrawal - Yahoo Finance', 'META_TITLE_CRYPTOCURRENCY_LANDING': 'Crypto Real Time Prices & Latest News - Yahoo Finance', 'META_TITLE_CURRENCY_CONVERTER': 'Currency Converter | Currency Exchange Calculator - Yahoo Finance', 'META_TITLE_DEFAULT_LISTS': '{listId} - Yahoo Finance', 'META_TITLE_HUB': 'Taxes 2023: News, Tips, Dates & Latest Info - Yahoo Finance', 'META_TITLE_INDUS': 'Top {listId} - Yahoo Finance', 'META_TITLE_INDUSTRY': 'Industry Center - Yahoo Finance', 'META_TITLE_LIST_BONDS': 'Bonds Center - Bonds quotes, news, screeners and educational information - Yahoo Finance', 'META_TITLE_LIST_COMMODITIES': 'Commodities Futures Prices & Day Charts - Yahoo Finance', 'META_TITLE_LIST_CURRENCIES': 'Live Forex Rates & Currencies - Yahoo Finance', 'META_TITLE_LIST_ETFS': 'Exchange-Traded Funds (ETF) Center - Yahoo Finance', 'META_TITLE_LIST_GAINERS': 'Stocks Gainers - Yahoo Finance', 'META_TITLE_LIST_LOSERS': 'Stocks Losers - Yahoo Finance', 'META_TITLE_LIST_MOST_ACTIVE': 'Stocks Most Actives - Yahoo Finance', 'META_TITLE_LIST_MUTUALFUNDS': 'Mutual Funds Center - Yahoo Finance', 'META_TITLE_LIST_OPTIONS': 'Options Center - Yahoo Finance', 'META_TITLE_LIST_TRENDING_TICKERS': 'Trending Stocks Today - Yahoo Finance', 'META_TITLE_LIST_WORLD_INDICES': 'Major World Indices - Yahoo Finance', 'META_TITLE_LOOKUP': 'Symbol Lookup from Yahoo Finance', 'META_TITLE_MINIHOME_NEWS': 'Latest Financial and Business News - Yahoo Finance', 'META_TITLE_MULTIQUOTE': '{quotes} | Stock Prices | Quote Comparison - Yahoo Finance', 'META_TITLE_MULTIQUOTE_EMPTY': 'Stock Prices | Quote Comparison - Yahoo Finance', 'META_TITLE_PERSONAL_FINANCE': 'Personal Finance - Yahoo Finance', 'META_TITLE_PORTFOLIO': 'Stock Portfolio & Tracker - Yahoo Finance', 'META_TITLE_PLUS_PORTAL': 'Yahoo Finance Plus - Stock Research & Analysis, Portfolio Analysis', 'META_TITLE_QUOTE': '{shortName} ({symbol}) Stock Price, News, Quote & History - Yahoo Finance', 'META_TITLE_QUOTE_ANALYSIS': '{shortName} ({symbol}) Analyst Ratings, Estimates & Forecasts - Yahoo Finance', 'META_TITLE_QUOTE_BALANCE-SHEET': '{shortName} ({symbol}) Balance Sheet - Yahoo Finance', 'META_TITLE_QUOTE_CASH-FLOW': '{shortName} ({symbol}) Cash Flow - Yahoo Finance - Yahoo Finance', 'META_TITLE_QUOTE_CHART': '{shortName} ({symbol}) Interactive Stock Chart - Yahoo Finance', 'META_TITLE_QUOTE_COMMUNITY': '{shortName} ({symbol}) Stock Forum & Discussion - Yahoo Finance', 'META_TITLE_QUOTE_COMPANY360': '{shortName} ({symbol}) Exclusive Data & Insights - Yahoo Finance', 'META_TITLE_QUOTE_COMPANY_INSIGHTS': '{companyName} ({symbol}) Company Insights & Stock Analysis', 'META_TITLE_QUOTE_COMPONENTS': '{symbol} Components | {shortName} Stock - Yahoo Finance', 'META_TITLE_QUOTE_CORPORATE_EVENTS': '{companyName} ({symbol}) Earnings Date & Other Corporate Events', 'META_TITLE_QUOTE_CRYPTOCURRENCY': '{shortName} ({symbol}) Price, Value, News & History - Yahoo Finance', 'META_TITLE_QUOTE_CRYPTOCURRENCY_CHART': '{shortName} ({symbol}) Interactive Price Chart - Yahoo Finance', 'META_TITLE_QUOTE_CRYPTOCURRENCY_COMMUNITY': '{shortName} ({symbol}) Cryptocurrency Forum & Discussion - Yahoo Finance', 'META_TITLE_QUOTE_CRYPTOCURRENCY_HISTORY': '{shortName} ({symbol}) Price History & Historical Data - Yahoo Finance', 'META_TITLE_QUOTE_CRYPTOCURRENCY_PROFILE': '{shortName} ({symbol}) Cryptocurrency Profile & Facts - Yahoo Finance', 'META_TITLE_QUOTE_CURRENCY': '{shortName} ({symbol}) Live Rate, Chart & News - Yahoo Finance', 'META_TITLE_QUOTE_CURRENCY_CHART': '{shortName} ({symbol}) Interactive Chart - Yahoo Finance', 'META_TITLE_QUOTE_CURRENCY_COMMUNITY': '{shortName} ({symbol}) Forex Forum & Discussion - Yahoo Finance', 'META_TITLE_QUOTE_FAIR_VALUE': '{companyName} ({symbol}) Fair Value & Stock Outlook', 'META_TITLE_QUOTE_FINANCIALS': '{shortName} ({symbol}) Income Statement - Yahoo Finance', 'META_TITLE_QUOTE_FUTURES': '{shortName} ({symbol}) Futures Chain - Yahoo Finance', 'META_TITLE_QUOTE_HISTORY': '{shortName} ({symbol}) Stock Historical Prices & Data - Yahoo Finance', 'META_TITLE_QUOTE_HOLDERS': '{shortName} ({symbol}) Stock Major Holders - Yahoo Finance', 'META_TITLE_QUOTE_HOLDINGS': '{shortName} ({symbol}) Holdings - Yahoo Finance', 'META_TITLE_QUOTE_INDEX': '{shortName} ({symbol}) Charts, Data & News - Yahoo Finance', 'META_TITLE_QUOTE_INDEX_COMMUNITY': '{shortName} ({symbol}) Forum & Discussion - Yahoo Finance', 'META_TITLE_QUOTE_INDEX_COMPONENTS': '{shortName} ({symbol}) Components - Yahoo Finance', 'META_TITLE_QUOTE_INDEX_HISTORY': '{shortName} ({symbol}) Historical Data - Yahoo Finance', 'META_TITLE_QUOTE_INSIDER-ROSTER': '{shortName} ({symbol}) Insider Ownership & Holdings - Yahoo Finance', 'META_TITLE_QUOTE_INSIDER-TRANSACTIONS': '{shortName} ({symbol}) Recent Insider Transactions - Yahoo Finance', 'META_TITLE_QUOTE_KEY-STATISTICS': '{shortName} ({symbol}) Valuation Measures & Financial Statistics', 'META_TITLE_QUOTE_NEWS': '{shortName} ({symbol}) Latest Stock News & Headlines - Yahoo Finance', 'META_TITLE_QUOTE_OPTIONS': '{shortName} ({symbol}) Options Chain - Yahoo Finance', 'META_TITLE_QUOTE_OPTIONS_INDIVIDUAL': '{symbol} Quote | {shortName} Stock - Yahoo Finance', 'META_TITLE_QUOTE_PERFORMANCE': '{shortName} ({symbol}) Performance History - Yahoo Finance', 'META_TITLE_QUOTE_PRESS-RELEASES': '{shortName} ({symbol}) Latest Press Releases & Corporate News - Yahoo Finance', 'META_TITLE_QUOTE_PRICE': '{symbol} {price} {change} {changePercent} : {shortName} - Yahoo Finance', 'META_TITLE_QUOTE_PROFILE': '{shortName} ({symbol}) Company Profile & Facts - Yahoo Finance', 'META_TITLE_QUOTE_PURCHASE-INFO': '{symbol} Purchase Info | Investment Information for {shortName} Stock - Yahoo Finance', 'META_TITLE_QUOTE_REPORTS': '{shortName} ({symbol}) Stock Research & Reports - Yahoo Finance', 'META_TITLE_QUOTE_RESEARCH_REPORTS': '{companyName} ({symbol}) Analyst Reports, Price Targets & Ratings', 'META_TITLE_QUOTE_RISK': '{shortName} ({symbol}) Risk - Yahoo Finance', 'META_TITLE_QUOTE_SUSTAINABILITY': '{shortName} ({symbol}) Environment, Social and Governance (ESG) Ratings - Yahoo Finance', 'META_TITLE_QUOTE_UNKNOWN': \"Requested symbol wasn't found\", 'META_TITLE_RECENT_QUOTES': 'My Recent Quotes | Stock Prices | Yahoo Finance', 'META_TITLE_SCREENERS': 'Stock Screeners - Yahoo Finance', 'META_TITLE_SCREENERS_ANALYST_RATINGS': 'Analyst Ratings Screener - Yahoo Finance', 'META_TITLE_SCREENERS_CRYPTOCURRENCY': 'Free Cryptocurrency Screener - Yahoo Finance', 'META_TITLE_SCREENERS_EQUITY': 'Free Stock Screener - Yahoo Finance', 'META_TITLE_SCREENERS_EQUITY_DAY_GAINERS': 'Top Stock Gainers Today - Yahoo Finance', 'META_TITLE_SCREENERS_EQUITY_DAY_LOSERS': 'Top Stock Losers Today - Yahoo Finance', 'META_TITLE_SCREENERS_EQUITY_MOST_ACTIVES': 'Most Active Stocks Today - Yahoo Finance', 'META_TITLE_SCREENERS_ETF': 'Free ETF Screener - Yahoo Finance', 'META_TITLE_SCREENERS_ETF_TOP_ETFS_US': 'Top ETFs Today - Yahoo Finance', 'META_TITLE_SCREENERS_FUTURE': 'Free Futures Screener - Yahoo Finance', 'META_TITLE_SCREENERS_INDEX': 'Free Stock Index Screener - Yahoo Finance', 'META_TITLE_SCREENERS_MUTUALFUND': 'Free Mutual Fund Screener - Yahoo Finance', 'META_TITLE_SCREENERS_MUTUALFUND_TOP_MUTUAL_FUNDS': 'Top Mutual Funds Today - Yahoo Finance', 'META_TITLE_SCREENERS_OPTION': 'Free Option Screener - Yahoo Finance', 'META_TITLE_SCREENERS_PREDEFINED': 'Top {title} List | Screener - Yahoo Finance', 'META_TITLE_SCREENERS_PREDEFINED_PLUS': '{title} List | Screener - Yahoo Finance', 'META_TITLE_TOPIC_autos': 'Autos - Yahoo Finance', 'META_TITLE_TOPIC_brexit': 'Brexit - Yahoo Finance', 'META_TITLE_TOPIC_careers': 'Careers - Yahoo Finance', 'META_TITLE_TOPIC_finalround': 'The Final Round - Yahoo Finance', 'META_TITLE_TOPIC_finance-viral': 'Finance Viral - Yahoo Finance', 'META_TITLE_TOPIC_goodlife': 'The Good Life - Yahoo Finance', 'META_TITLE_TOPIC_leisure-industries': 'Leisure Industries - Yahoo Finance', 'META_TITLE_TOPIC_lifestyle': 'Lifestyle - Yahoo Finance', 'META_TITLE_TOPIC_market-blogs': 'Market Blogs - Yahoo Finance', 'META_TITLE_TOPIC_marketmovers': 'Market Movers - Yahoo Finance', 'META_TITLE_TOPIC_middaymovers': 'Midday Movers - Yahoo Finance', 'META_TITLE_TOPIC_personal-finance-news': 'Personal Finance News - Yahoo Finance', 'META_TITLE_TOPIC_property': 'Property - Yahoo Finance', 'META_TITLE_TOPIC_real-estate': 'Real Estate - Yahoo Finance', 'META_TITLE_TOPIC_retirement': 'Retirement - Yahoo Finance', 'META_TITLE_TOPIC_save-money': 'Save Money - Yahoo Finance', 'META_TITLE_TOPIC_saving-spending': 'Saving & Spending - Yahoo Finance', 'META_TITLE_TOPIC_shoppen': 'Shoppen - Yahoo Finance', 'META_TITLE_TOPIC_small-business': 'Small Business - Yahoo Finance', 'META_TITLE_TOPIC_sportsbook': 'Sportsbook - Yahoo Finance', 'META_TITLE_TOPIC_technology': 'Technology - Yahoo Finance', 'META_TITLE_TOPIC_travel': 'Travel - Yahoo Finance', 'META_TITLE_TOPIC_trendingtickers': 'Trending Tickers - Yahoo Finance', 'META_TITLE_TOPIC_videos': 'Video - Yahoo Finance', 'META_TITLE_TOPIC_yahoo-originals': 'Yahoo Originals - Yahoo Finance', 'META_TITLE_VIDEOS': 'Business and Finance News Videos - Yahoo Finance', 'META_TITLE_WATCHLISTS': 'Curated Stock Watch Lists & Categories - Yahoo Finance', 'META_TITLE_WATCHLISTSTITLE': '{title} - Yahoo Finance', 'META_TITLE_WATCHLISTS_ACTIVIST_HEDGE_FUND_POSITIONS': 'Stocks with the Most Activist Hedge Fund Positions', 'META_TITLE_WATCHLISTS_AGING_BABY_BOOMERS': 'Stocks for Aging Baby Boomers', 'META_TITLE_WATCHLISTS_BIGGEST_EARNINGS_BEATS': 'Stocks with Biggest Earnings Beats', 'META_TITLE_WATCHLISTS_BIGGEST_EARNINGS_MISSES': 'Stocks with Biggest Earnings Misses', 'META_TITLE_WATCHLISTS_BRANDS_CONSUMERS_LOVE': 'Stocks of Well-Known Consumer Brands', 'META_TITLE_WATCHLISTS_CANNABIS_STOCKS': 'Cannabis, Marijuana, 420 Stocks', 'META_TITLE_WATCHLISTS_CROWDED_HEDGE_FUND_POSITIONS': 'Stocks with Highest Percentage of Hedge Fund Ownership', 'META_TITLE_WATCHLISTS_CROWDED_TECH_HEDGE_FUND_POSITIONS': 'Tech Stocks with Highest Percentage of Hedge Fund Ownership', 'META_TITLE_WATCHLISTS_DIVIDEND_GROWTH_MARKET_LEADERS': 'Stocks with Highest Dividend Growth', 'META_TITLE_WATCHLISTS_HEALTHY_LIVING': 'Health, Wellness & Fitness Stocks', 'META_TITLE_WATCHLISTS_LARGEST_52-WEEK_GAINS': 'Stocks with Largest 52-Week Gains', 'META_TITLE_WATCHLISTS_LARGEST_52-WEEK_LOSSES': 'Stocks with Largest 52-Week Losses', 'META_TITLE_WATCHLISTS_LEAST_VOLATILE_CRYPTOS': 'Cryptocurrencies with Lowest Volatility', 'META_TITLE_WATCHLISTS_LONG_HAUL_BUFFETT_BUYS': \"Stocks in Warren Buffett's Berkshire Hathaway\", 'META_TITLE_WATCHLISTS_MOST_ADDED_TO_WATCHLISTS': 'Stocks Most Added to Watchlists by Yahoo Finance Users', 'META_TITLE_WATCHLISTS_MOST_BOUGHT_BY_ACTIVIST_HEDGE_FUNDS': 'Stocks Most Bought by Activist Hedge Funds', 'META_TITLE_WATCHLISTS_MOST_BOUGHT_BY_HEDGE_FUNDS': 'Stocks Most Bought by Hedge Funds', 'META_TITLE_WATCHLISTS_MOST_FOLLOWED': 'Most Followed Stocks Watchlists', 'META_TITLE_WATCHLISTS_MOST_REMOVED_FROM_WATCHLISTS': 'Stocks Most Removed in Watchlists by Yahoo Finance Users', 'META_TITLE_WATCHLISTS_MOST_SOLD_BY_ACTIVIST_HEDGE_FUNDS': 'Stocks Most Sold by Activist Hedge Funds', 'META_TITLE_WATCHLISTS_MOST_SOLD_BY_HEDGE_FUNDS': 'Stocks Most Sold by Hedge Funds', 'META_TITLE_WATCHLISTS_MOST_VOLATILE_CRYPTOS': 'Cryptocurrencies with Highest Volatility', 'META_TITLE_WATCHLISTS_MOST_WATCHED_BY_YAHOO_FINANCE_USERS': 'Stocks Most Watched by Yahoo Finance Users', 'META_TITLE_WATCHLISTS_NEW_FAMILY_ECONOMY': 'New Family, Family Needs & Household Stocks', 'META_TITLE_WATCHLISTS_NEW_HEDGE_FUND_HOLDERS': 'Hedge Fund Newly Held Stocks', 'META_TITLE_WATCHLISTS_RECENTLY_ADDED': 'Recently Added Stocks Watchlists', 'META_TITLE_WATCHLISTS_RECENTLY_UPDATED': 'Recently Updated Stocks Watchlists', 'META_TITLE_WATCHLISTS_RECENT_52-WEEK_HIGHS': 'Stocks with Recent 52-Week Highs', 'META_TITLE_WATCHLISTS_RECENT_52-WEEK_LOWS': 'Stocks with Recent 52-Week Lows', 'META_TITLE_WATCHLISTS_SINFUL_STOCKS': 'Sin Stocks - Casinos, Tobacco, Alcohol & More', 'META_TITLE_WATCHLISTS_SMART_MONEY_STOCKS': 'Stocks Widely Held By Hedge Funds', 'META_TITLE_WATCHLISTS_STOCKS_FUELING_THE_INTERNET_OF_THINGS': 'Internet of Things Stocks', 'META_TITLE_WATCHLISTS_TECH_STOCKS_THAT_MOVE_THE_MARKET': 'Tech Stocks That Move The Market', 'META_TITLE_WATCHLISTS_THE_AUTONOMOUS_CAR': 'Stocks Involved in Self-Driving Cars', 'META_TITLE_WATCHLISTS_THE_BERKSHIRE_HATHAWAY_PORTFOLIO': 'Stocks in the Berkshire Hathaway Portfolio', 'META_TITLE_WATCHLISTS_THE_BIG_SHORTS': 'Stocks with Big Short Positions', 'META_TITLE_WATCHLISTS_THE_FIGHT_AGAINST_COVID19': 'Fight against Covid-19 (Coronavirus) Stocks', 'META_TITLE_WATCHLISTS_TODAYS_TOP_PERFORMERS': \"Today's Stocks Best Performing Sectors\", 'META_TITLE_WATCHLISTS_TODAYS_WORST_PERFORMERS': \"Today's Stocks Worst Performing Sectors\", 'META_TITLE_WATCHLISTS_TOP_CRYPTOS_BY_MARKET_CAP': 'Cryptocurrencies with Highest Market Cap', 'META_TITLE_WATCHLISTS_TOP_CRYPTOS_BY_TOKENS_OUTSTANDING': 'Cryptocurrencies With Highest Circulating Supply', 'META_TITLE_WATCHLISTS_TOP_CRYPTOS_BY_VOLUME_(ALL_CURRENCIES_24HR)': 'Cryptocurrencies with Highest Trading Volume', 'META_TITLE_WATCHLISTS_TOP_CRYPTO_BETS': 'Stocks of Companies Involved in Cryptocurrencies', 'META_TITLE_WATCHLISTS_WOMEN_AT_THE_HELM': 'Stocks of Companies Led by Women', 'MIDDAY_MOVERS_TITLE': 'Midday Movers', 'MILLION_SHORT': '{num}M', 'MINIMUM_PENSION_LIABILITIES': 'Minimum Pension Liabilities', 'MINORITY_INTEREST': 'Minority Interest', 'MINORITY_INTERESTS': 'Minority Interests', 'MIN_INIT_AIP_INVESTMENT': 'Min Initial Investment, AIP', 'MIN_INIT_INVESTMENT': 'Min Initial Investment', 'MIN_INIT_IRA_INVESTMENT': 'Min Initial Investment, IRA', 'MIN_SUBSEQ_AIP_INVESTMENT': 'Min Subsequent Investment, AIP', 'MIN_SUBSEQ_INVESTMENT': 'Min Subsequent Investment', 'MIN_SUBSEQ_IRA_INVESTMENT': 'Min Subsequent Investment, IRA', 'MISC_STOCKS_OPTIONS_WARRANTS': 'Misc. Stocks Options Warrants', 'MISSED': 'Missed', 'MISSING_REQUIRED_DATA': 'Missing required data', 'MOBILE_NOT_SUPPORT': 'Embedded webinar is not supported in mobile devices', 'MODERATE': 'Moderate', 'MODULE_UNDER_CONSTRUCTION': '{type} module is under construction', 'MONEY_CENTER_BANKS': 'Money Center Banks', 'MONEY_CENTER_BANKS_DESC': 'Money Center Banks Stocks', 'MONEY_MARKET_INVESTMENTS': 'Money Market Investments', 'MONTHLY': 'Monthly', 'MONTHLY_TOTAL_RETURNS': 'Monthly Total Returns', 'MOODYS_ANALYTICS': \"Moody's Analytics\", 'MORE_ABOUT': 'More about', 'MORE_DETAILS': 'More details', 'MORE_SYMBOLS': 'More Symbols', 'MORE_UPGRADES_AND_DOWNGRADES': 'More Upgrades & Downgrades', 'MORNINGSTAR_CATEGORY': 'Morningstar Category', 'MORNINGSTAR_CATEGORY_DESC': \"While the investment objective stated in a fund's prospectus may or may not reflect how the fund actually invests, the Morningstar category is assigned based on the underlying securities in each portfolio. Morningstar categories help investors and investment professionals make meaningful comparisons between funds. The categories make it easier to build well-diversified portfolios, assess potential risk, and identify top-performing funds. We place funds in a given category based on their portfolio statistics and compositions over the past three years. If the fund is new and has no portfolio history, we estimate where it will fall before giving it a more permanent category assignment. When necessary, we may change a category assignment based on recent changes to the portfolio.\", 'MORNINGSTAR_STYLE_BOX': 'Morningstar Style Box', 'MORNINGSTAR_STYLE_BOX_DESC': \"Yahoo partners with Morningstar a leading market research and investment data group to help investors rate and compare funds on Yahoo Finance. The Morningstar Category is shown next to the Morningstar Style Box which identifies a fund's investment focus, based on the underlying securities in the fund.\", 'MORNING_BRIEF': 'Morning Brief', 'MORNING_STAR_RATING': 'Morningstar Rating', 'MORNINGSTAR_RATING': 'Morningstar Rating', 'MORNING_STAR_RETURN_RATING': 'Morningstar Return Rating', 'MORNING_STAR_RISK_RATING': 'Morningstar Risk Rating', 'MORNINGSTAR_FIVE_STAR_STOCKS': 'Morningstar 5-Star Stocks', 'MORNINGSTAR_FIVE_STAR_STOCKS_DESC': 'A 5-star rating indicates that the stock is trading meaningfully below fair value with an exciting discount.', 'MORTGAGE_AND_CONSUMERLOANS': 'Mortgage & Consumer Loans', 'MORTGAGE_INVESTMENT': 'Mortgage Investment', 'MORTGAGE_INVESTMENT_DESC': 'Mortgage Investment Stocks', 'MORTGAGE_LOAN': 'Mortgage Loan', 'MOST_ACTIVES': 'Most Actives', 'MOST_ACTIVES_DESC': 'Stocks ordered in descending order by intraday trade volume.', 'MOST_INSTITUTIONALLY_BOUGHT_LARGE_CAP_STOCKS': 'Most Institutionally Bought Large Cap Stocks', 'MOST_INSTITUTIONALLY_HELD_LARGE_CAP_STOCKS': 'Most Institutionally Held Large Cap Stocks', 'MOST_INSTITUTIONALLY_SOLD_LARGE_CAP_STOCKS': 'Most Institutionally Sold Large Cap Stocks', 'MOST_RECENT_QUARTER': 'Most Recent Quarter', 'MOST_RECENT_TRANSACTION': 'Most Recent Transaction', 'MOST_SHORTED_STOCKS': 'Most Shorted Stocks', 'MOST_SHORTED_STOCKS_DESC': 'Stocks with the highest short interest positions ordered by short % of shares outstanding from Nasdaq and NYSE reports released every two weeks.', 'MOST_VISITED': 'Most Visited', 'MOTOR-Y-AUTOMOCION_TITLE': 'Motor and Automotive', 'MOVIE_PRODUCTION_THEATERS': 'Movie Production, Theaters', 'MOVIE_PRODUCTION_THEATERS_DESC': 'Movie Production, Theaters Stocks', 'MRQ': 'mrq', 'MS_BASIC_MATERIALS': 'Basic Materials', 'MS_CONSUMER_CYCLICAL': 'Consumer Cyclical', 'MS_FINANCIAL_SERVICES': 'Financial Services', 'MS_REAL_ESTATE': 'Real Estate', 'MS_CONSUMER_DEFENSIVE': 'Consumer Defensive', 'MS_HEALTHCARE': 'Healthcare', 'MS_UTILITIES': 'Utilities', 'MS_COMMUNICATION_SERVICES': 'Communication Services', 'MS_ENERGY': 'Energy', 'MS_INDUSTRIALS': 'Industrials', 'MS_TECHNOLOGY': 'Technology', 'MSG_ADD_TO_A_WATCHLIST': 'Add {company} to one or more watchlists:', 'MSG_ADD_TO_A_WATCHLIST_DONE': 'You have added {company} to \"{watchlist}\".', 'MSG_ADD_TO_A_WATCHLIST_ERROR': 'Could not add {company} to \"{watchlist}\". Please try again.', 'MSG_BACK_TO_FINANCE': 'Back to Yahoo Finance', 'MSG_BACK_TO_HOMEPAGE': 'Back to Yahoo Homepage', 'MSG_BROKER_CRED': 'Yahoo does not store your broker credentials.', 'MSG_BROKER_NOT_SUPPORT': \"Unfortunately we don't support this broker yet\", 'MSG_BROKER_NOT_SUPPORT_DES': 'We will let you know when this broker becomes available to link again', 'MSG_BROWSE_REPORTS': 'Browse available reports for other tickers via the Research tab', 'MSG_EMPTY_LIST': 'Your list is empty.', 'MSG_FB_TICKER_CHANGE': 'Meta Platforms, Inc. has changed its ticker symbol from FB to META. If you were following FB, that change is now reflected in your portfolio', 'MSG_EMPTY_PF': 'Your list is empty. Add symbols to get relevant news', 'MSG_HAS_BEEN_ADDED': '{symbol} has been added!', 'MSG_INSUFFICIENT_FILTER': 'Select at least one filter to find matching {type}', 'MSG_INVALID_DATE': 'Please enter a valid date.', 'MSG_INVALID_LIST': \"We're sorry, but we were unable to retrieve your list. Redirecting to Yahoo Finance Home in a few seconds.\", 'MSG_LINK_PF_FAILURE': \"We're unable to gather your latest holdings data\", 'MSG_LINK_PF_GATHERING': \"We're still gathering your holdings. Please check back in a few minutes\", 'MSG_LINK_PF_REFRESH': 'Account refresh required', 'MSG_LINK_PF_SUCCESS': 'Broker successfully linked', 'MSG_NO_ACTION_SENTIMENT_RESULTS': 'No portfolio changes data found.', 'MSG_NO_CAL_DATE_SEL': 'Please select a date to see results.', 'MSG_NO_COMMUNITY_SENTIMENT_RESULTS': 'No community conversion data found.', 'MSG_NO_DATA': 'We’re sorry, we weren’t able to find any data.', 'MSG_NO_DATA_HEATMAP': 'Heatmap View for this screener is temporarily unavailable.', 'MSG_NO_DATA_IN_PERIOD': 'No data available for selected period.', 'MSG_NO_LOOKUP_RESULTS': 'Please check your spelling. Try our suggested matches or see results in other tabs.', 'MSG_NO_PORTFOLIOS': 'Unable to load your portfolios', 'MSG_NO_REPORTS': 'No reports available for {symbol}', 'MSG_NO_RESULTS': \"We couldn't find any results.\", 'MSG_NO_SCREENER_CRITERIA': 'No filters selected. Add a few filters to get results', 'MSG_NO_SCREENER_DETAIL': 'Unable to load Screener', 'MSG_NO_SCREENER_FILTER': 'Unable to load Filtering Criteria', 'MSG_NO_SCREENER_IDEA_RESULTS': 'No investment ideas found with the selected filters', 'MSG_NO_SCREENER_REPORT_RESULTS': 'No reports found with the selected filters', 'MSG_NO_SCREENER_RESULTS': 'Unable to fetch Results', 'MSG_NO_SEARCH_RESULTS': \"No matching results for '{query}'\", 'MSG_NO_SEC_FILINGS': 'No SEC Filings found', 'MSG_NO_SYMBOLS': 'No symbols found', 'MSG_ONLY_US': 'Premium filters are only applicable to US Equities', 'MSG_REAUTHENTICATE_PF': 'You need to refresh/relogin using the button above.', 'MSG_REAUTHENTICATE_PF_WEBVIEW': 'Your holdings are out of date. Please refresh using the button on the Home tab', 'MSG_RELAX_FILTER': 'Get more matching stocks by relaxing your criteria', 'MSG_RELAX_RESEARCH_FILTER': 'Please update your filters to find matching research', 'MSG_RELOAD_PAGE': 'Please try reloading the page.', 'MSG_REPORTS_ERROR': 'Unable to load research reports', 'MSG_SELECT_A_WATCHLIST': 'Select a watchlist', 'MSG_SELECT_DATE': 'Select a Date', 'MSG_STRICT_FILTER': 'Your screening filters are too strict', 'MULTIMEDIA_GRAPHICS_SOFTWARE': 'Multimedia & Graphics Software', 'MULTIMEDIA_GRAPHICS_SOFTWARE_DESC': 'Multimedia & Graphics Software Stocks', 'MUSIC_VIDEO_STORES': 'Music & Video Stores', 'MUSIC_VIDEO_STORES_DESC': 'Music & Video Stores Stocks', 'MUTUAL': 'Mutual Fund', 'MUTUALFUND': 'Mutual Fund', 'MUTUALFUND_SCREENER': 'Mutual Fund Screener', 'MUTUALFUND_SCREENER_DES': 'Search for funds using historical performance, performance rating, and more', 'MUTUAL_FUNDS': 'Mutual Funds', 'MY_HOLDINGS': 'My Holdings', 'MY_PORTFOLIOS': 'My Portfolios', 'MY_WATCHLIST': 'My Watchlists', 'FOLLOWED_WATCHLIST': 'Followed Watchlists', 'MY_SAVED_SCREENERS': 'My Saved Screeners', 'N_DAYS_AGO': '{number}d ago', 'NAME': 'Name', 'NATURAL_GAS_FUEL_AND_OTHER': 'Natural Gas, Fuel & Other', 'NAV': 'NAV', 'NEAR_FAIR_VALUE': 'Near Fair Value', 'NEGATIVE_GOODWILL': 'Negative Goodwill', 'NETWORKING_COMMUNICATION_DEVICES': 'Networking & Communication Devices', 'NETWORKING_COMMUNICATION_DEVICES_DESC': 'Networking & Communication Devices Stocks', 'NETWORK_HS': 'Network H/S', 'NET_ASSETS': 'Net Assets', 'NET_BORROWINGS': 'Net Borrowings', 'NET_BUSINESS_PURCHASE_AND_SALE': 'Net Business Purchase And Sale', 'NET_CASH_FINANCING_ACTIVITIES': 'Net cash used privided by (used for) financing activities', 'NET_CASH_INVESTING_ACTIVITIES': 'Net cash used for investing activites', 'NET_CASH_OPERATING_ACTIVITIES': 'Net cash provided by operating activites', 'NET_CHANGE_IN_CASH': 'Net change in cash', 'NET_COMMON_STOCK_ISSUANCE': 'Net Common Stock Issuance', 'NET_DEBT': 'Net Debt', 'NET_FOREIGN_CURRENCY_EXCHANGE_GAIN_LOSS': 'Net Foreign Currency Exchange Gain Loss', 'NET_FOREIGN_EXCHANGE_GAIN_LOSS': 'Net Foreign Exchange Gain Loss', 'NET_INCOME': 'Net Income', 'NET_INCOME_APPLICABLE_TO_COMMON_SHARES': 'Net Income Applicable To Common Shares', 'NET_INCOME_AVAILABLE_TO_COMMON_SHAREHOLDERS': 'Net Income available to common shareholders', 'NET_INCOME_AVI_TO_COMMON': 'Net Income Avi to Common', 'NET_INCOME_COMMON_STOCKHOLDERS': 'Net Income Common Stockholders', 'NET_INCOME_CONTINUOUS_OPERATIONS': 'Net Income Continuous Operations', 'NET_INCOME_DISCONTINUOUS_OPERATIONS': 'Net Income Discontinuous Operations', 'NET_INCOME_EXTRAORDINARY': 'Net Income Extraordinary', 'NET_INCOME_FROM_CONTINUING_AND_DISCONTINUED_OPERATION': 'Net Income from Continuing & Discontinued Operation', 'NET_INCOME_FROM_CONTINUING_OPERATIONS': 'Net Income from Continuing Operations', 'NET_INCOME_FROM_CONTINUING_OPERATION_NET_MINORITY_INTEREST': 'Net Income from Continuing Operation Net Minority Interest', 'NET_INCOME_FROM_CONTINUING_OPS': 'Net Income From Continuing Ops', 'NET_INCOME_FROM_TAX_LOSS_CARRYFORWARD': 'Net Income from Tax Loss Carryforward', 'NET_INCOME_INCLUDING_NONCONTROLLING_INTERESTS': 'Net Income Including Non-Controlling Interests', 'NET_INCOME_TITLE': 'Net Income', 'NET_INSTITUTIONAL_PURCHASES_PRIOR_LATEST_QUARTER': 'Net Institutional Purchases Prior Quarter to Latest Quarter', 'NET_INTANGIBLES_PURCHASE_AND_SALE': 'Net Intangibles Purchase And Sale', 'NET_INTEREST_INCOME': 'Net Interest Income', 'NET_INVESTMENT_INCOME': 'Net Investment Income', 'NET_INVESTMENT_PROPERTIES_PURCHASE_AND_SALE': 'Net Investment Properties Purchase And Sale', 'NET_INVESTMENT_PURCHASE_AND_SALE': 'Net Investment Purchase And Sale', 'NET_ISSUANCE_PAYMENTS_OF_DEBT': 'Net Issuance Payments of Debt', 'NET_LOAN': 'Net Loan', 'NET_LONG_TERM_DEBT_ISSUANCE': 'Net Long Term Debt Issuance', 'NET_MARGIN': 'Net Margin', 'NET_NON_OPERATING_INTEREST_INCOME_EXPENSE': 'Net Non Operating Interest Income Expense', 'NET_OCCUPANCY_EXPENSE': 'Net Occupancy Expense', 'NET_OTHER_FINANCING_CHARGES': 'Net Other Financing Charges', 'NET_OTHER_INVESTING_CHANGES': 'Net Other Investing Changes', 'NET_POLICYHOLDER_BENEFITS_AND_CLAIMS': 'Net Policyholder Benefits And Claims', 'NET_PPE': 'Net PPE', 'NET_PPE_PURCHASE_AND_SALE': 'Net PPE Purchase And Sale', 'NET_PREFERRED_STOCK_ISSUANCE': 'Net Preferred Stock Issuance', 'NET_PREMIUMS_WRITTEN': 'Net Premiums Written', 'NET_PROCEEDS_PAYMENT_FOR_LOAN': 'Net Proceeds Payment for Loan', 'NET_PROPERTY_PLANT_AND_EQUIPMENT': 'Net property, plant and equipment', 'NET_REALIZED_GAIN_LOSS_ON_INVESTMENTS': 'Net Realized Gain Loss on Investments', 'NET_RECEIVABLES': 'Net Receivables', 'NET_SHARES_PURCHASED_SOLD': 'Net Shares Purchased (Sold)', 'NET_SHORT_TERM_DEBT_ISSUANCE': 'Net Short Term Debt Issuance', 'NET_TANGIBLE_ASSETS': 'Net Tangible Assets', 'NET_UTILITY_PLANT': 'Net Utility Plant', 'NEUTRAL': 'Neutral', 'NEW': 'NEW', 'NEW_PORTFOLIO_NAME': 'New Portfolio Name', 'NEWS': 'News', 'NEWS_TITLE': 'Latest Financial and Business News', 'NEW_HIGH': 'Price Alert', 'NEW_LOW': 'Price Alert', 'NEW_PORTFOLIO': 'New Portfolio', 'NEW_SCREENER': 'Create New Screener', 'NEW_VIEW': 'New View', 'NEW_WATCHLIST': 'New Watchlist', 'NEW_ZEALAND': 'New Zealand', 'NEXT': 'Next', 'NEXT_5_YEARS': 'Next 5 Years (per annum)', 'NEXT_QTR': 'Next Qtr.', 'NEXT_YEAR': 'Next Year', 'NO': 'No', 'NO_SHARES': 'No shares', 'NONE': 'None', 'NONMETALLIC_MINERAL_MINING': 'Nonmetallic Mineral Mining', 'NONMETALLIC_MINERAL_MINING_DESC': 'Nonmetallic Mineral Mining Stocks', 'NON_CURRENT_ACCOUNTS_RECEIVABLE': 'Non Current Accounts Receivable', 'NON_CURRENT_ACCRUED_EXPENSES': 'Non Current Accrued Expenses', 'NON_CURRENT_ASSETS': 'Non-current assets', 'NON_CURRENT_DEFERRED_ASSETS': 'Non Current Deferred Assets', 'NON_CURRENT_DEFERRED_LIABILITIES': 'Non Current Deferred Liabilities', 'NON_CURRENT_DEFERRED_REVENUE': 'Non Current Deferred Revenue', 'NON_CURRENT_DEFERRED_TAXES_ASSETS': 'Non Current Deferred Taxes Assets', 'NON_CURRENT_DEFERRED_TAXES_LIABILITIES': 'Non Current Deferred Taxes Liabilities', 'NON_CURRENT_LIABILITIES': 'Non-current liabilities', 'NON_CURRENT_NOTE_RECEIVABLES': 'Non Current Note Receivables', 'NON_CURRENT_PENSION_AND_OTHER_POSTRETIREMENT_BENEFIT_PLANS': 'Non Current Pension And Other Post-Retirement Benefit Plans', 'NON_CURRENT_PREPAID_ASSETS': 'Non Current Prepaid Assets', 'NON_INTEREST_BEARING_DEPOSITS': 'Non Interest Bearing Deposits', 'NON_INTEREST_EXPENSE': 'Non Interest Expense', 'NON_INTEREST_INCOME': 'Non Interest Income', 'NON_RECURRING': 'Non Recurring', 'NON_RECURRING_EVENTS': 'Non-recurring Events', 'NORMALIZED_BASIC_EPS': 'Normalized Basic EPS', 'NORMALIZED_DILUTED_EPS': 'Normalized Diluted EPS', 'NORMALIZED_EBITDA': 'Normalized EBITDA', 'NORMALIZED_INCOME': 'Normalized Income', 'NOTES_RECEIVABLE': 'Notes Receivable', 'NOTICE_INSIDER_ROSTER': '*Insider roster data is derived solely from the last 24 months of Form 3 & Form 4 SEC filings.', 'NOTICE_VICKER_INDEX': \"Vicker's Insider Sentiment index provides insights into company officers and directors trading in their own stock.\", 'NOTIFICATIONS': 'Notifications', 'NOTIFY_ME': 'Notify me', 'NOT_FOUND': 'Not Found', 'NO_ABOUT_COMPANY': 'We have no additional information for this company', 'NO_CAPITAL_GAIN': 'No Capital Gains', 'NO_DATA': '{type} data is not available', 'NO_DIVIDENDS': 'No Dividends', 'NO_GRADE': 'No grade available at this time.', 'NO_NOTIFICATION_DATA': 'Notification data is not available', 'NO_OF_ANALYSTS': 'No. of Analysts', 'NO_SPLITS': 'No Split', 'NO_THANKS': 'No thanks', 'NO_THANKS_COMMA': 'No, thanks', 'NUMBER_RANGE': '{0} - {1}', 'NUM_EVENTS': '{num} events', 'NUM_M': '{num}M', 'NUM_SELECTED': '{num} selected', 'NUM_W': '{num}W', 'NUM_YEARS_DOWN': 'Number of Years Down', 'NUM_YEARS_UP': 'Number of Years Up', 'OCCUPANCY_AND_EQUIPMENT': 'Occupancy And Equipment', 'OFF': 'Off', 'OFFICE_SUPPLIES': 'Office Supplies', 'OFFICE_SUPPLIES_DESC': 'Office Supplies Stocks', 'OFFICIAL_SITE': 'Official Site', 'OIL_GAS_DRILLING_EXPLORATION': 'Oil & Gas Drilling & Exploration', 'OIL_GAS_DRILLING_EXPLORATION_DESC': 'Oil & Gas Drilling & Exploration Stocks', 'OIL_GAS_EQUIPMENT_SERVICES': 'Oil & Gas Equipment & Services', 'OIL_GAS_EQUIPMENT_SERVICES_DESC': 'Oil & Gas Equipment & Services Stocks', 'OIL_GAS_PIPELINES': 'Oil & Gas Pipelines', 'OIL_GAS_PIPELINES_DESC': 'Oil & Gas Pipelines Stocks', 'OIL_GAS_REFINING_MARKETING': 'Oil & Gas Refining & Marketing', 'OIL_GAS_REFINING_MARKETING_DESC': 'Oil & Gas Refining & Marketing Stocks', 'OKAY': 'Okay', 'OLDER': 'Older', 'ON': 'On', 'ONE_DAY_PERCENT_CHANGE': '1 Day % Change', 'ONE_MONTH': '1-Month', 'ONE_TIME': 'One time', 'ONE_YEAR': '1-Year', 'ONE_YEAR_DTR': '1-Year Daily Total Return', 'ONE_YEAR_EPS_GROWTH': 'EPS Growth(1Y)', 'ONE_YEAR_TARGET_PRICE': '1y Target Est', 'OPEN': 'Open', 'OPEN_INTERACTIVE_CHART': 'Interactive chart', 'OPEN_INTEREST': 'Open Interest', 'OPERATING_ACTIVITIES_CASHFLOWS_PROVIDED': 'Operating Activities, Cash Flows Provided By or Used In', 'OPERATING_CASH_FLOW': 'Operating Cash Flow', 'OPERATING_EXPENSE': 'Operating Expense', 'OPERATING_EXPENSES': 'Operating Expenses', 'OPERATING_GAINS_LOSSES': 'Operating Gains Losses', 'OPERATING_INCOME': 'Operating Income', 'OPERATING_INCOME_LOSS': 'Operating Income or Loss', 'OPERATING_MARGIN': 'Operating Margin', 'OPERATING_REVENUE': 'Operating Revenue', 'OPERATIONS': 'Operations', 'OPERATION_AND_MAINTENANCE': 'Operation & Maintenance', 'OPTIONS': 'Options', 'OPTIONS_HIGHEST_IMPLIED_VOLATALITY_TITLE': 'Options: Highest Implied Volatility', 'OPTIONS_HIGHEST_OPEN_INTEREST_TITLE': 'Options: Highest OI', 'OPTIONS_TITLE': 'Most Traded Options', 'OPTION_CONTRACT_CALL': 'Calls', 'OPTION_CONTRACT_IN_THE_MONEY': 'In The Money', 'OPTION_CONTRACT_LIST_DISPLAY': 'List', 'OPTION_CONTRACT_MINI_DISPLAY': 'Mini', 'OPTION_CONTRACT_PUT': 'Puts', 'OPTION_CONTRACT_REGULAR_DISPLAY': 'Regular', 'OPTION_CONTRACT_STRADDLE_DISPLAY': 'Straddle', 'OR': 'or', 'ORDER_HISTORY': 'Order History', 'ORDINARY_SHARES_NUMBER': 'Ordinary Shares Number', 'OTD_IMPLIED_VOLATILITY': 'Implied Volatility', 'OTHERS': 'Others', 'OTHERUNDER_PREFERRED_STOCK_DIVIDEND': 'Otherunder Preferred Stock Dividend', 'OTHER_ASSETS': 'Other Assets', 'OTHER_CAPITAL_STOCK': 'Other Capital Stock', 'OTHER_CASHFLOWS_FROM_FINANCING_ACT': 'Other Cash Flows from Financing Activities', 'OTHER_CASHFLOWS_FROM_INVESTING_ACT': 'Other Cash flows from Investing Activities', 'OTHER_CASH_ADJUSTMENT_INSIDE_CHANGEIN_CASH': 'Other Cash Adjustment Inside Change in Cash', 'OTHER_CASH_ADJUSTMENT_OUTSIDE_CHANGEIN_CASH': 'Other Cash Adjustment Outside Change in Cash', 'OTHER_CASH_PAYMENTSFROM_OPERATING_ACTIVITIES': 'Other Cash Payments from Operating Activities', 'OTHER_CASH_RECEIPTSFROM_OPERATING_ACTIVITIES': 'Other Cash Receipts from Operating Activities', 'OTHER_COSTOF_REVENUE': 'Other Cost of Revenue', 'OTHER_CURRENT_ASSETS': 'Other Current Assets', 'OTHER_CURRENT_BORROWINGS': 'Other Current Borrowings', 'OTHER_CURRENT_LIABILITIES': 'Other Current Liabilities', 'OTHER_CUSTOMER_SERVICES': 'Other Customer Services', 'OTHER_EQUITY_ADJUSTMENTS': 'Other Equity Adjustments', 'OTHER_EQUITY_INTEREST': 'Other Equity Interest', 'OTHER_FINANCING_ACTIVITIES': 'Other financing activites', 'OTHER_GAND_A': 'Other G and A', 'OTHER_INCOME_EXPENSE': 'Other Income Expense', 'OTHER_INTANGIBLE_ASSETS': 'Other Intangible Assets', 'OTHER_INTEREST_EXPENSE': 'Other Interest Expense', 'OTHER_INTEREST_INCOME': 'Other Interest Income', 'OTHER_INVENTORIES': 'Other Inventories', 'OTHER_INVESTED_ASSETS': 'Other Invested Assets', 'OTHER_INVESTING_ACTIVITIES': 'Other investing activites', 'OTHER_INVESTMENTS': 'Other Investments', 'OTHER_ITEMS': 'Other Items', 'OTHER_LIABILITIES': 'Other Liabilities', 'OTHER_LOAN_ASSETS': 'Other Loan Assets', 'OTHER_LONG_TERM_ASSETS': 'Other long-term assets', 'OTHER_LONG_TERM_LIABILITIES': 'Other long-term liabilities', 'OTHER_NON_CASH_ITEMS': 'Other non-cash items', 'OTHER_NON_CURRENT_ASSETS': 'Other Non Current Assets', 'OTHER_NON_CURRENT_LIABILITIES': 'Other Non Current Liabilities', 'OTHER_NON_INTEREST_EXPENSE': 'Other Non Interest Expense', 'OTHER_NON_INTEREST_INCOME': 'Other Non Interest Income', 'OTHER_NON_OPERATING_INCOME_EXPENSES': 'Other Non Operating Income Expenses', 'OTHER_OPERATING_EXPENSES': 'Other Operating Expenses', 'OTHER_PAYABLE': 'Other Payable', 'OTHER_PROPERTIES': 'Other Properties', 'OTHER_REAL_ESTATE_OWNED': 'Other Real Estate Owned', 'OTHER_RECEIVABLES': 'Other Receivables', 'OTHER_SHORT_TERM_INVESTMENTS': 'Other Short Term Investments', 'OTHER_SPECIAL_CHARGES': 'Other Special Charges', 'OTHER_STOCKHOLDER_EQUITY': 'Other Stockholder Equity', 'OTHER_TAXES': 'Other Taxes', 'OTHER_TRENDING_TICKERS': 'Other Trending Tickers', 'OTHER_UNDERWRITING_EXPENSES_PAID': 'Other Underwriting Expenses Paid', 'OTHER_WORKING_CAPITAL': 'Other working capital', 'OUTLOOK': 'Outlook', 'OUTPERFORM': 'Outperform', 'OVERVALUED': 'Overvalued', 'OVERALL_GRADE': 'Overall grade', 'OVERALL_INNOVATION_SCORE': 'Overall Innovation Score', 'OVERALL_PORTFOLIO_COMPOSITION': 'Overall Portfolio Composition (%)', 'OVERVIEW': 'Overview', 'OWNERSHIP_BREAKDOWN': 'Breakdown', 'OWNERSHIP_DIRECT_HOLDERS': 'Direct Holders (Forms 3 and 4)', 'OWNERSHIP_INSIDERS_TRANSACTIONS': 'Insider Transactions Reported - Last Two Years', 'OWNERSHIP_MAJOR_HOLDERS': 'Major Holders', 'OWNERSHIP_NUMBER_INSTITUION_SHARES': 'Number of Institutions Holding Shares', 'OWNERSHIP_PERCENT_FLOAT_INSTITUTIONS': '% of Float Held by Institutions', 'OWNERSHIP_PERCENT_SHARES_INSIDERS': '% of Shares Held by All Insider', 'OWNERSHIP_PERCENT_SHARES_INSTITUTIONS': '% of Shares Held by Institutions', 'OWNERSHIP_TOP_INSTITUTION_TITLE': 'Top Institutional Holders', 'OWNERSHIP_TOP_MUTUALFUND_TITLE': 'Top Mutual Fund Holders', 'PACKAGING_CONTAINERS': 'Packaging & Containers', 'PACKAGING_CONTAINERS_DESC': 'Packaging & Containers Stocks', 'PAGE_OF': 'Page {first} of {last}', 'PAPER_PAPER_PRODUCTS': 'Paper & Paper Products', 'PAPER_PAPER_PRODUCTS_DESC': 'Paper & Paper Products Stocks', 'PARAMETERS': 'Parameters', 'PAST_5_YEARS': 'Past 5 Years (per annum)', 'PAST_QUARTERLY_RETURNS': 'Past Quarterly Returns (%)', 'PATTERN_BULLISH': 'Bullish pattern', 'PATTERN_BEARISH': 'Bearish pattern', 'PATTERN_SENTIMENT_MSG_N': 'Neutral pattern', 'PAY': 'Pay', 'PAYABLES': 'Payables', 'PAYABLES_AND_ACCRUED_EXPENSES': 'Payables And Accrued Expenses', 'PAYMENTSON_BEHALFOF_EMPLOYEES': 'Payments on Behalf of Employees', 'PAYMENTSTO_SUPPLIERSFOR_GOODSAND_SERVICES': 'Payments to Suppliers for Goods & Services', 'PAYMENT_FOR_LOANS': 'Payment for Loans', 'PAYOUT_RATIO': 'Payout Ratio', 'PEERS': 'Peers', 'PENSIONAND_OTHER_POST_RETIREMENT_BENEFIT_PLANS_CURRENT': 'Pension & Other Post Retirement Benefit Plans Current', 'PENSION_AND_EMPLOYEE_BENEFIT_EXPENSE': 'Pension And Employee Benefit Expense', 'PEOPLE_ALSO_WATCH': 'People Also Watch', 'PERCENTAGE': 'Percentage', 'PERCENTILE_ND': '{value}nd percentile', 'PERCENTILE_RD': '{value}rd percentile', 'PERCENTILE_ST': '{value}st percentile', 'PERCENTILE_TH': '{value}th percentile', 'PERCENT_ASSETS': '% Assets', 'PERCENT_CHANGE': '% Change', 'PERCENT_CHANGE_IN_INSTITUTIONAL_SHARES_HELD': '% Change in Institutional Shares Held', 'PERCENT_HELD_BY_INSIDERS': '% Held by Insiders', 'PERCENT_HELD_BY_INSTITUTIONS': '% Held by Institutions', 'PERCENT_NET_SHARES_PURCHASED_SOLD': '% Net Shares Purchased (Sold)', 'PERCENT_OUT': '% Out', 'PERFORM': 'perform', 'PERFORMANCE': 'Performance', 'PERFORMANCE_AND_RISK': 'Performance & Risk', 'PERFORMANCE_OVERVIEW': 'Performance Overview', 'PERIOD': 'Period', 'PERIOD_ENDING': 'Period Ending', 'PERIOD_NOTICE': 'Data generated based on selected period from today', 'PERSONAL_COMPUTERS': 'Personal Computers', 'PERSONAL_COMPUTERS_DESC': 'Personal Computers Stocks', 'PERSONAL_FINANCE_NEWS_TITLE': 'Personal Finance News', 'PERSONAL_PRODUCTS': 'Personal Products', 'PERSONAL_PRODUCTS_DESC': 'Personal Products Stocks', 'PERSONAL_SERVICES': 'Personal Services', 'PERSONAL_SERVICES_DESC': 'Personal Services Stocks', 'PETROLIO-E-GAS-NATURALE_TITLE': 'Oil and Natural Gas', 'PE_RATIO': 'PE Ratio (TTM)', 'PHONE': 'Phone', 'PHOTOGRAPHIC_EQUIPMENT_SUPPLIES': 'Photographic Equipment & Supplies', 'PHOTOGRAPHIC_EQUIPMENT_SUPPLIES_DESC': 'Photographic Equipment & Supplies Stocks', 'PILLAR_SCORES': 'The pillar scores are Audit: {audit}; Board: {board}; Shareholder Rights: {shareRight}; Compensation: {comp}.', 'PINTEREST': 'Pinterest', 'PINTEREST_SHARE': 'Pin it', 'PLEASE_CLICK_HERE_TO': 'Please click here to do so.', 'PLUS': 'Plus', 'POLICYHOLDER_BENEFITS_CEDED': 'Policyholder Benefits Ceded', 'POLICYHOLDER_BENEFITS_GROSS': 'Policyholder Benefits Gross', 'POLICYHOLDER_DEPOSIT_INVESTMENT_RECEIVED': 'Policyholder Deposit Investment Received', 'POLICYHOLDER_DIVIDENDS': 'Policyholder Dividends', 'POLICYHOLDER_FUNDS': 'Policyholder Funds', 'POLICYHOLDER_INTEREST': 'Policyholder Interest', 'POLICY_ACQUISITION_EXPENSE': 'Policy Acquisition Expense', 'POLICY_HOLDERS_LIABILITIES': 'Policy Holders Liabilities', 'POLICY_LOANS': 'Policy Loans', 'POLLUTION_TREATMENT_CONTROLS': 'Pollution & Treatment Controls', 'POLLUTION_TREATMENT_CONTROLS_DESC': 'Pollution & Treatment Controls Stocks', 'POLL_QA': 'Poll and Q&A', 'POPULAR_FILTERS': 'Popular Filters', 'POPULAR_WATCHLISTS': 'Popular Watchlists', 'PORTFOLIO_ACTION_DESC': 'Look at what users are adding, deleting, and moving around in their portfolios.', 'PORTFOLIO_ACTION_TITLE': 'Portfolio Changes', 'PORTFOLIO_ANCHORS': 'Portfolio Anchors', 'PORTFOLIO_ANCHORS_DESC': \"Funds with Performance Rating of 4 & 5 and top-half returns that could serve as a rock-solid core of an investor's portfolio\", 'PORTFOLIO_CASH_SETTINGS': 'Portfolio Cash Settings', 'PORTFOLIO_CURRENCY': 'Portfolio Currency', 'PORTFOLIO_DAILY_SUMMARY': 'Portfolio Summary', 'PORTFOLIO_DETAILS': 'Portfolio Details', 'PORTFOLIO_HOLDINGS_BASIC_DESCRIPTION': 'Existing portfolio experience, with only support to input Buy.', 'PORTFOLIO_HOLDINGS_BETA_DESCRIPTION': 'Our new and enhanced portfolio version with support for Buy, Sell, Short, Buy to Cover Transactions and much more.', 'PORTFOLIO_HOLDINGS_BETA_TITLE_CREATE': 'Portfolio 2.0 with Transactions', 'PORTFOLIO_HOLDINGS_BETA_TITLE_PAGE0': 'Introducing Portfolio 2.0', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE0': 'All new features to help you better manage your portfolio holdings', 'PORTFOLIO_HOLDINGS_BETA_TITLE_PAGE1': \"What's new?\", 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1': 'All the tools you need to take your portfolio management to the next level.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1_CASH': 'Manage cash like any other asset.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1_DIVIDENDS': 'Automated dividend tracking and management.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1_LOTS': 'Automatic lot management using FIFO (First in First Out) methodology.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1_TRANSACTIONS': 'Buy, Sell, Sell Short, and Buy to Cover transactions supported.', 'PORTFOLIO_HOLDINGS_BETA_TITLE_PAGE2': 'Setup your portfolio', 'PORTFOLIO_HOLDINGS_BETA_EDUCATION_PAGE2': 'Your portfolio {pfName} will be cloned as part of this Beta trial. This allows you to try the new transactions features without disrupting your primary portfolio.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE2_CASH': 'Toggle on to enable automatic cash management - you can continue to manage your cash holdings manually if you prefer', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE2_HOLDINGS': \"Enabling will add this portfolio's value to the total holdings amount\", 'PORTFOLIO_HOLDINGS_BETA_WARNING_PAGE2': 'Please note that changes made to this cloned portfolio will not have any impact on your exisiting portfolio.', 'PORTFOLIO_NAME': 'Portfolio Name', 'PORTFOLIO_NEWS': 'Portfolio News', 'PORTFOLIO_SHARING_TEXT': 'We will only share the company tickers. Holdings information will not be included.', 'PORTFOLIO_STATISTICS': 'Portfolio Statistics', 'PORTFOLIO_TOTAL_HOLDINGS_SETTINGS': 'Portfolio Total Holdings Settings', 'PORTFOLIO_WELCOME_MESSAGE': 'Welcome to My Portfolio - Link your brokers or add lots', 'PORTFOLIO_WELCOME_MESSAGE_NONTRADE': 'Welcome to Yahoo Finance Portfolios', 'PORTFOLIO_WELCOME_SUBMSG': 'Track your overall performance in one place. Add portfolio holdings manually by entering lots or by linking your online brokerage account.', 'PORTFOLIO_WELCOME_SUBMSG_NONTRADE': 'Track your performance with real-time data and news related to your symbols.', 'PORTFOLIO_WELCOME_SUBSUBMSG': 'Manage your holdings efficiently and create custom views using over 60 data points.', 'POST': 'Post', 'POSTINGS': 'Postings', 'POST_MARKET_NOTICE': 'After hours:', 'PRE': 'Pre', 'PREDEFINED_SCREENER': 'Screener', 'PREFERRED': 'Preferred', 'PREFERRED_SECURITIES_OUTSIDE_STOCK_EQUITY': 'Preferred Securities Outside Stock Equity', 'PREFERRED_SHARES_NUMBER': 'Preferred Shares Number', 'PREFERRED_STOCK': 'Preferred Stock', 'PREFERRED_STOCK_DIVIDENDS': 'Preferred Stock Dividends', 'PREFERRED_STOCK_DIVIDEND_PAID': 'Preferred Stock Dividend Paid', 'PREFERRED_STOCK_EQUITY': 'Preferred Stock Equity', 'PREFERRED_STOCK_ISSUANCE': 'Preferred Stock Issuance', 'PREFERRED_STOCK_OTHER_ADJ': 'Preferred Stock And Other Adjustments', 'PREFERRED_STOCK_PAYMENTS': 'Preferred Stock Payments', 'PREMIUM': 'Premium', 'PREMIUM_CLOSE_PRICE': 'Close price', 'PREMIUM_DAILY': 'DAILY', 'PREMIUM_LONG_TERM': 'Long Term', 'PREMIUM_MID_TERM': 'Mid Term', 'PREMIUM_RECEIVED': 'Premium Received', 'PREMIUM_SHORT_TERM': 'Short Term', 'PREMIUM_TECH_EVENTS_FOR': '{num} Active Technical Events in {term}', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST': 'ADDED TO WATCHLIST', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_1': 'You will now see', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_2': ' more {ticker} news ', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_3': 'in your Yahoo feed', 'PREMIUM_UPSELL_CHART_PATTERN': 'Pattern', 'PREMIUM_UPSELL_CTA': 'Start your free trial today. >>', 'PREMIUM_UPSELL_DIFF_D': '{days}d', 'PREMIUM_UPSELL_DIFF_DAYS_AGO': '{days} days ago', 'PREMIUM_UPSELL_DIFF_ONE_DAY_AGO': '1 day ago', 'PREMIUM_UPSELL_DIFF_ONE_MONTH_AGO': '1 month ago', 'PREMIUM_UPSELL_NEW_FEATURE': 'NEW FEATURE', 'PREMIUM_UPSELL_NEW_FEATURE_LOGGED_IN': 'Stay up-to-date with news and stock price for {ticker}', 'PREMIUM_UPSELL_NEW_FEATURE_LOGGED_OUT': 'Sign in to keep track of {ticker} news and performance', 'PREMIUM_UPSELL_PATTERN_DETAIL': 'View bullish/bearish technical chart patterns with one click.', 'PREMIUM_UPSELL_PATTERN_TITLE': '{type} Pattern Detected', 'PREMIUM_UPSELL_PERFORMANCE_DETAIL': 'Conduct technical analysis for the short, mid, or long term.', 'PREMIUM_UPSELL_PERFORMANCE_TITLE': 'Performance Outlook', 'PREMIUM_UPSELL_RECOMMENDATION_TITLE': 'Recommendation rating', 'PREMIUM_UPSELL_REPORTS_DETAIL': 'Analyst reports and guidance from Morningstar and Argus.', 'PREMIUM_UPSELL_REPORTS_TITLE': 'Recent Research', 'PREMIUM_UPSELL_SIG_DEVS_DETAIL': 'Plot company events on charts to view impact on performance.', 'PREMIUM_UPSELL_SIG_DEVS_TITLE': 'Significant Event Occurred', 'PREMIUM_UPSELL_SIG_DEVS_TITLE_SHORT': 'Significant Event', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_CTA': 'Research report available', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_1': 'You’ve read ', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_2': '{usedCount} of your {maxCount} ', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_3': 'free research reports this quarter', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_HEADER': 'Unlock premium independent research on this stock.', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_CTA': 'Upgrade to read report', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_TOOLTIP_DETAIL': 'You’ve read all your free reports this quarter.', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_TOOLTIP_HEADER': 'Get unlimited reports with Yahoo Finance Plus.', 'PREMIUM_UPSELL_VALUATION_DETAIL': 'Determine the fair value of any stock with Premium.', 'PREMIUM_UPSELL_VALUATION_TITLE': 'Fair Value Estimate', 'PREMIUM_UPSELL_FEATURED_IN_TITLE': 'Featured in', 'PREMIUM_UPSELL_FEATURED_IN_PUBLISHER': 'Publisher', 'PREMIUM_UPSELL_FEATURED_IN_DAYCHNG': 'Day Change', 'PREMIUM_UPSELL_FEATURED_IN_FOLLOWERS': 'Followers', 'PREMIUM_WEEKLY': 'WEEKLY', 'PREMIUM_WHAT_IT_MEANS': 'What It Means', 'PREPAID_ASSETS': 'Prepaid Assets', 'PRESENTED_BY': 'Presented By', 'PRETAX_INCOME': 'Pretax Income', 'PREV': 'Prev', 'PREVIEW': 'Preview', 'PREV_CLOSE': 'Previous Close', 'PREV_PRESIDENTS': 'Compared to previous presidents...', 'PREV_SETTLEMENT_DATE': 'Pre. Settlement', 'PRE_MARKET_NOTICE': 'Pre-Market:', 'PRICE': 'Price', 'PRICE_ALERT_DOWN': 'Price Alert', 'PRICE_ALERT_UP': 'Price Alert', 'PRICE_CHANGE': 'Price Change', 'PRICE_DAY_RANGE': 'Price day range for {symbol}', 'PRICE_DETAILS': 'Price details', 'PRICE_TARGET': 'Price Target', 'PRICE_TARGET_LOWERCASE': 'Price target', 'PRICE_TO_BOOK': 'Price/Book', 'PRICE_TO_CASHFLOW': 'Price/Cashflow', 'PRICE_TO_EARNINGS': 'Price/Earnings', 'PRICE_TO_SALES': 'Price/Sales', 'PRICINGS': 'Pricings', 'PRINT': 'Print', 'PRINTED_CIRCUIT_BOARDS': 'Printed Circuit Boards', 'PRINTED_CIRCUIT_BOARDS_DESC': 'Printed Circuit Boards Stocks', 'PRIVACY_POLICY': 'Privacy Policy', 'PRIVATE_COMPANY': 'Private Company', 'PROCEEDS': 'Proceeds', 'PROCEEDS_FROM_LOANS': 'Proceeds from Loans', 'PROCEEDS_FROM_STOCK_OPTION_EXERCISED': 'Proceeds from Stock Option Exercised', 'PROCEEDS_PAYMENT_FEDERAL_FUNDS_SOLD_AND_SECURITIES_PURCHASED_UNDER_AGREEMENT_TO_RESELL': 'Proceeds Payment Federal Funds Sold And Securities Purchased Under Agreement To Resell', 'PROCEEDS_PAYMENT_IN_INTEREST_BEARING_DEPOSITS_IN_BANK': 'Proceeds Payment in Interest Bearing Deposits in Bank', 'PROCESSED_PACKAGED_GOODS': 'Processed & Packaged Goods', 'PROCESSED_PACKAGED_GOODS_DESC': 'Processed & Packaged Goods Stocks', 'PROCESSING_SYSTEMS_PRODUCTS': 'Processing Systems & Products', 'PROCESSING_SYSTEMS_PRODUCTS_DESC': 'Processing Systems & Products Stocks', 'PROFESSIONAL_EXPENSE_AND_CONTRACT_SERVICES_EXPENSE': 'Professional Expense And Contract Services Expense', 'PROFITABILITY': 'Profitability', 'PROFITABILITY_RATIOS_AND_DIVIDENDS': 'Profitability Ratios and Dividends', 'PROFIT_MARGIN': 'Profit Margin', 'PROMOTE_NEW_CHART': 'Try our new charting experience and share your thoughts', 'PROPERTIES': 'Properties', 'PROPERTY_CASUALTY_INSURANCE': 'Property & Casualty Insurance', 'PROPERTY_CASUALTY_INSURANCE_DESC': 'Property & Casualty Insurance Stocks', 'PROPERTY_MANAGEMENT': 'Property Management', 'PROPERTY_MANAGEMENT_DESC': 'Property Management Stocks', 'PROPERTY_PLANT_AND_EQUIPMENT': 'Property, plant and equipment', 'PROPERTY_TITLE': 'Property', 'PORTFOLIO_HOLDING_PROMO_TITLE': 'Get Insights', 'PORTFOLIO_WEIGHT': '{weight} of your portfolios.', 'PORTFOLIO_WEIGHT_DISCLAIMER': 'Only you can see this.', 'PROSPECTUS_GROSS_EXPENSE_RATIO': 'Prospectus Gross Expense Ratio', 'PROSPECTUS_NET_EXPENSE_RATIO': 'Prospectus Net Expense Ratio', 'PROVISIONAND_WRITE_OFFOF_ASSETS': 'Provision & Write Off of Assets', 'PROVISION_FOR_DOUBTFUL_ACCOUNTS': 'Provision for Doubtful Accounts', 'PROVISION_FOR_LOAN_LEASE_AND_OTHER_LOSSES': 'Provision for Loan Lease And Other Losses', 'PUBLISHING_BOOKS': 'Publishing - Books', 'PUBLISHING_BOOKS_DESC': 'Publishing - Books Stocks', 'PUBLISHING_NEWSPAPERS': 'Publishing - Newspapers', 'PUBLISHING_NEWSPAPERS_DESC': 'Publishing - Newspapers Stocks', 'PUBLISHING_PERIODICALS': 'Publishing - Periodicals', 'PUBLISHING_PERIODICALS_DESC': 'Publishing - Periodicals Stocks', 'PURCHASES': 'Purchases', 'PURCHASES_OF_INVESTMENTS': 'Purchases of investments', 'PURCHASE_DETAILS': 'Purchase Details', 'PURCHASE_INFO': 'Purchase info', 'PURCHASE_OF_BUSINESS': 'Purchase of Business', 'PURCHASE_OF_INTANGIBLES': 'Purchase of Intangibles', 'PURCHASE_OF_INVESTMENT': 'Purchase of Investment', 'PURCHASE_OF_INVESTMENT_PROPERTIES': 'Purchase of Investment Properties', 'PURCHASE_OF_PPE': 'Purchase of PPE', 'RELATED_TICKERS': 'RelatedTickers', 'REVIEW_ACCOUNT': 'Review account information', 'START': 'Start', 'QSP_DISCLAIMER': 'Trade prices are not sourced from all markets', 'QUANTITY': 'Quantity', 'QUARTERLY': 'Quarterly', 'QUARTERLY_EARNINGS_GROWTH': 'Quarterly Earnings Growth', 'QUARTERLY_REVENUE_GROWTH': 'Quarterly Revenue Growth', 'QUARTER_FOUR': 'Q4', 'QUARTER_ONE': 'Q1', 'QUARTER_THREE': 'Q3', 'QUARTER_TWO': 'Q2', 'QUICK_VIDEO': 'Quick Video', 'QUOTE_LOOKUP': 'Quote Lookup', 'QUOTE_LOOKUP_PLACEHOLDER': 'Search for symbols or companies: AAPL, GOOG, DIS', 'QUOTE_PRICE_NOTICE': '{exchangeName} {marketSource}. Currency in {currency}', 'RAILROADS': 'Railroads', 'RAILROADS_DESC': 'Railroads Stocks', 'RANGE_0_99': 'Range 0-99', 'RANGE_SLIDER': 'Range Slider', 'RANK': 'Rank', 'RANK_IN_CATEGORY': 'Rank In Category (By Total Return)', 'RATE': 'Rate', 'RATING': 'Rating', 'RATIOS': 'Ratios', 'RAW_MATERIALS': 'Raw Materials', 'READ_MORE': 'Read more', 'READ_RELEVANT_NEWS': 'Read Relevant Investment News', 'REALIZED_GAIN': 'Realized Gain', 'REALIZED_GAIN_LOSS_ON_SALE_OF_LOANS_AND_LEASE': 'Realized Gain Loss On Sale of Loans And Lease', 'REAL_ESTATE_DEVELOPMENT': 'Real Estate Development', 'REAL_ESTATE_DEVELOPMENT_DESC': 'Real Estate Development Stocks', 'REAL_ESTATE_TITLE': 'Real Estate', 'REAL_GDP': 'Real GDP', 'RECEIPTSFROM_CUSTOMERS': 'Receipts from Customers', 'RECEIPTSFROM_GOVERNMENT_GRANTS': 'Receipts from Government Grants', 'RECEIVABLES': 'Receivables', 'RECEIVABLES_ADJUSTMENTS_ALLOWANCES': 'Receivables Adjustments Allowances', 'RECENTLY_VIEWED_TITLE': 'Recently Viewed', 'RECENT_EVENTS': 'Recent Events', 'RECENT_UPDATES': 'Recent Updates', 'RECENT_FILINGS': 'Recent Filings', 'RECOMMENDATION': 'Recommendation', 'RECOMMENDATION_RATING': 'Recommendation Rating', 'RECOMMENDATION_RATING_SCR_RD_MSG': '{rating} on a scale of {minRating} to {maxRating}, where {minRating} is {minRatingText} and {maxRating} is {maxRatingText}', 'RECOMMENDATION_TRENDS': 'Recommendation Trends', 'RECOMMEND_STOCKS': 'Recommended Stocks', 'RECONCILED_COST_OF_REVENUE': 'Reconciled Cost of Revenue', 'RECONCILED_DEPRECIATION': 'Reconciled Depreciation', 'RECREATIONAL_GOODS_OTHER': 'Recreational Goods, Other', 'RECREATIONAL_GOODS_OTHER_DESC': 'Recreational Goods, Other Stocks', 'RECREATIONAL_VEHICLES': 'Recreational Vehicles', 'RECREATIONAL_VEHICLES_DESC': 'Recreational Vehicles Stocks', 'RECTANGLE': 'Rectangle', 'REDEEMABLE_PREFERRED_STOCK': 'Redeemable Preferred Stock', 'REFERENCE_CODE': 'Reference Code', 'REFRESH': 'Refresh', 'REGIONAL_AIRLINES': 'Regional Airlines', 'REGIONAL_AIRLINES_DESC': 'Regional Airlines Stocks', 'REGIONAL_MIDATLANTIC_BANKS': 'Regional - Mid-Atlantic Banks', 'REGIONAL_MIDATLANTIC_BANKS_DESC': 'Regional - Mid-Atlantic Banks Stocks', 'REGIONAL_MIDWEST_BANKS': 'Regional - Midwest Banks', 'REGIONAL_MIDWEST_BANKS_DESC': 'Regional - Midwest Banks Stocks', 'REGIONAL_NORTHEAST_BANKS': 'Regional - Northeast Banks', 'REGIONAL_NORTHEAST_BANKS_DESC': 'Regional - Northeast Banks Stocks', 'REGIONAL_PACIFIC_BANKS': 'Regional - Pacific Banks', 'REGIONAL_PACIFIC_BANKS_DESC': 'Regional - Pacific Banks Stocks', 'REGIONAL_SOUTHEAST_BANKS': 'Regional - Southeast Banks', 'REGIONAL_SOUTHEAST_BANKS_DESC': 'Regional - Southeast Banks Stocks', 'REGIONAL_SOUTHWEST_BANKS': 'Regional - Southwest Banks', 'REGIONAL_SOUTHWEST_BANKS_DESC': 'Regional - Southwest Banks Stocks', 'REGRESSION': 'Regression', 'REGULATORY_ASSETS': 'Regulatory Assets', 'REGULATORY_LIABILITIES': 'Regulatory Liabilities', 'REINSURANCEAND_OTHER_RECOVERIES_RECEIVED': 'Reinsurance & Other Recoveries Received', 'REINSURANCE_RECOVERABLE': 'Reinsurance Recoverable', 'REITERATES': 'Reiterates', 'REIT_DIVERSIFIED': 'REIT - Diversified', 'REIT_DIVERSIFIED_DESC': 'REIT - Diversified Stocks', 'REIT_HEALTHCARE_FACILITIES': 'REIT - Healthcare Facilities', 'REIT_HEALTHCARE_FACILITIES_DESC': 'REIT - Healthcare Facilities Stocks', 'REIT_HOTEL_MOTEL': 'REIT - Hotel/Motel', 'REIT_HOTEL_MOTEL_DESC': 'REIT - Hotel/Motel Stocks', 'REIT_INDUSTRIAL': 'REIT - Industrial', 'REIT_INDUSTRIAL_DESC': 'REIT - Industrial Stocks', 'REIT_OFFICE': 'REIT - Office', 'REIT_OFFICE_DESC': 'REIT - Office Stocks', 'REIT_RESIDENTIAL': 'REIT - Residential', 'REIT_RESIDENTIAL_DESC': 'REIT - Residential Stocks', 'REIT_RETAIL': 'REIT - Retail', 'REIT_RETAIL_DESC': 'REIT - Retail Stocks', 'RELATED_COMPANIES': 'Related Companies', 'RELATED_FILINGS_FROM_SYMBOL': 'Related Filings from {symbol}', 'RELATED_LISTS_FOR_SYMBOL': 'Related Lists for {symbol}', 'RELATED_QUOTES': 'Related Quotes', 'RELATED_REPORT': 'Related Reports', 'RELATED_VIDEO': 'Related Video', 'REMOVE': 'Remove', 'REMOVED': 'Removed', 'REMOVE_STRIKE_FILTER': 'Remove Strike Filtering', 'RENAME_MODAL_MESSAGE': 'Enter a new name for {pfName}.', 'RENAME_PORTFOLIO': 'Rename Portfolio', 'RENAME_PORTFOLIO_ERROR': 'Unable to rename portfolio. Please retry.', 'RENTAL_LEASING_SERVICES': 'Rental & Leasing Services', 'RENTAL_LEASING_SERVICES_DESC': 'Rental & Leasing Services Stocks', 'RENTAND_LANDING_FEES_COSTOF_REVENUE': 'Rentand Landing Fees Cost of Revenue', 'RENT_AND_LANDING_FEES': 'Rental & Landing Fees', 'RENT_EXPENSE_SUPPLEMENTAL': 'Rent Expense Supplemental', 'REORDER': 'Reorder', 'REORDER_COLUMNS': 'Reorder Columns', 'REORDER_LISTS': 'Reorder Lists', 'REPAYMENT_OF_DEBT': 'Repayment of Debt', 'REPORTED_NORMALIZED_BASIC_EPS': 'Reported Normalized Basic EPS', 'REPORTED_NORMALIZED_DILUTED_EPS': 'Reported Normalized Diluted EPS', 'REPORT_ID': 'Report Id', 'REPORT_NAME': 'Report Name', 'REPORT_TYPE': 'Report type', 'REPURCHASE_OF_CAPITAL_STOCK': 'Repurchase of Capital Stock', 'RESEARCH': 'Research', 'RESEARCH_AND_DEVELOPMENT': 'Research & Development', 'RESEARCH_DEVELOPMENT': 'Research Development', 'RESEARCH_INPUT_PLACEHOLDER': 'Filter reports by symbols', 'RESEARCH_REPORT': 'Premium Research Report', 'RESEARCH_REPORTS': 'Research Reports', 'RESEARCH_SERVICES': 'Research Services', 'RESEARCH_SERVICES_DESC': 'Research Services Stocks', 'RESET': 'Reset', 'RESIDENTIAL_CONSTRUCTION': 'Residential Construction', 'RESIDENTIAL_CONSTRUCTION_DESC': 'Residential Construction Stocks', 'RESISTANCE': 'Resistance', 'RESORTS_CASINOS': 'Resorts & Casinos', 'RESORTS_CASINOS_DESC': 'Resorts & Casinos Stocks', 'RESTAURANTS': 'Restaurants', 'RESTAURANTS_DESC': 'Restaurants Stocks', 'RESTRICTED_CASH': 'Restricted Cash', 'RESTRICTED_CASH_AND_CASH_EQUIVALENTS': 'Restricted Cash & Cash Equivalents', 'RESTRICTED_CASH_AND_INVESTMENTS': 'Restricted Cash And Investments', 'RESTRICTED_COMMON_STOCK': 'Restricted Common Stock', 'RESTRICTED_INVESTMENTS': 'Restricted Investments', 'RESTRUCTURING_AND_MERGERN_ACQUISITION': 'Restructuring & Mergers Acquisition', 'RESULTS': 'Results', 'RESULTS_CALENDAR_earnings': 'Earnings on {date}', 'RESULTS_CALENDAR_economic_event': 'Economic Events on {date}', 'RESULTS_CALENDAR_ipo_info': 'IPO Events on {date}', 'RESULTS_CALENDAR_splits': 'Stock Splits on {date}', 'RESULTS_LIST': 'Results List', 'RETAILING_HOSPITALITY_TITLE': 'Retail & Hospitality', 'RETAINED_EARNINGS': 'Retained Earnings', 'RETIREMENT_TITLE': 'Retirement', 'RETURN': 'Return', 'RETURN_ON_ASSETS': 'Return on Assets', 'RETURN_ON_EQUITY': 'Return on Equity', 'REVENUE': 'Revenue', 'REVENUE_ESTIMATE': 'Revenue Estimate', 'REVENUE_PER_PERIOD': '{period} revenue', 'REVENUE_PER_SHARE': 'Revenue Per Share', 'RGAREA': 'Red Green Area', 'RISK': 'Risk', 'RISK_ANALYSIS': 'Risk Analysis', 'RISK_OVERVIEW': 'Risk Overview', 'RISK_RATING': 'Morningstar Risk Rating', 'RISK_STATISTICS': 'Risk Statistics', 'ROR_PERCENT': 'RoR (%)', 'RUBBER_PLASTICS': 'Rubber & Plastics', 'RUBBER_PLASTICS_DESC': 'Rubber & Plastics Stocks', 'R_SQUARED': 'R-squared', 'SALARIES_AND_WAGES': 'Salaries and Wages', 'SALES': 'Sales', 'SALES_GROWTH_YEAR_EST': 'Sales Growth (year/est)', 'SALES_MATURITIES_OF_INVESTMENTS': 'Sales/Maturities of investments', 'SALE_OF_BUSINESS': 'Sale of Business', 'SALE_OF_INTANGIBLES': 'Sale of Intangibles', 'SALE_OF_INVESTMENT': 'Sale of Investment', 'SALE_OF_INVESTMENT_PROPERTIES': 'Sale of Investment Properties', 'SALE_OF_PPE': 'Sale of PPE', 'SALE_PURCHASE_OF_STOCK': 'Sale Purchase of Stock', 'SALUD_TITLE': 'Healthcare', 'SALUTE_TITLE': 'Healthcare', 'SAMPLE_DATA': 'Sample Data', 'SANTE-ET-CHIMIE_TITLE': 'Healthcare', 'SAUDE-FARMACEUTICA_TITLE': 'Health & Pharmaceuticals', 'SAVE': 'Save', 'SAVED': 'Saved', 'SAVE_AS': 'Save As', 'SAVE_FILTERS': 'Save Filters', 'SAVE_LOT': 'Save Lot', 'SAVE_MONEY_TITLE': 'Save Money', 'SAVE_TRANSACTION': 'Save transaction', 'SAVE_VIEW_ERROR': 'Unable to save view. Please retry.', 'SAVINGS_LOANS': 'Savings & Loans', 'SAVINGS_LOANS_DESC': 'Savings & Loans Stocks', 'SAVING_SPENDING_TITLE': 'Saving & Spending', 'SCIENTIFIC_TECHNICAL_INSTRUMENTS': 'Scientific & Technical Instruments', 'SCIENTIFIC_TECHNICAL_INSTRUMENTS_DESC': 'Scientific & Technical Instruments Stocks', 'SCREENER': 'Screener', 'SCREENERS': 'Screeners', 'SCREENER_CRITERIA_CHANGE': 'Screening Criteria has changed.', 'SCREENER_DEFAULT_CRITERIA': 'Default Criteria', 'SCREENER_DEPEND_FIELD_MSG': 'Select {field} first', 'SCREENER_DESC_PLACEHOLDER': 'Enter a description (optional)', 'SCREENER_FIELD_addtocalendar': 'Add to Calendar', 'SCREENER_FIELD_after_release_actual': 'Actual', 'SCREENER_FIELD_altmanzscoreusingtheaveragestockinformationforaperiod.lasttwelvemonths': 'Altman Z Score', 'SCREENER_FIELD_analyst_name': 'Analyst Firm', 'SCREENER_FIELD_announce_date': 'Announced', 'SCREENER_FIELD_annualreportgrossexpenseratio': 'Annual Gross Expense Ratio', 'SCREENER_FIELD_annualreportnetexpenseratio': 'Annual Net Expense Ratio', 'SCREENER_FIELD_annualreturnnavy1': '% Change in Net Asset Value (NAV - 1 yr)', 'SCREENER_FIELD_annualreturnnavy1categoryrank': 'Annual Return NAV Year 1 Category Rank', 'SCREENER_FIELD_annualreturnnavy3': '% Change in Net Asset Value (NAV - 3 yr)', 'SCREENER_FIELD_annualreturnnavy5': '% Change in Net Asset Value (NAV - 5 yr)', 'SCREENER_FIELD_average_rating': 'Average Rating', 'SCREENER_FIELD_averagedayspayableoutstanding.lasttwelvemonths': 'Average Days Payable Outstanding (LTM)', 'SCREENER_FIELD_avgdailyvol3m': 'Avg Vol (3 month)', 'SCREENER_FIELD_basicepscontinuingoperations.lasttwelvemonths': 'EPS (Basic, Continuing Operations)', 'SCREENER_FIELD_basicweightedaveragesharesoutstanding.lasttwelvemonths': 'Basic Weighted Average Shares Outstanding (LTM)', 'SCREENER_FIELD_beta': 'Beta (5Y Monthly)', 'SCREENER_FIELD_beta1year.lasttwelvemonths': 'Beta - 1 Year (LTM)', 'SCREENER_FIELD_bookvalueshare.lasttwelvemonths': 'Book Value / Share', 'SCREENER_FIELD_briefing_com_estimate': 'Briefing Forecast', 'SCREENER_FIELD_breakoutPrice': 'Breakout Price', 'SCREENER_FIELD_targetPrice': 'Target Price', 'SCREENER_FIELD_capitalexpenditure.lasttwelvemonths': 'Capital Expenditure (CapEx)', 'SCREENER_FIELD_cashandequivalents.lasttwelvemonths': 'Cash And Equivalents (LTM)', 'SCREENER_FIELD_cashfromoperations.lasttwelvemonths': 'Cash from Operations', 'SCREENER_FIELD_cashfromoperations1yrgrowth.lasttwelvemonths': '1 yr. % Change in Cash from Operations', 'SCREENER_FIELD_cashincometaxpaidrefund.lasttwelvemonths': 'Cash Income Tax Paid (Refund) (LTM)', 'SCREENER_FIELD_cashinterestpaid.lasttwelvemonths': 'Cash Interest Paid (LTM)', 'SCREENER_FIELD_categoryname': 'Funds by Category', 'SCREENER_FIELD_change_in_number_of_institutional_holders': 'Change in no. of Holders', 'SCREENER_FIELD_circulatingSupply': 'Circulating Supply', 'SCREENER_FIELD_companyshortname': 'Company', 'SCREENER_FIELD_consecutive_years_of_dividend_growth_count': 'Consecutive Years of Dividend Growth', 'SCREENER_FIELD_consensus_estimate': 'Market Expectation', 'SCREENER_FIELD_consensuseps': 'Consensus EPS', 'SCREENER_FIELD_count': 'Document Count', 'SCREENER_FIELD_country_code': 'Country', 'SCREENER_FIELD_currency': 'Currency', 'SCREENER_FIELD_currencyname': 'Currency', 'SCREENER_FIELD_current_price': 'Price (Delayed)', 'SCREENER_FIELD_currentratio.lasttwelvemonths': 'Current Ratio', 'SCREENER_FIELD_dateisestimate': 'Estimate Date', 'SCREENER_FIELD_days_to_cover_short.value': 'Short Interest Ratio', 'SCREENER_FIELD_daysoutstandinginventoryaverageinventory.lasttwelvemonths': 'Days Outstanding Inventory (Average Inventory) (LTM)', 'SCREENER_FIELD_dayssalesoutstandingaveragereceivables.lasttwelvemonths': 'Days Sales Outstanding (Average Receivables) (LTM)', 'SCREENER_FIELD_dayvolume': 'Volume', 'SCREENER_FIELD_dealtype': 'Actions', 'SCREENER_FIELD_dilutedeps1yrgrowth.lasttwelvemonths': '1 Yr. % Change in EPS (Diluted)', 'SCREENER_FIELD_dilutedepscontinuingoperations.lasttwelvemonths': 'EPS (Diluted, Continuing Operations)', 'SCREENER_FIELD_dilutedweightedaveragesharesoutstanding.lasttwelvemonths': 'Diluted Weighted Average Shares Outstanding (LTM)', 'SCREENER_FIELD_dividendDate': 'Div Payment Date', 'SCREENER_FIELD_dividendpershare.lasttwelvemonths': 'Dividend Per Share (DPS)', 'SCREENER_FIELD_dividendsPerShare': 'Div/Share', 'SCREENER_FIELD_dividendyield': 'Dividend Yield %', 'SCREENER_FIELD_earnings_consistency': 'Earnings Consistency', 'SCREENER_FIELD_earningscalltime': 'Earnings Call Time', 'SCREENER_FIELD_earningscount': 'Earnings', 'SCREENER_FIELD_earningsfromcontinuingoperations.lasttwelvemonths': 'Earnings From Continuing Operations (LTM)', 'SCREENER_FIELD_ebit.lasttwelvemonths': 'EBIT', 'SCREENER_FIELD_ebitda.lasttwelvemonths': 'EBITDA', 'SCREENER_FIELD_ebitda1yrgrowth.lasttwelvemonths': '1 Yr. % Change in EBITDA', 'SCREENER_FIELD_ebitdainterestexpense.lasttwelvemonths': 'EBITDA / Interest Expense (LTM)', 'SCREENER_FIELD_ebitdamargin.lasttwelvemonths': 'EBITDA Margin %', 'SCREENER_FIELD_ebitinterestexpense.lasttwelvemonths': 'EBIT / Interest Expense (LTM)', 'SCREENER_FIELD_ebtexclunusualitems.lasttwelvemonths': 'EBT, Excl. Unusual Items (LTM)', 'SCREENER_FIELD_econ_release': 'Event', 'SCREENER_FIELD_economiceventcount': 'Economic Events', 'SCREENER_FIELD_ecstotalcommonsharesoutstanding.lasttwelvemonths': 'ECS Total Common Shares Outstanding (LTM)', 'SCREENER_FIELD_ecstotalsharesoutstandingonfilingdate.lasttwelvemonths': 'ECS Total Shares Outstanding on Filing Date (LTM)', 'SCREENER_FIELD_enddatetime': 'Event End Date', 'SCREENER_FIELD_endDate': 'Event Date', 'SCREENER_FIELD_environmental_score': 'Environmental Score', 'SCREENER_FIELD_eodmarketcap': 'End-of-Day Market Cap', 'SCREENER_FIELD_eodprice': 'Price (End of Day)', 'SCREENER_FIELD_eodvolume': 'Volume (End of Day)', 'SCREENER_FIELD_epsForward': 'EPS Est Next Year', 'SCREENER_FIELD_epsactual': 'Reported EPS', 'SCREENER_FIELD_epsconsensus': 'EPS Consensus', 'SCREENER_FIELD_epscurrentyear': 'EPS Current Year', 'SCREENER_FIELD_epsestimate': 'EPS Estimate', 'SCREENER_FIELD_epsgrowth.annual': 'EPS Growth (ANNUAL)', 'SCREENER_FIELD_epsgrowth.lasttwelvemonths': '1 yr. % Change in EPS (Basic)', 'SCREENER_FIELD_epsgrowth.quarterly': 'EPS Growth (QUARTERLY)', 'SCREENER_FIELD_epsgrowth.yeartodate': 'EPS Growth (YTD)', 'SCREENER_FIELD_epssurprisepct': 'Surprise(%)', 'SCREENER_FIELD_esg_score': 'ESG Score', 'SCREENER_FIELD_estimated_earnings_growth': 'Est. EPS Growth (%)', 'SCREENER_FIELD_estimated_revenue_growth': 'Est. Revenue Growth (%)', 'SCREENER_FIELD_eventid': 'Event Id', 'SCREENER_FIELD_eventname': 'Event Name', 'SCREENER_FIELD_eventtype': 'Event Type', 'SCREENER_FIELD_eventTypeName': 'Pattern Name', 'SCREENER_FIELD_ex_date': 'Ex Date', 'SCREENER_FIELD_exchange': 'Exchange', 'SCREENER_FIELD_exchange_short_name': 'Exchange', 'SCREENER_FIELD_expire_date': 'Expiration Date', 'SCREENER_FIELD_fiftytwowkpercentchange': '52 Week Price % Change', 'SCREENER_FIELD_file_date': 'File Date', 'SCREENER_FIELD_filername': 'Name', 'SCREENER_FIELD_filingdate': 'Date', 'SCREENER_FIELD_fiscalyear': 'Financial Calendar Year', 'SCREENER_FIELD_form_type': 'Form Type', 'SCREENER_FIELD_forward_dividend_per_share': 'Forward Dividend Rate (DPS)', 'SCREENER_FIELD_forward_dividend_yield': 'Forward Dividend Yield %', 'SCREENER_FIELD_fulltimeemployees.lasttwelvemonths': 'Full Time Employees (LTM)', 'SCREENER_FIELD_fundfamilyname': 'Funds by Company', 'SCREENER_FIELD_fund_investment_orientation': 'Fund Investment Orientation', 'SCREENER_FIELD_fund_investment_style': 'Fund Investment Style', 'SCREENER_FIELD_fund_name.keyword': 'Fund Name', 'SCREENER_FIELD_fund_turnover_rating': 'Fund Turnover Rating', 'SCREENER_FIELD_fund_type': 'Fund Type', 'SCREENER_FIELD_fundnetassets': 'Net Assets', 'SCREENER_FIELD_governance_score': 'Governance Score', 'SCREENER_FIELD_grossprofit.lasttwelvemonths': 'Gross Profit', 'SCREENER_FIELD_grossprofitmargin.lasttwelvemonths': 'Gross Profit Margin %', 'SCREENER_FIELD_highest_controversy': 'Highest Controversy', 'SCREENER_FIELD_holders_fund_types': 'Fund Type', 'SCREENER_FIELD_number_of_institutional_holders': 'No. of Holders', 'SCREENER_FIELD_implied_volatility': 'Implied Volatility', 'SCREENER_FIELD_industry': 'Industry', 'SCREENER_FIELD_initialinvestment': 'Initial Minimum Investment', 'SCREENER_FIELD_intradaymarketcap': 'Market Cap (Intraday)', 'SCREENER_FIELD_intradayprice': 'Price (Intraday)', 'SCREENER_FIELD_intradaypricechange': 'Price Change (Intraday)', 'SCREENER_FIELD_ipoinfo': 'IPOs', 'SCREENER_FIELD_ipoinfocount': 'IPO Pricings', 'SCREENER_FIELD_lastclose52weekhigh.lasttwelvemonths': '52 Week Price High (Last Close)', 'SCREENER_FIELD_lastclose52weeklow.lasttwelvemonths': '52 Week Price Low (Last Close)', 'SCREENER_FIELD_lastclosebsshout.lasttwelvemonths': 'Last Close BS Shout (LTM)', 'SCREENER_FIELD_lastcloseindicateddividendstockprice.lasttwelvemonths': 'Last Close Indicated Dividend / Stock Price (LTM)', 'SCREENER_FIELD_lastclosemarketcap.lasttwelvemonths': 'Market Cap (Last Close)', 'SCREENER_FIELD_lastclosemarketcapebtexclunusualitems.lasttwelvemonths': 'Last Close Market Cap / EBT Excl. Unusual Items (LTM)', 'SCREENER_FIELD_lastclosemarketcaptotalrevenue.lasttwelvemonths': 'Price / Sales (P/S)', 'SCREENER_FIELD_lastcloseprice.lasttwelvemonths': 'Last Close Price (LTM)', 'SCREENER_FIELD_lastclosepricebookvalue.lasttwelvemonths': 'Price / Book Value (P/B)', 'SCREENER_FIELD_lastclosepriceearnings.lasttwelvemonths': 'Price / Earnings (P/E)', 'SCREENER_FIELD_lastclosepricetangiblebookvalue.lasttwelvemonths': 'Price / Tangible Book Value (P/TB)', 'SCREENER_FIELD_lastclosetevebit.lasttwelvemonths': 'Total Enterprise Value (TEV) / EBIT', 'SCREENER_FIELD_lastclosetevebitda.lasttwelvemonths': 'Total Enterprise Value (TEV) / EBITDA', 'SCREENER_FIELD_lastclosetevtotalrevenue.lasttwelvemonths': 'Total Enterprise Value / Total Revenue (EV/Sales)', 'SCREENER_FIELD_leveredfreecashflow.lasttwelvemonths': 'Levered (after expenses) Free Cash Flow', 'SCREENER_FIELD_leveredfreecashflow1yrgrowth.lasttwelvemonths': '1 yr. % Change in Levered Free Cash Flow', 'SCREENER_FIELD_ltdebtequity.lasttwelvemonths': 'Long Term Debt / Equity (LT D/E) %', 'SCREENER_FIELD_mapped_rating_current': 'Current Rating', 'SCREENER_FIELD_marketcapitalvaluelong': 'Market Capital Value - Long', 'SCREENER_FIELD_morningstar_economic_moat': 'Economic Moat', 'SCREENER_FIELD_morningstar_last_close_price_to_fair_value': 'Morningstar Last Close Price / Fair Value', 'SCREENER_FIELD_morningstar_moat_trend': 'Moat Trend', 'SCREENER_FIELD_morningstar_rating': 'Morningstar Rating', 'SCREENER_FIELD_morningstar_rating_change': 'Morningstar Rating Change', 'SCREENER_FIELD_morningstar_rating_updated_time': 'Morningstar Rating Updated Time', 'SCREENER_FIELD_morningstar_stewardship': 'Stewardship', 'SCREENER_FIELD_morningstar_uncertainty': 'Uncertainty Rating', 'SCREENER_FIELD_netdebtebitda.lasttwelvemonths': 'Net Debt / EBITDA', 'SCREENER_FIELD_netepsbasic.lasttwelvemonths': 'EPS (Basic)', 'SCREENER_FIELD_netepsdiluted.lasttwelvemonths': 'EPS (Diluted)', 'SCREENER_FIELD_netincome1yrgrowth.lasttwelvemonths': '1 Yr. % Change in Net Income', 'SCREENER_FIELD_netincomeis.lasttwelvemonths': 'Net Income', 'SCREENER_FIELD_netincomemargin.lasttwelvemonths': 'Net Income Margin %', 'SCREENER_FIELD_netincometocommonexclextraitems.lasttwelvemonths': 'Net Income to Common Excl. Extra Items (LTM)', 'SCREENER_FIELD_changeInSharesHeldByInstitutions': 'Change in Shares Held', 'SCREENER_FIELD_number_of_institutional_buyers': 'No. of Buyers', 'SCREENER_FIELD_number_of_institutional_sellers': 'No. of Sellers', 'SCREENER_FIELD_numOfSharesBoughtByInstitutions': 'No. of Shares Bought', 'SCREENER_FIELD_numOfSharesSoldByInstitutions': 'No. of Shares Sold', 'SCREENER_FIELD_offerprice': 'Price', 'SCREENER_FIELD_open_interest': 'Open Interest', 'SCREENER_FIELD_operatingcashflowtocurrentliabilities.lasttwelvemonths': 'Operating Cash Flow Ratio', 'SCREENER_FIELD_operatingincome.lasttwelvemonths': 'Operating Income', 'SCREENER_FIELD_optionable': 'Optionable?', 'SCREENER_FIELD_originally_reported_actual': 'Revised from', 'SCREENER_FIELD_ownership_percent': 'Ownership %', 'SCREENER_FIELD_lastReportDate': 'Last Report Date', 'SCREENER_FIELD_payable_on': 'Payable on', 'SCREENER_FIELD_pctheldinsider': '% of Shares Outstanding Held by Insiders', 'SCREENER_FIELD_pctheldinst': '% of Shares Outstanding Held by Institutions', 'SCREENER_FIELD_percent_change_in_shares_held': '% Change in Shares Held', 'SCREENER_FIELD_peer_group': 'Peer Group', 'SCREENER_FIELD_pegratio_5y': 'Price / Earnings to Growth (P/E/G)', 'SCREENER_FIELD_peratio.annual': 'Trailing P/E (ANNUAL)', 'SCREENER_FIELD_peratio.lasttwelvemonths': 'Trailing P/E', 'SCREENER_FIELD_peratio.quarterly': 'Trailing P/E (QUARTERLY)', 'SCREENER_FIELD_peratio.yeartodate': 'Trailing P/E (YTD)', 'SCREENER_FIELD_percentchange': '% Change in Price (Intraday)', 'SCREENER_FIELD_percent_change_in_number_of_institutional_holders': '% Change in no. of Holders', 'SCREENER_FIELD_percent_change_in_ownership': '% Change in Ownership', 'SCREENER_FIELD_percent_change_in_shares_held_by_funds': '% Change in Shares Held', 'SCREENER_FIELD_percent_in_funds_holding': 'No. of Holders %', 'SCREENER_FIELD_percent_in_top_ten_holdings': '% in Top 10 Holdings', 'SCREENER_FIELD_percent_of_shares_outstanding': '% of Shares Outstanding Held', 'SCREENER_FIELD_percent_of_shares_outstanding_bought_by_institutions': '% of Shares Outstanding Bought', 'SCREENER_FIELD_percent_of_shares_outstanding_sold_by_institutions': '% of Shares Outstanding Sold', 'SCREENER_FIELD_percentOfSharesOutHeldByInstitutions': '% of Shares Outstanding Held', 'SCREENER_FIELD_performanceratingoverall': 'Morningstar Performance Rating Overall', 'SCREENER_FIELD_period': 'For', 'SCREENER_FIELD_pricePeriod': 'Price Period', 'SCREENER_FIELD_priceToBook': 'Price/Book', 'SCREENER_FIELD_price_target_action': 'Price Target Action', 'SCREENER_FIELD_price_target_percent_change': 'Upside/Downside %', 'SCREENER_FIELD_pricebookratio.annual': 'Price/Book (ANNUAL)', 'SCREENER_FIELD_pricebookratio.lasttwelvemonths': 'Price/Book (LTM)', 'SCREENER_FIELD_pricebookratio.quarterly': 'P/B (most recent quarter - mrq)', 'SCREENER_FIELD_pricebookratio.yeartodate': 'Price/Book (YTD)', 'SCREENER_FIELD_priceto': 'Price Range', 'SCREENER_FIELD_prior_release_actual': 'Prior to This', 'SCREENER_FIELD_quarter': 'Quarter', 'SCREENER_FIELD_quarterendtrailingreturnytd': 'Quarter End Trailing Return YTD %', 'SCREENER_FIELD_quarterlyrevenuegrowth.annual': 'Quarterly Revenue Growth (ANNUAL)', 'SCREENER_FIELD_quarterlyrevenuegrowth.lasttwelvemonths': 'Quarterly Revenue Growth (LTM)', 'SCREENER_FIELD_quarterlyrevenuegrowth.quarterly': 'Quarterly Revenue Growth YoY %', 'SCREENER_FIELD_quarterlyrevenuegrowth.yeartodate': 'Quarterly Revenue Growth (YTD)', 'SCREENER_FIELD_quickratio.lasttwelvemonths': 'Quick Ratio', 'SCREENER_FIELD_rank_us': 'US Rank', 'SCREENER_FIELD_rating_action': 'Rating Change', 'SCREENER_FIELD_rating_date': 'Date Range', 'SCREENER_FIELD_ratingoverall': 'Morningstar Rating Overall', 'SCREENER_FIELD_region': 'Region', 'SCREENER_FIELD_regularMarketDayRange': 'Day Range', 'SCREENER_FIELD_reportedeps': 'Reported EPS', 'SCREENER_FIELD_researchanddevelopmentexpensefromfootnotes.lasttwelvemonths': 'Research And Development Expense From Footnotes (LTM)', 'SCREENER_FIELD_returnonassets.lasttwelvemonths': 'Return on Assets %', 'SCREENER_FIELD_returnonequity.annual': 'Return on Equity (ANNUAL)', 'SCREENER_FIELD_returnonequity.lasttwelvemonths': 'Return On Equity %', 'SCREENER_FIELD_returnonequity.quarterly': 'Return on Equity (QUARTERLY)', 'SCREENER_FIELD_returnonequity.yeartodate': 'Return on Equity (YTD)', 'SCREENER_FIELD_returnontotalcapital.lasttwelvemonths': 'Return on Total Capital %', 'SCREENER_FIELD_revenue.annual': 'Revenue (ANNUAL)', 'SCREENER_FIELD_revenue.lasttwelvemonths': 'Revenue (LTM)', 'SCREENER_FIELD_revenue.quarterly': 'Revenue (QUARTERLY)', 'SCREENER_FIELD_revenue.yeartodate': 'Revenue (YTD)', 'SCREENER_FIELD_revenue_consistency': 'Revenue Consistency', 'SCREENER_FIELD_revenuepershare.lasttwelvemonths': 'Revenue Per Share (LTM)', 'SCREENER_FIELD_riskratingoverall': 'Morningstar Risk Rating Overall', 'SCREENER_FIELD_ror_percent': 'Est. Rate of Return (%)', 'SCREENER_FIELD_sector': 'Sector', 'SCREENER_FIELD_sgandamargin.lasttwelvemonths': 'SG&A Margin (LTM)', 'SCREENER_FIELD_share_worth': 'Ratio', 'SCREENER_FIELD_shares': 'Shares', 'SCREENER_FIELD_sharesperdepositoryreceiptnonprimarycompanies.lasttwelvemonths': 'Shares per Depository Receipt (Non-Primary Companies) (LTM)', 'SCREENER_FIELD_sharesperdepositoryreceiptprimarycompanies.lasttwelvemonths': 'Shares per Depository Receipt (Primary Companies) (LTM)', 'SCREENER_FIELD_short_interest.value': 'Short Interest', 'SCREENER_FIELD_short_interest_percentage_change.value': 'Short Interest % Change', 'SCREENER_FIELD_short_percentage_of_float.value': 'Short % of Float', 'SCREENER_FIELD_short_percentage_of_shares_outstanding.value': 'Short % of Shares Outstanding', 'SCREENER_FIELD_sma200': '200 Day Moving Average', 'SCREENER_FIELD_sma50': '50 Day Moving Average', 'SCREENER_FIELD_social_score': 'Social Score', 'SCREENER_FIELD_sparkline': '1 Day Chart', 'SCREENER_FIELD_splitscount': 'Stock Splits', 'SCREENER_FIELD_startdatetime': 'Event Time', 'SCREENER_FIELD_startdatetimetype': 'Earnings Call Time', 'SCREENER_FIELD_surprisepercent': 'Surprise (%)', 'SCREENER_FIELD_targetPricePercentMove': 'Expected Price % Move', 'SCREENER_FIELD_ticker': 'Symbol', 'SCREENER_FIELD_tickersharesoutstanding': 'Ticker Shares Outstanding', 'SCREENER_FIELD_top_fund_holder_names': \"Fund Name (Stock in Fund's top 10 Holdings)\", 'SCREENER_FIELD_totalassets.lasttwelvemonths': 'Total Assets', 'SCREENER_FIELD_totalcapitalratio.lasttwelvemonths': 'Total Capital - (Ratio) (LTM)', 'SCREENER_FIELD_totalcashandshortterminvestments.lasttwelvemonths': 'Total Cash And Short Term Investments', 'SCREENER_FIELD_totalcommonequity.lasttwelvemonths': 'Total Common Equity', 'SCREENER_FIELD_totalcommonsharesoutstanding.lasttwelvemonths': 'Total Common Shares Outstanding', 'SCREENER_FIELD_totalcurrentassets.lasttwelvemonths': 'Total Current Assets', 'SCREENER_FIELD_totalcurrentliabilities.lasttwelvemonths': 'Total Current Liabilities', 'SCREENER_FIELD_totaldebt.lasttwelvemonths': 'Total Debt', 'SCREENER_FIELD_totaldebtebitda.lasttwelvemonths': 'Total Debt / EBITDA', 'SCREENER_FIELD_totaldebtequity.lasttwelvemonths': 'Debt / Equity (D/E) %', 'SCREENER_FIELD_total_equity_asset': 'Asset Under Management', 'SCREENER_FIELD_totalequity.lasttwelvemonths': 'Total Equity', 'SCREENER_FIELD_totalrevenues.lasttwelvemonths': 'Total Revenue', 'SCREENER_FIELD_totalrevenues1yrgrowth.lasttwelvemonths': '1 Yr. % Change in Total Revenue', 'SCREENER_FIELD_totalsharesoutstanding': 'Total Shares Outstanding', 'SCREENER_FIELD_totalsharesoutstandingonfilingdate.lasttwelvemonths': 'Total Shares Outstanding on Filing Date (LTM)', 'SCREENER_FIELD_tradeType': 'Outlook', 'SCREENER_FIELD_trading_central_last_close_price_to_fair_value': 'Last Close Price / Fair Value', 'SCREENER_FIELD_tradingHorizon': 'Time Frame', 'SCREENER_FIELD_trailing_3m_return': 'Trailing 3M Return %', 'SCREENER_FIELD_trailing_ytd_return': 'Trailing YTD Return %', 'SCREENER_FIELD_transactiondate': 'Transaction date', 'SCREENER_FIELD_trendChangeType': 'Trend Change Type', 'SCREENER_FIELD_turnoverratio': 'Turnover Ratio', 'SCREENER_FIELD_underlying_symbol': 'Underlying Symbol', 'SCREENER_FIELD_unleveredfreecashflow.lasttwelvemonths': 'Unlevered (before expenses) Free Cash Flow', 'SCREENER_FIELD_value_description': 'Valuation', 'SCREENER_FIELD_volume24Hr': 'Volume in Currency (24Hr)', 'SCREENER_FIELD_volumeAllCurrencies': 'Total Volume All Currencies (24Hr)', 'SCREENER_FIELD_years_of_consecutive_positive_eps': 'Years of Consecutive Positive EPS', 'SCREENER_FILTER_EMPTY_TEXT': \"Enter criteria and click 'Find {type}' to see the matching stocks\", 'SCREENER_INSIDER_TITLE': 'Insider Transactions', 'SCREENER_MATCH_RESULTS': 'Matching {text}', 'SCREENER_MATCH_RESULTS_INSIDER': 'Insider & Restricted Shareholder Transactions', 'SCREENER_NEW_TITLE': 'New Untitled Screener', 'SCREENER_NEW_UNSAVED_TITLE': 'New Unsaved Screener*', 'SCREENER_NOTICE_SCR_SAVE_FAIL': \"Unable to save criteria as '{name}'. Please try saving it again.\", 'SCREENER_NOTICE_SCR_SAVE_SUCCESS': \"Screener '{name}' is created successfully.\", 'SCREENER_NOTICE_STOCK_ADD_FAIL': \"Failed to add {count} selected stocks to '{list}'\", 'SCREENER_NOTICE_STOCK_ADD_SUCCESS': \"{count} selected stocks were added to '{list}'\", 'SCREENER_NOTICE_UNSAVED_SCR': 'expires in a few days, please save your screener.', 'SCREENER_NOT_SIGNEDIN': ' to view your saved screeners.', 'SCREENER_OP_BTWN': 'between', 'SCREENER_OP_EQ': 'equals', 'SCREENER_OP_GT': 'greater than', 'SCREENER_OP_GTE': 'greater than or equal', 'SCREENER_OP_IS': 'is', 'SCREENER_OP_LT': 'less than', 'SCREENER_REMOVE_FIELD': 'Remove {fieldId}', 'SCREENER_RESULTS': 'Screener Results', 'SCREENER_RESULTS_OUT_OF_SYNC': \"Please click 'Find {type}' to get updated results.\", 'SCREENER_RESULTS_TRY_AGAIN': \"Please try 'Find' again.\", 'SCREENER_RESULT_NOTICE': 'Results were generated a few mins ago. Pricing data is updated frequently. Currency in {currency}', 'SCREENER_SIGN_IN_SAVE': 'Sign in to save your screener', 'SCREENER_SORT_RESULT_TEXT': 'Sort results by {sortField} in {sortType}', 'SCREENER_TITLE_PLACEHOLDER': 'Name your screener', 'SCREENER_TOP_RESULTS': 'Top {text}', 'SCREENER_US_EXCHANGES': 'All US stock exchanges', 'SEARCH_COLUMNS': 'Search Columns', 'SEARCH_COMPARE': 'Search for symbols to compare', 'SEARCH_FEEDBACK_CURRENT_MSG': 'Give feedback on the search experience', 'SEARCH_FEEDBACK_MSG': 'Give feedback on the new search experience', 'SEARCH_INDICATORS': 'Search indicators', 'SEARCH_PRIVATE_COMPANIES_PROMOTION': 'Now you can search stock related news and private companies such as Airbnb.', 'SEARCH_RESULTS': 'Search Results', 'SEARCH_RESULTS_MULTIQUOTES': 'My List', 'SEARCH_SCREENER_LINK': 'Screener for stocks & more', 'SEARCH_SYMBOL_COMPANY': 'Search symbols or companies', 'SEARCH_TIP': 'Tip: Try a valid symbol or a specific company name for relevant results', 'SEC_FILINGS': 'SEC Filings', 'SEC_FILINGS_FOR_TICKER': 'SEC Filings for {companyName} ({symbol})', 'SECTOR': 'Sector(s)', 'SECTOR_ANALYSIS': 'Sector analysis', 'SECTOR_AVERAGE': 'Sector average', 'SEC_FILING_DATA_SOURCE': \"Data sourced from the SEC's public EDGAR database\", 'SECTOR_INDUSTRY': 'Sector & Industry', 'SECTOR_MEDIAN': 'Sector median', 'SECTOR_SUMMARY': 'Sector Summary', 'SECTOR_WEIGHTINGS': 'Sector Weightings (%)', 'SECURITIES_ACTIVITIES': 'Securities Activities', 'SECURITIES_AMORTIZATION': 'Securities Amortization', 'SECURITIES_LENDING_COLLATERAL': 'Securities Lending Collateral', 'SECURITIES_LOANED': 'Securities Loaned', 'SECURITY_AGREE_TO_BE_RESELL': 'Security Agree to be Resold', 'SECURITY_BORROWED': 'Security Borrowed', 'SECURITY_PROTECTION_SERVICES': 'Security & Protection Services', 'SECURITY_PROTECTION_SERVICES_DESC': 'Security & Protection Services Stocks', 'SECURITY_SOFTWARE_SERVICES': 'Security Software & Services', 'SECURITY_SOFTWARE_SERVICES_DESC': 'Security Software & Services Stocks', 'SECURITY_SOLD_NOT_YET_REPURCHASED': 'Security Sold Not Yet Repurchased', 'SEE_ALL': 'See All', 'SEE_FULL_PROFILE': 'See Full Profile', 'SEE_IT': 'See it', 'SEE_MORE_STATS': 'See more stats', 'SEE_WHY': 'See why', 'SELECT': 'Select', 'SELECTED': 'Selected', 'SELECTED_LISTS': 'Selected Lists', 'SELECT_ALL': 'Select All', 'SELECT_AN_ACTION_BELOW': 'Select an action below', 'SELECT_DATA_COLUMNS_TO_DISPLAY': 'Select Data Columns to Display', 'SELECT_LISTS': 'Select Lists', 'SELECT_TIME_UNIT': 'Select Time Unit', 'SELL': 'Sell', 'SELL_SHORT': 'Sell Short', 'SELLING_AND_MARKETING_EXPENSE': 'Selling & Marketing Expense', 'SELLING_GEN_ADMIN': 'Selling General and Administrative', 'SEMICONDUCTOR_BROAD_LINE': 'Semiconductor - Broad Line', 'SEMICONDUCTOR_BROAD_LINE_DESC': 'Semiconductor - Broad Line Stocks', 'SEMICONDUCTOR_EQUIPMENT_MATERIALS': 'Semiconductor Equipment & Materials', 'SEMICONDUCTOR_EQUIPMENT_MATERIALS_DESC': 'Semiconductor Equipment & Materials Stocks', 'SEMICONDUCTOR_INTEGRATED_CIRCUITS': 'Semiconductor - Integrated Circuits', 'SEMICONDUCTOR_INTEGRATED_CIRCUITS_DESC': 'Semiconductor - Integrated Circuits Stocks', 'SEMICONDUCTOR_MEMORY_CHIPS': 'Semiconductor- Memory Chips', 'SEMICONDUCTOR_MEMORY_CHIPS_DESC': 'Semiconductor- Memory Chips Stocks', 'SEMICONDUCTOR_SPECIALIZED': 'Semiconductor - Specialized', 'SEMICONDUCTOR_SPECIALIZED_DESC': 'Semiconductor - Specialized Stocks', 'SEND': 'Send', 'SENTIMENT_MSG_HELP': 'Neutral range is -14 to +5 while there is no limit on positive and negative ranges.', 'SENTIMENT_MSG_N': 'Neutral', 'SENTIMENT_MSG_NG': 'Negative', 'SENTIMENT_MSG_NG_TO_N': 'Negative to Neutral', 'SENTIMENT_MSG_NG_TO_P': 'Negative to Positive', 'SENTIMENT_MSG_N_TO_NG': 'Neutral to Negative', 'SENTIMENT_MSG_N_TO_P': 'Neutral to Positive', 'SENTIMENT_MSG_P': 'Positive', 'SENTIMENT_MSG_P_TO_N': 'Positive to Neutral', 'SENTIMENT_MSG_P_TO_NG': 'Positive to Negative', 'SEPARATE_ACCOUNT_ASSETS': 'Separate Account Assets', 'SEPARATE_ACCOUNT_BUSINESS': 'Separate Account Business', 'SERVER_URL': 'Server Url', 'SERVICES': 'Services', 'SERVICES-ET-DISTRIBUTION_TITLE': 'Retail', 'SERVICES_DESC': 'Services Stocks', 'SERVICE_CHARGE_ON_DEPOSITOR_ACCOUNTS': 'Service Charge on Depositor Accounts', 'SERVICOS-DIVERSOS_TITLE': 'Other services', 'SERVIZI-AL-CONSUMO_TITLE': 'Consumer Products & Media', 'SERVIZI-PUBBLICI_TITLE': 'Public Services', 'SETTINGS': 'Settings', 'SETTLEMENT_DATE': 'Settlement Date', 'SEVERE': 'Severe', 'SHARE': 'Share', 'SHARE_LIST': 'Share list', 'SHARES': 'Shares', 'SHARES_FLOAT': 'Float', 'SHARES_NUMBER': '{shares} shares', 'SHARES_OUTSTANDING': 'Shares Outstanding', 'SHARES_OWNED_AS_OF_TRANSACTION_DATE': 'Shares Owned as of Transaction Date', 'SHARES_PERCENT_SHARES_OUT': 'Short % of Shares Outstanding {date}', 'SHARES_SHORT': 'Shares Short {date}', 'SHARES_SHORT_PRIOR_MONTH': 'Shares Short (prior month {date})', 'SHARE_CHART': 'Share Chart', 'SHARE_ISSUED': 'Share Issued', 'SHARE_LINK': 'Or share this link', 'SHARE_LOTS': 'Share Lots', 'SHARE_MENU': 'Share Menu', 'SHARE_STATISTICS': 'Share Statistics', 'SHARPE_RATIO': 'Sharpe Ratio', 'SHIPPING': 'Shipping', 'SHIPPING_DESC': 'Shipping Stocks', 'SHOPPEN_TITLE': 'Shoppen', 'SHORT_CURRENT_LONG_TERM_DEBT': 'Short/Current Long Term Debt', 'SHORT_INTEREST': 'Short Interest', 'SHORT_PERCENT_OF_FLOAT': 'Short % of Float {date}', 'SHORT_RATIO': 'Short Ratio {date}', 'SHORT_RATIO_RAW': 'Short Ratio', 'SHORT_TERM_DEBT_ISSUANCE': 'Short Term Debt Issuance', 'SHORT_TERM_DEBT_PAYMENTS': 'Short Term Debt Payments', 'SHORT_TERM_INVESTMENTS_AVAILABLE_FOR_SALE': 'Short Term Investments Available for Sale', 'SHORT_TERM_INVESTMENTS_HELD_TO_MATURITY': 'Short Term Investments Held to Maturity', 'SHORT_TERM_INVESTMENTS_TRADING': 'Short Term Investments Trading', 'SHOW': 'Show', 'SHOW_ALL': 'Show all', 'SHOW_ALL_RECENT_EVENTS': 'Show All Events', 'SHOW_ALL_RESULTS_FOR': 'Show all results for {query}', 'SHOW_CROSSHAIR': 'Show crosshair', 'SHOW_EARNINGS_FOR': 'Showing Earnings for: {symbol}', 'SHOW_INFO': 'Show Info', 'SHOW_LESS': 'Show less', 'SHOW_LESS_LIST': 'Show less lists', 'SHOW_LESS_ADS': 'Show less ads like this', 'SHOW_LINES': 'Show lines:', 'SHOW_MORE': 'Show more', 'SHOW_MORE_LIST': 'Show more lists', 'SHOW_MORE_ADS': 'Show more ads like this', 'SHOW_N_ROWS': 'Show {count} rows', 'SHOW_OHLC': 'Show OHLC', 'SHOW_SHORTCUTS': 'Show shortcuts/hotkeys', 'SHOW_TOOLTIP': 'Show Tooltip', 'SHOWING_CASH': 'Showing {first}-{last} of {total} total cash holdings', 'SHOWING_DIVIDENDS': 'Showing {first}-{last} of {total} total dividends', 'SHOWING_LOTS': 'Showing {first}-{last} of {total} total lots', 'SHOWING_TRANSACTIONS': 'Showing {first}-{last} of {total} total transactions', 'SIGNALS': 'Signals', 'SIGNIFICANT': 'Significant', 'SIGNIFICANT_DEVELOPMENT': 'Premium Significant Development', 'SIGNIFICANT_DEVELOPMENTS': 'Significant Developments', 'SIGN_IN': 'Sign In', 'SIGN_IN_AGAIN': 'Sign in again', 'SIGN_IN_TO_VOTE': 'Sign in to cast your vote', 'SIGN_IN_TO_ADD_WATCHLIST': 'Sign in to add to watchlist', 'SIGN_IN_TO_ADD_WATCHLIST_TO_TICKER': 'Sign in to never miss news about {companyName}', 'SIGN_IN_TO_FOLLOW_WATCHLIST': 'Sign in to follow this watchlist', 'SIGN_IN_TO_SEE_LIVESTREAM': 'Sign in to watch live stream', 'SIGN_OUT_ALL': 'Sign out all', 'SIGN_UP_PREMIUM': 'Sign up for Yahoo Finance Premium to get access to this insight', 'SIGN_UP_YAHOO_FINANCE_PLUS': 'Sign up for Yahoo Finance Plus to get access to this insight', 'SIGNUP_FORM_LIVESTREAM_TITLE': 'Sign up as a Yahoo Finance Livestreamer', 'SIG_INV_AREAS': 'Product Involvement Areas', 'SILVER': 'Silver', 'SILVER_DESC': 'Silver Stocks', 'SIMILAR_STOCKS': 'Similar stocks', 'SIMILAR_SYMBOLS': \"Symbols similar to '{symbol}'\", 'SIMILAR_TO': 'Similar to {symbol}', 'SINGAPORE': 'Singapore', 'SMALL_BUSINESS_TITLE': 'Small Business', 'SMALL_CAP_GAINERS': 'Small cap gainers', 'SMALL_CAP_GAINERS_DESC': 'Small Caps with a 1 day price change of 5.0% or more.', 'SMALL_TOOLS_ACCESSORIES': 'Small Tools & Accessories', 'SMALL_TOOLS_ACCESSORIES_DESC': 'Small Tools & Accessories Stocks', 'SOCIAL': 'Social Risk Score', 'SOFTWARE_SERVICES_TITLE': 'Computer Software & Services', 'SOLID_LARGE_GROWTH_FUNDS': 'Solid Large Growth Funds', 'SOLID_LARGE_GROWTH_FUNDS_DESC': 'Large Growth Funds with Performance Rating of 4 & 5 and top-half returns', 'SOLID_MIDCAP_GROWTH_FUNDS': 'Solid Mid-Cap Growth Funds', 'SOLID_MIDCAP_GROWTH_FUNDS_DESC': 'Mid-Cap Growth Funds with Performance Rating of 4 & 5 and top-half returns', 'SORT': 'Sort', 'SP500': 'S&P 500', 'SP500_52_WEEK_CHANGE': 'S&P500 52-Week Change', 'SPAIN': 'Spain', 'SPECIALIZED_HEALTH_SERVICES': 'Specialized Health Services', 'SPECIALIZED_HEALTH_SERVICES_DESC': 'Specialized Health Services Stocks', 'SPECIALTY_CHEMICALS': 'Specialty Chemicals', 'SPECIALTY_CHEMICALS_DESC': 'Specialty Chemicals Stocks', 'SPECIALTY_EATERIES': 'Specialty Eateries', 'SPECIALTY_EATERIES_DESC': 'Specialty Eateries Stocks', 'SPECIALTY_RETAIL_OTHER': 'Specialty Retail, Other', 'SPECIALTY_RETAIL_OTHER_DESC': 'Specialty Retail, Other Stocks', 'SPECIAL_INCOME_CHARGES': 'Special Income Charges', 'SPECIAL_REPORT': 'Special report', 'SPLIT': 'Stock Split', 'SPONSORED': 'Sponsored', 'SPORTING_ACTIVITIES': 'Sporting Activities', 'SPORTING_ACTIVITIES_DESC': 'Sporting Activities Stocks', 'SPORTING_GOODS': 'Sporting Goods', 'SPORTING_GOODS_DESC': 'Sporting Goods Stocks', 'SPORTING_GOODS_STORES': 'Sporting Goods Stores', 'SPORTING_GOODS_STORES_DESC': 'Sporting Goods Stores Stocks', 'SPORTSBOOK_TITLE': 'Sportsbook', 'STAFFING_OUTSOURCING_SERVICES': 'Staffing & Outsourcing Services', 'STAFFING_OUTSOURCING_SERVICES_DESC': 'Staffing & Outsourcing Services Stocks', 'STANDARD_DEVIATION': 'Standard Deviation', 'START_DATE': 'Start Date', 'START_LIVESTREAM': 'Start Livestream', 'STATUS_DESCRIPTION': 'An Open status indicates you hold shares for this position. A Closed status indicates you no longer own any shares for this position (but previously have). A No Shares status indicates you do not currently and previously have not owned shares for this position.', 'STOP_LIVESTREAM': 'Stop Livestream', 'CRYPTO_START_TRADING_NOW': 'Start trading cryptos now', 'STATISTICS': 'Statistics', 'STATISTICS_HELP': 'Statistics Help', 'STEEL_IRON': 'Steel & Iron', 'STEEL_IRON_DESC': 'Steel & Iron Stocks', 'STICKY_CROSSHAIR': 'Sticky crosshair', 'STOCKHOLDERS_EQUITY': \"Stockholders' Equity\", 'STOCKS': 'Stocks', 'STOCK_BASED_COMPENSATION': 'Stock based compensation', 'STOCK_PRICE': 'Stock Price', 'STOCK_PRICE_HISTORY': 'Stock Price History', 'STOCK_SPLITS': 'Stock Splits', 'STOCKS_MOST_BOUGHT_BY_HEDGE_FUNDS': 'Stocks Most Bought by Hedge Funds', 'STOCKS_MOST_BOUGHT_BY_PENSION_FUND': 'Stocks Most Bought by Pension Fund', 'STOCKS_MOST_BOUGHT_BY_PRIVATE_EQUITY': 'Stocks Most Bought by Private Equity', 'STOCKS_MOST_BOUGHT_BY_SOVEREIGN_WEALTH_FUND': 'Stocks Most Bought by Sovereign Wealth Fund', 'STOCKS_WITH_MOST_INSTITUTIONAL_BUYERS': 'Stocks with Most Institutional Buyers', 'STOCKS_WITH_MOST_INSTITUTIONAL_SELLERS': 'Stocks with Most Institutional Sellers', 'STOP_LOSS': 'Stop loss', 'STREAMING_QUOTES': 'Streaming Quotes', 'STRIKE': 'Strike', 'STRONG': 'Strong', 'STRONG_BUY': 'Strong Buy', 'STRONG_UNDERVALUED_STOCKS': 'Strong Undervalued Stocks', 'STRONG_UNDERVALUED_STOCKS_DESC': 'Undervalued stocks with a robust and consistent history of earnings and revenue growth.', 'SUBMIT': 'Submit', 'SUBORDINATED_LIABILITIES': 'Subordinated Liabilities', 'SUBSCRIBERS_PER_PERIOD': '{period} subscribers', 'SUMMARY': 'Summary', 'SUMMARY_COMPANY_PROFILE': 'Company Profile', 'SUNSET_WATIF': 'This watchlist will no longer be available after Sept. 29. Please copy the ticker symbols into a new portfolio if you wish to continue tracking them.', 'SUNSET_WATIFV2': 'This watchlist is no longer available. Please unfollow this watchlist to remove it from your portfolio. Click here to see other watchlists.', 'SUNSET_WATIFV3': 'This watchlist is no longer available. Please unfollow this watchlist to remove it from your portfolio. Click here to see a similar watchlist.', 'SUPPORT': 'Support', 'SURETY_TITLE_INSURANCE': 'Surety & Title Insurance', 'SURETY_TITLE_INSURANCE_DESC': 'Surety & Title Insurance Stocks', 'SURPRISE_PERCENT': 'Surprise %', 'SUSTAINABILITY': 'Sustainability', 'SUSTAINABILITY_NO_DATA_MESSAGE': 'Sustainability data is currently not available for {ticker}.', 'SYMBOLS': 'Symbols', 'SYMBOLS_WITH_COUNT': '{count} Symbols', 'SYMBOLS_WITH_NAME_COUNT': '{name} ({count} Symbols)', 'SYMBOL_ALONE': '{symbol}', 'SYMBOL_COUNT': '{count} symbols', 'SYNTHETICS': 'Synthetics', 'SYNTHETICS_DESC': 'Synthetics Stocks', 'TABLE_VIEW': 'Table View', 'TAGS_PLACEHOLDER': 'Help people find your livestream room', 'TAKE_THE_TOUR': 'Take the tour', 'TANGIBLE_BOOK_VALUE': 'Tangible Book Value', 'TAXES_PAYABLE': 'Taxes payable', 'TAXES_RECEIVABLE': 'Taxes Receivable', 'TAXES_REFUND_PAID': 'Taxes Refund Paid', 'TAXES_REFUND_PAID_DIRECT': 'Taxes Refund Paid Direct', 'TAX_EFFECT_OF_UNUSUAL_ITEMS': 'Tax Effect of Unusual Items', 'TAX_LOSS_CARRYFORWARD_BASIC_EPS': 'Tax Loss Carryforward Basic EPS', 'TAX_LOSS_CARRYFORWARD_DILUTED_EPS': 'Tax Loss Carryforward Diluted EPS', 'TAX_PROVISION': 'Tax Provision', 'TAX_RATE_FOR_CALCS': 'Tax Rate for Calcs', 'TD_200_DAY_AVERAGE': '200 Day Average', 'TD_50_DAY_AVERAGE': '50 Day Average', 'TD_52_WK_HIGH': '52 Week High', 'TD_52_WK_LOW': '52 Week Low', 'TD_52_WK_RANGE': '52 Week Range', 'TD_ADDED_DELETED': 'Add/Remove(7D)', 'TD_AMOUNT_PER_SHARE': 'Amount per share', 'TD_ANALYST_RATING': 'Avg. Analyst Rating', 'TD_ASK': 'Ask', 'TD_ASK_SIZE': 'Ask Size', 'TD_BID': 'Bid', 'TD_BID_SIZE': 'Bid Size', 'TD_BOOK_VALUE': 'Book Val', 'TD_BULLISH_BEARISH': 'Bullish/Bearish(7D)', 'TD_CASH_AMOUNT': 'Amount', 'TD_CHANGE': 'Change', 'TD_CHANGE_1D': 'Change(1D)', 'TD_CHANGE_1M': 'Change(1M)', 'TD_CURRENCY': 'Currency', 'TD_DATE_CREATED': 'Date Created', 'TD_DAY_AMOUNT_CHANGE': 'Day Change', 'TD_DAY_HIGH': 'Day High', 'TD_DAY_LOW': 'Day Low', 'TD_DAY_RANGE': 'Intraday High/Low', 'TD_DIVIDENDS_PER_SHARE': 'Dividends / Share', 'TD_DIVIDEND_PAYMENT_DATE': 'Dividend Payment Date', 'TD_DIVIDEND_YIELD': 'Dividend Yield', 'TD_EBITDA': 'EBITDA', 'TD_EPS': 'EPS', 'TD_EPS_TRAILING': 'EPS Trailing', 'TD_EXCHANGE': 'Exchange', 'TD_FOLLOWERS': 'Followers', 'TD_HIGH_LIMIT': 'High Limit', 'TD_LAST_TRADE_DATE': 'Last Trade Date', 'TD_LAST_UPDATED': 'Last Updated', 'TD_LIFETIME_PERCENT_CHANGE': 'Total Return', 'TD_LONG_TERM_GAIN_LOSS': 'Long Term Gain/Loss', 'TD_LOT': 'Lot', 'TD_LOTS': 'Lots', 'TD_LOT_VALUE': 'Lot Value', 'TD_LOW_LIMIT': 'Low Limit', 'TD_MARKET_CAP': 'Market Cap', 'TD_MARKET_TIME': 'Market Time', 'TD_MARKET_VALUE': 'Market Value', 'TD_NOTE': 'Note', 'TD_NOTES': 'Notes', 'TD_ONE_DAY_PERCENT_CHANGE': 'Change Today', 'TD_ONE_MONTH_PERCENT_CHANGE': '1 Month Return', 'TD_ONE_YEAR_PERCENT_CHANGE': '1 Year Return', 'TD_OPEN': 'Open', 'TD_PAYMENT_DATE': 'Payment Date', 'TD_PERCENT_CHANGE': '% Change', 'TD_POST_MARKET_CHANGE': 'Post-Market Change', 'TD_POST_MARKET_CHANGE_PERCENT': 'Post-Market % Change', 'TD_POST_MARKET_PRICE': 'Post-Market Price', 'TD_POST_MARKET_TIME': 'Post-Market Time', 'TD_PREV_CLOSE': 'Prev Close', 'TD_PRE_MARKET_CHANGE': 'Pre-Market Change', 'TD_PRE_MARKET_CHANGE_PERCENT': 'Pre-Market % Change', 'TD_PRE_MARKET_PRICE': 'Pre-Market Price', 'TD_PRE_MARKET_TIME': 'Pre-Market Time', 'TD_PRICE': 'Last Price', 'TD_PRICE_PAID_PER_SHARE': 'Price Paid', 'TD_PUBLISHER': 'Publisher', 'TD_SHARES': 'Shares', 'TD_SHARES_OUTSTANDING': 'Shares Out', 'TD_SHORT_TERM_GAIN_LOSS': 'Short Term Gain/Loss', 'TD_SPARKLINE': 'Day Chart', 'TD_STATUS': 'Status', 'TD_SYMBOL': 'Symbol', 'TD_SYMBOLS': 'Symbols', 'TD_THREE_MONTH': '3-Mo Return', 'TD_TODAYS_GAIN_UNREALIZED': \"Today's Gain (Unrealized)\", 'TD_TODAYS_RETURN': \"Today's Return\", 'TD_TOTAL_AMOUNT': 'Total Amount', 'TD_TOTAL_AMOUNT_CHANGE': 'Total Change', 'TD_TOTAL_COST': 'Total Cost', 'TD_TOTAL_DIVIDEND_INCOME': 'Total Dividend Income', 'TD_TOTAL_GAIN_UNREALIZED': 'Total Gain (Unrealized)', 'TD_TOTAL_PERCENT_CHANGE': 'Total % Change', 'TD_TOTAL_RETURN': 'Total Return', 'TD_TOTAL_TRADES': 'Total Trades', 'TD_TRADE_DATE': 'Trade Date', 'TD_VOLUME': 'Volume', 'TD_VOLUME_24HR': 'Volume (24hr)', 'TD_VOLUME_24HR_ALLCURRENCY': 'Volume (24hr) All Currencies', 'TD_VOLUME_IN_CURRENCY': 'Volume in Currency (Since 0:00 UTC)', 'TD_WATCHLIST': 'Watchlist', 'TECHNICAL': 'Technical', 'TECHNICALS': 'Technicals', 'TECHNICAL_ANALYSIS': 'Technical analysis', 'TECHNICAL_EVENTS': 'Technical Events', 'TECHNICAL_OUTLOOK': 'Technical Outlook', 'TECHNICAL_PATTERNS': 'Technical Patterns', 'TECHNICAL_SERVICES': 'Technical Services', 'TECHNICAL_SERVICES_DESC': 'Technical Services Stocks', 'TECHNICAL_SYSTEM_SOFTWARE': 'Technical & System Software', 'TECHNICAL_SYSTEM_SOFTWARE_DESC': 'Technical & System Software Stocks', 'TECHNOLOGY': 'Technology', 'TECHNOLOGY_DESC': 'Technology Stocks', 'TECH_TITLE': 'Technology', 'TECNOLOGIA_TITLE': 'Technology', 'TECNOLOGICAS_TITLE': 'Technology', 'TELECOMS_TITLE': 'Telecoms', 'TELECOMUNICACIONES-Y-TECNOLOGIA_TITLE': 'Telecommunications & Technology', 'TELECOMUNICACIONES_TITLE': 'Telecommunications', 'TELECOMUNICACOES-TECNOLOGIA_TITLE': 'Telecommunications & Technology', 'TELECOMUNICAZIONI_TITLE': 'Telecommunications', 'TELECOM_SERVICES_DOMESTIC': 'Telecom Services - Domestic', 'TELECOM_SERVICES_DOMESTIC_DESC': 'Telecom Services - Domestic Stocks', 'TELECOM_SERVICES_FOREIGN': 'Telecom Services - Foreign', 'TELECOM_SERVICES_FOREIGN_DESC': 'Telecom Services - Foreign Stocks', 'TELECOM_UTILITIES_TITLE': 'Telecom & Utilities', 'TEN_YEAR': '10-Year', 'TEN_YEAR_EXPENSE_PROJECTION': '10 Yr Expense Projection', 'TERM': 'Term', 'TERM_INTERMEDIATE': 'Intermediate', 'TERM_LONG': 'Long', 'TERM_MAP': ' - {period} term', 'TERM_SHORT': 'Short', 'TERMS_CONDITIONS': 'terms and conditions(required).', 'TERMS_COPY_INTRO': 'By clicking on \"Create livestream profile\" you agree as follows:', 'TEXT': 'Text', 'TEXTILE_APPAREL_CLOTHING': 'Textile - Apparel Clothing', 'TEXTILE_APPAREL_CLOTHING_DESC': 'Textile - Apparel Clothing Stocks', 'TEXTILE_APPAREL_FOOTWEAR_ACCESSORIES': 'Textile - Apparel Footwear & Accessories', 'TEXTILE_APPAREL_FOOTWEAR_ACCESSORIES_DESC': 'Textile - Apparel Footwear & Accessories Stocks', 'TEXTILE_INDUSTRIAL': 'Textile Industrial', 'TEXTILE_INDUSTRIAL_DESC': 'Textile Industrial Stocks', 'TEXTIL_TITLE': 'Textile', 'THEMATIC_REPORT': 'Thematic report', 'THEME': 'Theme', 'THOUSAND_SHORT': '{num}k', 'THREE_MONTH': '3-Month', 'THREE_YEAR': '3-Year', 'THREE_YEAR_AVERAGE_RETURN': '3y Average Return', 'THREE_YEAR_DTR': '3-Year Daily Total Return', 'THREE_YEAR_EARNINGS_GROWTH': '3 Year Earnings Growth', 'THREE_YEAR_EXPENSE_PROJECTION': '3 Yr Expense Projection', 'TICKER_SHARE_EMAIL_TITLE': 'My shared ticker list on Yahoo Finance', 'TIME': 'Time', 'TIME_PERIOD': 'Time Period', 'TITLE': 'Title', 'TITLE_PLACEHOLDER': \"Let your audience know what you're talking about\", 'TICKERS_PLACEHOLDER': 'Provide related information when your audience watches your livestream', 'TO': 'To', 'TOBACCO_PRODUCTS_OTHER': 'Tobacco Products, Other', 'TOBACCO_PRODUCTS_OTHER_DESC': 'Tobacco Products, Other Stocks', 'TODAY': 'Today', 'TODAY_GAIN_DESCRIPTION': 'Today’s Gain is the gain on a portfolio position for the most recent trading day.', 'TOP': 'Top', 'TOP_ETFS': 'Top ETFs', 'TOP_ETFS_DESC': 'ETFs with Performance Rating of 4 & 5 ordered by Percent Change', 'TOP_HOLDINGS': 'Top Holdings', 'TOP_HOLDINGS_QUOTES': 'Get Quotes for Top Holdings', 'TOP_HOLDINGS_WITH_ASSETS': 'Top {count} Holdings ({asset}% of Total Assets)', 'TOP_MUTUAL_FUNDS': 'Top Mutual Funds', 'TOP_MUTUAL_FUNDS_DESC': 'Funds with Performance Rating of 4 & 5 ordered by Percent Change', 'TOP_STOCKS_OWNED_BY_CATHIE_WOOD': 'Top Stocks owned by Cathie Wood', 'TOP_STOCKS_OWNED_BY_GOLDMAN_SACHS': 'Top Stocks owned by Goldman Sachs', 'TOP_STOCKS_OWNED_BY_RAY_DALIO': 'Top Stocks owned by Ray Dalio', 'TOP_STOCKS_OWNED_BY_WARREN_BUFFET': 'Top Stocks owned by Warren Buffet', 'TOP_STORIES_TITLE': 'Top Stories', 'TOP_TEN_COMPONENTS': 'Top {limit} Components', 'TOTAL_ASSETS': 'Total Assets', 'TOTAL_CAPITALIZATION': 'Total Capitalization', 'TOTAL_CASH': 'Total Cash', 'TOTAL_CASH_FLOW_FROM_FIN_ACT': 'Total Cash Flows From Financing Activities', 'TOTAL_CASH_FLOW_FROM_INVEST_ACT': 'Total Cash Flows From Investing Activities', 'TOTAL_CASH_FLOW_FROM_OP_ACT': 'Total Cash Flow From Operating Activities', 'TOTAL_CASH_HOLDINGS': 'Total Cash Holdings', 'TOTAL_CASH_HOLDINGS_DESCRIPTION': 'Total Cash Holdings is your total cash on hand.', 'TOTAL_CASH_PER_SHARE': 'Total Cash Per Share', 'TOTAL_CHANGE': 'Total Chg', 'TOTAL_CHANGE_PCT': 'Total Chg %', 'TOTAL_CURRENT_ASSETS': 'Total Current Assets', 'TOTAL_CURRENT_LIABILITIES': 'Total Current Liabilities', 'TOTAL_DEBT': 'Total Debt', 'TOTAL_DEBT_TO_EQUITY': 'Total Debt/Equity', 'TOTAL_DEFERRED_CREDITS_AND_OTHER_NON_CURRENT_LIABILITIES': 'Total Deferred Credits & Other Non Current Liabilities', 'TOTAL_DEPOSITS': 'Total Deposits', 'TOTAL_EMPLOYMENT': 'Total \\nEmployment', 'TOTAL_EQUITY_GROSS_MINORITY_INTEREST': 'Total Equity Gross Minority Interest', 'TOTAL_EXPENSES': 'Total Expenses', 'TOTAL_GAIN': 'Total Gain', 'TOTAL_GAIN_DESCRIPTION': 'Total gain is the gain on a portfolio position across the entire period the stock has been held for.', 'TOTAL_HOLDINGS': 'Total Holdings', 'TOTAL_INSIDER_SHARES_HELD': 'Total Insider Shares Held', 'TOTAL_INVESTMENTS': 'Total Investments', 'TOTAL_LIABILITIES': 'Total Liabilities', 'TOTAL_LIABILITIES_AND_STOCKHOLDERS_EQUITY': \"Total liabilities and stockholders' equity\", 'TOTAL_LIABILITIES_NET_MINORITY_INTEREST': 'Total Liabilities Net Minority Interest', 'TOTAL_MARKET_VALUE': 'Total Market Value', 'TOTAL_MONEY_MARKET_INVESTMENTS': 'Total Money Market Investments', 'TOTAL_NET_ASSETS': 'Total Net Assets', 'TOTAL_NON_CURRENT_ASSETS': 'Total non-current assets', 'TOTAL_NON_CURRENT_LIABILITIES': 'Total non-current liabilities', 'TOTAL_NON_CURRENT_LIABILITIES_NET_MINORITY_INTEREST': 'Total Non Current Liabilities Net Minority Interest', 'TOTAL_OPERATING_EX': 'Total Operating Expenses', 'TOTAL_OPERATING_INCOME_AS_REPORTED': 'Total Operating Income as Reported', 'TOTAL_OTHER_FINANCE_COST': 'Total Other Finance Cost', 'TOTAL_OTHER_INCOME_EXPENSES_NET': 'Total Other Income/Expenses Net', 'TOTAL_PARTNERSHIP_CAPITAL': 'Total Partnership Capital', 'TOTAL_PERCENT_GAIN': 'Total % Gain', 'TOTAL_PREMIUMS_EARNED': 'Total Premiums Earned', 'TOTAL_RETURN_DESCRIPTION': 'Total Return indicates the total gain for a particular stock or portfolio.', 'TOTAL_REVENUE': 'Total Revenue', 'TOTAL_STOCKHOLDER_EQUITY': \"Total stockholders' equity\", 'TOTAL_TAX_PAYABLE': 'Total Tax Payable', 'TOTAL_UNUSUAL_ITEMS': 'Total Unusual Items', 'TOTAL_UNUSUAL_ITEMS_EXCLUDING_GOODWILL': 'Total Unusual Items Excluding Goodwill', 'TOYS_GAMES': 'Toys & Games', 'TOYS_GAMES_DESC': 'Toys & Games Stocks', 'TOY_HOBBY_STORES': 'Toy & Hobby Stores', 'TOY_HOBBY_STORES_DESC': 'Toy & Hobby Stores Stocks', 'TRACK_WATCHLIST_PERFORMANCE': 'Track Watchlist Performance', 'TRADE': 'Trade', 'TRADEAND_OTHER_PAYABLES_NON_CURRENT': 'Tradeand Other Payables Non Current', 'TRADE_IDEA': 'Premium Investment Idea', 'TRADE_IDEAS': 'Investment Ideas', 'TRADE_TYPE': 'Trade type', 'TRADING_ASSETS': 'Trading Assets', 'TRADING_GAIN_LOSS': 'Trading Gain Loss', 'TRADING_INFORMATION': 'Trading Information', 'TRADING_LIABILITIES': 'Trading Liabilities', 'TRADING_SECURITIES': 'Trading Securities', 'TRAILING_ANNUAL_DIVIDEND_RATE': 'Trailing Annual Dividend Rate', 'TRAILING_ANNUAL_DIVIDEND_YIELD': 'Trailing Annual Dividend Yield', 'TRAILING_PERFORMANCE': 'Trailing Performance', 'TRAILING_RETURNS': 'Trailing Returns (%) Vs. Benchmarks', 'TRANS': 'Trans', 'TRANSACTION': 'Transaction', 'TRANSACTION_TYPE': 'Transaction Type', 'TRANSACTIONS': 'Transactions', 'TRANSACTION_DATAILS': 'Transaction Details', 'TRANSACTION_UPDATED_SUCCESSFULLY': 'Transaction for {symbol} updated successfully. ', 'TRAVEL_TITLE': 'Travel', 'TREASURY_SHARES_NUMBER': 'Treasury Shares Number', 'TREASURY_STOCK': 'Treasury Stock', 'TREE_MAP_COLOR': 'Color:', 'TREE_MAP_SIZE': 'Size:', 'TRADINGCENTRAL_EVENT': 'Technical Event Screener', 'TRENDING_TICKERS_TITLE': 'Trending Tickers', 'TRENDING_TICKERS_DESC': \"See what's trending now in the markets\", 'TRENDING_TODAY': 'Trending Today', 'TREYNOR_RATIO': 'Treynor Ratio', 'TRIGGER_ALERT': 'Price Alert', 'TRILLION_SHORT': '{num}T', 'TRUCKING': 'Trucking', 'TRUCKING_DESC': 'Trucking Stocks', 'TRUCKS_OTHER_VEHICLES': 'Trucks & Other Vehicles', 'TRUCKS_OTHER_VEHICLES_DESC': 'Trucks & Other Vehicles Stocks', 'TRUMPONOMICS_ABOUT_HEADER': 'About this report card', 'TRUMPONOMICS_DESCRIPTION': 'Yahoo Finance is tracking the performance of the economy under President Donald Trump, compared with six prior presidents going back to Jimmy Carter. We’ve chosen six key economic indicators that directly affect the well-being of ordinary Americans, with data provided by {moody}. Know more about {methodology}, and click on the articles below to get the latest updates.', 'TRUMPONOMICS_HEADER': 'Yahoo Finance Trumponomics Report Card', 'TRUMPONOMICS_LAST_UPDATED': 'Last Updated: {date}', 'TRUMPONOMICS_META_DESCRIPTION': 'Yahoo Finance is tracking the performance of the economy under President Donald Trump, compared with six prior presidents going back to Jimmy Carter.', 'TRUMPONOMICS_META_KEYWORDS': 'Trump, Donald Trump, President Trump, Jobs, Economy, Manufacturing, Unemployment, Income, Incomes, Wages, Earnings, Pay, Trade, Exports, Imports, Stocks, Stock market, GDP, Economic growth, Growth, Obama, Bush, Clinton, Reagan, Carter, Trumponomics, Trumpenomics, Trumpanomics, Middle class, Wealth, Inequality, Living standards', 'TRUMPONOMICS_META_TITLE': 'Yahoo Finance - Trumponomics Report Card', 'TRUMPONOMICS_METHODOLOGY': 'our methodology', 'TRUMPONOMICS_NO_COL_DATA': '(No data yet)', 'TRUMPONOMICS_NO_DATA': 'Trumponomics data is currently not available.', 'TRUMPONOMICS_RAW_DATA': 'View raw data.', 'TRUST_FEESBY_COMMISSIONS': 'Trust Fees by Commissions', 'TRY_AGAIN': 'Try again', 'TRY_BETA_PORTFOLIOS': 'Try the new Portfolio Beta experience', 'TRY_NEW_CHART': 'Try the new and improved charts', 'TRY_IT_FREE': 'Try it free', 'TRY_LATER': 'Try later', 'TRY_NOW': 'Try now', 'TTM': 'ttm', 'TUMBLR': 'Tumblr', 'TUMBLR_SHARE': 'Reblog', 'TURISMO-Y-SERVICIOS_TITLE': 'Tourism and Services', 'TWITTER': 'Twitter', 'TWITTER_SHARE': 'Tweet', 'TYPE': 'Type', 'UH_SEARCH_FIND': 'Find a quote (e.g. VZ)', 'UH_SEARCH_MOBILE_WEB': 'Quote Lookup', 'UH_SEARCH_MOBILE_WEB_V2': 'Search for news or symbols', 'UH_SEARCH_WEB': 'Search for news, symbols or companies', 'UNADJUSTED_CLOSE': 'Close*', 'UNBILLED_RECEIVABLES': 'Unbilled Receivables', 'UNDER': 'Under', 'UNDERPERFORM': 'Underperform', 'UNDERVALUED': 'Undervalued', 'UNDERVALUED_GROWTH_STOCKS': 'Undervalued Growth Stocks', 'UNDERVALUED_GROWTH_STOCKS_DESC': 'Stocks with earnings growth rates better than 25% and relatively low PE and PEG ratios.', 'UNDERVALUED_LARGE_CAPS': 'Undervalued Large Caps', 'UNDERVALUED_LARGE_CAPS_DESC': 'Large cap stocks that are potentially undervalued.', 'UNDERVALUED_WIDE_MOAT_STOCKS': 'Undervalued Wide-Moat Stocks', 'UNDERVALUED_WIDE_MOAT_STOCKS_DESC': \"Morningstar's undervalued stocks with a sustainable competitive advantage. A company with a wide economic moat can fend off competition for at least 20 years and earn high returns on capital for years to come.\", 'UNDERWRITING_EXPENSES': 'Underwriting Expenses', 'UNDO': 'Undo', 'UNEARNED_INCOME': 'Unearned Income', 'UNEARNED_PREMIUMS': 'Unearned Premiums', 'UNIT': 'Unit', 'UNITED_KINGDOM': 'United Kingdom', 'UNKNOWN_QUOTE_TITLE': \"The symbol {symbol} doesn't exist. Try looking again!\", 'UNLINK_BROKER': 'Unlink Broker', 'UNLINK_BROKER_CONFIRM': 'Unlink Broker?', 'UNPAID_LOSS_AND_LOSS_RESERVE': 'Unpaid Loss & Loss Reserve', 'UNREALIZED_GAINS_LOSSES_ON_DERIVATIVES': 'Unrealized Gains Losses On Derivatives', 'UNREALIZED_GAIN_LOSS': 'Unrealized Gain Loss', 'UNREALIZED_GAIN_LOSS_ON_INVESTMENT_SECURITIES': 'Unrealized Gain Loss On Investment Securities', 'UNSELECT_ALL': 'Unselect All', 'UP': 'Up', 'UPDATE_YOUR_HOLDINGS_MSG': 'Please update your holdings to utilize premium portfolio features', 'UPDATE_YOUR_HOLDINGS': 'Update your holdings', 'UPCOMING_EVENTS': 'Upcoming Events', 'UPGRADE': 'Upgrade', 'UPGRADES_DOWNGRADES': 'Upgrades & Downgrades', 'UPSIDE_BREAKOUT_STOCKS_DAILY': 'Upside Breakout Stocks', 'UP_LAST_30_DAYS': 'Up Last 30 Days', 'UP_LAST_7_DAYS': 'Up Last 7 Days', 'USERNAME': 'Username', 'USERNAME_PLACEHOLDER': 'Enter your username showed to your followers', 'USER_INSIGHTS_MOST_VISITED_DESCRIPTION': 'See what users are checking out for insights and trade inspiration.', 'USER_INSIGHTS_VISITS_TREND_UP': 'User visits are up', 'USER_INSIGHTS_VISITS_TREND_DOWN': 'User visits are down', 'USER_INSIGHTS_MOST_VISITED_TITLE': 'Frequently visited sectors and companies', 'USER_INSIGHTS_VISITS_LAST_7D': 'over the last 7 days.', 'USER_VISITS_TREND_POSITIVE': 'There has been a {percent} increase in visits over the last 7 days.', 'USER_VISITS_TREND_NEGATIVE': 'There has been a {percent} decrease in visits over the last 7 days.', 'US_AND_CANADA': 'US & Canada', 'UPDATE_YOUR_SETTINGS': 'Update your settings here to see it.', 'UTILITIES': 'Utilities', 'UTILITIES_DESC': 'Utilities Stocks', 'VALUATION': 'Valuation', 'VALUATION_MEASURES': 'Valuation Measures', 'VALUATION_METRIC': 'Valuation Metric', 'VALUE': 'Value', 'VALUES_AND_PRACTICES': 'Products and Activities', 'VALUE_DESCRIPTION': 'Value Description', 'VAREJO_TITLE': 'Retail', 'VERTICAL': 'Vertical', 'VIDEOS': 'Videos', 'VIDEOS_TITLE': 'Featured Videos', 'VIDEO_UNSUPPORTED': 'Video Player is not supported by your current browser version.', 'VIEW': 'View', 'VIEW_ALL': 'View all', 'VIEW_ALL_CONVERSATIONS': 'View all conversations', 'VIEW_ALL_CONVERSATIONS_WITH_AMOUNT': 'View all {amount} conversations', 'VIEW_ALL_MATCHES': 'View all {totalCount} matches', 'VIEW_ALL_TRADE_IDEAS': 'View all investment ideas', 'VIEW_CHART': 'View Chart', 'VIEW_CONTENT_PRIVACY_MSG': 'This content is not available due to your privacy preferences.', 'VIEW_DETAILS': 'View details', 'VIEW_FEWER_CASH': 'View fewer cash holdings', 'VIEW_FEWER_DIVIDENDS': 'View fewer dividends', 'VIEW_FEWER_SHARE_LOTS': 'View fewer lots', 'VIEW_FEWER_TRANSACTIONS': 'View fewer transactions', 'VIEW_FILING': 'View Filing', 'VIEW_IN_CHART': 'View in chart', 'VIEW_LIST_PREVIEW': 'See list preview', 'VIEW_MORE': 'View more', 'VIEW_LESS': 'View less', 'VIEW_MORE_RELATED_FILINGS': 'View more related filings', 'VIEW_MORE_SUGGESTED_STOCK': 'View more suggested stocks', 'VIEW_OLDER_CASH': 'View older cash holdings', 'VIEW_OLDER_DIVIDENDS': 'View older dividends', 'VIEW_OLDER_SHARE_LOTS': 'View older lots', 'VIEW_OLDER_TRANSACTIONS': 'View older transactions', 'VIEW_ORDERS': 'View Orders', 'VIEW_QUOTE_SUMMARY': 'Go to Quote Summary Page', 'VISITORS_TREND': 'Visitors trend', 'VISITS': 'Visits', 'VOLUME_RANGE': '{0} x {1}', 'WALLET': 'Wallet', 'WAS_THIS_HELPFUL': 'Was this helpful?', 'WASTE_MANAGEMENT': 'Waste Management', 'WASTE_MANAGEMENT_DESC': 'Waste Management Stocks', 'WATCHLISTS': 'Watchlists', 'WATCHLIST_BY': 'Watchlist by {brand}', 'WATCHLIST_SIGNIN': 'Sign-in to view your list and add symbols.', 'WATCHLIST_SIGNIN_AGAIN': 'Sign-in again to view your list.', 'WATER_PRODUCTION': 'Water Production', 'WATER_UTILITIES': 'Water Utilities', 'WATER_UTILITIES_DESC': 'Water Utilities Stocks', 'WAVE_TEMPLATE': 'Wave Template:', 'WEBSITE': 'Website', 'WELCOME_BACK_USER': 'Welcome back {userid}!', 'WEEKLY': 'Weekly', 'WEEK_AHEAD': 'Earnings This Week', 'WEEK_UPDATE_MSG': '{status} by {value} points week by week', 'WEIGHTED_AVG_SHARE': 'Weighted average shares outstanding', 'WHOLESALE_OTHER': 'Wholesale, Other', 'WHOLESALE_OTHER_DESC': 'Wholesale, Other Stocks', 'WIRELESS_COMMUNICATIONS': 'Wireless Communications', 'WIRELESS_COMMUNICATIONS_DESC': 'Wireless Communications Stocks', 'WITHDRAWALS': 'Withdrawals', 'WORKING_CAPITAL': 'Working Capital', 'WORK_IN_PROCESS': 'Work in Process', 'WORLD_INDICES_TITLE': 'World Indices', 'WORLD_TITLE': 'World', 'WORST_ONE_YR_TOTAL_RETURN': 'Worst 1 Yr Total Return ({date})', 'WORST_THREE_YR_TOTAL_RETURN': 'Worst 3-Yr Total Return', 'WRITE_OFF': 'Write Off', 'YAHOO_FINANCE': 'Yahoo Finance', 'YAHOO_FINANCE_FULL': 'Yahoo Finance', 'YAHOO_FINANCE_PODCAST': 'Yahoo Finance Podcast', 'YAHOO_FINANCE_SCREENERS': 'Yahoo Finance Screeners', 'YAHOO_FINANCE_PLUS_SCREENERS': 'Yahoo Finance Plus Screeners', 'YAHOO_PLUS_SCREENERS': 'Yahoo Plus Screeners', 'YAHOO_SMALL_BUSINESS_TITLE': 'Yahoo Small Business', 'YEAR': 'Year', 'YEARS': '{n} Years', 'YEARLY': 'Yearly', 'YEAR_AGO_EPS': 'Year Ago EPS', 'YEAR_AGO_SALES': 'Year Ago Sales', 'YEAR_BORN': 'Year Born', 'YES': 'Yes', 'YO': '{age} yo.', 'YORIG_TITLE': 'Yahoo Originals', 'YOY': 'yoy', 'YTD': 'YTD', 'YTD_DTR': 'YTD Daily Total Return', 'YTD_RETURN': 'YTD Return', 'YTD_RETURN_MKT': 'Year-to-Date Return (Mkt)', 'YTD_RETURN_PCT': 'Year-to-Date Return', 'Y_AXIS_SCALE': 'Y-axis scale', 'YOU_MIGHT_ALSO_LIKE': 'You might also like', 'ZOOM_IN': 'Zoom in', 'ZOOM_OUT': 'Zoom out', '{0} - {1}': '{0} - {1}'}, 'tdv2-wafer-header': {'ABOUT': 'About', 'ABOUT_OUR_ADS': 'About Our Ads', 'ACCOUNT_LOGIN_CTA': 'Already have an account?', 'ACCOUNT_SIGN_UP_CTA': \"Don't have one?\", 'ACCOUNT_MANAGE': 'Manage Accounts', 'ADVERTISE': 'Advertise', 'ADVERTISE_CHOICES': 'Advertising Choices', 'AOL': 'Aol', 'ANSWERS': 'Answers', 'ATT': 'AT&T', 'ATT_ENVIVO': 'AT&T En Vivo', 'ATT_MY': 'myAT&T', 'ATT_MY_APP': 'myAT&T App', 'ATT_SHOP': 'Shop AT&T', 'ATT_SUPPORT': 'AT&T Customer Support', 'ATT_E1': 'En Espanol', 'ATT_E1_WEATHER': 'El Tiempo', 'ATT_SRVS': 'AT&T Services', 'ATT_DTV': 'DIRECTV', 'ATT_DTVN': 'DIRECTV STREAM', 'ATT_WIRELESS': 'AT&T Wireless', 'ATT_UPGRADE': 'Upgrade Your Device', 'ATT_ADD_LINE': 'Add a Line', 'ATT_FIBER': 'AT&T Fiber', 'ATT_INTERNET': 'AT&T Internet', 'ATT_BUSINESS': 'Phones & Devices', 'ATT_ADVERTISE_CHOICES': 'Advertising Choices', 'ATT_AUP': 'AUP', 'ATT_ADVERTISE': 'Advertise', 'ATT_FEEDBACK': 'Feedback', 'ATT_PRIVACY': 'Privacy', 'ATT_TERMS': 'Terms', 'ATT_HELP': 'Site Help', 'ATT_HOLIDAYS': 'Holidays', 'ATT_THISMONTH': 'This Month', 'AUCTION': 'Auction', 'AUP': 'AUP', 'BACK': 'Back', 'BLACKLIVESMATTER': 'Black Lives Matter', 'BLACK_HISTORY': 'Black History', 'BUILD': 'Build', 'BUY_CENTER': 'Shopping center', 'CANADA_EN': 'Canada (EN)', 'CANADA_FR': 'Canada (FR)', 'CANCEL': 'Cancel', 'CAREERS': 'Careers', 'CLEAR_SEARCH': 'Clear Search', 'COMPOSE': 'Compose', 'COMPOSE_EMAIL': 'Compose email', 'COMPOSE_RAQUO': 'Compose »', 'CORONAVIRUS': 'COVID-19', 'CELEBRITY': 'Celebrity', 'CRICKET': 'Cricket', 'DELAS': 'Group buy', 'DO_NOT_SHOW_MAIL': 'Do not show my mail', 'WEATHER': 'Weather', 'HEALTH': 'Health', 'VIDEO': 'Video', 'MOBILE': 'Mobile', 'ELECTION': '2020 Election', 'ENTERTAINMENT': 'Entertainment', 'DELETE': 'Delete', 'FEEDBACK': 'Feedback', 'FINANCE': 'Finance', 'FREE': 'FREE', 'FRONTIER': 'Frontier', 'FRONTIER_MAIL': 'Frontier Mail', 'FRONTIER_BILLPAY': 'Online Bill Pay', 'FRONTIER_COM': 'Frontier.com', 'FRONTIER_HELP': 'Frontier Help Center', 'FRONTIER_SRVS': 'Frontier Services', 'FRONTIER_BILLPAY_D': 'Bill Pay', 'FRONTIER_MAIL_D': 'FTR Mail', 'GAMES': 'Games', 'SOLITAIRE': 'Solitaire', 'CROSSWORD': 'Crossword', 'GET_ATT_MAIL': 'Get AT&T Mail', 'GO_TO_MAIL': 'Go To Mail', 'GO_TO_MAIL_RAQUO': 'Go To Mail »', 'GO_TO_YAHOO_MAIL': 'Go To Yahoo Mail »', 'GOOGLE_CUSTOM_SEARCH': 'Powered by Google search', 'HANDWRITE_TITLE': 'Input by hand write', 'HANDWRITE_SPONSOR': 'Powered by Penpower', 'HELP': 'Help', 'HOME': 'Home', 'HIDE_THIS_WIDGET': 'No thanks, hide this widget', 'INBOX': 'Inbox', 'INBOX_PREVIEW_SHOW_LESS': 'Show less', 'INBOX_PREVIEW_SHOW_MORE': 'Show more', 'INBOX_PREVIEW_SUBHEADER': 'Inbox Preview', 'IN_THE_KNOW': 'In The Know', 'INSPIRED_BY': 'Inspired By', 'LIFE': 'Life', 'LIFESTYLE': 'Lifestyle', 'LOADING': 'Loading', 'LOGIN': 'Login', 'LOGOUT': 'Logout', 'LOGO_OVERRIDE': 'Happy Lunar New Year', 'LOGO_VALENTINES_DAY': \"Happy Valentine's Day\", 'MAIL': 'Mail', 'MAIL_PREVIEW_PREF': 'mail preview preference', 'MAIL_FROM': 'Mail From: ', 'MAIL_SUBJECT': 'Subject: ', 'MAKERS': 'MAKERS', 'MALL': 'Mall', 'MARK_AS_SPAM': 'Mark as spam', 'MARKET_MOVERS': 'Market Movers', 'MORE': 'More...', 'MORE_PRODUCTS_SERVICES': 'More Products & Services', 'MOVIES': 'Movies', 'MY_CHANNEL': 'My Channel', 'MY_MAIL': 'My Mail', 'MY_VIDEO_CHANNEL': 'My Video Channel', 'MY_YAHOO_MAIL': 'My Yahoo Mail', 'MY_YAHOO_MAIL_SIGNED_OUT_INTRO': 'Check multiple mail accounts from one place', 'MY_YAHOO': 'My Yahoo', 'NEW_TEXT': 'New', 'NEWS': 'News', 'NOTIFICATIONS': 'Notifications', 'NO_MESSAGES_TO_DISPLAY': 'No messages to display', 'NO_NEW_NOTIFICATIONS': 'You have no new notifications.', 'NOTIF_ONBOARD_LABEL': 'Notify Me', 'NOTIF_ONBOARD_MSG': 'Get Notifications for Your Favorite Topics', 'OUR_BRANDS': 'Our brands', 'PLEASE_CHECK_BACK_LATER': 'Please check back later.', 'POLITICS': 'Politics', 'PROFILE': 'Profile', 'PRIVACY': 'Privacy', 'PRIVACY_ICON_ALT': 'Privacy rights icon', 'PRIVACY_UPDATED': 'Privacy (Updated)', 'PUBLISHER_MANAGEMENT': 'Manage Publishers', 'REFRESH': 'Refresh', 'REL_DAYS': '{0}d', 'REL_HOURS': '{0}h', 'REL_MINS': '{0}m', 'REL_MONTHS': '{0}mo', 'REL_SECS': '{0}s', 'REL_WEEKS': '{0}wk', 'REL_YEARS': '{0}yr', 'REPORT_BUG': 'Report a Bug', 'ROGERS': 'Rogers', 'ROGERSCA_CHATELAINE': 'Chatelaine', 'ROGERSCA_MACLEANS': 'Macleans', 'ROGERSCA_SPORTSNET': 'Sportsnet', 'ROGERS_COM': 'Rogers.com', 'ROGERSCA_SUPPORT': 'Rogers Support', 'ROGERSCA_SRVS': 'Rogers Services', 'ROGERSCA_FRENCH': 'French', 'ROGERSCA_ENGLISH': 'English', 'ROGERSCF_CHATELAINE': 'Châtelaine', 'ROGERSCF_LACTUALITE': \"L'actualité\", 'ROGERSCF_HELP': 'Soutien Rogers', 'ROGERSCF_SRVS': 'Services Rogers', 'PREMIUM_OFFERS': 'Premium Offers', 'TECH_TIPS': 'Tech Tips', 'YAHOO_PLUS': 'Yahoo Plus', 'SEARCH': 'Search', 'SELECT_MESSAGE': 'Select message', 'SETTINGS': 'Settings', 'SEND_FEEDBACK': 'Send Feedback', 'SHOPPING': 'Shopping', 'SIGNIN': 'Sign in', 'SIGNIN_TO_MAIL': 'Sign in to Yahoo Mail', 'SIGNOUT': 'Sign Out', 'SIGNUP': 'Sign Up', 'SHOW_ME_MY_MAIL': 'Yes, show me my mail', 'SKIP_TO_MAIN_CONTENT': 'Skip to Main Content', 'SKIP_TO_NAVIGATION': 'Skip to Navigation', 'SKIP_TO_RELATED_CONTENT': 'Skip to Related Content', 'SKULLDUGGERY': 'Skullduggery', 'SPORTS': 'Sports', 'STYLE': 'Style', 'STAYHOME': 'StayHome', 'STOCK': 'Stock', 'STORE': 'Store', 'SUBSCRIPTIONS': 'Premium Offers', 'SUPPLY_CHAIN': 'Supply Chain Transparency', 'SWITCH_BACK_TO_CLASSIC': 'Switch Back to Classic Yahoo', 'TERMS': 'Terms', 'TERMS_UPDATED': 'Terms (Updated)', 'THE_RUSH': 'The Rush', 'TO_VIEW_YOUR_MAIL': 'To view your Yahoo Mail, you need to sign in to your account', 'TOP_SEARCH': 'Top Search:', 'TOPICS_MANAGEMENT': 'Manage Topics', 'TV': 'TV', 'FINANCE_UH_SEARCH_WEB': 'Search for news, symbols or companies', 'SPORTS_UH_SEARCH_WEB': 'Search Players and Teams', 'UNABLE_TO_PREVIEW': 'We are unable to preview your mail.', 'VERIZON': 'Verizon', 'VIEW_INBOX': 'View inbox', 'VIEW_YOUR_MAIL_TEXT': 'To view your Yahoo Mail, you need to sign in to your account', 'VIEW_YOUR_MAIL': \"Sign in to view your mail\", 'VIEW_YOUR_MAIL_MORE': \"Sign in to view your mail, and more\", 'WOMEN': 'Women', 'WOMENS_HISTORY': \"Women's History\", 'WOULD_YOU_LIKE_TO_SEE': 'Would you like to see a preview of your Yahoo Mail inbox here?', 'YAHOO': 'Yahoo', 'YAHOO_POWERED': 'Powered by Yahoo', 'YAHOO_SPORTS': 'Yahoo Sports', 'YAHOO_FANTASY': 'Yahoo Fantasy', 'YOU_CAN_MANAGE_YOUR_FEED': 'You can manage your feed here'}, 'react-finance': {'200_DAY_MOVING_AVG': '200-Day Moving Average', 'AD': 'Ad', 'ADVERTISE_WITH_US': 'Advertise with us', 'ADFB_CLOSE': 'Close', 'ADFB_DISLIKE_AD_HIDDEN': 'This ad has been hidden', 'ADFB_DISLIKE_AD_HIDDEN_DETAIL': 'Improve your future experience.', 'ADFB_DISLIKE_AD_HIDDEN_DETAIL_LONG': 'You can give additional feedback on this ad to improve your future experience.', 'ADFB_HEADING': \"Why don't you like this ad?\", 'ADFB_REVIEW': \"We'll review and make changes needed\", 'ADFB_SEND_FEEDBACK': 'Send Feedback', 'ADFB_SOMETHING_ELSE_PLACEHOLDER': \"Why don't you like this ad\", 'ADFB_THANKYOU': 'Thanks for your feedback!', 'ADFB_UNDO': 'Undo', 'AD_DISLIKE': \"I don't like this ad\", 'AD_DISLIKE_DETAIL': 'Show fewer ads like this', 'AD_FEEDBACK': 'Ad Feedback', 'AD_FEEDBACK_ADLITE_PROMO': 'Try Yahoo Finance Plus', 'AD_GIVE_FEEDBACK': 'Give Feedback', 'AD_LIKE': 'I like this ad', 'AD_LIKE_DETAIL': 'Show more ads like this', 'AD_TERMS': 'Why this ad?', 'ADD_SYMBOL': 'Add Symbol', 'ADD_TO_WATCHLIST': 'Add to Watchlist', 'ADVERTISEMENT': 'Advertisement', 'AERONAUTICS_TITLE': 'Aeronautics', 'ALGO_WATCHLIST': 'Watchlist', 'AND': 'and', 'APP_PROMO_OPEN_APP': 'Open in App', 'AUDIOVISUAL_MEDIA_TITLE': 'Audiovisual and Media', 'AUTO_TITLE': 'Auto', 'AUTOCOMPLETE_PLACEHOLDER': 'VZ, AAPL, TSLA', 'AUTOS_TITLE': 'Autos', 'AUTOS_TRANSPORTATION_TITLE': 'Autos & Transportation', 'AVG_VOL_10_DAY': 'Avg Vol (10 day)', 'AVG_VOL_3_MONTH': 'Avg Vol (3 month)', 'BANKING_INSURANCE_TITLE': 'Banking & Insurance', 'BASIC_MATERIALS_TITLE': 'Basic Materials', 'BETA': 'Beta', 'BONDS_TITLE': 'US Treasury Bonds Rates', 'BREXIT_TITLE': 'Brexit', 'BUSINESS_SERVICES_TITLE': 'Business Services', 'CALENDARS_TITLE': 'Calendars', 'CANCEL': 'Cancel', 'CAREERS_TITLE': 'Careers', 'CHART': 'Chart', 'CHEMICAL_BASIC_MATERIALS_TITLE': 'Chemical and Basic Materials', 'CHEMIE_TITLE': 'Chemie', 'CLOSE': 'Close', 'COIN_MARKET_CAP': 'CoinMarketCap', 'COMMODITIES': 'Futures', 'COMPARE_PRODUCTS_TITLE': 'Compare Products', 'COMPONENTS': 'Components', 'CONFIRM_DELETE': 'Confirm Delete', 'CONFIRM_DELETE_MSG': 'Are you sure you want to delete {pfName} watchlist?', 'CONFIRM_DELETE_TICKER': 'Are you sure you want to remove {symbol}?', 'CONFIRM_NO': 'No', 'CONFIRM_YES': 'Yes', 'CONFIRMED_CASES': 'Confirmed Cases', 'CONSTRUCTION_TITLE': 'Construction', 'CONSUMER_DURABLES_TITLE': 'Consumer Durables', 'CONSUMER_GOODS_TITLE': 'Consumer Goods', 'CONSUMER_PRODUCTS_MEDIA_TITLE': 'Consumer Products & Media', 'CONTRIBUTORS_TITLE': 'Contributors', 'COVID_19': 'COVID-19', 'CREATE_NEW_LIST': 'Create a new list', 'CURRENCIES': 'Currencies', 'CURRENCIES_TITLE': 'Currencies', 'CURRENCY_CONVERTER_TITLE': 'Currency Converter', 'DEFAULT_MESSAGE': 'We are experiencing some temporary issues. The market data on this page are currently delayed. Please bear with us as we address this and restore your personalized lists.', 'DELAYED': 'Delayed Price', 'DELETE_BTN': 'Delete', 'DELETE_TICKER_INFO': 'Delete symbol from watchlist', 'DELETE_WATCHLIST': 'Delete Watchlist', 'DISLIKE_AD': \"I don't like this ad\", 'DIVERSIFIED_BUSINESS_TITLE': 'Diversified Business', 'DIVIDEND': 'Dividend', 'EARNINGS_REPORT': 'Earnings Report', 'EDIT': 'Edit', 'END': 'End', 'ENERGY_TITLE': 'Energy', 'ENTER_LIST_NAME': 'Enter List name', 'ETFS_TITLE': 'Top ETFs', 'EX_DIVIDEND': 'Ex-Dividend', 'EX_DIVIDEND_DATE': 'Ex-Dividend Date', 'FAILSAFE_CACHE_MESSAGE': 'We are experiencing some temporary issues. The market data on this page are currently delayed. Please bear with us as we address this and restore your personalized lists.', 'FEEDBACK_TITLE': 'Feedback', 'FINAL_ROUND_TITLE': 'The Final Round', 'FINANCIAL_TITLE': 'Financial', 'FMCG_TITLE': 'FMCG', 'FOODS_TITLE': 'Foods', 'FOOTER_ABOUT_TEXT': 'About Our Ads', 'FOOTER_COMPANY_TEXT': '{copyright}. All rights reserved.', 'FOOTER_DISCLAIMER_TEXT': 'Data Disclaimer', 'FOOTER_FB_FOLLOW_TEXT': 'Follow on Facebook', 'FOOTER_HELP_TEXT': 'Help', 'FOOTER_LI_FOLLOW_TEXT': 'Follow on LinkedIn', 'FOOTER_PRIVACY_POLICY_TEXT': 'Privacy Policy', 'FOOTER_PRIVACY_TEXT': 'Privacy', 'FOOTER_PRIVACY_TEXT_UPDATED': 'Privacy (Updated)', 'FOOTER_SITEMAP_TEXT': 'Sitemap', 'FOOTER_SUGGEST_TEXT': 'Suggestions', 'FOOTER_TERMS_TEXT': 'Terms', 'FOOTER_TW_FOLLOW_TEXT': 'Follow on Twitter', 'FORWARD_PE': 'Forward P/E', 'FREE_REALTIME': 'Real Time Price', 'FULL_SCREEN': 'Full screen', 'GAINERS_TITLE': 'Stocks: Gainers', 'GENERAL': 'Breaking News', 'GLOBAL': 'Global', 'GOOD_LIFE_NAV_TITLE': 'The Good Life', 'GOTO_TEXT': 'Go to {text}', 'HARDWARE_ELECTRONICS_TITLE': 'Computer Hardware & Electronics', 'HEALTHCARE_TITLE': 'Healthcare', 'HIGH': 'High', 'IN_WATCHLIST': 'In Watchlist', 'INDUSTRIALS_TITLE': 'Industrials', 'INDUSTRY_NAV_TITLE': 'Industry News', 'INTERNET_TITLE': 'Internet', 'JUMP_FIRST_PAGE': 'Jump to first page', 'JUMP_LAST_PAGE': 'Jump to last page', 'LAST_MONTH': 'Last Mo.', 'LEARN_MORE': 'Learn more', 'LEISURE_INDUSTRIES_TITLE': 'Leisure Industries', 'LIFESTYLE_TITLE': 'Lifestyle', 'LIKE_AD': 'I like this ad', 'LISTS': 'Lists', 'LIVE_VIDEO': 'Live Video', 'LOADING': 'Loading...', 'LOOKUP_FOOTER_TIP': 'Tip: Use comma to separate multiple quotes', 'LOSERS_TITLE': 'Stocks: Losers', 'LOW': 'Low', 'MAIL': 'Mail', 'MANAGE_SUBSCRIPTION': 'Manage Subscription', 'MANUFACTURING_MATERIALS_TITLE': 'Manufacturing & Materials', 'MARKET_BLOGS_TITLE': 'Market Blogs', 'MARKET_MOVERS_TITLE': 'Market Movers', 'MARKET_SUMMARY': 'Market Summary', 'MARKET_SUMMARY_CAROUSEL': 'Market summary containing a list of {size} items', 'MARKET_SUMMARY_CAROUSEL_ITEM_DECREASED': '{name} has decreased by {changePercent} or {change} points to {price} points', 'MARKET_SUMMARY_CAROUSEL_ITEM_INCREASED': '{name} has increased by {changePercent} or {change} points to {price} points', 'MARKET_SUMMARY_CAROUSEL_ITEM_UNCHANGED': '{name} is unchanged at {price}', 'MARKET_TIME_NOTICE_CLOSED_SHORT': 'At close: {date} {time}', 'MARKET_TIME_NOTICE_CLOSED': 'As of {date} {time}. {marketState}', 'MARKETS_OPEN': 'Market open.', 'MONEY_GUIDES_TITLE': 'Money Guides', 'MORE_SYMBOLS': 'More symbols', 'MORNING_BRIEF': 'Morning Brief', 'MOST_ACTIVE_TITLE': 'Stocks: Most Actives', 'MSG_EMPTY_LIST': 'Your list is empty.', 'MSG_EMPTY_PF': \"You don't have any symbols in this list.\", 'MSG_EMPTY_RQ': 'Your Recently Viewed list is empty.', 'MSG_EMPTY_YFINLIST': \"We're sorry, but we were unable to retrieve this data. Please try again.\", 'MSG_NO_LISTS': 'No lists found', 'MSG_NO_NEWS': 'No news found', 'MSG_NO_SEARCH_RESULTS': \"No matching results for '{query}'\", 'MSG_NO_SYMBOLS': 'No symbols found', 'MUTUALFUNDS_TITLE': 'Top Mutual Funds', 'MY_PORTFOLIO_NAV_TITLE': 'My Portfolio', 'MY_WATCHLIST': 'My Watchlist', 'NA': 'N/A', 'NAME_NEW_WATCHLIST': 'Name your new watchlist', 'NASDAQ_REALTIME_PRICE': 'Nasdaq Realtime Price', 'NEWS_NAV_TITLE': 'News', 'NEWS': 'News', 'NEW_HIGH': 'Price Alert', 'NEW_LOW': 'Price Alert', 'NOTIFICATIONS': 'Notifications', 'NO_NOTIFICATION_DATA': 'Notification data is not available', 'NO_MARKET_DATA': 'No Market Data', 'OIL_NATURAL_GAS_TITLE': 'Oil and Natural Gas', 'YAHOO_FINANCE_APP': 'Yahoo Finance App', 'OLDER': 'Older', 'OPTIONS': 'Options', 'OPTIONS_TITLE': 'Most Traded Options by Volume', 'ORIGINALS_TITLE': 'Yahoo Originals', 'PEG_RATIO_5_YR': 'PEG Ratio (5 yr expected)', 'PERSONAL_FINANCE_NAV_TITLE': 'Personal Finance', 'PHARMACEUTICAL_TITLE': 'Pharmaceutical', 'POST_MARKET_NOTICE': 'After hours:', 'POWER_TITLE': 'Power', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST': 'ADDED TO WATCHLIST', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_1': 'You will now see', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_2': ' more {ticker} news ', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_3': 'in your Yahoo feed', 'PREMIUM_UPSELL_CHART_PATTERN': 'Pattern', 'PREMIUM_UPSELL_CTA': 'Start your free trial today. >>', 'PREMIUM_UPSELL_DIFF_ONE_DAY_AGO': '1 day ago', 'PREMIUM_UPSELL_DIFF_D': '{days}d', 'PREMIUM_UPSELL_DIFF_DAYS_AGO': '{days} days ago', 'PREMIUM_UPSELL_DIFF_ONE_MONTH_AGO': '1 month ago', 'PREMIUM_UPSELL_NEW_FEATURE': 'NEW FEATURE', 'PREMIUM_UPSELL_NEW_FEATURE_LOGGED_IN': 'Stay up-to-date with news and stock price for {ticker}', 'PREMIUM_UPSELL_NEW_FEATURE_LOGGED_OUT': 'Sign in to keep track of {ticker} news and performance', 'PREMIUM_UPSELL_PATTERN_DETAIL': 'View bullish/bearish technical chart patterns with one click.', 'PREMIUM_UPSELL_PATTERN_TITLE': '{type} Pattern Detected', 'PREMIUM_UPSELL_PERFORMANCE_DETAIL': 'Conduct technical analysis for the short, mid, or long term.', 'PREMIUM_UPSELL_PERFORMANCE_TITLE': 'Performance Outlook', 'PREMIUM_UPSELL_RECOMMENDATION_TITLE': 'Recommendation rating', 'PREMIUM_UPSELL_REPORTS_DETAIL': 'Analyst reports and guidance from Morningstar and Argus.', 'PREMIUM_UPSELL_REPORTS_TITLE': 'Recent Research', 'PREMIUM_UPSELL_SIG_DEVS_DETAIL': 'Plot company events on charts to view impact on performance.', 'PREMIUM_UPSELL_SIG_DEVS_TITLE': 'Significant Event Occurred', 'PREMIUM_UPSELL_SIG_DEVS_TITLE_SHORT': 'Significant Event', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_CTA': 'Research report available', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_HEADER': 'Unlock premium independent research on this stock.', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_1': 'You’ve read ', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_2': '{usedCount} of your {maxCount} ', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_3': 'free research reports this quarter', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_CTA': 'Upgrade to read report', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_TOOLTIP_HEADER': 'Get unlimited reports with Yahoo Finance Plus.', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_TOOLTIP_DETAIL': 'You’ve read all your free reports this quarter.', 'PREMIUM_UPSELL_VALUATION_DETAIL': 'Determine the fair value of any stock with Premium.', 'PREMIUM_UPSELL_VALUATION_TITLE': 'Fair Value Estimate', 'PREMIUM_UPSELL_FEATURED_IN_TITLE': 'Featured in', 'PREMIUM_UPSELL_FEATURED_IN_PUBLISHER': 'Publisher', 'PREMIUM_UPSELL_FEATURED_IN_DAYCHNG': 'Day Change', 'PREMIUM_UPSELL_FEATURED_IN_FOLLOWERS': 'Followers', 'PRE_MARKET_NOTICE': 'Pre-Market:', 'PREDEFINED_SCREENER': 'Screener', 'PRESS_RELEASE': 'Press Releases', 'PRICE_TO_BOOK': 'Price/Book', 'PRICE_ALERT_UP': 'Price Alert', 'PRICE_ALERT_DOWN': 'Price Alert', 'PRIVATE': 'PRIVATE', 'PROFILE': 'Profile', 'PROPERTIES_TITLE': 'Properties', 'PROPERTY_TITLE': 'Property', 'PUBLIC_SERVICES_TITLE': 'Public Services', 'PORTFOLIO_DAILY_SUMMARY': 'Portfolio Summary', 'QUICK_VIDEO': 'Quick Video', 'QUOTE_LOOKUP': 'Quote Lookup', 'QUOTE_PRICE_NOTICE': '{exchangeName} {marketSource}. Currency in {currency}', 'RATES': 'Rates', 'RAW_MATERIALS_TITLE': 'Raw Materials', 'REAL_ESTATE_TITLE': 'Real Estate', 'REALTY_TITLE': 'Realty', 'RESEARCH_REPORTS': 'Research Reports', 'RESEARCH_REPORT': 'Premium Research Report', 'RECOMMEND_STOCKS': 'Recommended Stocks', 'RENAME': 'Rename', 'RENAME_MODAL_ERROR_MESSAGE': 'Please enter a valid watchlist name.', 'RENAME_MODAL_MESSAGE': 'Enter a new name for {pfName}.', 'RENAME_MODAL_TITLE': 'Rename your watchlist', 'RETAILING_HOSPITALITY_TITLE': 'Retailing & Hospitality', 'RETIREMENT_TITLE': 'Retirement', 'RQ_TITLE': 'Recently Viewed', 'RELATED_QUOTES': 'Related Quotes', 'SAVE': 'Save', 'SAVING_SPENDING_TITLE': 'Saving & Spending', 'SCREENER': 'Screener', 'SEARCH': 'Search', 'SEARCH_FEEDBACK_MSG': 'Give feedback on the new search experience', 'SEARCH_FEEDBACK_CURRENT_MSG': 'Give feedback on the search experience', 'SEARCH_PRIVATE_COMPANIES_PROMOTION': 'Now you can search stock related news and private companies such as Airbnb.', 'SEARCH_SCREENER_LINK': 'Screener for stocks & more', 'SEARCH_TIP': 'Tip: Try a valid symbol or a specific company name for relevant results', 'SEE_WHY': 'See why', 'SHARE': 'Share', 'SHARES_FLOAT': 'Float', 'SHORT_RATIO': 'Short Ratio', 'SHOW_ALL_RESULTS_FOR': 'Show all results for {query}', 'SHOW_MORE': 'Show more', 'SHOW_LESS': 'Show less', 'SIGN_IN': 'Sign In', 'SIGN_IN_TO_ADD_WATCHLIST': 'Sign in to add to watchlist', 'SIGN_IN_TO_ADD_WATCHLIST_TO_TICKER': 'Sign in to never miss news about {companyName}', 'SIGN_UP_PREMIUM': 'Sign up for Yahoo Finance Premium to get access to this insight', 'SIGN_UP_YAHOO_FINANCE_PLUS': 'Sign up for Yahoo Finance Plus to get access to this insight', 'SIGNIFICANT_DEVELOPMENT': 'Premium Significant Development', 'SIGNIFICANT_DEVELOPMENTS': 'Significant Developments', 'SMALL_BUSINESS_TITLE': 'Small Business', 'SOFTWARE_SERVICES_TITLE': 'Computer Software & Services', 'SPLIT': 'Split', 'SPORTSBOOK_TITLE': 'Sportsbook', 'START': 'Start', 'SUGGESTIONS': 'Suggestions', 'SUMMARY': 'Summary', 'SYMBOLS': 'Symbols', 'TAXES_TITLE': 'Taxes', 'TD_52_WK_HIGH': '52 Week High', 'TD_52_WK_LOW': '52 Week Low', 'TD_52_WK_RANGE': '52 Week Range', 'TD_ALERTS': 'Alerts', 'TD_ASK': 'Ask', 'TD_ASK_SIZE': 'Ask Size', 'TD_BID': 'Bid', 'TD_BID_SIZE': 'Bid Size', 'TD_BOOK_VALUE': 'Book Val', 'TD_CASH_AMOUNT': 'Amount', 'TD_CHANGE': 'Change', 'TD_COST_BASIS': 'Cost Basis', 'TD_CURRENCY': 'Currency', 'TD_DAY_GAIN': 'Day Gain $', 'TD_DAY_GAIN_PERCENT': 'Day Gain %', 'TD_DAY_HIGH': 'Day High', 'TD_DAY_LOW': 'Day Low', 'TD_DAY_RANGE': 'Intraday High/Low', 'TD_DIVIDEND_PAYMENT_DATE': 'Dividend Payment Date', 'TD_DIVIDEND_YIELD': 'Dividend Yield', 'TD_EBITDA': 'EBITDA', 'TD_EPS': 'EPS', 'TD_EXCHANGE': 'Exchange', 'TD_FIVE_YEAR': '5-Yr Return', 'TD_FUND_CATEGORY': 'Category', 'TD_HIGH_LIMIT': 'High Limit', 'TD_LAST_MONTH': 'Last Month', 'TD_LAST_NAV': 'Last NAV', 'TD_LAST_WEEK': 'Last Week', 'TD_LOT_VALUE': 'Lot Value', 'TD_LOW_LIMIT': 'Low Limit', 'TD_MARKET': 'Intraday Return', 'TD_MARKET_CAP': 'Market Cap', 'TD_MARKET_TIME': 'Market Time', 'TD_MARKET_VALUE': 'Market Value', 'TD_MATURITY': 'Maturity', 'TD_NAV_CHANGE': 'NAV $ Change', 'TD_NAV_PERCENT_CHANGE': 'NAV % Change', 'TD_NOTES': 'Notes', 'TD_OPEN': 'Open', 'TD_OPEN_INTEREST': 'Open Interest', 'TD_OPTION_NAME': 'Option', 'TD_PE_RATIO': 'PE Ratio', 'TD_PERCENT_CHANGE': '% Change', 'TD_PREV_CLOSE': 'Prev Close', 'TD_PRICE': 'Last Price', 'TD_PRICE_PAID_PER_SHARE': 'Price Paid', 'TD_SHARES': 'Shares', 'TD_SHARES_OUTSTANDING': 'Shares Out', 'TD_SPARKLINE': 'Day Chart', 'TD_SYMBOL': 'Symbol', 'TD_THREE_MONTH': '3-Mo Return', 'TD_THREE_YEAR': '3-Yr Return', 'TD_TOTAL_GAIN': 'Total Gain $', 'TD_TOTAL_GAIN_PERCENT': 'Total Gain %', 'TD_TRADE_DATE': 'Trade Date', 'TD_VOLUME': 'Volume', 'TD_YEAR_TO_DATE': 'YTD Return', 'TD_YESTERDAY': 'Yesterday', 'TD_YIELD': 'Yield', 'TDG_BASIC': 'Basic Columns', 'TDG_DETAILS': 'Details Columns', 'TDG_FUNDAMENTALS': 'Fundamentals Columns', 'TDG_MARKET': 'Share Statistics', 'TDG_MOVERS': 'Moving Averages Columns', 'TDG_PORTFOLIOS': 'Portfolios Columns', 'TDG_SHARE_STATS': 'Share Statistics', 'TECH_NAV_TITLE': 'Tech', 'TECHNOLOGY_TITLE': 'Technology', 'TELECOM_UTILITIES_TITLE': 'Telecom & Utilities', 'TEXTILES_TITLE': 'Textiles', 'TOP_STORIES_TITLE': 'Top Stories', 'TOURISM_SERVICES_TITLE': 'Tourism and Services', 'TRADE_IDEAS': 'Investment Ideas', 'TRADE_IDEA': 'Premium Investment Idea', 'TRAILING_PE': 'Trailing P/E', 'TRAVEL_TITLE': 'Travel', 'TRENDING_TICKERS_TITLE': 'Trending Tickers', 'TRENDING_TODAY': 'Trending Today', 'TRIGGER_ALERT': 'Price Alert', 'TRY_IT_FREE': 'Try it free', 'TODAY': 'Today', 'UH_SEARCH_MOBILE_WEB': 'Quote Lookup', 'UH_SEARCH_MOBILE_WEB_V2': 'Search for news or symbols', 'UH_SEARCH_WEB': 'Search for news, symbols or companies', 'UNDO': 'Undo', 'UNITED_STATES': 'United States', 'UPDATE_YOUR_SETTINGS': 'Update your settings here to see it.', 'VIDEO_TITLE': 'Video', 'VIEW_CHART': 'View Chart', 'VIEW_QUOTE_DETAILS': 'View quote details', 'WANT_FEWER_ADS': 'Go ad-free*', 'WHY_THIS_AD': 'Why this ad?', 'WATCHLISTS_NAV_TITLE': 'Watchlists', 'WEEK_AHEAD': 'Earnings This Week', 'WORLD_INDICES': 'World Indices', 'WORLD_TITLE': 'World', 'YAHOO_FINANCE': 'Yahoo Finance', 'YF_TITLE': 'Yahoo Finance Lists'}, 'tdv2-applet-swisschamp': {'BROWSER_UPGRADE': 'Some parts of this page is not supported on your current browser version. Please upgrade the browser to the latest.', 'CLOSE': 'Close'}, 'td-ads': {'AD': 'AD', 'ADVERTISEMENT': 'Advertisement', 'SCROLL_TO_CONTINUE': 'Scroll to continue with content'}, 'tdv2-applet-featurebar': {'BREAKING_NEWS': 'Breaking News', 'HIGH_LIGHT': 'Highlight'}, 'tdv2-applet-navrail': {'ABOUT': 'About', 'ACCOUNT_INFO': 'Account Info', 'APPS': 'Apps', 'APPS_ATT': 'AT&T Apps', 'BACK': 'Back', 'FOLLOW': 'Follow', 'FOLLOW_US': 'Follow Us', 'MORE': 'More', 'MORE_NAVLINKS': 'More Navlinks', 'MORE_SITES': 'More Sites', 'PROFILE': 'Profile', 'PROPERTY_HOME': '{property} Home', 'SERVICES_ATT': 'AT&T Services', 'SETTINGS': 'Settings', 'SHOW_LESS': 'Show less', 'SHOW_MORE': 'Show More', 'SHOW_X_MORE': 'Show {number} More', 'SIGNIN': 'Sign in', 'SIGNOUT': 'Sign out', 'SIGNOUT_ALL': 'Sign out all', 'STORYLINES': 'Storylines', 'TOOLS': 'Tools', 'WEATHER_FORECAST': 'Weather Forecast', 'WELCOME_BACK': 'Welcome back', 'VIEW_ON_INSTAGRAM': 'View on Instagram', 'YAHOO': 'Yahoo', 'YAHOO_SITES': 'Yahoo Sites'}, 'tdv2-applet-account-switch': {'ACCOUNT_INFO': 'Account Info', 'MANAGE_PUBLISHERS_SHORT': 'Manage Publishers', 'ACCOUNT_MANAGEMENT': 'Add or Manage accounts', 'ADD_ACCOUNT': 'Add account', 'BACKYARD': 'Backyard', 'SIGNOUT': 'Sign Out', 'SIGNOUT_ALL': 'Sign out all', 'WELCOME': 'Welcome back'}}, 'intlConfig': {'formats': {'date': {'timeStyle': {'hour': 'numeric', 'minute': 'numeric'}, 'short': {'day': 'numeric', 'month': 'short', 'year': 'numeric'}}, 'number': {'twoDecimal': {'minimumFractionDigits': 2, 'maximumFractionDigits': 2}, 'fourDecimal': {'minimumFractionDigits': 4, 'maximumFractionDigits': 4}}}}}, 'BeaconStore': {'beaconConfig': {'enableBatch': True, 'batchInterval': 1000, 'sampleSize': 1, 'pathPrefix': '/_td_api/beacon', 'beaconUncaughtJSError': True, 'sampleSizeUncaughtJSError': 1, 'context': {'prid': 'egr5m41hu29if', 'authed': '0', 'ynet': '0', 'ssl': '1', 'spdy': '0', 'ytee': '0', 'mode': 'normal', 'site': 'finance', 'region': 'US', 'lang': 'en-US', 'dir': 'ltr', 'bucket': 'finance-US-en-US-def', 'colo': 'bf1', 'device': 'desktop', 'bot': '1', 'browser': 'unknown', 'app': 'unknown', 'ecma': 'default', 'environment': 'prod', 'intl': 'us', 'partner': 'none', 'time': 1675699791902, 'tpConsent': True, 'tz': 'America/New_York', 'usercountry': 'US', 'feature': ['adsMigration', 'canvassOffnet', 'ccOnMute', 'disableCommentsMessage', 'debouncesearch100', 'deferDarla', 'disableMegaModalSa', 'ecmaModern', 'enable3pConsent', 'enableCCPAFooter', 'enableNewCCPAFooter', 'enableCMP', 'enableCompanyInsights', 'enableConsentData', 'enableCorporateActions', 'enableEncryption', 'enableFBRedirect', 'enableFeatureTours', 'enableFinancialsTemplate', 'enableFreeFinRichSearch', 'enableGuceJs', 'enableGuceJsOverlay', 'enableNewChartBeta', 'enablePfSummaryForEveryone', 'enablePlusRedesign', 'enablePrivacyUpdate', 'enableUpgradeLeafPage', 'enableVideoURL', 'enableXrayCardsFollowButton', 'enableXrayHyperloopCards', 'enableXrayNcp', 'enableXrayTickerEntities', 'enableYahooSans', 'enableYodleeErrorMsgCriOS', 'ncpListStream', 'ncpPortfolioStream', 'ncpQspStream', 'ncpQspStreamV2', 'ncpStream', 'ncpStreamIntl', 'ncpTopicStream', 'newContentAttribution', 'newLogo', 'notificationsServiceWorker', 'oathPlayer', 'optimizeSearch', 'premium35', 'rightRailLatestReports', 'rightRailPortfolioReports', 'relatedVideoFeature', 'threeAmigos', 'threeAmigosVideoExperienceEnabled', 'waferHeader', 'useNextGenHistory', 'videoNativePlaylist', 'sunsetMotif2', 'enableMarketingModal', 'enableUserPrefAPI', 'enableCustomSymbolsTotalGain', 'livecoverage', 'darlaFirstRenderingVisible', 'enableAdlite', 'enableTradeit', 'enableFeatureBar', 'enableSearchEnhancement', 'enableUserSentiment', 'enableBankrateWidget', 'enableYodlee', 'canvassReplies', 'enablePremiumFinancials', 'enableNewResearchFilterMW', 'enableMonalixaFreqCapping', 'showExpiredIdeas', 'enableSingleRail', 'enableAmexOffer', 'enableNewCategories', 'enablePremiumScreenerNav2', 'exposePredefinedScreener', 'enableEnhanceScreener', 'enableSECFiling', 'enableFastlink4', 'enableHyperLoop', 'enableScreenerCarousel', 'enablePlusUserInsights', 'enableMegathonFollowQSP', 'enableMegathonFollowCue', 'enableHubPage', 'openWeb', 'enhanceAddToWL', 'article2_csn', 'sponsoredAds', 'enableStageAds', 'enableTradeItLinkBrokerSecondaryPromo', 'enableQspPremiumPromoSmall', 'clientDelayNone', 'threeAmigosMabEnabled', 'threeAmigosAdsEnabledAndStreamIndex0', 'enableRelatedTickers', 'enableTasteMaker', 'enableNotification', 'enableNativeBillboard', 'enableJSErrorBeacon', 'enableQuoteTypeKV', 'enableMonalixaBodySlot', 'enableLiveDynamicData', 'enablePremiumUpsell', 'enableTMD', 'enableBannerOnQuote', 'enableInsightEnhancement', 'enableMonalixaPortfolioHoldings3Day', 'enableMonalixaPortfolioHoldingsOnLoad3Day', 'enableMonalixaFreeTrialResearchReports', 'enableMonalixaFreeTrialPlusDashboard', 'enableMonalixaAdBlockerOverlay', 'enableOnboardingPhaseOne', 'enablePlusRedesignOnboarding', 'enableMegathonFollowEntryPoint'], 'adblock': '0', 'theme': 'none', 'nps': {}}}}, 'AdStore': {'appConfig': {'base': {'debug': False, 'dm': 1, 'disableDocDomain': True, 'aboveFoldPositions': 'WPS,MAST,LDRB,SPRZ,SPL,LREC,BTN,BTN-1,BTN-2,BTN-3,BTN1,BTNA,BTNB,BTNC,BTND,FB2,FB2-1,FB2-2,FB2-3,FB2A,FB2B,FB2C,FB2D,NE4,NE4-1,NE4-2,NE4-3,NE4A,NE4B,NE4C,NE4D', 'allowHostUrlAsReferrer': True, 'autoRotation': 10000, 'autoadrender': True, 'darlaJsAtTop': True, 'darlaVersion': '4-7-1', 'darlaAssetFetch': True, 'cacheDarlaAsset': True, 'darlaConfigFetch': True, 'cacheDarlaConfig': True, 'checkForModalClose': True, 'multipleRenderTargets': True, 'rotationTimingDisabled': False, 'k2': {'res': {'rate': 5, 'pos': ['BTN', 'BTN-1', 'BTN-2', 'BTN-3', 'BTN1', 'LREC', 'LREC2', 'LREC3', 'LDRB', 'MAST']}}, 'positions': {'DEFAULT': {'name': 'DEFAULT', 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False}, 'WPS': {'id': 'WPS', 'clean': 'cleanWPS', 'dest': 'destWPS', 'metaSize': True, 'w': 320, 'h': 50}, 'BTN1': {'id': 'BTN1', 'clean': 'cleanBTN1', 'dest': 'destBTN1', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN1-1': {'id': 'BTN1', 'clean': 'cleanBTN1-1', 'dest': 'destBTN1-1', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN': {'id': 'BTN', 'clean': 'cleanBTN', 'dest': 'destBTN', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-1': {'id': 'BTN-1', 'clean': 'cleanBTN-1', 'dest': 'destBTN-1', 'w': 120, 'h': 60}, 'BTN-2': {'id': 'BTN-2', 'clean': 'cleanBTN-2', 'dest': 'destBTN-2', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-3': {'id': 'BTN-3', 'clean': 'cleanBTN-3', 'dest': 'destBTN-3', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-5': {'id': 'BTN-5', 'clean': 'cleanBTN-5', 'dest': 'destBTN-5', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-6': {'id': 'BTN-6', 'clean': 'cleanBTN-6', 'dest': 'destBTN-6', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-7': {'id': 'BTN-7', 'clean': 'cleanBTN-7', 'dest': 'destBTN-7', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-8': {'id': 'BTN-8', 'clean': 'cleanBTN-8', 'dest': 'destBTN-8', 'metaSize': True, 'w': 120, 'h': 60}, 'BTNA': {'id': 'BTNA', 'clean': 'cleanBTNA', 'dest': 'destBTNA', 'metaSize': True, 'w': 120, 'h': 60}, 'BTNB': {'id': 'BTNB', 'clean': 'cleanBTNB', 'dest': 'destBTNB', 'metaSize': True, 'w': 120, 'h': 60}, 'BTNC': {'id': 'BTNC', 'clean': 'cleanBTNC', 'dest': 'destBTNC', 'metaSize': True, 'w': 120, 'h': 60}, 'BTND': {'id': 'BTND', 'clean': 'cleanBTND', 'dest': 'destBTND', 'metaSize': True, 'w': 120, 'h': 60}, 'WIDGET': {'id': 'WIDGET', 'clean': 'cleanWIDGET', 'dest': 'destWIDGET', 'metaSize': False, 'w': 650, 'h': 635, 'flex': {'w': {'min': 600, 'max': 800}}}, 'WIDGETA': {'id': 'WIDGETA', 'clean': 'cleanWIDGETA', 'dest': 'destWIDGETA', 'metaSize': False, 'w': 758, 'h': 198, 'fdb': True, 'supports': {'exp-ovr': 1, 'exp-push': 1}}, 'WIDGET-1': {'id': 'WIDGET-1', 'metaSize': False, 'w': 300, 'h': 340}, 'FOOT': {'id': 'FOOT', 'clean': 'cleanFOOT', 'dest': 'destFOOT', 'fr': 'expIfr_exp'}, 'FSRVY': {'id': 'FSRVY', 'clean': 'cleanFSRVY', 'dest': 'destFSRVY', 'fr': 'expIfr_exp'}, 'SCREC': {'id': 'SCREC', 'clean': 'cleanSCREC', 'dest': 'destSCREC', 'supports': {'exp-push': 1}, 'w': 300, 'h': 65}, 'LREC': {'id': 'LREC', 'clean': 'cleanLREC', 'dest': 'destLREC', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC-9': {'id': 'LREC-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC2': {'id': 'LREC2', 'clean': 'cleanLREC2', 'dest': 'destLREC2', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC2-4': {'id': 'LREC2-4', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-5': {'id': 'LREC2-5', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-6': {'id': 'LREC2-6', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-7': {'id': 'LREC2-7', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-8': {'id': 'LREC2-8', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-9': {'id': 'LREC2-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC3': {'id': 'LREC3', 'clean': 'cleanLREC3', 'dest': 'destLREC3', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC3-4': {'id': 'LREC3-4', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-5': {'id': 'LREC3-5', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-6': {'id': 'LREC3-6', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-7': {'id': 'LREC3-7', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-8': {'id': 'LREC3-8', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-9': {'id': 'LREC3-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC4': {'id': 'LREC4', 'clean': 'cleanLREC4', 'dest': 'destLREC4', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'overrides': {'doubleBuffering': True}}, 'LREC4-9': {'id': 'LREC4-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB': {'id': 'LDRB', 'clean': 'cleanLDRB', 'dest': 'destLDRB', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB-9': {'id': 'LDRB-9', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2': {'id': 'LDRB2', 'clean': 'cleanLDRB2', 'dest': 'destLDRB2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2-1': {'id': 'LDRB2-1', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2-2': {'id': 'LDRB2-2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2-3': {'id': 'LDRB2-3', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2-4': {'id': 'LDRB2-4', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'MAST': {'id': 'MAST', 'clean': 'cleanMAST', 'dest': 'destMAST', 'w': 970, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1, 'resize-to': 1}, 'fdb': False, 'closeBtn': {'mode': 2, 'useShow': 1, 'adc': 0}, 'metaSize': True}, 'MAST-9': {'id': 'MAST-9', 'w': 970, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1, 'resize-to': 1}, 'fdb': False, 'closeBtn': {'mode': 2, 'useShow': 1, 'adc': 0}, 'metaSize': True}, 'MON': {'id': 'MON', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'MON-1': {'id': 'MON-1', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'MON2': {'id': 'MON2', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'MON2-9': {'id': 'MON2-9', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'MOMENTS': {'id': 'MOMENTS', 'w': 375, 'h': 667, 'flex': {'ratio': '1x1.78', 'w': {'min': 320}, 'h': {'min': 568}}, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 1, 'exp-push': 1, 'resize-to': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3}, 'FB2': {'id': 'FB2', 'clean': 'cleanFB2', 'dest': 'destFB2', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2-1': {'id': 'FB2-1', 'clean': 'cleanFB2-1', 'dest': 'destFB2-1', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2-2': {'id': 'FB2-2', 'clean': 'cleanFB2-2', 'dest': 'destFB2-2', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2-3': {'id': 'FB2-3', 'clean': 'cleanFB2-3', 'dest': 'destFB2-3', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2A': {'id': 'FB2A', 'clean': 'cleanFB2A', 'dest': 'destFB2A', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2B': {'id': 'FB2B', 'clean': 'cleanFB2B', 'dest': 'destFB2B', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2C': {'id': 'FB2C', 'clean': 'cleanFB2C', 'dest': 'destFB2C', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2D': {'id': 'FB2D', 'clean': 'cleanFB2D', 'dest': 'destFB2D', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4': {'id': 'NE4', 'clean': 'cleanNE4', 'dest': 'destNE4', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4-1': {'id': 'NE4-1', 'clean': 'cleanNE4-1', 'dest': 'destNE4-1', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4-2': {'id': 'NE4-2', 'clean': 'cleanNE4-2', 'dest': 'destNE4-2', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4-3': {'id': 'NE4-3', 'clean': 'cleanNE4-3', 'dest': 'destNE4-3', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4A': {'id': 'NE4A', 'clean': 'cleanNE4A', 'dest': 'destNE4A', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4B': {'id': 'NE4B', 'clean': 'cleanNE4B', 'dest': 'destNE4B', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4C': {'id': 'NE4C', 'clean': 'cleanNE4C', 'dest': 'destNE4C', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4D': {'id': 'NE4D', 'clean': 'cleanNE4D', 'dest': 'destNE4D', 'metaSize': True, 'w': 120, 'h': 60}, 'UBALDRB': {'id': 'UBALDRB', 'w': 728, 'h': 90, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'UBALDRB-9': {'id': 'UBALDRB-9', 'w': 728, 'h': 90, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'UBALDRB2': {'id': 'UBALDRB2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALDRB2-1': {'id': 'UBALDRB2-1', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALDRB2-2': {'id': 'UBALDRB2-2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALDRB2-3': {'id': 'UBALDRB2-3', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALDRB2-4': {'id': 'UBALDRB2-4', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALREC': {'id': 'UBALREC', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3}, 'UBALREC-1': {'id': 'UBALREC-1', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3}, 'UBALREC-9': {'id': 'UBALREC-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3}, 'UBALREC2-9': {'id': 'UBALREC2-9', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBALREC2': {'id': 'UBALREC2', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBALREC3': {'id': 'UBALREC3', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBALREC3-9': {'id': 'UBALREC3-9', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBAMON': {'id': 'UBAMON', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBAMON-9': {'id': 'UBAMON-9', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBAMON2': {'id': 'UBAMON2', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'WFPAD': {'id': 'WFPAD', 'w': 320, 'h': 50, 'autoFetch': False, 'enable': True, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1, 'lyr': 1, 'resize-to': 1}, 'metaSize': True, 'staticLayout': False, 'fdb': False}, 'WFPAD2': {'id': 'WFPAD2', 'w': 320, 'h': 50, 'autoFetch': False, 'enable': True, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1, 'lyr': 1, 'resize-to': 1}, 'metaSize': True, 'staticLayout': False, 'fdb': False}, 'SPL': {'id': 'SPL', 'flex': 'both', 'enable': True, 'autoFetch': False, 'staticLayout': False, 'fdb': False, 'supports': {'cmsg': 1}, 'uhslot': '.YDC-UH', 'meta': {'type': 'stream'}, 'css': '.Mags-FontA{font-family:\"HelveticaNeue\",Helvetica,Arial,sans-serif;font-weight:300;}.Mags-FontA.Size1{font-size:13px;}.Mags-FontA.Size2{font-size:16px;}.Mags-FontA.Size3{font-size:20px;}.Mags-FontA.Size4{font-size:22px;}.Mags-FontA.Size5{font-size:33px;}.Mags-FontA.Size6{font-size:35px;}.Mags-FontA.Size7{font-size:58px;}.Mags-FontA.Size8{font-size:70px;}.Mags-FontA.Size9{font-size:100px;}.Mags-FontB{font-family:Georgia,Times,serif;font-weight:400;}.Mags-FontB.Size1{font-size:18px;}.Mags-FontC{font-family:\"HelveticaNeue\",Helvetica,Arial,sans-serif;font-weight:400;}.Mags-FontC.Size1{font-size:11px;}.Mags-FontC.Size2{font-size:14px;}.Mags-FontC.Size3{font-size:16px;}.Mags-FontC.Size4{font-size:20px;}.Mags-FontC.Size5{font-size:30px;}.Mags-FontC.Size6{font-size:32px;}.Mags-FontC.Size7{font-size:52px;}'}, 'TRADENOW': {'id': 'TRADENOW', 'clean': 'cleanTRADENOW', 'dest': 'destTRADENOW', 'w': 280, 'h': 55, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'TRADENOW-1': {'id': 'TRADENOW', 'clean': 'cleanTRADENOW-1', 'dest': 'destTRADENOW-1', 'fr': 'expIfr_exp', 'w': 320, 'h': 114, 'supports': {'exp-ovr': 1, 'exp-push': 1, 'resize-to': 1}, 'flex': {'ratio': '3.28x1', 'h': {'min': 114, 'max': 280}}, 'staticLayout': True, 'fdb': True}, 'INARTICLE': {'id': 'INARTICLE', 'w': 375, 'h': 211, 'autoFetch': False, 'fr': 'expIfr_exp', 'flex': {'ratio': '1.78x1', 'w': {'min': 10}, 'h': {'min': 5}}, 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'z': 9}}, 'events': {'DEFAULT': {'sp': 1183300002, 'ssl': 1, 'secure': 1}, 'adFetch': {'name': 'adFetch', 'dynamic': True, 'viewportOnly': 'MAST,LDRB,LDRB2,LREC,LREC2,MON,FB2,FB2-1,FB2-2,FB2-3,BTN,BTN-1,BTN-2,BTN-3,BTN1,NE4,NE4-1,NE4-2,NE4-3'}, 'AUTO': {'ddd': 0, 'name': 'AUTO', 'autoStart': 1, 'autoMax': 25, 'autoIV': 1, 'autoRT': 10000, 'autoDDG': 1, 'npv': 1, 'ps': {'BTN': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNA': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNB': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTND': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2A': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2B': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2C': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2D': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC4-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': '35000'}, 'MAST': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'MAST-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'MON': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'MON-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4A': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4B': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4C': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4D': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'SCREC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'SPL': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'WIDGETA': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'TRADENOW': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'TRADENOW-1': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'WPS': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'MON2': {'autoRT': 10000}, 'MON2-9': {'autoRT': 10000}}, 'groups': {'LREC3': 'MON2', 'LREC4': 'MON2', 'MON2': 'LREC3,LREC4', 'LREC3-9': 'MON2-9', 'LREC4-9': 'MON2-9', 'MON2-9': 'LREC3-9,LREC4-9'}}}, 'firstRenderingVisible': True, 'viewerAdboost': True, 'timeout': 500, 'adblockPos': 1, 'detectAdblock': True, 'enableUBAMON': True, 'nukeAds': 'LREC,LREC2,LREC-9,LREC2-9,LREC3-9,LREC4-9,LDRB-9,MAST-9,MON-1,SPL', 'enableAdPlaceHolder': True, 'adBoostGroupConf': {'LREC3': {'inview': 'LREC4', 'extrapositions': ['MON2']}, 'LREC4': {'inview': 'LREC3', 'extrapositions': ['MON2']}, 'MON2': {'extrapositions': ['LREC3', 'LREC4']}, 'LREC3-9': {'inview': 'LREC4-9', 'extrapositions': ['MON2-9']}, 'LREC4-9': {'inview': 'LREC3-9', 'extrapositions': ['MON2-9']}, 'MON2-9': {'extrapositions': ['LREC3-9', 'LREC4-9']}}}}, 'pageConfig': {'base': {'events': {'adFetch': {'ps': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,LREC2,FOOT,FSRVY,TRADENOW', 'firstRender': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,TRADENOW', 'sponsoredAds': '', 'sponsoredAdsClass': ''}, 'AUTO': {'autoDDG': 0, 'groups': {'LREC3': 'LREC3', 'LREC4': None, 'MON2': 'LREC3'}, 'ps': {'MON2': {'autoRT': 10000}}}}, 'deferRender': True, 'positions': {'MAST': {'fclose': 2, 'fdb': {'on': '1', 'where': 'inside'}}, 'MAST-9': {'fclose': 2, 'fdb': {'on': '1', 'where': 'inside'}}}, 'removeFSRVY': True, 'enableAdboost': True, 'adBoostGroupConf': {'LREC3': None, 'LREC4': None, 'MON2': {'extrapositions': ['LREC3']}}}, 'header': None}, 'routeConfig': {}, 'failedPositions': {'positions': {'FB2B': {'failed': True}, 'FB2C': {'failed': True}, 'FB2D': {'failed': True}, 'MON': {'failed': True}, 'FOOT': {'failed': True}, 'TRADENOW': {'failed': True}}}, 'darlaConfig': {'debug': False, 'dm': 1, 'aboveFoldPositions': 'WPS,MAST,LDRB,SPRZ,SPL,LREC,BTN,BTN-1,BTN-2,BTN-3,BTN1,BTNA,BTNB,BTNC,BTND,FB2,FB2-1,FB2-2,FB2-3,FB2A,FB2B,FB2C,FB2D,NE4,NE4-1,NE4-2,NE4-3,NE4A,NE4B,NE4C,NE4D', 'autoRotation': 10000, 'rotationTimingDisabled': False, 'k2': {'res': {'rate': 5, 'pos': ['BTN', 'BTN-1', 'BTN-2', 'BTN-3', 'BTN1', 'LREC', 'LREC2', 'LREC3', 'LDRB', 'MAST']}}, 'positions': {'DEFAULT': {'name': 'DEFAULT', 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'clean': 'cleanDEFAULT', 'dest': 'destDEFAULT', 'id': 'DEFAULT', 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'WPS': {'id': 'WPS', 'clean': 'cleanWPS', 'dest': 'destWPS', 'metaSize': True, 'w': 320, 'h': 50, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN1': {'id': 'BTN1', 'clean': 'cleanBTN1', 'dest': 'destBTN1', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN1-1': {'id': 'BTN1', 'clean': 'cleanBTN1-1', 'dest': 'destBTN1-1', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN': {'id': 'BTN', 'clean': 'cleanBTN', 'dest': 'destBTN', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN-1': {'id': 'BTN-1', 'clean': 'cleanBTN-1', 'dest': 'destBTN-1', 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN-2': {'id': 'BTN-2', 'clean': 'cleanBTN-2', 'dest': 'destBTN-2', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN-3': {'id': 'BTN-3', 'clean': 'cleanBTN-3', 'dest': 'destBTN-3', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN-5': {'id': 'BTN-5', 'clean': 'cleanBTN-5', 'dest': 'destBTN-5', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN-6': {'id': 'BTN-6', 'clean': 'cleanBTN-6', 'dest': 'destBTN-6', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN-7': {'id': 'BTN-7', 'clean': 'cleanBTN-7', 'dest': 'destBTN-7', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTN-8': {'id': 'BTN-8', 'clean': 'cleanBTN-8', 'dest': 'destBTN-8', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTNA': {'id': 'BTNA', 'clean': 'cleanBTNA', 'dest': 'destBTNA', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTNB': {'id': 'BTNB', 'clean': 'cleanBTNB', 'dest': 'destBTNB', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTNC': {'id': 'BTNC', 'clean': 'cleanBTNC', 'dest': 'destBTNC', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'BTND': {'id': 'BTND', 'clean': 'cleanBTND', 'dest': 'destBTND', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'WIDGET': {'id': 'WIDGET', 'clean': 'cleanWIDGET', 'dest': 'destWIDGET', 'metaSize': False, 'w': 650, 'h': 635, 'flex': {'w': {'min': 600, 'max': 800}}, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'WIDGETA': {'id': 'WIDGETA', 'clean': 'cleanWIDGETA', 'dest': 'destWIDGETA', 'metaSize': False, 'w': 758, 'h': 198, 'fdb': True, 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'WIDGET-1': {'id': 'WIDGET-1', 'metaSize': False, 'w': 300, 'h': 340, 'clean': 'cleanWIDGET-1', 'dest': 'destWIDGET-1', 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FOOT': {'id': 'FOOT', 'clean': 'cleanFOOT', 'dest': 'destFOOT', 'fr': 'expIfr_exp', 'failed': True, 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FSRVY': {'id': 'FSRVY', 'clean': 'cleanFSRVY', 'dest': 'destFSRVY', 'fr': 'expIfr_exp', 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'SCREC': {'id': 'SCREC', 'clean': 'cleanSCREC', 'dest': 'destSCREC', 'supports': {'exp-push': 1}, 'w': 300, 'h': 65, 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC': {'id': 'LREC', 'clean': 'cleanLREC', 'dest': 'destLREC', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'doubleBuffering': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC-9': {'id': 'LREC-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLREC-9', 'dest': 'destLREC-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC2': {'id': 'LREC2', 'clean': 'cleanLREC2', 'dest': 'destLREC2', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC2-4': {'id': 'LREC2-4', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-4', 'dest': 'destLREC2-4', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC2-5': {'id': 'LREC2-5', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-5', 'dest': 'destLREC2-5', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC2-6': {'id': 'LREC2-6', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-6', 'dest': 'destLREC2-6', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC2-7': {'id': 'LREC2-7', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-7', 'dest': 'destLREC2-7', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC2-8': {'id': 'LREC2-8', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-8', 'dest': 'destLREC2-8', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC2-9': {'id': 'LREC2-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLREC2-9', 'dest': 'destLREC2-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC3': {'id': 'LREC3', 'clean': 'cleanLREC3', 'dest': 'destLREC3', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC3-4': {'id': 'LREC3-4', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-4', 'dest': 'destLREC3-4', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC3-5': {'id': 'LREC3-5', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-5', 'dest': 'destLREC3-5', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC3-6': {'id': 'LREC3-6', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-6', 'dest': 'destLREC3-6', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC3-7': {'id': 'LREC3-7', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-7', 'dest': 'destLREC3-7', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC3-8': {'id': 'LREC3-8', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-8', 'dest': 'destLREC3-8', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC3-9': {'id': 'LREC3-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLREC3-9', 'dest': 'destLREC3-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC4': {'id': 'LREC4', 'clean': 'cleanLREC4', 'dest': 'destLREC4', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'overrides': {'doubleBuffering': True}, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LREC4-9': {'id': 'LREC4-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLREC4-9', 'dest': 'destLREC4-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LDRB': {'id': 'LDRB', 'clean': 'cleanLDRB', 'dest': 'destLDRB', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LDRB-9': {'id': 'LDRB-9', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB-9', 'dest': 'destLDRB-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LDRB2': {'id': 'LDRB2', 'clean': 'cleanLDRB2', 'dest': 'destLDRB2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LDRB2-1': {'id': 'LDRB2-1', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB2-1', 'dest': 'destLDRB2-1', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LDRB2-2': {'id': 'LDRB2-2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB2-2', 'dest': 'destLDRB2-2', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LDRB2-3': {'id': 'LDRB2-3', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB2-3', 'dest': 'destLDRB2-3', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'LDRB2-4': {'id': 'LDRB2-4', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB2-4', 'dest': 'destLDRB2-4', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'MAST': {'id': 'MAST', 'clean': 'cleanMAST', 'dest': 'destMAST', 'w': 970, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1, 'resize-to': 1}, 'fdb': {'on': '1', 'where': 'inside'}, 'closeBtn': {'mode': 2, 'useShow': 1, 'adc': 0}, 'metaSize': True, 'fclose': 2, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'MAST-9': {'id': 'MAST-9', 'w': 970, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1, 'resize-to': 1}, 'fdb': {'on': '1', 'where': 'inside'}, 'closeBtn': {'mode': 2, 'useShow': 1, 'adc': 0}, 'metaSize': True, 'fclose': 2, 'clean': 'cleanMAST-9', 'dest': 'destMAST-9', 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'MON': {'id': 'MON', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'failed': True, 'clean': 'cleanMON', 'dest': 'destMON', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'MON-1': {'id': 'MON-1', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanMON-1', 'dest': 'destMON-1', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'MON2': {'id': 'MON2', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanMON2', 'dest': 'destMON2', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'MON2-9': {'id': 'MON2-9', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanMON2-9', 'dest': 'destMON2-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'MOMENTS': {'id': 'MOMENTS', 'w': 375, 'h': 667, 'flex': {'ratio': '1x1.78', 'w': {'min': 320}, 'h': {'min': 568}}, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 1, 'exp-push': 1, 'resize-to': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3, 'clean': 'cleanMOMENTS', 'dest': 'destMOMENTS', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FB2': {'id': 'FB2', 'clean': 'cleanFB2', 'dest': 'destFB2', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FB2-1': {'id': 'FB2-1', 'clean': 'cleanFB2-1', 'dest': 'destFB2-1', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FB2-2': {'id': 'FB2-2', 'clean': 'cleanFB2-2', 'dest': 'destFB2-2', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FB2-3': {'id': 'FB2-3', 'clean': 'cleanFB2-3', 'dest': 'destFB2-3', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FB2A': {'id': 'FB2A', 'clean': 'cleanFB2A', 'dest': 'destFB2A', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FB2B': {'id': 'FB2B', 'clean': 'cleanFB2B', 'dest': 'destFB2B', 'metaSize': True, 'w': 120, 'h': 60, 'failed': True, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FB2C': {'id': 'FB2C', 'clean': 'cleanFB2C', 'dest': 'destFB2C', 'metaSize': True, 'w': 120, 'h': 60, 'failed': True, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'FB2D': {'id': 'FB2D', 'clean': 'cleanFB2D', 'dest': 'destFB2D', 'metaSize': True, 'w': 120, 'h': 60, 'failed': True, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'NE4': {'id': 'NE4', 'clean': 'cleanNE4', 'dest': 'destNE4', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'NE4-1': {'id': 'NE4-1', 'clean': 'cleanNE4-1', 'dest': 'destNE4-1', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'NE4-2': {'id': 'NE4-2', 'clean': 'cleanNE4-2', 'dest': 'destNE4-2', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'NE4-3': {'id': 'NE4-3', 'clean': 'cleanNE4-3', 'dest': 'destNE4-3', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'NE4A': {'id': 'NE4A', 'clean': 'cleanNE4A', 'dest': 'destNE4A', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'NE4B': {'id': 'NE4B', 'clean': 'cleanNE4B', 'dest': 'destNE4B', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'NE4C': {'id': 'NE4C', 'clean': 'cleanNE4C', 'dest': 'destNE4C', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'NE4D': {'id': 'NE4D', 'clean': 'cleanNE4D', 'dest': 'destNE4D', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALDRB': {'id': 'UBALDRB', 'w': 728, 'h': 90, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB', 'dest': 'destUBALDRB', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALDRB-9': {'id': 'UBALDRB-9', 'w': 728, 'h': 90, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB-9', 'dest': 'destUBALDRB-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALDRB2': {'id': 'UBALDRB2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2', 'dest': 'destUBALDRB2', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALDRB2-1': {'id': 'UBALDRB2-1', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2-1', 'dest': 'destUBALDRB2-1', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALDRB2-2': {'id': 'UBALDRB2-2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2-2', 'dest': 'destUBALDRB2-2', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALDRB2-3': {'id': 'UBALDRB2-3', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2-3', 'dest': 'destUBALDRB2-3', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALDRB2-4': {'id': 'UBALDRB2-4', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2-4', 'dest': 'destUBALDRB2-4', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALREC': {'id': 'UBALREC', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3, 'clean': 'cleanUBALREC', 'dest': 'destUBALREC', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALREC-1': {'id': 'UBALREC-1', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3, 'clean': 'cleanUBALREC-1', 'dest': 'destUBALREC-1', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALREC-9': {'id': 'UBALREC-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3, 'clean': 'cleanUBALREC-9', 'dest': 'destUBALREC-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALREC2-9': {'id': 'UBALREC2-9', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBALREC2-9', 'dest': 'destUBALREC2-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALREC2': {'id': 'UBALREC2', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBALREC2', 'dest': 'destUBALREC2', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALREC3': {'id': 'UBALREC3', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBALREC3', 'dest': 'destUBALREC3', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBALREC3-9': {'id': 'UBALREC3-9', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBALREC3-9', 'dest': 'destUBALREC3-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBAMON': {'id': 'UBAMON', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBAMON', 'dest': 'destUBAMON', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBAMON-9': {'id': 'UBAMON-9', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBAMON-9', 'dest': 'destUBAMON-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'UBAMON2': {'id': 'UBAMON2', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBAMON2', 'dest': 'destUBAMON2', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'WFPAD': {'id': 'WFPAD', 'w': 320, 'h': 50, 'autoFetch': False, 'enable': True, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1, 'lyr': 1, 'resize-to': 1}, 'metaSize': True, 'staticLayout': False, 'fdb': False, 'clean': 'cleanWFPAD', 'dest': 'destWFPAD', 'fallback': None, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'WFPAD2': {'id': 'WFPAD2', 'w': 320, 'h': 50, 'autoFetch': False, 'enable': True, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1, 'lyr': 1, 'resize-to': 1}, 'metaSize': True, 'staticLayout': False, 'fdb': False, 'clean': 'cleanWFPAD2', 'dest': 'destWFPAD2', 'fallback': None, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'SPL': {'id': 'SPL', 'flex': 'both', 'enable': True, 'autoFetch': False, 'staticLayout': False, 'fdb': False, 'supports': {'cmsg': 1}, 'uhslot': '.YDC-UH', 'meta': {'type': 'stream', 'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}, 'css': '.Mags-FontA{font-family:\"HelveticaNeue\",Helvetica,Arial,sans-serif;font-weight:300;}.Mags-FontA.Size1{font-size:13px;}.Mags-FontA.Size2{font-size:16px;}.Mags-FontA.Size3{font-size:20px;}.Mags-FontA.Size4{font-size:22px;}.Mags-FontA.Size5{font-size:33px;}.Mags-FontA.Size6{font-size:35px;}.Mags-FontA.Size7{font-size:58px;}.Mags-FontA.Size8{font-size:70px;}.Mags-FontA.Size9{font-size:100px;}.Mags-FontB{font-family:Georgia,Times,serif;font-weight:400;}.Mags-FontB.Size1{font-size:18px;}.Mags-FontC{font-family:\"HelveticaNeue\",Helvetica,Arial,sans-serif;font-weight:400;}.Mags-FontC.Size1{font-size:11px;}.Mags-FontC.Size2{font-size:14px;}.Mags-FontC.Size3{font-size:16px;}.Mags-FontC.Size4{font-size:20px;}.Mags-FontC.Size5{font-size:30px;}.Mags-FontC.Size6{font-size:32px;}.Mags-FontC.Size7{font-size:52px;}', 'clean': 'cleanSPL', 'dest': 'destSPL', 'fallback': None, 'metaSize': False}, 'TRADENOW': {'id': 'TRADENOW', 'clean': 'cleanTRADENOW', 'dest': 'destTRADENOW', 'w': 280, 'h': 55, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'failed': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'TRADENOW-1': {'id': 'TRADENOW', 'clean': 'cleanTRADENOW-1', 'dest': 'destTRADENOW-1', 'fr': 'expIfr_exp', 'w': 320, 'h': 114, 'supports': {'exp-ovr': 1, 'exp-push': 1, 'resize-to': 1}, 'flex': {'ratio': '3.28x1', 'h': {'min': 114, 'max': 280}}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}, 'INARTICLE': {'id': 'INARTICLE', 'w': 375, 'h': 211, 'autoFetch': False, 'fr': 'expIfr_exp', 'flex': {'ratio': '1.78x1', 'w': {'min': 10}, 'h': {'min': 5}}, 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'z': 9, 'clean': 'cleanINARTICLE', 'dest': 'destINARTICLE', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/financials'}}}, 'events': {'DEFAULT': {'sp': 1183300002, 'ssl': 1, 'secure': 1}, 'adFetch': {'name': 'adFetch', 'dynamic': True, 'viewportOnly': 'MAST,LDRB,LDRB2,LREC,LREC2,MON,FB2,FB2-1,FB2-2,FB2-3,BTN,BTN-1,BTN-2,BTN-3,BTN1,NE4,NE4-1,NE4-2,NE4-3', 'ps': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,LREC2,FOOT,FSRVY,TRADENOW', 'firstRender': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,TRADENOW', 'sponsoredAds': '', 'sponsoredAdsClass': ''}, 'AUTO': {'ddd': 0, 'name': 'AUTO', 'autoStart': 1, 'autoMax': 25, 'autoIV': 1, 'autoRT': 10000, 'autoDDG': 0, 'npv': 1, 'ps': {'BTN': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNA': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNB': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTND': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2A': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2B': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2C': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2D': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC4-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': '35000'}, 'MAST': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'MAST-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'MON': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'MON-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4A': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4B': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4C': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4D': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'SCREC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'SPL': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'WIDGETA': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'TRADENOW': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'TRADENOW-1': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'WPS': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'MON2': {'autoRT': 10000}, 'MON2-9': {'autoRT': 10000}}, 'groups': {'LREC3': 'LREC3', 'LREC4': None, 'MON2': 'LREC3', 'LREC3-9': 'MON2-9', 'LREC4-9': 'MON2-9', 'MON2-9': 'LREC3-9,LREC4-9'}}}, 'firstRenderingVisible': True}, 'adFetchEvent': {'ps': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,LREC2,FOOT,TRADENOW', 'sp': 95993639, 'sa': ' ticker=AAPL Y-BUCKET=finance-US-en-US-def LREC=300x250,1x1 rs=\"pt:utility;site:finance;ver:ydotcom;pct:qsp;lu:0\" migration=1 quote_type=EQUITY', 'optionalps': '', 'launchViewportAdSlot': [], 'site': 'finance'}, 'siteAttrs': ' ticker=AAPL Y-BUCKET=finance-US-en-US-def LREC=300x250,1x1 rs=\"pt:utility;site:finance;ver:ydotcom;pct:qsp;lu:0\" migration=1 quote_type=EQUITY', 'autoAdRender': True, 'supportMultipleRenderTargets': True, 'darlaJsAtTop': True, 'delayedRender': False, 'darlaVersion': '4-7-1', 'disableDarla': False, 'detectAdblock': True, 'inarticleTextEnable': False, 'adblockPos': True, 'disableDocDomain': True, 'removeFSRVY': True, 'enableAdboost': True, 'enableUBAMON': True, 'adBoostGroupConf': {'LREC3': None, 'LREC4': None, 'MON2': {'extrapositions': ['LREC3', 'LREC4']}, 'LREC3-9': {'inview': 'LREC4-9', 'extrapositions': ['MON2-9']}, 'LREC4-9': {'inview': 'LREC3-9', 'extrapositions': ['MON2-9']}, 'MON2-9': {'extrapositions': ['LREC3-9', 'LREC4-9']}}, 'viewerAdboost': True, 'tabswitchRotateTime': 3000, 'deferRender': True, 'keepPerfEntries': False, 'darlaAssetFetch': True, 'cacheDarlaAsset': True, 'darlaConfigFetch': True, 'cacheDarlaConfig': True, 'prefetchedPositions': {'FB2A': {'hasError': False, 'error': 'none', 'size': '120x60', 'slotData': {'trusted_custom': 'false', 'freqcapped': 'false', 'delivery': '-1', 'pacing': '-1', 'expires': '1946948', 'companion': 'false', 'exclusive': 'true', 'redirect': 'false', 'pvid': 'yRVphDc0LjZ0BaGH_kLmwgKiMTI4LgAAAABC3AdF'}, 'serveType': '6'}, 'FB2B': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}, 'FB2C': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}, 'FB2D': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}, 'LDRB': {'hasError': False, 'error': 'none', 'size': '728x90', 'slotData': {}, 'serveType': '7'}, 'LDRB2': {'hasError': False, 'error': 'none', 'size': '728x90', 'slotData': {}, 'serveType': '7'}, 'MON': {'hasError': True, 'error': 'fnad', 'size': 'unknown', 'slotData': None, 'serveType': '0'}, 'LREC': {'hasError': False, 'error': 'none', 'size': '300x250', 'slotData': {}, 'serveType': '7'}, 'LREC2': {'hasError': False, 'error': 'none', 'size': '300x250', 'slotData': {}, 'serveType': '7'}, 'FOOT': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}, 'TRADENOW': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}}, '_newPageRendered': False, 'checkForModalClose': True, 'nukeAds': ['LREC', 'LREC2', 'LREC-9', 'LREC2-9', 'LREC3-9', 'LREC4-9', 'LDRB-9', 'MAST-9', 'MON-1', 'SPL'], 'adfetchTimeout': 500, 'forceSsl': False, 'customPositionEnabled': False, 'customPositionConf': {}, 'reactjsDisabled': False, 'prefetchDisabled': False, 'displayMomentsScroller': False, 'enableJac': False, 'adsMeta': None, 'nonNativeBillboardConf': {'positions': {}}, 'nativeBillboardConf': {'positions': {}}, 'allowHostUrlAsReferrer': True, 'detectExpandEvent': False, 'launchViewportFetch': False, 'checkPrefetchedAdHidden': False, 'enableAdPlaceHolder': True, 'darlaAdBlockExp': False, 'hiddenPrefetchedAds': [], '_childCompositeReady': {}}, 'VideoStore': {'videos': {}, 'microdata': {}, '_cdnBase': 'https://s.yimg.com'}, 'ComponentConfigStore': {'configs': {'Nav-0-DesktopNav': {'enablePremiumNav': True, 'navItems': [{'name': 'Personal Finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}]}], 'ui': {'navCache': True, 'remoteAdapter': True, 'makeSticky': False, 'isNavLink': True, 'relativeLinks': True, 'navFont': 'Ff($yahooSansFinanceFont)!', 'headerTitle': 'finance', 'highlightPropertyHome': False, 'dividerClasses': 'H(0)!', 'offsetHack': 'Pt(2px) Bgc(t)!', 'navMainLeftClasses': 'Mend(80px)', 'leftNavClasses': 'Pstart(10px) Mstart(-10px) nr-applet-main-nav-right_Ov(inh)!', 'navTitleClasses': 'Pstart(10px) Mstart(-10px)!', 'linkItemClasses': 'Bgc($linkColor):h W(230px)!', 'subnavLinkClasses': 'Tt(n)! C($primaryColor) C(white)!:h Maw(200px)!', 'darkTheme': False, 'selectColor': 'C($finNavBlueText)! Bdbw(0px) H(42px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'subnavClasses': 'Bgc($lv3BgColor)!', 'hoverColor': 'C($finNavBlueText):h', 'overrideColor': 'C($finNavBlueText)', 'propertyHomeSelectColor': 'Bdbc($linkColor) Bdbs(s)! Bdbw(4px) H(38px)', 'propertyHomeClasses': 'Tt(c)! Bdbc($linkColor):h Bdbs(s):h Bdbw(4px):h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkClasses': 'Tt(n)!', 'navLinkClassesOnHover': 'Bdbc($linkColor)!:h Bdbs(s)!:h Bdbw(4px)!:h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkNonHoverClasses': 'C($topNavLinkGray) Bdbs(n)', 'highlightTriangleColor': 'transparent transparent #fff', 'navMainRightClasses': 'Bdc(t) Bdrs(1.5px) Bdbs(s):h Px(10px)!'}, 'featureSwitches': {'useNavSelectLogic': True, 'disableDivider': True, 'followButtons': False, 'navLogoAlign': False, 'navrailCollapse': False, 'enableHighlightTriangle': True, 'useSubnavTitleSlk': True}, 'i13n': {'itc': 0, 'sec': 'navrail'}, 'site': 'finance', 'mrt': {'static': False}, 'renderSecondaryNav': True, 'defaultRowNum': 10, 'components': {'finance': {'linkWidth': 230, 'linksRight': ['feature_promo']}}, 'linkMeta': {'feature_promo': {'bundles': {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'isPremium': True, 'autoStart': True, 'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'checkStoreBeforeCall': True, 'placement': 'finance-eyebrow-index'}}}}}, 'Nav-1-NavHelper': {'enablePremiumNav': True, 'navItems': [{'name': 'Yahoo Finance Plus', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}, 'requiresPremiumExperience': True}, {'name': 'Screeners', 'children': [{'name': 'Saved Screeners', 'url': 'https://finance.yahoo.com/screener'}, {'name': 'Equity Screener', 'url': 'https://finance.yahoo.com/screener/new'}, {'name': 'Mutual Fund Screener', 'url': 'https://finance.yahoo.com/screener/mutualfund/new'}, {'name': 'ETF Screener', 'url': 'https://finance.yahoo.com/screener/etf/new'}, {'name': 'Futures Screener', 'url': 'https://finance.yahoo.com/screener/future/new'}, {'name': 'Index Screener', 'url': 'https://finance.yahoo.com/screener/index/new'}, {'name': 'Analyst Rating Screener', 'url': 'https://finance.yahoo.com/screener/analyst_ratings/new?ncid=dcm_320339942_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Technical Events Screener', 'url': 'https://finance.yahoo.com/screener/tradingcentral_event/new?ncid=dcm_320544712_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Smart Money Screener', 'url': 'https://finance.yahoo.com/screener/institutional_interest/new?ncid=dcm_320344326_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Top Holdings Screener', 'url': 'https://finance.yahoo.com/screener/institutional_holdings/new?ncid=dcm_320545006_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}], 'requiresPremiumExperience': True}]}, 'SecondaryNav-0-SecondaryNav': {'enablePremiumNav': True, 'ui': {'enableRelativeUrl': True, 'navCache': True, 'remoteAdapter': True, 'makeSticky': False, 'isNavLink': True, 'relativeLinks': True}, 'featureSwitches': {'useNavSelectLogic': True}, 'i13n': {'itc': 0, 'sec': 'subnav'}, 'site': 'finance', 'navItems': [{'name': 'Screeners', 'children': [{'name': 'Saved Screeners', 'url': 'https://finance.yahoo.com/screener'}, {'name': 'Equity Screener', 'url': 'https://finance.yahoo.com/screener/new'}, {'name': 'Mutual Fund Screener', 'url': 'https://finance.yahoo.com/screener/mutualfund/new'}, {'name': 'ETF Screener', 'url': 'https://finance.yahoo.com/screener/etf/new'}, {'name': 'Futures Screener', 'url': 'https://finance.yahoo.com/screener/future/new'}, {'name': 'Index Screener', 'url': 'https://finance.yahoo.com/screener/index/new'}, {'name': 'Analyst Rating Screener', 'url': 'https://finance.yahoo.com/screener/analyst_ratings/new?ncid=dcm_320339942_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Technical Events Screener', 'url': 'https://finance.yahoo.com/screener/tradingcentral_event/new?ncid=dcm_320544712_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Smart Money Screener', 'url': 'https://finance.yahoo.com/screener/institutional_interest/new?ncid=dcm_320344326_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Top holdings screener', 'url': 'https://finance.yahoo.com/screener/institutional_holdings/new?ncid=dcm_320545006_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}], 'requiresPremiumExperience': True}]}, 'Lead-2-FinanceHeader': {'messaging': {'enabled': False, 'textId': 'DEFAULT_MESSAGE', 'testMsg': ''}}, 'Lead-3-FeatureBar': {'contentSite': '', 'convertContentUrl': True, 'imageSize': {'width': 272, 'height': 144}, 'scoobyCompat': False, 'ui': {'container_classnames': 'W(100%) Bxz(bb) Bdrs(2px) Maw($maxModuleWidth) Mx(a) D(n)--print', 'strictViewMatch': False, 'wrapper_classnames': 'Bgc(white) Pos(r) Bxz(bb) Maw($newGridWidth) Miw($minGridWidth) Miw(a)!--tab768 Miw(a)!--tab1024 Mstart(a) Mend(a) Px(20px) Pb(10px) D(n)--print', 'prerender': {'enabled': False, 'renderTargetId': 'modal'}, 'link_component': 'WaferLink'}, 'useNCP': True, 'site': 'finance'}, 'Lead-5-QuoteHeader': {'cryptocurrency': {'title': 'CoinMarketCap', 'imgUrl': 'https://s.yimg.com/uc/fin/img/19/10/1990f37.png', 'url': 'https://coinmarketcap.com/', 'className': 'W(110px) H(19px) Va(m)!'}, 'updateQuoteDataOnCheck': False, 'enhanceAddToWL': True, 'displayPageviews': True}, 'Lead-6-QuoteNav': {'tabs': {'CHART': True, 'SUSTAINABILITY': True, 'COMPANY_INSIGHTS': True, 'COMPANY_OUTLOOK': False}, 'tickerConfig': {'^FTSE': {'tabs': {'HISTORICAL_DATA': False}}, '^FTAS': {'tabs': {'HISTORICAL_DATA': False}}, '^FTAI': {'tabs': {'HISTORICAL_DATA': False}}, '^FTMC': {'tabs': {'HISTORICAL_DATA': False}}, '^FTLC': {'tabs': {'HISTORICAL_DATA': False}}, '^STI': {'tabs': {'HISTORICAL_DATA': False}}, '^KLSE': {'tabs': {'HISTORICAL_DATA': False}}, 'FTSEMIB.MI': {'tabs': {'HISTORICAL_DATA': False}}}}, 'Lead-7-Rmp': {'headers': {}, 'useDynamicHostHeader': False, 'passBucket': False, 'usePageSpaceId': False, 'assets': {'critical': True, 'dependencies': {'css': [], 'js': []}, 'name': 'SmartAdDynamicData', 'm_id': 'smart-ad-dynamic-data', 'ctrl': 'SmartAdDynamicData'}, 'endpoint': {'query': {'ctrl': 'SmartAdDynamicData', 'm_id': 'smart-ad-dynamic-data'}, 'path': '/_rcv/remote', 'method': 'POST', 'body': {'m_id': 'smart-ad-dynamic-data', 'ctrl': 'SmartAdDynamicData', 'm_mode': 'json', 'site': 'finance', 'config': {'apiVersion': '2', 'adPositions': ['FB2A', 'FB2B', 'FB2C', 'FB2D', 'LDRB', 'LREC', 'MON', 'LREC2', 'MON2', 'LREC3']}}}, 'httpOptions': {'timeout': 1000, 'cacheTTL': 60000, 'fallbackTTL': 3600000, 'fallbackTimeout': 4000, 'fallbackPerfLabel': '', 'cacheEnabled': False, 'verboseDebug': False, 'perfLabel': 'read_smart_dynamic_data_rmp'}, 'mappedDevice': 'desktop', 'disableEndpoint': False, 'wrapperDiv': {'wrapperDivClass': '', 'wrapperDivId': ''}, 'serviceId': 'nel_ms', 'enableNonIstioFallback': False, 'pathParamsToForward': ['symbol']}, 'Col1-1-Financials': {'canvass': {'tickerTagging': True, 'enableRelatedTags': False, 'messagesPerPage': 20, 'oauthConsumerKey': 'finance.oauth.client.canvass.prod.consumerKey', 'oauthConsumerSecret': 'finance.oauth.client.canvass.prod.consumerSecret', 'uploadOptions': 'TEXT,SMARTLINKS,GIF', 'rankingProfile': 'canvassPCRDProfile', 'ui': {'userLabels': {'enable': True, 'labels': {'BULLISH': {'title': 'Bullish', 'icon': {'name': 'traffic', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle'}}}, 'NEUTRAL': {'title': 'Neutral', 'icon': {'name': 'arrow-right', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle', 'transform': 'translateY(-1px)'}}}, 'BEARISH': {'title': 'Bearish', 'icon': {'name': 'traffic', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle', 'transform': 'scaleY(-1)'}}}}}, 'enableRepliesToggle': True}}, 'videoConfig': {'videoFetchCount': 10, 'videoProps': {'expName': 'qsp', 'endscreen': {'show': False}, 'docking': {'enableOnScrollDown': False, 'enableOnScrollUp': False, 'fadeInAnimation': True, 'position': {'left': 'ref', 'right': 0, 'bottom': 55}}, 'vpaidTimeout': 10}}, 'adReTargetBeacon': {'enabled': True, 'url': 'https://sp.analytics.yahoo.com/spp.pl?a=10000&.yp=428726'}, 'chart': {'urlImagePrefix': 'https://s.yimg.com/uc', 'isChartTab': True, 'toolBarItems': ['indicators', 'comparisons', 'separator', 'ranges', 'separator', 'intervals', 'chartTypes', 'drawButton', 'events'], 'font': '500 11px Yahoo Sans Finance, Helvetica Neue, Helvetica, sans-serif', 'rightBarItems': ['settings', 'share', 'reset'], 'useNextGenHistory': True}, 'cryptocurrency': {'title': 'CoinMarketCap', 'imgUrl': 'https://s.yimg.com/uc/fin/img/19/10/1990f37.png', 'url': 'https://coinmarketcap.com/', 'className': 'W(110px) H(19px) Va(m)!'}, 'classNames': {'emptyState': 'Ta(c) D(tb) W(100%) Bgc($lv4BgColor) H($company360EmptyHeight) smartphone_H(220px)'}, 'subtabNavItems': {'CURRENCY': [], 'EQUITY': [{'category': 'summary', 'title': 'ALL', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'all news'}}, {'category': 'news', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'latest news'}}, {'category': 'press-releases', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'press releases'}}], 'ETF': [], 'FUTURE': [], 'INDEX': [], 'MUTUALFUND': [], 'OPTION': [], 'MONEYMARKET': [], 'CRYPTOCURRENCY': []}, 'bundleName': 'tdv2-applet-rmp', 'name': 'Rmp', 'compositeConfig': {'serviceId': 'nel_ms', 'assets': {'m_id': 'spotIm', 'ctrl': 'SpotImJAC'}, 'endpoint': {'method': 'POST', 'path': '/_rcv/remote', 'body': {'ctrl': 'SpotImJAC', 'm_id': 'spotIm', 'm_mode': 'json', 'site': 'finance', 'config': {'conversationEnabled': True, 'leftRailWidth': '', 'messages_cnt': 10, 'passiveReactionEnabled': True, 'showCommentCount': True, 'stageSpotId': 'sp_n93tLsKu', 'spotId': 'sp_Rba9aFpG', 'useStageToken': False, 'useCase': 'qsp', 'xhrPathPrefix': '/nel_ms/_rcv/remote'}}}, 'wrapperDiv': {'wrapperDivClass': 'wafer-rapid-module', 'wrapperDivId': 'openweb-community'}}, 'fredTickerConfig': {'A191RP1Q027SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RP1A027NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RL1Q225SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RL1A225NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDP.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDPA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDPC1.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDPCA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'CPIAUCSL.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'CUUS0000SA0.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'PAYEMS.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'NPPTTL.I': {'dataSource': 'Automatic Data Processing, Inc.'}, 'PPIFIS.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'HOUST.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MSPNHSUS.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MSPUS.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MEHOINUSA646N.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MEHOINUSA672N.I': {'dataSource': 'U.S. Bureau of the Census'}, 'UNRATE.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'A939RX0Q048SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A939RC0A052NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A939RC0Q052SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'AMTMTI.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MNFCTRMPCSMSA.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MNFCTRSMSA.I': {'dataSource': 'U.S. Bureau of the Census'}, 'BOPGSTB.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}}, 'promoConfig': {'imgUrl': 'https://s.yimg.com/cv/apiv2/default/StockPicks_-_E0E4E9_border-1@2x.png', 'enabled': True, 'hideFromHighValueUsers': True, 'liveTitle': 'Yahoo Finance Plus', 'eventUrl': 'https://ad.doubleclick.net/ddm/trackclk/N360801.1913355YAHOOADMANAGER/B23644564.298415483;dc_trk_aid=490172245;dc_trk_cid=127172993;dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;tfua=;gdpr=${GDPR};gdpr_consent=${GDPR_CONSENT_755};ltd='}, 'promoImgUrl': {'src': 'https://s.yimg.com/cv/apiv2/yahoo_finance/yf_company360.png'}}, 'Col2-1-MonalixaComponent': {'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'placement': 'finance-desktop-web-qsp-rightrail'}, 'Col2-6-Footer': {'footer': {'aboutUrl': 'https://policies.oath.com/us/en/oath/privacy/adinfo/index.html', 'companyName': 'Yahoo', 'disclaimerUrl': 'https://help.yahoo.com/kb/finance-for-web/SLN2310.html?locale=en_US', 'helpUrl': 'https://help.yahoo.com/kb/finance-for-web', 'privacyText': 'FOOTER_PRIVACY_TEXT', 'privacyUrl': 'https://policies.oath.com/us/en/oath/privacy/index.html', 'suggestUrl': 'https://yahoo.uservoice.com/forums/382977', 'termsUrl': 'https://legal.yahoo.com/us/en/yahoo/terms/otos/index.html', 'sitemapUrl': 'https://finance.yahoo.com/sitemap/'}, 'followbutton': {'twitter_follow': 'https://twitter.com/YahooFinance', 'linkedin_follow': 'https://www.linkedin.com/company/yahoo-finance', 'facebook_follow': 'https://facebook.com/yahoofinance'}, 'logoUrl': 'https://s.yimg.com/os/finance/dd-site/img/Oath_YFin_Logo_EN.svg'}, 'Nav-0-DesktopNav-0-DesktopNav': {'closeBtn': False, 'renderMobileOnServer': False, 'renderSecondaryNav': True, 'i13n': {'sec': 'navrail', 'itc': 0}, 'i13n_follow': {'sec': 'social-flw', 'elm': 'follow', 'outcm': 'follow', 'itc': 0, 'mpos': ''}, 'ui': {'bgColor': 'Bgc(#f9f9f9)', 'darkTheme': False, 'displayGroupTitle': False, 'headerTitle': 'finance', 'highlightPropertyHome': False, 'isNavLink': True, 'mailBadgeClass': 'Bgc($c-fuji-red-1-a) Bdrs(11px) Bdc(#fff) Bdw(2px) Bds(s) W(8px) H(8px) Pos(a) T(8px) Start(26px)', 'makeSticky': False, 'navCache': True, 'navSections': 'property', 'relativeLinks': True, 'remoteAdapter': True, 'renderLogoNav': False, 'renderPropertyNav': True, 'sections': ['property'], 'showMailCount': False, 'showPropertyHome': True, 'navFont': 'Ff($yahooSansFinanceFont)!', 'dividerClasses': 'H(0)!', 'offsetHack': 'Pt(2px) Bgc(t)!', 'navMainLeftClasses': 'Mend(80px)', 'leftNavClasses': 'Pstart(10px) Mstart(-10px) nr-applet-main-nav-right_Ov(inh)!', 'navTitleClasses': 'Pstart(10px) Mstart(-10px)!', 'linkItemClasses': 'Bgc($linkColor):h W(230px)!', 'subnavLinkClasses': 'Tt(n)! C($primaryColor) C(white)!:h Maw(200px)!', 'selectColor': 'C($finNavBlueText)! Bdbw(0px) H(42px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'subnavClasses': 'Bgc($lv3BgColor)!', 'hoverColor': 'C($finNavBlueText):h', 'overrideColor': 'C($finNavBlueText)', 'propertyHomeSelectColor': 'Bdbc($linkColor) Bdbs(s)! Bdbw(4px) H(38px)', 'propertyHomeClasses': 'Tt(c)! Bdbc($linkColor):h Bdbs(s):h Bdbw(4px):h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkClasses': 'Tt(n)!', 'navLinkClassesOnHover': 'Bdbc($linkColor)!:h Bdbs(s)!:h Bdbw(4px)!:h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkNonHoverClasses': 'C($topNavLinkGray) Bdbs(n)', 'highlightTriangleColor': 'transparent transparent #fff', 'navMainRightClasses': 'Bdc(t) Bdrs(1.5px) Bdbs(s):h Px(10px)!'}, 'theme': {'daaPrivacyRightsIcon': 'https://s.yimg.com/cv/apiv2/default/20200109/Privacy_Rights_icon.png', 'daaPrivacyRightsIconClasses': 'Mstart(1px) Va(m) W(20px) H(20px)', 'mobileIconHeight': 60, 'mobileIconWidth': 150, 'mobileSectionBorder': {}}, 'account_switch': {'isEnabled': True}, 'featureSwitches': {'cobrandLogo': False, 'followButtons': False, 'navLogoAlign': False, 'navrailCollapse': False, 'uhMagDesign': True, 'useNavSelectLogic': True, 'disableDivider': True, 'enableHighlightTriangle': True, 'useSubnavTitleSlk': True}, 'profile': {'mode': 'client', 'avatarSize': '36px', 'loginBaseUrl': 'https://login.yahoo.com/config/login', 'settingUrl': 'https://edit.yahoo.com/config/eval_profile', 'urls': {'signed_in': {'protocol': 'https', 'hostname': 'login.yahoo.com', 'pathname': '/config/login', 'query': {}}, 'signed_out': {'protocol': 'https', 'hostname': 'login.yahoo.com', 'pathname': '/config/login', 'query': {'.direct': 2, 'logout': 1}}, 'signed_out_as': {'protocol': 'https', 'hostname': 'login.yahoo.com', 'pathname': '/config/login', 'query': {'.direct': 1, 'logout_all': 1}}, 'account_info': {'protocol': 'https', 'hostname': 'edit.yahoo.com', 'pathname': '/config/eval_profile', 'query': {}}}}, 'mobileSectionMeta': {'property': {}, 'yahooSites': {'listMeta': {}}, 'services': {}, 'apps': {'listMeta': {}}, 'tools': {'listMeta': {}}}, 'components': {'propertyHome': {'title': 'PROPERTY_HOME', 'dragonFlyKey': 'PROPERTY_HOME'}, 'finance': {'title': 'Finance', 'link': 'https://finance.yahoo.com', 'collapse': True, 'type': 'finance', 'linkWidth': 230, 'i13n': {}, 'links': True, 'propertyColor': '#efefef', 'linksRight': ['feature_promo']}}, 'linkMeta': {'finance': {'link': 'https://finance.yahoo.com'}, 'feature_promo': {'bundles': {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'isPremium': True, 'autoStart': True, 'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'checkStoreBeforeCall': True, 'placement': 'finance-eyebrow-index'}}}}, 'enablePremiumNav': True, 'navItems': [{'name': 'Personal Finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}]}], 'site': 'finance', 'mrt': {'static': False}, 'defaultRowNum': 10}, 'Nav-0-DesktopNav-0-DesktopNav-acct-switch-0-AccountSwitch': {'isEnabled': True, 'clientRender': True, 'accountListLength': 3, 'enableAlphatar': True, 'host': 'login.yahoo.com', 'urlReplacements': {'CRUMB': {'.crumb': '{crumb}'}, 'DONE': {'.done': '{doneUrl}'}, 'DONE_YAHOO': {'.done': '{doneUrlYahoo}'}}, 'urls': {'accountInfo': {'protocol': 'https', 'path': '/account/personalinfo/', 'query': ['DONE', {'.intl': '{intl}'}, {'.lang': '{lang}'}, {'.partner': '{partner}'}, {'.src': '{site}'}, {'activity': 'uh-acctinfo'}]}, 'switchUrl': {'protocol': 'https', 'path': '/d', 'query': ['CRUMB', {'.intl': '{intl}'}, {'.lang': '{lang}'}, {'.partner': '{partner}'}, {'.src': '{site}'}, {'login': '{alias}'}, {'as': '1'}, 'DONE']}, 'manageUrl': {'protocol': 'https', 'path': '/manage_account', 'query': ['CRUMB', {'.intl': '{intl}'}, {'.lang': '{lang}'}, {'.partner': '{partner}'}, {'.src': '{site}'}, {'activity': 'uh-addacct'}, 'DONE']}, 'logoutUrl': {'protocol': 'https', 'path': '/account/logout', 'query': ['CRUMB', {'.src': '{site}'}, {'.intl': '{intl}'}, {'.lang': '{lang}'}, {'.partner': '{partner}'}, {'logout_all': '1'}, {'.direct': '1'}, 'DONE_YAHOO']}, 'requestUrl': {'protocol': 'https', 'path': '/w/device_users', 'query': ['CRUMB']}}, 'styles': {'account_switch_main': {'wrapper': 'Py(16px)', 'account_info': 'C($c-fuji-grey-l) C(asLinkHoverColor):h Td(n) Td(n):h D(ib) Mstart(asIconWidth) Pend(asEndPadding) Whs(nw)'}, 'signed_out': {'wrapper': 'Py(14px) Ta(c) Bdt(asMenuBorder)', 'content': 'C($c-fuji-grey-l) C(asLinkHoverColor):h Td(n) Td(n):h'}, 'add_accounts': {'icon_wrapper': 'W(asIconWidth) D(ib) Va(t) Ta(c)', 'icon_content': 'C($c-fuji-grey-l) Fz(30px) Fw(200) Lh(1.5)', 'text': 'Pt(16px) D(ib) C($c-fuji-grey-l) Zoom Fz(15px)', 'wrapper': 'Bdt(asMenuBorder) Td(n) Td(n):h D(b) Whs(nw) Bgc(asMenuHoverBgc):h H(50px) Pend(asEndPadding)'}, 'avatar': {'size': 40, 'color': '#400090', 'content': 'Bdrs(100px) Bgz(cv) D(ib)', 'panel_content': 'D(ib) Va(m) Bgz(cv) Bdrs(100px)', 'name': 'D(n) Lh(2.6) Mstart(4px)', 'wrapper': 'Zoom Va(t) Ta(c) Fl(start) W(asIconWidth)'}, 'main_account': {'alias': 'C(asLightTextColor) Ell Pt(2px)', 'alias_wrapper': 'Ell C(#000) Fz(13px)', 'content': 'C($c-fuji-grey-l) D(ib) Fz(13px) Pt(10px)', 'name': 'C($c-fuji-grey-l) Ell Fz(15px)', 'name_wrapper': 'Fz(15px) Ell', 'user_info_wrapper': 'W(2/3) D(ib) Zoom Lts(n) Tren(a) Va(t)', 'wrapper': 'Cf'}, 'secondary_accounts': {'list': 'Pos(r) M(0) P(0) List(n)', 'list_item': 'Bdt(asMenuBorder)', 'anchor': 'Td(n) Td(n):h Py(16px) D(b) Cf C(#000) Bgc(asMenuHoverBgc):h'}}}}}, 'CrumbStore': {'crumb': 'fzC.ZBI.dx1'}, 'CompositeStore': {'_instances': {'UH-0-HeaderDesktop': {'status': 'initialized'}, 'Nav-0-DesktopNav': {'status': 'initialized'}, 'SecondaryNav-0-SecondaryNav': {'status': 'initialized'}, 'Lead-2-FinanceHeader': {'status': 'initialized'}, 'Lead-3-FeatureBar': {'status': 'initialized'}, 'Lead-5-QuoteHeader': {'status': 'initialized'}, 'Lead-7-Rmp': {'status': 'initialized'}, 'Col1-1-Financials': {'status': 'initialized'}, 'Col2-1-MonalixaComponent': {'status': 'initialized'}, 'Nav-0-DesktopNav-0-DesktopNav': {'status': 'initialized'}, 'Nav-0-DesktopNav-0-DesktopNav-acct-switch-0-AccountSwitch': {'status': 'initialized'}}}, 'MonalixaStore': {'placements': {}, 'freqCappingEnabled': True}, 'StreamStore': {'articleCategory': {'term': '', 'label': ''}, 'pageCategory': 'YFINANCE:AAPL', 'fallbackCategory': 'YFINANCE:AAPL', 'pageSubsite': ''}, 'UserStore': {'guid': '', 'login': '', 'alias': '', 'firstName': '', 'comscoreParams': {'c14': -1}, 'isSignedIn': False, 'isRecognized': False, 'isLoaded': True}, 'ProfileStore': {'err': {}, 'guid': '', 'profileUrl': '', 'userProfile': {'nickName': '', 'imageUrl': ''}, '_isLoaded': False, '_isRecognized': False, '_isSignedIn': False}, 'QuotePageStore': {'error': None, 'isPageComplete': True, 'pageData': {'componentConfig': {'compositeConfig': {'serviceId': 'nel_ms', 'assets': {'m_id': 'spotIm', 'ctrl': 'SpotImJAC'}, 'endpoint': {'method': 'POST', 'path': '/_rcv/remote', 'body': {'ctrl': 'SpotImJAC', 'm_id': 'spotIm', 'm_mode': 'json', 'site': 'finance', 'config': {'useStageToken': False, 'leftRailWidth': '', 'showCommentCount': True, 'passiveReactionEnabled': True, 'messages_cnt': 10, 'useCase': 'qsp', 'xhrPathPrefix': '/nel_ms/_rcv/remote', 'stageSpotId': 'sp_n93tLsKu', 'spotId': 'sp_Rba9aFpG', 'conversationEnabled': True}}}, 'wrapperDiv': {'wrapperDivClass': 'wafer-rapid-module', 'wrapperDivId': 'openweb-community'}}, 'adReTargetBeacon': {'enabled': True, 'url': 'https://sp.analytics.yahoo.com/spp.pl?a=10000&.yp=428726'}, 'name': 'Rmp', 'bundleName': 'tdv2-applet-rmp', 'classNames': {'emptyState': 'Ta(c) D(tb) W(100%) Bgc($lv4BgColor) H($company360EmptyHeight) smartphone_H(220px)'}, 'promoConfig': {'imgUrl': 'https://s.yimg.com/cv/apiv2/default/StockPicks_-_E0E4E9_border-1@2x.png', 'enabled': True, 'hideFromHighValueUsers': True, 'liveTitle': 'Yahoo Finance Plus', 'eventUrl': 'https://ad.doubleclick.net/ddm/trackclk/N360801.1913355YAHOOADMANAGER/B23644564.298415483;dc_trk_aid=490172245;dc_trk_cid=127172993;dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;tfua=;gdpr=${GDPR};gdpr_consent=${GDPR_CONSENT_755};ltd='}, 'subtabNavItems': {'FUTURE': [], 'EQUITY': [{'category': 'summary', 'title': 'ALL', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'all news'}}, {'category': 'news', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'latest news'}}, {'category': 'press-releases', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'press releases'}}], 'CURRENCY': [], 'INDEX': [], 'CRYPTOCURRENCY': [], 'OPTION': [], 'ETF': [], 'MUTUALFUND': [], 'MONEYMARKET': []}, 'cryptocurrency': {'title': 'CoinMarketCap', 'imgUrl': 'https://s.yimg.com/uc/fin/img/19/10/1990f37.png', 'url': 'https://coinmarketcap.com/', 'className': 'W(110px) H(19px) Va(m)!'}, 'fredTickerConfig': {'PPIFIS.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'MSPUS.I': {'dataSource': 'U.S. Bureau of the Census'}, 'A939RC0Q052SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'CPIAUCSL.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'MNFCTRMPCSMSA.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MSPNHSUS.I': {'dataSource': 'U.S. Bureau of the Census'}, 'GDPA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'HOUST.I': {'dataSource': 'U.S. Bureau of the Census'}, 'A191RP1A027NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDPCA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'CUUS0000SA0.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'GDP.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RL1A225NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'MEHOINUSA646N.I': {'dataSource': 'U.S. Bureau of the Census'}, 'UNRATE.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'AMTMTI.I': {'dataSource': 'U.S. Bureau of the Census'}, 'A939RX0Q048SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RP1Q027SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'MEHOINUSA672N.I': {'dataSource': 'U.S. Bureau of the Census'}, 'A939RC0A052NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'BOPGSTB.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RL1Q225SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'NPPTTL.I': {'dataSource': 'Automatic Data Processing, Inc.'}, 'GDPC1.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'PAYEMS.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'MNFCTRSMSA.I': {'dataSource': 'U.S. Bureau of the Census'}}, 'promoImgUrl': {'src': 'https://s.yimg.com/cv/apiv2/yahoo_finance/yf_company360.png'}, 'canvass': {'tickerTagging': True, 'enableRelatedTags': False, 'messagesPerPage': 20, 'oauthConsumerKey': 'finance.oauth.client.canvass.prod.consumerKey', 'oauthConsumerSecret': 'finance.oauth.client.canvass.prod.consumerSecret', 'uploadOptions': 'TEXT,SMARTLINKS,GIF', 'rankingProfile': 'canvassPCRDProfile', 'ui': {'userLabels': {'enable': True, 'labels': {'BULLISH': {'title': 'Bullish', 'icon': {'name': 'traffic', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle'}}}, 'NEUTRAL': {'title': 'Neutral', 'icon': {'name': 'arrow-right', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle', 'transform': 'translateY(-1px)'}}}, 'BEARISH': {'title': 'Bearish', 'icon': {'name': 'traffic', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle', 'transform': 'scaleY(-1)'}}}}}, 'enableRepliesToggle': True}}, 'videoConfig': {'videoFetchCount': 10, 'videoProps': {'expName': 'qsp', 'endscreen': {'show': False}, 'docking': {'enableOnScrollDown': False, 'enableOnScrollUp': False, 'fadeInAnimation': True, 'position': {'left': 'ref', 'right': 0, 'bottom': 55}}, 'vpaidTimeout': 10}}, 'chart': {'urlImagePrefix': 'https://s.yimg.com/uc', 'isChartTab': True, 'toolBarItems': ['indicators', 'comparisons', 'separator', 'ranges', 'separator', 'intervals', 'chartTypes', 'drawButton', 'events'], 'font': '500 11px Yahoo Sans Finance, Helvetica Neue, Helvetica, sans-serif', 'rightBarItems': ['settings', 'share', 'reset'], 'useNextGenHistory': True}}}}, 'FinancialTemplateStore': {'template': [{'key': 'TotalRevenue', 'title': 'TOTAL_REVENUE', 'children': [{'key': 'OperatingRevenue', 'title': 'OPERATING_REVENUE'}, {'key': 'ExciseTaxes', 'title': 'EXCISE_TAXES'}]}, {'key': 'CostOfRevenue', 'title': 'COST_OF_REVENUE'}, {'key': 'GrossProfit', 'title': 'GROSS_PROFIT'}, {'key': 'OperatingExpense', 'title': 'OPERATING_EXPENSE', 'children': [{'key': 'SellingGeneralAndAdministration', 'title': 'SELLING_GEN_ADMIN', 'children': [{'key': 'GeneralAndAdministrativeExpense', 'title': 'GENERAL_AND_ADMINISTRATIVE_EXPENSE', 'children': [{'key': 'SalariesAndWages', 'title': 'SALARIES_AND_WAGES'}, {'key': 'RentAndLandingFees', 'title': 'RENT_AND_LANDING_FEES'}, {'key': 'InsuranceAndClaims', 'title': 'INSURANCE_AND_CLAIMS'}, {'key': 'OtherGandA', 'title': 'OTHER_GAND_A'}]}, {'key': 'SellingAndMarketingExpense', 'title': 'SELLING_AND_MARKETING_EXPENSE'}]}, {'key': 'ResearchAndDevelopment', 'title': 'RESEARCH_AND_DEVELOPMENT'}, {'key': 'DepreciationAmortizationDepletionIncomeStatement', 'title': 'DEPRECIATION_AMORTIZATION_DEPLETION', 'children': [{'key': 'DepreciationAndAmortizationInIncomeStatement', 'title': 'DEPRECIATION_AND_AMORTIZATION', 'children': [{'key': 'DepreciationIncomeStatement', 'title': 'DEPRECIATION'}, {'key': 'Amortization', 'title': 'AMORTIZATION', 'children': [{'key': 'AmortizationOfIntangiblesIncomeStatement', 'title': 'AMORTIZATION_OF_INTANGIBLES'}]}]}, {'key': 'DepletionIncomeStatement', 'title': 'DEPLETION'}]}, {'key': 'ProvisionForDoubtfulAccounts', 'title': 'PROVISION_FOR_DOUBTFUL_ACCOUNTS'}, {'key': 'OtherTaxes', 'title': 'OTHER_TAXES'}, {'key': 'OtherOperatingExpenses', 'title': 'OTHER_OPERATING_EXPENSES'}]}, {'key': 'OperatingIncome', 'title': 'OPERATING_INCOME'}, {'key': 'NetNonOperatingInterestIncomeExpense', 'title': 'NET_NON_OPERATING_INTEREST_INCOME_EXPENSE', 'children': [{'key': 'InterestIncomeNonOperating', 'title': 'INTEREST_INCOME_NON_OPERATING'}, {'key': 'InterestExpenseNonOperating', 'title': 'INTEREST_EXPENSE_NON_OPERATING'}, {'key': 'TotalOtherFinanceCost', 'title': 'TOTAL_OTHER_FINANCE_COST'}]}, {'key': 'OtherIncomeExpense', 'title': 'OTHER_INCOME_EXPENSE', 'children': [{'key': 'GainOnSaleOfSecurity', 'title': 'GAIN_ON_SALE_OF_SECURITY'}, {'key': 'EarningsFromEquityInterest', 'title': 'EARNINGS_FROM_EQUITY_INTEREST'}, {'key': 'SecuritiesAmortization', 'title': 'SECURITIES_AMORTIZATION'}, {'key': 'SpecialIncomeCharges', 'title': 'SPECIAL_INCOME_CHARGES', 'children': [{'key': 'RestructuringAndMergernAcquisition', 'title': 'RESTRUCTURING_AND_MERGERN_ACQUISITION'}, {'key': 'ImpairmentOfCapitalAssets', 'title': 'IMPAIRMENT_OF_CAPITAL_ASSETS'}, {'key': 'WriteOff', 'title': 'WRITE_OFF'}, {'key': 'OtherSpecialCharges', 'title': 'OTHER_SPECIAL_CHARGES'}, {'key': 'GainOnSaleOfBusiness', 'title': 'GAIN_ON_SALE_OF_BUSINESS'}, {'key': 'GainOnSaleOfPPE', 'title': 'GAIN_ON_SALE_OF_PPE'}]}, {'key': 'OtherNonOperatingIncomeExpenses', 'title': 'OTHER_NON_OPERATING_INCOME_EXPENSES'}]}, {'key': 'PretaxIncome', 'title': 'PRETAX_INCOME'}, {'key': 'TaxProvision', 'title': 'TAX_PROVISION'}, {'key': 'EarningsFromEquityInterestNetOfTax', 'title': 'EARNINGS_FROM_EQUITY_INTEREST_NET_OF_TAX'}, {'key': 'NetIncomeCommonStockholders', 'title': 'NET_INCOME_COMMON_STOCKHOLDERS', 'children': [{'key': 'NetIncome', 'title': 'NET_INCOME', 'children': [{'key': 'NetIncomeIncludingNoncontrollingInterests', 'title': 'NET_INCOME_INCLUDING_NONCONTROLLING_INTERESTS', 'children': [{'key': 'NetIncomeContinuousOperations', 'title': 'NET_INCOME_CONTINUOUS_OPERATIONS'}, {'key': 'NetIncomeDiscontinuousOperations', 'title': 'NET_INCOME_DISCONTINUOUS_OPERATIONS'}, {'key': 'NetIncomeExtraordinary', 'title': 'NET_INCOME_EXTRAORDINARY'}, {'key': 'NetIncomeFromTaxLossCarryforward', 'title': 'NET_INCOME_FROM_TAX_LOSS_CARRYFORWARD'}]}, {'key': 'MinorityInterests', 'title': 'MINORITY_INTERESTS'}]}, {'key': 'PreferredStockDividends', 'title': 'PREFERRED_STOCK_DIVIDENDS'}, {'key': 'OtherunderPreferredStockDividend', 'title': 'OTHERUNDER_PREFERRED_STOCK_DIVIDEND'}]}, {'key': 'AverageDilutionEarnings', 'title': 'AVERAGE_DILUTION_EARNINGS'}, {'key': 'DilutedNIAvailtoComStockholders', 'title': 'DILUTED_NI_AVAILTO_COM_STOCKHOLDERS'}, {'key': 'BasicEPS', 'title': 'BASIC_EPS', 'useRaw': False, 'children': [{'key': 'BasicContinuousOperations', 'title': 'BASIC_CONTINUOUS_OPERATIONS'}, {'key': 'BasicDiscontinuousOperations', 'title': 'BASIC_DISCONTINUOUS_OPERATIONS'}, {'key': 'BasicExtraordinary', 'title': 'BASIC_EXTRAORDINARY'}, {'key': 'BasicAccountingChange', 'title': 'BASIC_ACCOUNTING_CHANGE'}, {'key': 'TaxLossCarryforwardBasicEPS', 'title': 'TAX_LOSS_CARRYFORWARD_BASIC_EPS'}, {'key': 'BasicEPSOtherGainsLosses', 'title': 'BASIC_EPS_OTHER_GAINS_LOSSES'}]}, {'key': 'DilutedEPS', 'title': 'DILUTED_EPS', 'useRaw': False, 'children': [{'key': 'DilutedContinuousOperations', 'title': 'DILUTED_CONTINUOUS_OPERATIONS'}, {'key': 'DilutedDiscontinuousOperations', 'title': 'DILUTED_DISCONTINUOUS_OPERATIONS'}, {'key': 'DilutedExtraordinary', 'title': 'DILUTED_EXTRAORDINARY'}, {'key': 'DilutedAccountingChange', 'title': 'DILUTED_ACCOUNTING_CHANGE'}, {'key': 'TaxLossCarryforwardDilutedEPS', 'title': 'TAX_LOSS_CARRYFORWARD_DILUTED_EPS'}, {'key': 'DilutedEPSOtherGainsLosses', 'title': 'DILUTED_EPS_OTHER_GAINS_LOSSES'}]}, {'key': 'BasicAverageShares', 'title': 'BASIC_AVERAGE_SHARES'}, {'key': 'DilutedAverageShares', 'title': 'DILUTED_AVERAGE_SHARES'}, {'key': 'DividendPerShare', 'title': 'DIVIDEND_PER_SHARE'}, {'key': 'TotalOperatingIncomeAsReported', 'title': 'TOTAL_OPERATING_INCOME_AS_REPORTED'}, {'key': 'ReportedNormalizedBasicEPS', 'title': 'REPORTED_NORMALIZED_BASIC_EPS'}, {'key': 'ReportedNormalizedDilutedEPS', 'title': 'REPORTED_NORMALIZED_DILUTED_EPS'}, {'key': 'RentExpenseSupplemental', 'title': 'RENT_EXPENSE_SUPPLEMENTAL'}, {'key': 'TotalExpenses', 'title': 'TOTAL_EXPENSES'}, {'key': 'NetIncomeFromContinuingAndDiscontinuedOperation', 'title': 'NET_INCOME_FROM_CONTINUING_AND_DISCONTINUED_OPERATION'}, {'key': 'NormalizedIncome', 'title': 'NORMALIZED_INCOME'}, {'key': 'ContinuingAndDiscontinuedBasicEPS', 'title': 'CONTINUING_AND_DISCONTINUED_BASIC_EPS'}, {'key': 'ContinuingAndDiscontinuedDilutedEPS', 'title': 'CONTINUING_AND_DISCONTINUED_DILUTED_EPS'}, {'key': 'InterestIncome', 'title': 'INTEREST_INCOME'}, {'key': 'InterestExpense', 'title': 'INTEREST_EXPENSE'}, {'key': 'NetInterestIncome', 'title': 'NET_INTEREST_INCOME'}, {'key': 'EBIT', 'title': 'EBIT'}, {'key': 'EBITDA', 'title': 'EBITDA'}, {'key': 'ReconciledCostOfRevenue', 'title': 'RECONCILED_COST_OF_REVENUE'}, {'key': 'ReconciledDepreciation', 'title': 'RECONCILED_DEPRECIATION'}, {'key': 'NetIncomeFromContinuingOperationNetMinorityInterest', 'title': 'NET_INCOME_FROM_CONTINUING_OPERATION_NET_MINORITY_INTEREST'}, {'key': 'TotalUnusualItemsExcludingGoodwill', 'title': 'TOTAL_UNUSUAL_ITEMS_EXCLUDING_GOODWILL'}, {'key': 'TotalUnusualItems', 'title': 'TOTAL_UNUSUAL_ITEMS'}, {'key': 'NormalizedBasicEPS', 'title': 'NORMALIZED_BASIC_EPS'}, {'key': 'NormalizedDilutedEPS', 'title': 'NORMALIZED_DILUTED_EPS'}, {'key': 'NormalizedEBITDA', 'title': 'NORMALIZED_EBITDA'}, {'key': 'TaxRateForCalcs', 'title': 'TAX_RATE_FOR_CALCS'}, {'key': 'TaxEffectOfUnusualItems', 'title': 'TAX_EFFECT_OF_UNUSUAL_ITEMS'}]}, 'QuoteTimeSeriesStore': {'timeSeries': {'annualNetIncomeContinuousOperations': [{'dataId': 20094, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 55256000000, 'fmt': '55.26B'}}, {'dataId': 20094, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57411000000, 'fmt': '57.41B'}}, {'dataId': 20094, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 94680000000, 'fmt': '94.68B'}}, {'dataId': 20094, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualTaxEffectOfUnusualItems': [{'dataId': 20419, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0, 'fmt': '0.00'}}, {'dataId': 20419, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0, 'fmt': '0.00'}}, {'dataId': 20419, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0, 'fmt': '0.00'}}, {'dataId': 20419, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0, 'fmt': '0.00'}}], 'trailingTotalOperatingIncomeAsReported': [{'dataId': 20435, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 119437000000, 'fmt': '119.44B'}}], 'annualNetIncomeFromContinuingOperationNetMinorityInterest': [{'dataId': 20331, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 55256000000, 'fmt': '55.26B'}}, {'dataId': 20331, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57411000000, 'fmt': '57.41B'}}, {'dataId': 20331, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 94680000000, 'fmt': '94.68B'}}, {'dataId': 20331, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualTotalOperatingIncomeAsReported': [{'dataId': 20435, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 63930000000, 'fmt': '63.93B'}}, {'dataId': 20435, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 66288000000, 'fmt': '66.29B'}}, {'dataId': 20435, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 108949000000, 'fmt': '108.95B'}}, {'dataId': 20435, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 119437000000, 'fmt': '119.44B'}}], 'annualBasicAverageShares': [{'dataId': 29010, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 18471336000, 'fmt': '18.47B'}}, {'dataId': 29010, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 17352119000, 'fmt': '17.35B'}}, {'dataId': 29010, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16701272000, 'fmt': '16.70B'}}, None], 'annualReconciledDepreciation': [{'dataId': 20315, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 12547000000, 'fmt': '12.55B'}}, {'dataId': 20315, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 11056000000, 'fmt': '11.06B'}}, {'dataId': 20315, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 11284000000, 'fmt': '11.28B'}}, {'dataId': 20315, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 11104000000, 'fmt': '11.10B'}}], 'trailingNetIncomeFromContinuingOperationNetMinorityInterest': [{'dataId': 20331, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'trailingTaxEffectOfUnusualItems': [{'dataId': 20419, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 0, 'fmt': '0.00'}}], 'annualDepreciationAndAmortizationInIncomeStatement': [], 'annualEarningsFromEquityInterest': [], 'annualNetIncomeFromTaxLossCarryforward': [], 'annualTotalOtherFinanceCost': [], 'trailingReconciledDepreciation': [{'dataId': 20315, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 11104000000, 'fmt': '11.10B'}}], 'annualRestructuringAndMergernAcquisition': [], 'trailingNormalizedEBITDA': [{'dataId': 20420, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 133138000000, 'fmt': '133.14B'}}], 'trailingOperatingRevenue': [{'dataId': 20112, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 394328000000, 'fmt': '394.33B'}}], 'annualOperatingExpense': [{'dataId': 20108, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 34462000000, 'fmt': '34.46B'}}, {'dataId': 20108, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 38668000000, 'fmt': '38.67B'}}, {'dataId': 20108, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 43887000000, 'fmt': '43.89B'}}, {'dataId': 20108, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 51345000000, 'fmt': '51.34B'}}], 'trailingNetIncomeIncludingNoncontrollingInterests': [{'dataId': 20346, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'trailingSellingGeneralAndAdministration': [{'dataId': 20159, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 25094000000, 'fmt': '25.09B'}}], 'trailingOtherNonOperatingIncomeExpenses': [{'dataId': 20412, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': -228000000, 'fmt': '-228.00M'}}], 'trailingInterestIncome': [{'dataId': 20177, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 2825000000, 'fmt': '2.83B'}}], 'annualTotalRevenue': [{'dataId': 20100, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 260174000000, 'fmt': '260.17B'}}, {'dataId': 20100, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 274515000000, 'fmt': '274.51B'}}, {'dataId': 20100, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 365817000000, 'fmt': '365.82B'}}, {'dataId': 20100, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 394328000000, 'fmt': '394.33B'}}], 'trailingResearchAndDevelopment': [{'dataId': 20151, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 26251000000, 'fmt': '26.25B'}}], 'annualResearchAndDevelopment': [{'dataId': 20151, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16217000000, 'fmt': '16.22B'}}, {'dataId': 20151, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 18752000000, 'fmt': '18.75B'}}, {'dataId': 20151, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 21914000000, 'fmt': '21.91B'}}, {'dataId': 20151, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 26251000000, 'fmt': '26.25B'}}], 'trailingCostOfRevenue': [{'dataId': 20013, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 223546000000, 'fmt': '223.55B'}}], 'annualInterestExpense': [{'dataId': 20057, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 3576000000, 'fmt': '3.58B'}}, {'dataId': 20057, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2873000000, 'fmt': '2.87B'}}, {'dataId': 20057, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2645000000, 'fmt': '2.65B'}}, {'dataId': 20057, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2931000000, 'fmt': '2.93B'}}], 'annualDilutedNIAvailtoComStockholders': [{'dataId': 20424, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 55256000000, 'fmt': '55.26B'}}, {'dataId': 20424, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57411000000, 'fmt': '57.41B'}}, {'dataId': 20424, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 94680000000, 'fmt': '94.68B'}}, {'dataId': 20424, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualNetIncomeIncludingNoncontrollingInterests': [{'dataId': 20346, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 55256000000, 'fmt': '55.26B'}}, {'dataId': 20346, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57411000000, 'fmt': '57.41B'}}, {'dataId': 20346, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 94680000000, 'fmt': '94.68B'}}, {'dataId': 20346, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'trailingDilutedNIAvailtoComStockholders': [{'dataId': 20424, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualNormalizedEBITDA': [{'dataId': 20420, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 81860000000, 'fmt': '81.86B'}}, {'dataId': 20420, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 81020000000, 'fmt': '81.02B'}}, {'dataId': 20420, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 123136000000, 'fmt': '123.14B'}}, {'dataId': 20420, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 133138000000, 'fmt': '133.14B'}}], 'trailingNetIncome': [{'dataId': 20091, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualOtherOperatingExpenses': [], 'annualBasicEPS': [{'dataId': 29004, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2.9925, 'fmt': '2.99'}}, {'dataId': 29004, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 3.31, 'fmt': '3.31'}}, {'dataId': 29004, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 5.67, 'fmt': '5.67'}}, None], 'annualGrossProfit': [{'dataId': 20046, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 98392000000, 'fmt': '98.39B'}}, {'dataId': 20046, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 104956000000, 'fmt': '104.96B'}}, {'dataId': 20046, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 152836000000, 'fmt': '152.84B'}}, {'dataId': 20046, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 170782000000, 'fmt': '170.78B'}}], 'annualOtherNonOperatingIncomeExpenses': [{'dataId': 20412, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 422000000, 'fmt': '422.00M'}}, {'dataId': 20412, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -87000000, 'fmt': '-87.00M'}}, {'dataId': 20412, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 60000000, 'fmt': '60.00M'}}, {'dataId': 20412, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -228000000, 'fmt': '-228.00M'}}], 'annualDepreciationAmortizationDepletionIncomeStatement': [], 'trailingEBIT': [{'dataId': 20189, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 122034000000, 'fmt': '122.03B'}}], 'annualOperatingRevenue': [{'dataId': 20112, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 260174000000, 'fmt': '260.17B'}}, {'dataId': 20112, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 274515000000, 'fmt': '274.51B'}}, {'dataId': 20112, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 365817000000, 'fmt': '365.82B'}}, {'dataId': 20112, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 394328000000, 'fmt': '394.33B'}}], 'trailingOperatingExpense': [{'dataId': 20108, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 51345000000, 'fmt': '51.34B'}}], 'annualOtherSpecialCharges': [], 'trailingNetIncomeContinuousOperations': [{'dataId': 20094, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualInterestIncome': [{'dataId': 20177, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 4961000000, 'fmt': '4.96B'}}, {'dataId': 20177, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 3763000000, 'fmt': '3.76B'}}, {'dataId': 20177, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2843000000, 'fmt': '2.84B'}}, {'dataId': 20177, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2825000000, 'fmt': '2.83B'}}], 'trailingNormalizedIncome': [{'dataId': 20316, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualNetNonOperatingInterestIncomeExpense': [{'dataId': 20077, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 1385000000, 'fmt': '1.39B'}}, {'dataId': 20077, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 890000000, 'fmt': '890.00M'}}, {'dataId': 20077, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 198000000, 'fmt': '198.00M'}}, {'dataId': 20077, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -106000000, 'fmt': '-106.00M'}}], 'annualReconciledCostOfRevenue': [{'dataId': 20314, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 161782000000, 'fmt': '161.78B'}}, {'dataId': 20314, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 169559000000, 'fmt': '169.56B'}}, {'dataId': 20314, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 212981000000, 'fmt': '212.98B'}}, {'dataId': 20314, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 223546000000, 'fmt': '223.55B'}}], 'trailingNetIncomeCommonStockholders': [{'dataId': 20093, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'trailingTaxRateForCalcs': [{'dataId': 20418, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 0.162, 'fmt': '0.16'}}], 'trailingNetNonOperatingInterestIncomeExpense': [{'dataId': 20077, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': -106000000, 'fmt': '-106.00M'}}], 'trailingTotalExpenses': [{'dataId': 20164, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 274891000000, 'fmt': '274.89B'}}], 'annualTaxRateForCalcs': [{'dataId': 20418, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0.159, 'fmt': '0.16'}}, {'dataId': 20418, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0.144, 'fmt': '0.14'}}, {'dataId': 20418, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0.133, 'fmt': '0.13'}}, {'dataId': 20418, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0.162, 'fmt': '0.16'}}], 'annualNetIncomeCommonStockholders': [{'dataId': 20093, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 55256000000, 'fmt': '55.26B'}}, {'dataId': 20093, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57411000000, 'fmt': '57.41B'}}, {'dataId': 20093, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 94680000000, 'fmt': '94.68B'}}, {'dataId': 20093, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualDilutedAverageShares': [{'dataId': 29011, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 18595652000, 'fmt': '18.60B'}}, {'dataId': 29011, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 17528214000, 'fmt': '17.53B'}}, {'dataId': 29011, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16864919000, 'fmt': '16.86B'}}, None], 'trailingReconciledCostOfRevenue': [{'dataId': 20314, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 223546000000, 'fmt': '223.55B'}}], 'annualGainOnSaleOfSecurity': [], 'annualSpecialIncomeCharges': [], 'trailingPretaxIncome': [{'dataId': 20136, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 119103000000, 'fmt': '119.10B'}}], 'annualNetIncome': [{'dataId': 20091, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 55256000000, 'fmt': '55.26B'}}, {'dataId': 20091, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57411000000, 'fmt': '57.41B'}}, {'dataId': 20091, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 94680000000, 'fmt': '94.68B'}}, {'dataId': 20091, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualEBIT': [{'dataId': 20189, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 69313000000, 'fmt': '69.31B'}}, {'dataId': 20189, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 69964000000, 'fmt': '69.96B'}}, {'dataId': 20189, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 111852000000, 'fmt': '111.85B'}}, {'dataId': 20189, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 122034000000, 'fmt': '122.03B'}}], 'trailingNetInterestIncome': [{'dataId': 20095, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': -106000000, 'fmt': '-106.00M'}}], 'trailingInterestIncomeNonOperating': [{'dataId': 20075, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 2825000000, 'fmt': '2.83B'}}], 'annualNormalizedIncome': [{'dataId': 20316, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 55256000000, 'fmt': '55.26B'}}, {'dataId': 20316, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57411000000, 'fmt': '57.41B'}}, {'dataId': 20316, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 94680000000, 'fmt': '94.68B'}}, {'dataId': 20316, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualTotalUnusualItems': [], 'trailingGrossProfit': [{'dataId': 20046, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 170782000000, 'fmt': '170.78B'}}], 'trailingEBITDA': [{'dataId': 20190, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 133138000000, 'fmt': '133.14B'}}], 'annualCostOfRevenue': [{'dataId': 20013, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 161782000000, 'fmt': '161.78B'}}, {'dataId': 20013, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 169559000000, 'fmt': '169.56B'}}, {'dataId': 20013, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 212981000000, 'fmt': '212.98B'}}, {'dataId': 20013, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 223546000000, 'fmt': '223.55B'}}], 'trailingOperatingIncome': [{'dataId': 20109, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 119437000000, 'fmt': '119.44B'}}], 'trailingInterestExpenseNonOperating': [{'dataId': 20064, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 2931000000, 'fmt': '2.93B'}}], 'trailingOtherIncomeExpense': [{'dataId': 20117, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': -228000000, 'fmt': '-228.00M'}}], 'trailingNetIncomeFromContinuingAndDiscontinuedOperation': [{'dataId': 20309, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'trailingTotalRevenue': [{'dataId': 20100, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 394328000000, 'fmt': '394.33B'}}], 'annualPretaxIncome': [{'dataId': 20136, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 65737000000, 'fmt': '65.74B'}}, {'dataId': 20136, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 67091000000, 'fmt': '67.09B'}}, {'dataId': 20136, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 109207000000, 'fmt': '109.21B'}}, {'dataId': 20136, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 119103000000, 'fmt': '119.10B'}}], 'annualTaxProvision': [{'dataId': 20145, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 10481000000, 'fmt': '10.48B'}}, {'dataId': 20145, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 9680000000, 'fmt': '9.68B'}}, {'dataId': 20145, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 14527000000, 'fmt': '14.53B'}}, {'dataId': 20145, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 19300000000, 'fmt': '19.30B'}}], 'trailingInterestExpense': [{'dataId': 20057, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 2931000000, 'fmt': '2.93B'}}], 'annualInterestIncomeNonOperating': [{'dataId': 20075, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 4961000000, 'fmt': '4.96B'}}, {'dataId': 20075, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 3763000000, 'fmt': '3.76B'}}, {'dataId': 20075, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2843000000, 'fmt': '2.84B'}}, {'dataId': 20075, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2825000000, 'fmt': '2.83B'}}], 'annualSellingGeneralAndAdministration': [{'dataId': 20159, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 18245000000, 'fmt': '18.25B'}}, {'dataId': 20159, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 19916000000, 'fmt': '19.92B'}}, {'dataId': 20159, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 21973000000, 'fmt': '21.97B'}}, {'dataId': 20159, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 25094000000, 'fmt': '25.09B'}}], 'trailingTaxProvision': [{'dataId': 20145, 'asOfDate': '2022-09-30', 'periodType': 'TTM', 'currencyCode': 'USD', 'reportedValue': {'raw': 19300000000, 'fmt': '19.30B'}}], 'annualOtherIncomeExpense': [{'dataId': 20117, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 422000000, 'fmt': '422.00M'}}, {'dataId': 20117, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -87000000, 'fmt': '-87.00M'}}, {'dataId': 20117, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 60000000, 'fmt': '60.00M'}}, {'dataId': 20117, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -228000000, 'fmt': '-228.00M'}}], 'annualOperatingIncome': [{'dataId': 20109, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 63930000000, 'fmt': '63.93B'}}, {'dataId': 20109, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 66288000000, 'fmt': '66.29B'}}, {'dataId': 20109, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 108949000000, 'fmt': '108.95B'}}, {'dataId': 20109, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 119437000000, 'fmt': '119.44B'}}], 'annualNetIncomeFromContinuingAndDiscontinuedOperation': [{'dataId': 20309, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 55256000000, 'fmt': '55.26B'}}, {'dataId': 20309, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57411000000, 'fmt': '57.41B'}}, {'dataId': 20309, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 94680000000, 'fmt': '94.68B'}}, {'dataId': 20309, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 99803000000, 'fmt': '99.80B'}}], 'annualNetInterestIncome': [{'dataId': 20095, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 1385000000, 'fmt': '1.39B'}}, {'dataId': 20095, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 890000000, 'fmt': '890.00M'}}, {'dataId': 20095, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 198000000, 'fmt': '198.00M'}}, {'dataId': 20095, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -106000000, 'fmt': '-106.00M'}}], 'annualTotalExpenses': [{'dataId': 20164, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 196244000000, 'fmt': '196.24B'}}, {'dataId': 20164, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 208227000000, 'fmt': '208.23B'}}, {'dataId': 20164, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 256868000000, 'fmt': '256.87B'}}, {'dataId': 20164, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 274891000000, 'fmt': '274.89B'}}], 'annualInterestExpenseNonOperating': [{'dataId': 20064, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 3576000000, 'fmt': '3.58B'}}, {'dataId': 20064, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2873000000, 'fmt': '2.87B'}}, {'dataId': 20064, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2645000000, 'fmt': '2.65B'}}, {'dataId': 20064, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2931000000, 'fmt': '2.93B'}}], 'annualNetIncomeExtraordinary': [], 'annualDilutedEPS': [{'dataId': 29009, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 2.9725, 'fmt': '2.97'}}, {'dataId': 29009, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 3.28, 'fmt': '3.28'}}, {'dataId': 29009, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 5.61, 'fmt': '5.61'}}, None], 'annualTotalUnusualItemsExcludingGoodwill': [], 'trailingGainOnSaleOfPPE': [], 'annualNormalizedDilutedEPS': [], 'annualBasicExtraordinary': [], 'trailingNormalizedBasicEPS': [], 'trailingNormalizedDilutedEPS': [], 'trailingOtherunderPreferredStockDividend': [], 'trailingTotalUnusualItemsExcludingGoodwill': [], 'trailingGainOnSaleOfSecurity': [], 'trailingAmortization': [], 'trailingReportedNormalizedDilutedEPS': [], 'trailingOtherGandA': [], 'annualMinorityInterests': [], 'trailingWriteOff': [], 'trailingOtherTaxes': [], 'trailingProvisionForDoubtfulAccounts': [], 'annualNormalizedBasicEPS': [], 'annualReportedNormalizedDilutedEPS': [], 'trailingPreferredStockDividends': [], 'trailingImpairmentOfCapitalAssets': [], 'trailingReportedNormalizedBasicEPS': [], 'annualBasicEPSOtherGainsLosses': [], 'trailingExciseTaxes': [], 'trailingNetIncomeDiscontinuousOperations': [], 'trailingDilutedExtraordinary': [], 'trailingDepreciationAmortizationDepletionIncomeStatement': [], 'annualAmortizationOfIntangiblesIncomeStatement': [], 'annualDilutedContinuousOperations': [], 'trailingSecuritiesAmortization': [], 'trailingDilutedEPSOtherGainsLosses': [], 'trailingDepreciationIncomeStatement': [], 'annualPreferredStockDividends': [], 'annualDilutedExtraordinary': [], 'trailingTaxLossCarryforwardDilutedEPS': [], 'trailingDepreciationAndAmortizationInIncomeStatement': [], 'annualGainOnSaleOfPPE': [], 'trailingDividendPerShare': [], 'annualBasicContinuousOperations': [], 'trailingBasicContinuousOperations': [], 'annualProvisionForDoubtfulAccounts': [], 'trailingBasicAccountingChange': [], 'annualDilutedDiscontinuousOperations': [], 'trailingOtherOperatingExpenses': [], 'trailingTotalOtherFinanceCost': [], 'trailingRentAndLandingFees': [], 'trailingGeneralAndAdministrativeExpense': [], 'trailingAverageDilutionEarnings': [], 'annualDilutedEPSOtherGainsLosses': [], 'trailingInsuranceAndClaims': [], 'annualDividendPerShare': [], 'trailingSellingAndMarketingExpense': [], 'trailingGainOnSaleOfBusiness': [], 'annualBasicAccountingChange': [], 'trailingRestructuringAndMergernAcquisition': [], 'trailingBasicAverageShares': [], 'trailingRentExpenseSupplemental': [], 'annualSalariesAndWages': [], 'trailingSpecialIncomeCharges': [], 'trailingNetIncomeExtraordinary': [], 'annualRentAndLandingFees': [], 'annualContinuingAndDiscontinuedDilutedEPS': [], 'trailingMinorityInterests': [], 'annualAmortization': [], 'annualTaxLossCarryforwardDilutedEPS': [], 'trailingEarningsFromEquityInterestNetOfTax': [], 'trailingAmortizationOfIntangiblesIncomeStatement': [], 'trailingBasicDiscontinuousOperations': [], 'annualSellingAndMarketingExpense': [], 'annualOtherTaxes': [], 'trailingSalariesAndWages': [], 'annualReportedNormalizedBasicEPS': [], 'annualAverageDilutionEarnings': [], 'annualDilutedAccountingChange': [], 'trailingTaxLossCarryforwardBasicEPS': [], 'trailingTotalUnusualItems': [], 'annualGeneralAndAdministrativeExpense': [], 'annualWriteOff': [], 'annualOtherGandA': [], 'annualDepreciationIncomeStatement': [], 'annualSecuritiesAmortization': [], 'annualDepletionIncomeStatement': [], 'annualInsuranceAndClaims': [], 'trailingBasicEPS': [], 'trailingBasicExtraordinary': [], 'trailingDilutedDiscontinuousOperations': [], 'trailingBasicEPSOtherGainsLosses': [], 'trailingEarningsFromEquityInterest': [], 'annualNetIncomeDiscontinuousOperations': [], 'trailingNetIncomeFromTaxLossCarryforward': [], 'annualEarningsFromEquityInterestNetOfTax': [], 'trailingContinuingAndDiscontinuedBasicEPS': [], 'annualRentExpenseSupplemental': [], 'annualTaxLossCarryforwardBasicEPS': [], 'trailingDilutedAverageShares': [], 'annualImpairmentOfCapitalAssets': [], 'annualExciseTaxes': [], 'trailingContinuingAndDiscontinuedDilutedEPS': [], 'annualGainOnSaleOfBusiness': [], 'trailingOtherSpecialCharges': [], 'trailingDilutedEPS': [], 'trailingDilutedAccountingChange': [], 'annualOtherunderPreferredStockDividend': [], 'annualBasicDiscontinuousOperations': [], 'trailingDepletionIncomeStatement': [], 'trailingDilutedContinuousOperations': [], 'annualContinuingAndDiscontinuedBasicEPS': [], 'timestamp': [1569801600, 1601424000, 1632960000, 1664496000]}, 'meta': {'symbol': 'AAPL', 'start': 493590046, 'end': 1675699792, 'timeUnit': 'annual'}, 'loading': False, 'errorList': []}, 'MarketTimeStore': {'data': {'mins': 51, 'hrs': 4, 'message': 'U.S. markets close in 4 hours 51 minutes'}, 'metadata': {'status': 'YFT_MARKET_WILL_CLOSE', 'time': '2023-02-06T16:09:51Z'}}, 'RmpStore': {'data': {'Lead-7-Rmp': {'isStatic': False, 'css': [], 'html': '
', 'js': [], 'mode': 'json', 'assets': {'css': [{'location': 'top', 'value': '/aaq/nel/css/smart-ad-dynamic-data.SmartAdDynamicData.atomic.ltr.88115735231490dcb5680ea5084fb4e1.min.css', 'name': 'smart-ad-dynamic-data.SmartAdDynamicData.atomic'}]}, 'data': {}}}}, 'MarketSummaryStore': {'data': [{'symbol': '^GSPC', 'name': 'S&P 500'}, {'symbol': '^DJI', 'name': 'Dow 30'}, {'symbol': '^IXIC', 'name': 'Nasdaq'}, {'symbol': '^RUT', 'name': 'Russell 2000'}, {'symbol': 'CL=F', 'name': 'Crude Oil'}, {'symbol': 'GC=F', 'name': 'Gold'}, {'symbol': 'SI=F', 'name': 'Silver'}, {'symbol': 'EURUSD=X', 'name': 'EUR/USD'}, {'symbol': '^TNX', 'name': '10-Yr Bond'}, {'symbol': 'GBPUSD=X', 'name': 'GBP/USD'}, {'symbol': 'JPY=X', 'name': 'USD/JPY'}, {'symbol': 'BTC-USD'}, {'symbol': '^CMC200', 'name': 'CMC Crypto 200'}, {'symbol': '^FTSE', 'name': 'FTSE 100'}, {'symbol': '^N225', 'name': 'Nikkei 225'}]}, 'RecommendationStore': {'recommendedSymbols': {'AAPL': [{'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 102.925, 'fmt': '102.93'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699790, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '81.43 - 170.8315', 'fmt': '81.43 - 170.83'}, 'sharesOutstanding': {'raw': 10201700352, 'fmt': '10.202B', 'longFmt': '10,201,700,352'}, 'regularMarketDayHigh': {'raw': 103.9484, 'fmt': '103.95'}, 'shortName': 'Amazon.com, Inc.', 'longName': 'Amazon.com, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -1.8150024, 'fmt': '-1.82'}, 'regularMarketPreviousClose': {'raw': 103.39, 'fmt': '103.39'}, 'fiftyTwoWeekHighChange': {'raw': -69.2565, 'fmt': '-69.26'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 20.144997, 'fmt': '20.14'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 100.65, 'fmt': '100.65'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 101.575, 'fmt': '101.57'}, 'regularMarketVolume': {'raw': 34760911, 'fmt': '34.761M', 'longFmt': '34,760,911'}, 'isLoading': False, 'score': 0.328489, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 863703000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1036237668352, 'fmt': '1.036T', 'longFmt': '1,036,237,668,352'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'AMZN', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.24739036, 'fmt': '24.74%'}, 'regularMarketDayRange': {'raw': '100.65 - 103.9484', 'fmt': '100.65 - 103.95'}, 'messageBoardId': 'finmb_18749', 'fiftyTwoWeekHigh': {'raw': 170.8315, 'fmt': '170.83'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.40540826, 'fmt': '-40.54%'}, 'uuid': '261fd26b-0151-3813-b0d0-97e4ed4c6505', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 81.43, 'fmt': '81.43'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.7554913, 'fmt': '-1.76%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 193.01, 'fmt': '193.01'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699791, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '101.81 - 384.29', 'fmt': '101.81 - 384.29'}, 'sharesOutstanding': {'raw': 3164100096, 'fmt': '3.164B', 'longFmt': '3,164,100,096'}, 'regularMarketDayHigh': {'raw': 198.16, 'fmt': '198.16'}, 'shortName': 'Tesla, Inc.', 'longName': 'Tesla, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 4.7882996, 'fmt': '4.79'}, 'regularMarketPreviousClose': {'raw': 189.98, 'fmt': '189.98'}, 'fiftyTwoWeekHighChange': {'raw': -189.52171, 'fmt': '-189.52'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 92.9583, 'fmt': '92.96'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 189.92, 'fmt': '189.92'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 194.7683, 'fmt': '194.77'}, 'regularMarketVolume': {'raw': 86488569, 'fmt': '86.489M', 'longFmt': '86,488,569'}, 'isLoading': False, 'score': 0.308594, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1277818200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 616266399744, 'fmt': '616.266B', 'longFmt': '616,266,399,744'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'TSLA', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.9130567, 'fmt': '91.31%'}, 'regularMarketDayRange': {'raw': '189.92 - 198.16', 'fmt': '189.92 - 198.16'}, 'messageBoardId': 'finmb_27444752', 'fiftyTwoWeekHigh': {'raw': 384.29, 'fmt': '384.29'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.49317366, 'fmt': '-49.32%'}, 'uuid': 'ec367bc4-f92c-397c-ac81-bf7b43cffaf7', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 101.81, 'fmt': '101.81'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 2.520423, 'fmt': '2.52%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 102.685, 'fmt': '102.68'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699788, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '83.45 - 144.1625', 'fmt': '83.45 - 144.16'}, 'sharesOutstanding': {'raw': 5968000000, 'fmt': '5.968B', 'longFmt': '5,968,000,000'}, 'regularMarketDayHigh': {'raw': 104.69, 'fmt': '104.69'}, 'shortName': 'Alphabet Inc.', 'longName': 'Alphabet Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.5699997, 'fmt': '-2.57'}, 'regularMarketPreviousClose': {'raw': 105.22, 'fmt': '105.22'}, 'fiftyTwoWeekHighChange': {'raw': -41.512505, 'fmt': '-41.51'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 19.200005, 'fmt': '19.20'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 102.21, 'fmt': '102.21'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 102.65, 'fmt': '102.65'}, 'regularMarketVolume': {'raw': 9844592, 'fmt': '9.845M', 'longFmt': '9,844,592'}, 'isLoading': False, 'score': 0.290421, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1092922200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1311702777856, 'fmt': '1.312T', 'longFmt': '1,311,702,777,856'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'GOOG', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.23007795, 'fmt': '23.01%'}, 'regularMarketDayRange': {'raw': '102.21 - 104.69', 'fmt': '102.21 - 104.69'}, 'messageBoardId': 'finmb_29096', 'fiftyTwoWeekHigh': {'raw': 144.1625, 'fmt': '144.16'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.28795633, 'fmt': '-28.80%'}, 'uuid': 'ee8cce8c-2475-31c0-8436-ecdf889cbfbd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 83.45, 'fmt': '83.45'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -2.442501, 'fmt': '-2.44%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 186.53, 'fmt': '186.53'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699788, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '88.09 - 238.3', 'fmt': '88.09 - 238.30'}, 'sharesOutstanding': {'raw': 2255320064, 'fmt': '2.255B', 'longFmt': '2,255,320,064'}, 'regularMarketDayHigh': {'raw': 190.7, 'fmt': '190.70'}, 'shortName': 'Meta Platforms, Inc.', 'longName': 'Meta Platforms, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 1.6800079, 'fmt': '1.68'}, 'regularMarketPreviousClose': {'raw': 186.53, 'fmt': '186.53'}, 'fiftyTwoWeekHighChange': {'raw': -50.089996, 'fmt': '-50.09'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 100.12001, 'fmt': '100.12'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 185.8, 'fmt': '185.80'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 188.21, 'fmt': '188.21'}, 'regularMarketVolume': {'raw': 17709651, 'fmt': '17.71M', 'longFmt': '17,709,651'}, 'isLoading': False, 'score': 0.290181, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1337347800000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 493524287488, 'fmt': '493.524B', 'longFmt': '493,524,287,488'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'META', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 1.1365651, 'fmt': '113.66%'}, 'regularMarketDayRange': {'raw': '185.8 - 190.7', 'fmt': '185.80 - 190.70'}, 'messageBoardId': 'finmb_20765463', 'fiftyTwoWeekHigh': {'raw': 238.3, 'fmt': '238.30'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.21019721, 'fmt': '-21.02%'}, 'uuid': 'e59f1c4f-b1aa-3d70-a8c3-eb59ff3e461b', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 88.09, 'fmt': '88.09'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.9006637, 'fmt': '0.90%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 363.642, 'fmt': '363.64'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699786, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '162.71 - 412.98', 'fmt': '162.71 - 412.98'}, 'sharesOutstanding': {'raw': 445347008, 'fmt': '445.347M', 'longFmt': '445,347,008'}, 'regularMarketDayHigh': {'raw': 368.45, 'fmt': '368.45'}, 'shortName': 'Netflix, Inc.', 'longName': 'Netflix, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.7799072, 'fmt': '-2.78'}, 'regularMarketPreviousClose': {'raw': 365.9, 'fmt': '365.90'}, 'fiftyTwoWeekHighChange': {'raw': -49.859924, 'fmt': '-49.86'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 200.41008, 'fmt': '200.41'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 360.7, 'fmt': '360.70'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 363.1201, 'fmt': '363.12'}, 'regularMarketVolume': {'raw': 1893254, 'fmt': '1.893M', 'longFmt': '1,893,254'}, 'isLoading': False, 'score': 0.219644, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1022160600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 161714438144, 'fmt': '161.714B', 'longFmt': '161,714,438,144'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'NFLX', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 1.231701, 'fmt': '123.17%'}, 'regularMarketDayRange': {'raw': '360.7 - 368.45', 'fmt': '360.70 - 368.45'}, 'messageBoardId': 'finmb_32012', 'fiftyTwoWeekHigh': {'raw': 412.98, 'fmt': '412.98'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.120732054, 'fmt': '-12.07%'}, 'uuid': '1a1cddac-4d41-374d-b202-739314177b67', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 162.71, 'fmt': '162.71'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.75974506, 'fmt': '-0.76%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}]}, 'recommendedSimilarSymbols': {'AAPL': [{'0': 'S', '1': 'O', '2': 'N', '3': 'Y', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 90.86, 'fmt': '90.86'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675699786, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '61.72 - 111.98', 'fmt': '61.72 - 111.98'}, 'sharesOutstanding': {'raw': 1234690048, 'fmt': '1.235B', 'longFmt': '1,234,690,048'}, 'regularMarketDayHigh': {'raw': 90.84, 'fmt': '90.84'}, 'shortName': 'Sony Group Corporation', 'longName': 'Sony Group Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -3.3899994, 'fmt': '-3.39'}, 'regularMarketPreviousClose': {'raw': 93.13, 'fmt': '93.13'}, 'fiftyTwoWeekHighChange': {'raw': -22.240005, 'fmt': '-22.24'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 28.019997, 'fmt': '28.02'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 89.6211, 'fmt': '89.62'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 89.74, 'fmt': '89.74'}, 'regularMarketVolume': {'raw': 235981, 'fmt': '235,981', 'longFmt': '235,981'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 99153000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 110801084416, 'fmt': '110.801B', 'longFmt': '110,801,084,416'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SONY', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.4539857, 'fmt': '45.40%'}, 'regularMarketDayRange': {'raw': '89.6211 - 90.84', 'fmt': '89.62 - 90.84'}, 'messageBoardId': 'finmb_23021', 'fiftyTwoWeekHigh': {'raw': 111.98, 'fmt': '111.98'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.19860694, 'fmt': '-19.86%'}, 'uuid': '51ec1656-6a66-39d0-8159-ed49cf2f2289', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 61.72, 'fmt': '61.72'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.6400726, 'fmt': '-3.64%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, {'0': 'G', '1': 'P', '2': 'R', '3': 'O', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.64, 'fmt': '5.64'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699789, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.5 - 9.42', 'fmt': '4.50 - 9.42'}, 'sharesOutstanding': {'raw': 129668000, 'fmt': '129.668M', 'longFmt': '129,668,000'}, 'regularMarketDayHigh': {'raw': 5.76, 'fmt': '5.76'}, 'shortName': 'GoPro, Inc.', 'longName': 'GoPro, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.19000006, 'fmt': '-0.19'}, 'regularMarketPreviousClose': {'raw': 5.69, 'fmt': '5.69'}, 'fiftyTwoWeekHighChange': {'raw': -3.92, 'fmt': '-3.92'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1, 'fmt': '1.00'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.475, 'fmt': '5.47'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.5, 'fmt': '5.50'}, 'regularMarketVolume': {'raw': 1028969, 'fmt': '1.029M', 'longFmt': '1,028,969'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1403789400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 857598528, 'fmt': '857.599M', 'longFmt': '857,598,528'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'GPRO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.22222222, 'fmt': '22.22%'}, 'regularMarketDayRange': {'raw': '5.475 - 5.76', 'fmt': '5.47 - 5.76'}, 'messageBoardId': 'finmb_113665065', 'fiftyTwoWeekHigh': {'raw': 9.42, 'fmt': '9.42'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.41613588, 'fmt': '-41.61%'}, 'uuid': 'd831d8ea-3a6d-36de-af60-081896d375cd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.5, 'fmt': '4.50'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.3391926, 'fmt': '-3.34%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'0': 'S', '1': 'O', '2': 'N', '3': 'O', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 18.66, 'fmt': '18.66'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699680, 'fmt': '11:08AM EST'}, 'fiftyTwoWeekRange': {'raw': '13.65 - 31.22', 'fmt': '13.65 - 31.22'}, 'sharesOutstanding': {'raw': 127345000, 'fmt': '127.345M', 'longFmt': '127,345,000'}, 'regularMarketDayHigh': {'raw': 18.66, 'fmt': '18.66'}, 'shortName': 'Sonos, Inc.', 'longName': 'Sonos, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.7350006, 'fmt': '-0.74'}, 'regularMarketPreviousClose': {'raw': 18.91, 'fmt': '18.91'}, 'fiftyTwoWeekHighChange': {'raw': -13.045, 'fmt': '-13.05'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 4.5249996, 'fmt': '4.52'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 18.14, 'fmt': '18.14'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 18.175, 'fmt': '18.17'}, 'regularMarketVolume': {'raw': 510481, 'fmt': '510,481', 'longFmt': '510,481'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1533216600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 2314495232, 'fmt': '2.314B', 'longFmt': '2,314,495,232'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SONO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.3315018, 'fmt': '33.15%'}, 'regularMarketDayRange': {'raw': '18.14 - 18.66', 'fmt': '18.14 - 18.66'}, 'messageBoardId': 'finmb_10654809', 'fiftyTwoWeekHigh': {'raw': 31.22, 'fmt': '31.22'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.41784114, 'fmt': '-41.78%'}, 'uuid': '98c419db-3a58-3f86-8eb4-a664481f7d12', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 13.65, 'fmt': '13.65'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.8868356, 'fmt': '-3.89%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'0': 'V', '1': 'U', '2': 'Z', '3': 'I', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.66, 'fmt': '5.66'}, 'exchange': 'NCM', 'regularMarketTime': {'raw': 1675699642, 'fmt': '11:07AM EST'}, 'fiftyTwoWeekRange': {'raw': '3.27 - 10.49', 'fmt': '3.27 - 10.49'}, 'sharesOutstanding': {'raw': 63739600, 'fmt': '63.74M', 'longFmt': '63,739,600'}, 'regularMarketDayHigh': {'raw': 5.8, 'fmt': '5.80'}, 'shortName': 'Vuzix Corporation', 'longName': 'Vuzix Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.14069986, 'fmt': '-0.14'}, 'regularMarketPreviousClose': {'raw': 5.75, 'fmt': '5.75'}, 'fiftyTwoWeekHighChange': {'raw': -4.8806996, 'fmt': '-4.88'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.3393002, 'fmt': '2.34'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.49, 'fmt': '5.49'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.6093, 'fmt': '5.61'}, 'regularMarketVolume': {'raw': 367816, 'fmt': '367,816', 'longFmt': '367,816'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1270474200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 357534560, 'fmt': '357.535M', 'longFmt': '357,534,560'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'VUZI', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.71538234, 'fmt': '71.54%'}, 'regularMarketDayRange': {'raw': '5.49 - 5.8', 'fmt': '5.49 - 5.80'}, 'messageBoardId': 'finmb_13610016', 'fiftyTwoWeekHigh': {'raw': 10.49, 'fmt': '10.49'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.46527165, 'fmt': '-46.53%'}, 'uuid': 'b42c8863-c6d0-341b-9d51-442783839350', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 3.27, 'fmt': '3.27'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -2.4469543, 'fmt': '-2.45%'}, 'fullExchangeName': 'NasdaqCM', 'tradeable': False}, {'0': 'P', '1': 'C', '2': 'R', '3': 'F', '4': 'Y', 'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 8.62, 'fmt': '8.62'}, 'exchange': 'PNK', 'regularMarketTime': {'raw': 1675698716, 'fmt': '10:51AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.66 - 10.89', 'fmt': '6.66 - 10.89'}, 'sharesOutstanding': {'raw': 2334089984, 'fmt': '2.334B', 'longFmt': '2,334,089,984'}, 'regularMarketDayHigh': {'raw': 8.745, 'fmt': '8.74'}, 'shortName': 'PANASONIC HOLDINGS CORP ADR-EAC', 'longName': 'Panasonic Holdings Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.08000088, 'fmt': '-0.08'}, 'regularMarketPreviousClose': {'raw': 8.77, 'fmt': '8.77'}, 'fiftyTwoWeekHighChange': {'raw': -2.2000008, 'fmt': '-2.20'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.0299997, 'fmt': '2.03'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketDayLow': {'raw': 8.62, 'fmt': '8.62'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 8.69, 'fmt': '8.69'}, 'regularMarketVolume': {'raw': 47805, 'fmt': '47,805', 'longFmt': '47,805'}, 'isLoading': False, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 322151400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 20283240448, 'fmt': '20.283B', 'longFmt': '20,283,240,448'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'PCRFY', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.30480477, 'fmt': '30.48%'}, 'regularMarketDayRange': {'raw': '8.62 - 8.745', 'fmt': '8.62 - 8.74'}, 'messageBoardId': 'finmb_320433', 'fiftyTwoWeekHigh': {'raw': 10.89, 'fmt': '10.89'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.20202027, 'fmt': '-20.20%'}, 'uuid': '01e8db59-6c12-3ae1-a223-b71412148081', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.66, 'fmt': '6.66'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.91221064, 'fmt': '-0.91%'}, 'fullExchangeName': 'Other OTC', 'tradeable': False}, {'0': 'H', '1': 'E', '2': 'A', '3': 'R', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 9.29, 'fmt': '9.29'}, 'exchange': 'NGM', 'regularMarketTime': {'raw': 1675699651, 'fmt': '11:07AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.22 - 25.33', 'fmt': '6.22 - 25.33'}, 'sharesOutstanding': {'raw': 16557000, 'fmt': '16.557M', 'longFmt': '16,557,000'}, 'regularMarketDayHigh': {'raw': 9.29, 'fmt': '9.29'}, 'shortName': 'Turtle Beach Corporation', 'longName': 'Turtle Beach Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.28999996, 'fmt': '-0.29'}, 'regularMarketPreviousClose': {'raw': 9.33, 'fmt': '9.33'}, 'fiftyTwoWeekHighChange': {'raw': -16.29, 'fmt': '-16.29'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.8200002, 'fmt': '2.82'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 8.94, 'fmt': '8.94'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 9.04, 'fmt': '9.04'}, 'regularMarketVolume': {'raw': 23439, 'fmt': '23,439', 'longFmt': '23,439'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1289831400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 149675280, 'fmt': '149.675M', 'longFmt': '149,675,280'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'HEAR', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.45337626, 'fmt': '45.34%'}, 'regularMarketDayRange': {'raw': '8.94 - 9.29', 'fmt': '8.94 - 9.29'}, 'messageBoardId': 'finmb_851282', 'fiftyTwoWeekHigh': {'raw': 25.33, 'fmt': '25.33'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.643111, 'fmt': '-64.31%'}, 'uuid': '58194bdb-92f1-3b95-b21e-5b66d5d67f2f', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.22, 'fmt': '6.22'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.1082525, 'fmt': '-3.11%'}, 'fullExchangeName': 'NasdaqGM', 'tradeable': False}, {'0': 'K', '1': 'O', '2': 'S', '3': 'S', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.82, 'fmt': '5.82'}, 'exchange': 'NCM', 'regularMarketTime': {'raw': 1675697530, 'fmt': '10:32AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.44 - 12.86', 'fmt': '4.44 - 12.86'}, 'sharesOutstanding': {'raw': 9189800, 'fmt': '9.19M', 'longFmt': '9,189,800'}, 'regularMarketDayHigh': {'raw': 5.88, 'fmt': '5.88'}, 'shortName': 'Koss Corporation', 'longName': 'Koss Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0.01999998, 'fmt': '0.02'}, 'regularMarketPreviousClose': {'raw': 5.8, 'fmt': '5.80'}, 'fiftyTwoWeekHighChange': {'raw': -7.0399995, 'fmt': '-7.04'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1.3800001, 'fmt': '1.38'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.8, 'fmt': '5.80'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.82, 'fmt': '5.82'}, 'regularMarketVolume': {'raw': 2746, 'fmt': '2,746', 'longFmt': '2,746'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 322151400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 53484636, 'fmt': '53.485M', 'longFmt': '53,484,636'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'KOSS', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.31081083, 'fmt': '31.08%'}, 'regularMarketDayRange': {'raw': '5.8 - 5.88', 'fmt': '5.80 - 5.88'}, 'messageBoardId': 'finmb_283448', 'fiftyTwoWeekHigh': {'raw': 12.86, 'fmt': '12.86'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.54743385, 'fmt': '-54.74%'}, 'uuid': 'ad708ee0-5672-30f5-85f6-bbbcb3e0eccd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.44, 'fmt': '4.44'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.34482723, 'fmt': '0.34%'}, 'fullExchangeName': 'NasdaqCM', 'tradeable': False}, {'0': 'S', '1': 'S', '2': 'N', '3': 'L', '4': 'F', 'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 40.5999, 'fmt': '40.60'}, 'exchange': 'PNK', 'regularMarketTime': {'raw': 1664306331, 'fmt': '3:18PM EDT'}, 'fiftyTwoWeekRange': {'raw': '40.5999 - 57.75', 'fmt': '40.60 - 57.75'}, 'sharesOutstanding': {'raw': 5969780224, 'fmt': '5.97B', 'longFmt': '5,969,780,224'}, 'regularMarketDayHigh': {'raw': 40.5999, 'fmt': '40.60'}, 'shortName': 'SAMSUNG ELECTRONICS CO', 'longName': 'Samsung Electronics Co., Ltd.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0, 'fmt': '0.00'}, 'regularMarketPreviousClose': {'raw': 40.5999, 'fmt': '40.60'}, 'fiftyTwoWeekHighChange': {'raw': -17.1501, 'fmt': '-17.15'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 0, 'fmt': '0.00'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketDayLow': {'raw': 40.5999, 'fmt': '40.60'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 40.5999, 'fmt': '40.60'}, 'regularMarketVolume': {'raw': 200, 'fmt': '200', 'longFmt': '200'}, 'isLoading': False, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 997104600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 301846429696, 'fmt': '301.846B', 'longFmt': '301,846,429,696'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SSNLF', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0, 'fmt': '0.00%'}, 'regularMarketDayRange': {'raw': '40.5999 - 40.5999', 'fmt': '40.60 - 40.60'}, 'messageBoardId': 'finmb_91868', 'fiftyTwoWeekHigh': {'raw': 57.75, 'fmt': '57.75'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.29697144, 'fmt': '-29.70%'}, 'uuid': '5f5ae02b-3a86-367d-b20b-055520cea9ae', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 40.5999, 'fmt': '40.60'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0, 'fmt': '0.00%'}, 'fullExchangeName': 'Other OTC', 'tradeable': False}, {'0': 'V', '1': 'Z', '2': 'I', '3': 'O', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 9.44, 'fmt': '9.44'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675699688, 'fmt': '11:08AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.47 - 15.42', 'fmt': '6.47 - 15.42'}, 'sharesOutstanding': {'raw': 117636000, 'fmt': '117.636M', 'longFmt': '117,636,000'}, 'regularMarketDayHigh': {'raw': 9.505, 'fmt': '9.51'}, 'shortName': 'VIZIO Holding Corp.', 'longName': 'VIZIO Holding Corp.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.34999943, 'fmt': '-0.35'}, 'regularMarketPreviousClose': {'raw': 9.57, 'fmt': '9.57'}, 'fiftyTwoWeekHighChange': {'raw': -6.2, 'fmt': '-6.20'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.7500005, 'fmt': '2.75'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 9.13, 'fmt': '9.13'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 9.22, 'fmt': '9.22'}, 'regularMarketVolume': {'raw': 45393, 'fmt': '45,393', 'longFmt': '45,393'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1616765400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1792829056, 'fmt': '1.793B', 'longFmt': '1,792,829,056'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'VZIO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.42503873, 'fmt': '42.50%'}, 'regularMarketDayRange': {'raw': '9.13 - 9.505', 'fmt': '9.13 - 9.51'}, 'messageBoardId': 'finmb_27650657', 'fiftyTwoWeekHigh': {'raw': 15.42, 'fmt': '15.42'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.4020752, 'fmt': '-40.21%'}, 'uuid': '98dc8f95-157e-3c62-b8f9-ea5c671822cd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.47, 'fmt': '6.47'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.6572564, 'fmt': '-3.66%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, {'0': 'L', '1': 'P', '2': 'L', 'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 5.52, 'fmt': '5.52'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675698891, 'fmt': '10:54AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.08 - 8.53', 'fmt': '4.08 - 8.53'}, 'sharesOutstanding': {'raw': 715630976, 'fmt': '715.631M', 'longFmt': '715,630,976'}, 'regularMarketDayHigh': {'raw': 5.52, 'fmt': '5.52'}, 'shortName': 'LG Display Co, Ltd AMERICAN DEP', 'longName': 'LG Display Co., Ltd.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.1949997, 'fmt': '-0.19'}, 'regularMarketPreviousClose': {'raw': 5.68, 'fmt': '5.68'}, 'fiftyTwoWeekHighChange': {'raw': -3.0449996, 'fmt': '-3.04'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1.4050002, 'fmt': '1.41'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.46, 'fmt': '5.46'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.485, 'fmt': '5.49'}, 'regularMarketVolume': {'raw': 76348, 'fmt': '76,348', 'longFmt': '76,348'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1090503000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 3925235968, 'fmt': '3.925B', 'longFmt': '3,925,235,968'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'LPL', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.3443628, 'fmt': '34.44%'}, 'regularMarketDayRange': {'raw': '5.46 - 5.52', 'fmt': '5.46 - 5.52'}, 'messageBoardId': 'finmb_5471044', 'fiftyTwoWeekHigh': {'raw': 8.53, 'fmt': '8.53'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.35697535, 'fmt': '-35.70%'}, 'uuid': '78df0a6f-207d-3a77-adfe-657f86e6d5c9', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.08, 'fmt': '4.08'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.4330933, 'fmt': '-3.43%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}]}, 'errorList': []}, 'NavServiceStore': {'nav': {}, 'finance': {'sections': ['property'], 'nav': [{'statusCode': 200, 'message': 'ok', 'data': {'items': [{'name': 'Watchlists', 'url': 'https://finance.yahoo.com/watchlists/', 'children': [], 'id': 'root_1'}, {'name': 'My Portfolio', 'url': 'https://finance.yahoo.com/portfolios/', 'children': [], 'id': 'root_2'}, {'name': 'Crypto', 'url': 'https://finance.yahoo.com/crypto/', 'children': [], 'id': 'root_3'}, {'name': 'Yahoo Finance Plus', 'url': 'https://finance.yahoo.com/plus-dashboard?ncid=dcm_306158762_490172245_127172993', 'children': [{'name': 'Dashboard', 'url': 'https://finance.yahoo.com/plus-dashboard?ncid=dcm_306158759_490172245_127172993', 'id': 'root_4_1'}, {'name': 'Research Reports', 'url': 'https://finance.yahoo.com/research?ncid=dcm_306158756_490172245_127172993', 'id': 'root_4_2'}, {'name': 'Investment Ideas', 'url': 'https://finance.yahoo.com/research/trade-ideas?ncid=dcm_306158753_490172245_127172993', 'id': 'root_4_3'}, {'name': 'Community Insights', 'url': 'https://finance.yahoo.com/user-insights?ncid=dcm_306158750_490172245_127172993', 'id': 'root_4_4'}, {'name': 'Webinars', 'url': 'https://finance.yahoo.com/webinars', 'id': 'root_4_5'}, {'name': 'Blog', 'url': 'https://finance.yahoo.com/topic/plus', 'id': 'root_4_6'}], 'id': 'root_4'}, {'name': 'News', 'url': 'https://finance.yahoo.com/news/', 'children': [{'name': 'Latest News', 'url': 'https://finance.yahoo.com/news/', 'id': 'root_5_1'}, {'name': 'Yahoo Finance Originals', 'url': 'https://finance.yahoo.com/topic/yahoo-finance-originals', 'id': 'root_5_2'}, {'name': 'Stock Market News', 'url': 'https://finance.yahoo.com/topic/stock-market-news/', 'id': 'root_5_3'}, {'name': 'Earnings', 'url': 'https://finance.yahoo.com/topic/earnings', 'id': 'root_5_4'}, {'name': 'Politics', 'url': 'https://finance.yahoo.com/live/politics/', 'id': 'root_5_5'}, {'name': 'Economic News', 'url': 'https://finance.yahoo.com/topic/economic-news', 'id': 'root_5_6'}, {'name': 'Morning Brief', 'url': 'https://finance.yahoo.com/topic/morning-brief/', 'id': 'root_5_7'}, {'name': 'Personal Finance', 'url': 'https://finance.yahoo.com/topic/personal-finance', 'id': 'root_5_8'}, {'name': 'Crypto News', 'url': 'https://finance.yahoo.com/topic/crypto/', 'id': 'root_5_9'}, {'name': 'Bidenomics Report Card', 'url': 'https://finance.yahoo.com/bidenomics/', 'id': 'root_5_10'}], 'id': 'root_5'}, {'name': 'Screeners', 'url': 'https://finance.yahoo.com/screener/', 'children': [{'name': 'Saved Screeners', 'url': 'https://finance.yahoo.com/screener', 'id': 'root_6_1'}, {'name': 'Equity Screener', 'url': 'https://finance.yahoo.com/screener/new', 'id': 'root_6_2'}, {'name': 'Mutual Fund Screener', 'url': 'https://finance.yahoo.com/screener/mutualfund/new', 'id': 'root_6_3'}, {'name': 'ETF Screener', 'url': 'https://finance.yahoo.com/screener/etf/new', 'id': 'root_6_4'}, {'name': 'Futures Screener', 'url': 'https://finance.yahoo.com/screener/future/new', 'id': 'root_6_5'}, {'name': 'Index Screener', 'url': 'https://finance.yahoo.com/screener/index/new', 'id': 'root_6_6'}], 'id': 'root_6'}, {'name': 'Markets', 'url': 'https://finance.yahoo.com/calendar/', 'children': [{'name': 'Calendars', 'url': 'https://finance.yahoo.com/calendar', 'id': 'root_7_1'}, {'name': 'Trending Tickers', 'url': 'https://finance.yahoo.com/trending-tickers', 'id': 'root_7_2'}, {'name': 'Stocks: Most Actives', 'url': 'https://finance.yahoo.com/most-active', 'id': 'root_7_3'}, {'name': 'Stocks: Gainers', 'url': 'https://finance.yahoo.com/gainers', 'id': 'root_7_4'}, {'name': 'Stocks: Losers', 'url': 'https://finance.yahoo.com/losers', 'id': 'root_7_5'}, {'name': 'Top ETFs', 'url': 'https://finance.yahoo.com/etfs', 'id': 'root_7_6'}, {'name': 'Futures', 'url': 'https://finance.yahoo.com/commodities', 'id': 'root_7_7'}, {'name': 'World Indices', 'url': 'https://finance.yahoo.com/world-indices', 'id': 'root_7_8'}, {'name': 'Currencies', 'url': 'https://finance.yahoo.com/currencies', 'id': 'root_7_9'}, {'name': 'Top Mutual Funds', 'url': 'https://finance.yahoo.com/mutualfunds', 'id': 'root_7_10'}, {'name': 'Options: Highest Open Interest', 'url': 'https://finance.yahoo.com/options/highest-open-interest', 'id': 'root_7_11'}, {'name': 'Options: Highest Implied Volatility', 'url': 'https://finance.yahoo.com/options/highest-implied-volatility', 'id': 'root_7_12'}, {'name': 'US Treasury Bonds Rates', 'url': 'https://finance.yahoo.com/bonds', 'id': 'root_7_13'}, {'name': 'Currency Converter', 'url': 'https://finance.yahoo.com/currency-converter', 'id': 'root_7_14'}], 'id': 'root_7'}, {'name': 'Videos', 'url': 'https://finance.yahoo.com/videos/', 'children': [{'name': 'Company of the Year', 'url': 'https://finance.yahoo.com/live/company-of-the-year/', 'id': 'root_8_1'}, {'name': 'Yahoo Finance Live', 'url': 'https://finance.yahoo.com/videos', 'id': 'root_8_2'}, {'name': 'Yahoo Finance Presents', 'url': 'https://finance.yahoo.com/live/yahoo-finance-presents', 'id': 'root_8_3'}, {'name': 'All Markets Summit', 'url': 'https://finance.yahoo.com/live/allmarketssummit', 'id': 'root_8_4'}, {'name': 'Financing Your Future', 'url': 'https://finance.yahoo.com/topic/financing-your-future', 'id': 'root_8_5'}, {'name': 'Real Estate Report', 'url': 'https://finance.yahoo.com/topic/real-estate-report', 'id': 'root_8_6'}, {'name': 'Retirement', 'url': 'https://finance.yahoo.com/topic/retirement', 'id': 'root_8_7'}, {'name': 'ETF Report', 'url': 'https://finance.yahoo.com/topic/etf-report', 'id': 'root_8_8'}, {'name': 'FA Corner', 'url': 'https://finance.yahoo.com/topic/fa-corner', 'id': 'root_8_9'}, {'name': 'Events', 'url': 'https://finance.yahoo.com/show/events', 'id': 'root_8_10'}, {'name': 'Crypto Corner', 'url': 'https://finance.yahoo.com/topic/crypto-corner', 'id': 'root_8_11'}], 'id': 'root_8'}, {'name': 'Personal Finance', 'url': 'https://finance.yahoo.com/topic/personal-finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/', 'id': 'root_9_1'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/', 'id': 'root_9_2'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/', 'id': 'root_9_3'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes', 'id': 'root_9_4'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}], 'id': 'root_9'}, {'name': 'Industries', 'url': 'https://finance.yahoo.com/screener/predefined/ms_basic_materials/', 'children': [{'name': 'Basic Materials', 'url': 'https://finance.yahoo.com/screener/predefined/ms_basic_materials/', 'id': 'root_10_1'}, {'name': 'Communication Services', 'url': 'https://finance.yahoo.com/screener/predefined/ms_communication_services/', 'id': 'root_10_2'}, {'name': 'Consumer Cyclical', 'url': 'https://finance.yahoo.com/screener/predefined/ms_consumer_cyclical/', 'id': 'root_10_3'}, {'name': 'Consumer Defensive', 'url': 'https://finance.yahoo.com/screener/predefined/ms_consumer_defensive/', 'id': 'root_10_4'}, {'name': 'Energy', 'url': 'https://finance.yahoo.com/screener/predefined/ms_energy/', 'id': 'root_10_5'}, {'name': 'Financial Services', 'url': 'https://finance.yahoo.com/screener/predefined/ms_financial_services/', 'id': 'root_10_6'}, {'name': 'Healthcare', 'url': 'https://finance.yahoo.com/screener/predefined/ms_healthcare/', 'id': 'root_10_7'}, {'name': 'Industrials', 'url': 'https://finance.yahoo.com/screener/predefined/ms_industrials/', 'id': 'root_10_8'}, {'name': 'Real Estate', 'url': 'https://finance.yahoo.com/screener/predefined/ms_real_estate/', 'id': 'root_10_9'}, {'name': 'Technology', 'url': 'https://finance.yahoo.com/screener/predefined/ms_technology/', 'id': 'root_10_10'}, {'name': 'Utilities', 'url': 'https://finance.yahoo.com/screener/predefined/ms_utilities/', 'id': 'root_10_11'}], 'id': 'root_10'}, {'name': 'Contact Us', 'url': 'https://yahoo.uservoice.com/forums/382977', 'children': [], 'id': 'root_11'}]}}, None]}}, 'UHAccountSwitchStore': {'site': 'finance', 'crumb': 'Bc2KDXwL9.6', 'sendRequest': False, 'isEnabled': True}, 'MobileHeaderStore': {'navTitle': 'finance', 'useNavTitle': False}}, 'https://finance.yahoo.com/quote/AAPL/balance-sheet?p=AAPL&lang=en-US®ion=US': {'PageStore': {'currentPageName': 'quote', 'currentEvent': {'eventName': 'NEW_PAGE_SUCCESS'}, 'currentRenderTargetId': 'default', 'pagesConfigRaw': {'base': {'quote': {'layout': {'bundleName': 'yahoodotcom-layout.TwoColumnLayout', 'name': 'TwoColumnLayout', 'config': {'enableHeaderCollapse': True, 'additionalBodyWrapperClasses': 'Bgc($layoutBgColor)!', 'contentWrapperClasses': 'Bgc($lv2BgColor)!', 'Header': {'isFixed': True, 'uhContainerClasses': 'Bgi($uhGrayGradient) D(n)--print', 'navContainerClasses': 'Bgi($navrailGrayGradient) Bxsh($navrailShadow) Pos(r) hasScrolled_Bxsh(headerShadow) Panel-open_Bxsh(headerShadow)', 'navTransitionClasses': 'HideNavrail_Translate3d(0,-46px,0) Panel-open_Translate3d(0,-46px,0)', 'secondaryNavContainerClasses': 'hasScrolled_Bdbw(0px) Bgc($lv3BgColor) Bxsh($navrailShadow) D(n)--print', 'height': 135}, 'fetchNewAttribution': True, 'Col1': {'containerClasses': 'Z(1)'}}, 'meta': {'property': {'twitter:site': '@YahooFinance'}}}, 'meta': {'property': {'twitter:site': '@YahooFinance', 'fb:pages': '458584288257241', 'og:image': 'https://s.yimg.com/cv/apiv2/social/images/yahoo_default_logo.png'}}, 'enablePremium': True, 'isHighValueUser': False, 'enableTrading': True, 'cryptoUser': False, 'videoOverrides': {'enableOathPlayer': True}, 'regions': {'UH': [{'bundleName': 'tdv2-wafer-header.finance', 'name': 'HeaderDesktop', 'perfLabel': 'WaferHeaderDesktop', 'critical': True, 'config': {'logo': {'brandName': 'YAHOO_FINANCE', 'enableHeading': False, 'link': 'https://finance.yahoo.com', 'imageUri': 'https://s.yimg.com/rz/p/yahoo_finance_en-US_s_f_pw_351X40_finance_2x.png', 'theme': {'heading': 'Fz(0) Pstart(15px) Pos(a) Miw(190px)', 'link': 'Bgp(0) Bgr(nr) Bgz(702px) D(b) H(35px) W(92px) Bgz(702px)!--sm1024 Cur(p) Mx(a)', 'linkLabel': 'Hidden'}}, 'mailMenu': {'i13n': {'sec': 'uh', 'subsec': 'mail', 't1': None, 't2': None, 'slk': 'mail', 'elm': 'btn', 'itc': '0'}, 'mailLink': '', 'signInUrl': 'https://login.yahoo.com/config/login?.src=finance&.intl=us&.lang=en-US&.done=https://finance.yahoo.com&activity=uh-mail', 'xhrPathPrefix': '/_finance_doubledown', 'theme': {'button': 'C(#4d00ae) D(b) H(22px) Lh(22px) Py(7px) Pos(r) Td(n)', 'buttonLabel': 'D(ib) Fz(14px) Fw(b) Lh(24px) Pstart(38px)', 'icon': 'Pos(a) T(4px)', 'loadingImage': 'D(b) M(a) P(20px)', 'menuElement': 'D(ib) H(46px) Mstart(14px) Mt(7px) O(n) Va(t)', 'menuPanel': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) P(0) Pos(a) End(0) Trs($fastMenuTransition) V(h) W(382px) active_Mah(478px) active_Op(1) active_V(v)', 'menuPanelSignIn': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) P(0) Pos(a) End(0) Trs($menuTransition) V(h) W(382px) active_Mah(614px) active_Op(1) active_V(v)', 'menuPanelSignedOut': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Bxz(bb) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) Px(24px) Py(20px) Pos(a) End(0) Ta(c) Trs($menuTransition) V(h) W(382px) active_Mah(60px) active_Op(1) active_V(v)', 'menuPanelPromoSignedOut': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Bxz(bb) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) Px(24px) Py(20px) Pos(a) End(0) Ta(c) Trs($menuTransition) V(h) W(382px) active_Mah(172px) active_Op(1) active_V(v)', 'signInLink': 'C(#0078ff) Fw(b) Td(n)', 'promoContainer': 'D(f) Ta(start) Ai(c) Pt(20px) Pb(10px) Pos(r)', 'promoImg': 'W(53px) H(59px) Mend(14px)', 'promoHeader': 'Fz(13px) Fw(b) Mb(0) C($c-fuji-inkwell)', 'promoContent': 'Fz(13px) C(#59636d) Mt(5px) Mb(5px)', 'promoLink': 'Fz(13px) C($c-fuji-smurfette) Fw(b) Td(n)', '_iconColor': '#6001d2', '_iconHeight': '30', '_iconWidth': '30'}}, 'mrt': {'cache': False, 'static': True, 'enableStaticI13nTracking': False}, 'navigationBar': {'enabled': False}, 'notificationMenu': {'enabled': True, 'badge': {'data-wf-state-text': '[state.financeNotification.unreadCount]', 'data-wf-toggle-class': 'stateChange:toggle:D(n)', 'data-wf-state-key': '[state.financeNotification.hideBadge]'}, 'menuPanel': {'data-wf-trigger': 'onLoad', 'data-wf-url': '/_finance_doubledown/remote?m_id=react-finance.rmp&ctrl=NotificationAlert&includeAssets=0&m_mode=json&config=%7B%22mrt%22%3A%7B%22static%22%3Atrue%7D%7D'}, 'theme': {'button': 'Bgc(t) Bd(0) Cur(p) P(10px) H(36px) Pos(r) W(30px)', 'buttonLabel': 'D(ib) Fz(1orpx) Fw(b) Lh(37px) Mstart(6px) Va(t)', 'countWrapper': 'Pos(r) Z(1)', 'count': 'Bg($fujiGradient) Bgc($c-fuji-red-2-b) Bdrs(24px) C(#fff) D(n) Fz(14px) Fw(b) H(17px) Op(.9) Pb(4px) Pt(3px) Pos(a) Start(16px) Ta(c) T(-8px) W(24px) Ff($yahooSansFinanceFont)! wafer-text wafer-toggle', 'icon': 'Pos(a) Start(2px) T(4px)', 'loadingImage': 'D(b) M(a) P(20px)', 'menuElement': 'D(ib) Mx(8px) Va(t) Mt(7px) O(n):f', 'menuPanel': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Fz(14px) List(n) Mt(10px) Mah(0) Mih(57px) Op(0) Ov(a) P(0) Pos(a) End(0) Trs($fastMenuTransition) V(h) W(382px) active_Mah(478px) active_Op(1) active_V(v) wafer-fetch', 'messageList': 'Fz(13px) List(n) My(0) P(0) W(100%)', 'messageLink': 'C(#000) D(b) Px(24px) Py(16px) Pos(r) Td(n) Bgc(#c2deff):h', 'newMessageIndicator': 'Bgc(#0078ff) Bdrs(10px) H(6px) Pos(a) Start(9px) T(21px) W(6px)', 'messageTimestamp': 'C(#b2b2b2) Fl(end) Fz(12px)', 'messageSender': 'Ell Fw(b)', 'messageSenderRead': 'Ell Fw(n)', 'messageSubject': 'Cl(b) Ell Pt(4px)', 'panelFooterWrapper': 'Bgc(#f9f9f9) Bdrs(6px) Bdtc(#f2f2f2) Bdts(s) Bdtw(1px) Px(24px) Py(20px)', 'composeLink': 'C(#000) Fl(end) Td(n) C(#0078ff):h', 'composeLinkLabel': 'Va(t)', 'inboxLink': 'C(#000) Ta(start) Td(n) C(#0078ff):h', 'errorMessage': 'Px(20px) Py(20px) Ta(c)', '_iconColor': '#6001d2', '_iconHeight': '26'}}, 'profileMenu': {'accountSwitch': {'enabled': True, 'profileLink': 'https://login.yahoo.com/d?.intl=us&.lang=en-US&.src=finance&login=${ALIAS}&as=1', 'i13n': {'sec': 'uh', 'slk': 'acctswitch', 'subsec': 'profile', 'itc': '0'}}, 'i13nSignInBtn': {'sec': 'uh', 'slk': 'acct-info', 'subsec': 'profile', 'itc': '0'}, 'items': [{'id': 'profile-settings-link', 'i13n': {'sec': 'uh', 'slk': 'acct-info', 'subsec': 'profile', 'itc': '0'}, 'label': 'ACCOUNT_INFO', 'link': 'https://login.yahoo.com/account/personalinfo/?.intl=us&.lang=en-US&.src=finance&.done={PAGE_URL}&activity=uh-acctinfo&pspid={PAGE_SPACEID}', 'theme': {'accordionMenu': 'Bgc(t) Bdw(0) C($c-fuji-grey-l)! D(b) Ell Fz(14px) P(0) Pos(r) O(n) Td(n) W(100%) accordionBtn wafer-toggle', 'icon': 'H(45px) Fl(start) Mstart(2px) Ta(c) panelIcon', 'listItem': ' Cl(b) Cur(p) List(n) Pstart(42px) Fz(13px) Pb(5px) Pt(25px) Mt(-40px)', 'listItemButton': 'Bgc(t) Bdw(0) C($c-fuji-grey-l) Cur(p) D(b) Ell Fz(14px) P(0) W(100%)', 'listItemLink': 'C($c-fuji-grey-l) D(b) Ell Td(n) C($c-fuji-blue-1-c):h', 'listItemLabel': 'Fl(start) Pstart(30px) My(15px) panelIcon+Pstart(10px) panelIcon+Mb(0)', '_iconColor': '#6001d2', '_iconHeight': '18'}, 'type': 'SimplePanelItem'}, {'type': 'AccountSwitch'}, {'icon': 'PlusIcon', 'i13n': {'sec': 'uh', 'slk': 'add-acct', 'subsec': 'profile', 'itc': '0'}, 'id': 'profile-accounts-link', 'label': 'ADD_MANAGE_ACCOUNTS', 'link': 'https://login.yahoo.com/manage_account?.intl=us&.lang=en-US&.src=finance&.done={PAGE_URL}&activity=uh-addacct&pspid={PAGE_SPACEID}', 'type': 'SimplePanelItem'}, {'id': 'profile-signout-link', 'icon': 'LogOut', 'i13n': {'sec': 'uh', 'slk': 'usersigno', 'subsec': 'profile', 'itc': '0'}, 'label': 'SIGN_OUT_ALL', 'link': 'https://login.yahoo.com/config/login/?.intl=us&.lang=en-US&.src=finance&logout_all=1&.direct=1&.done=https://www.yahoo.com', 'signedInOnly': True, 'type': 'SimplePanelItem'}], 'signInUrl': 'https://login.yahoo.com/config/login?.src=finance&.intl=us&.lang=en-US&.done={PAGE_URL}&activity=uh-signin', 'simpleSignOut': {'enabled': False}, 'theme': {'accountSwitchItem': 'Bdtc($c-fuji-grey-c) Bdts(s) Bdtw(1px) Cl(b) Cur(p) Bgc(#c2deff):h', 'accountSwitchLink': 'C($c-fuji-grey-l)! D(b) Ell Mstart(18px) Mih(50px) Pb(5px) Pt(15px) Td(n)', 'alias': 'C($c-fuji-grey-8) Ell Fz(13px) Mend(40px) Mstart(54px)', 'downCaret': 'D(b) Fl(end) H(50px) Mend(40px) accordionOpen_D(n)!', 'firstName': 'Ell Fz(15px) Lh(1.4) Mend(40px) Mstart(54px)', 'icon': '', 'listItem': 'Bdtc($c-fuji-grey-c) Bdts(s) Bdtw(1px) Cl(b) Cur(p) Bgc(#c2deff):h', 'listItemLabel': 'Fl(start) Mstart(10px) Mt(15px)', 'menuElement': 'D(ib) H(46px) Mx(14px) O(n) Va(t)', 'menuPanel': 'Bgc(#fff) Bdc(#d6d6da) Bdrs(6px) Bds(s) Bdw(1px) Bxsh($menuShadow) Fz(14px) List(n) Mt(10px) Mih(200px) Op(0) P(0) Pos(a) End(0) Trs($fastMenuTransition) V(h) W(382px) active_Op(1) active_V(v)', 'notifAccordionList': 'D(n) P(0) header-notification-panel accordionOpen_D(b)!', 'profileText': 'D(ib) H(30px) Mstart(55px) Pt(10px) Ta(c)', 'signInButton': 'Bgc(#fff) Bdc($c-fuji-grape-jelly) Bdrs(3px) Bds(s) Bdw(2px) C(#4d00ae) D(ib) Ell Fz(13px) Fw(b) H(19px) Lh(19px) Mend(5px) Mt(10px) Miw(66px) Px(6px) Py(2px) Ta(c) Td(n) active_Bgc($c-fuji-grape-jelly) active_C(#fff)', 'signInLink': 'C($c-fuji-grey-l)! D(b) Ell Mstart(18px) Mih(50px) Pb(0px) Pt(20px) Td(n)', 'signInText': 'Fz(18px) Mend(40px) Mstart(54px) Pt(10px)', 'signOutLink': 'C($c-fuji-grey-l) D(b) Ell My(15px) Mstart(45px) Td(n)', 'simpleSignOutLink': 'Miw(a)', 'upCaret': 'D(n) Fl(end) H(50px) Mend(40px) accordionOpen_D(b)!', 'userAvatar': 'Bgz(cv) Bgr(nr) Bdrs(45%) H(40px) Pos(a) W(40px)', 'button': 'Bgc(t) Bd(0) Cur(p) H(36px) Mend(5px) Mt(5px) Miw(28px) P(0) Pos(r) Z(1)', 'buttonFirstName': 'C(#4d00ae) Ell Fz(14px) Fw(b) Lh(36px) Mstart(42px) Maw(100px)', 'buttonUserAvatar': 'Bgr(nr) Bgz(34px) Bdrs(45%) H(34px) Pos(a) Start(1px) T(2px) W(34px)', 'signInIcon': 'Pos(a)', 'signOutIcon': 'Pos(a) Start(1px) T(4px)', '_iconColor': '#4d00ae', '_iconHeight': '28', '_signInIconColor': '#C0C0C0', '_signInIconDimension': '40'}}, 'skipLinks': {'enabled': True, 'items': [{'label': 'SKIP_TO_NAVIGATION', 'link': 'Nav-0-DesktopNav'}, {'label': 'SKIP_TO_MAIN_CONTENT', 'link': 'market-summary'}, {'label': 'SKIP_TO_RELATED_CONTENT', 'link': 'Aside'}]}, 'topBar': {'enabled': True, 'flexHeight': True, 'i13n': {'sec': 'uh', 't1': None, 't2': None, 't3': None}}, 'webNotifications': {'enabled': False}, 'searchAssist': {'enabled': False}, 'searchBox': {'addFormAttrs': {'data-finsrch': 'researchReports'}, 'i13nForm': {'tar': 'finance.yahoo.com'}, 'i13nSubmitBtn': {'tar': 'finance.yahoo.com'}, 'inputId': 'yfin-usr-qry', 'formAction': '/quote/', 'placeholder': 'UH_SEARCH_WEB', 'searchQueryParam': 'yfin-usr-qry', 'searchExtraQueryParams': [{'name': 'fr', 'value': 'uh3_finance_vert'}, {'name': 'fr2', 'value': 'p:finvsrp,m:sb'}], 'theme': {'form': 'D(tb) H(35px) Pos(r) Va(m) W(100%) finsrch-enable-perf', 'innerWrapper': 'D(tb) W(100%)', 'input': 'Bgc(t) Bd Bdrsbstart(2px)! Bdc(#b0b0b0) Bdendw(0) Bdrs(0) Bdrststart(2px)! Bxsh(n) Bxz(bb) D(b) Fz(15px) H(inh) M(0) O(0) Px(10px) W(100%) Bdc($c-fuji-blue-1-c):f Bdc(#949494):h finsrch-inpt', 'inputLabel': 'Hidden', 'splitLogo': 'Va(m) D(tbc) W(120px)', 'splitLogoLink': 'Mstart(10px) D(ib) H(32px) W(110px) Bgz(221px) Bgr(nr)', 'submitButton': 'Bgc($c-fuji-blue-1-b) Bd(n) Bdrsbend(2px) Bdrstend(2px) D(b) H(100%) M(0) P(0) rapid-noclick-resp W(100%) Bgc($actionBlueHover):h submit-btn finsrch-btn', 'submitButtonWrapper': 'D(tbc) H(100%) Ta(c) Va(t) W(90px)', 'voiceButton': 'Bgc(t) Bd(n) Cur(p) P(0) D(n) O(n)', 'voiceButtonWrapper': 'Pos(a) T(13px) End(92px) Z(2)', 'wrapper': 'H(35px) Mend(396px) Mstart(255px) Maw(647px) Pos(r) Mstart(200px)--sm1024 Va(t)', '_submitIconColor': '#fff'}}, 'theme': {'fixedHeight': 'fixed-space H(127px) modal-open_H(90px) modal-open_Mb($bottomBarHideMargin)', 'flexHeight': 'fixed-space H(85px) modal-open_H(85px) modal-open_Mb($bottomBarHideMargin)', 'innerWrapper': 'Bgc(t) M(a) Maw(1301px) Miw(1000px) Pb(12px) Pt(15px) Pos(r) TranslateZ(0) Z(6)', 'logoWrapper': 'D(tbc) Va(m)', 'menuList': 'End(48px) List(n) Mt(0) Pos(a) T(10px) header-menu', 'profileButtonWrapper': 'D(tbc) Pstart(12px) Va(m)', 'searchButtonWrapper': 'D(tbc) Pstart(14px) Va(m) W(100%)', 'searchScreen': 'Bgc(#fff) D(n) H(100%) Ov(s) Pos(f) Start(0) T(0) W(100%) Z(2) search-open_D(b)', 'wrapper': 'Bgc(t) Bdbc(t) Bdbs(s) Bdbw(1px) D(tb) Pos(f) Tbl(f) W(100%) Z(10) has-scrolled_Bdc($c-fuji-grey-d) Scrolling_Bdc($c-fuji-grey-d) has-scrolled_Bxsh($headerShadow) Scrolling_Bxsh($headerShadow) Bxz(bb) Mx(a) Miw(1007px) Start(0) wafer-rapid-module'}}, 'props': {'key': 'UH-0-HeaderDesktop', 'id': 'UH-0-HeaderDesktop'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'WaferHeaderHelper', 'config': {'inlineFinSearchInit': True, 'mrt': {'static': True, 'enableStaticI13nTracking': False}, 'finSearchConfig': {'researchReportsCount': 2, 'newsCount': 2}}, 'props': {'key': 'UH-1-WaferHeaderHelper', 'id': 'UH-1-WaferHeaderHelper'}, 'isPageComposite': True}], 'Nav': [{'bundleName': 'react-finance', 'name': 'DesktopNav', 'perfLabel': 'NavLite', 'config': {'ui': {'navCache': True, 'remoteAdapter': True, 'makeSticky': False, 'isNavLink': True, 'relativeLinks': True, 'navFont': 'Ff($yahooSansFinanceFont)!', 'headerTitle': 'finance', 'highlightPropertyHome': False, 'dividerClasses': 'H(0)!', 'offsetHack': 'Pt(2px) Bgc(t)!', 'navMainLeftClasses': 'Mend(80px)', 'leftNavClasses': 'Pstart(10px) Mstart(-10px) nr-applet-main-nav-right_Ov(inh)!', 'navTitleClasses': 'Pstart(10px) Mstart(-10px)!', 'linkItemClasses': 'Bgc($linkColor):h W(230px)!', 'subnavLinkClasses': 'Tt(n)! C($primaryColor) C(white)!:h Maw(200px)!', 'darkTheme': False, 'selectColor': 'C($finNavBlueText)! Bdbw(0px) H(42px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'subnavClasses': 'Bgc($lv3BgColor)!', 'hoverColor': 'C($finNavBlueText):h', 'overrideColor': 'C($finNavBlueText)', 'propertyHomeSelectColor': 'Bdbc($linkColor) Bdbs(s)! Bdbw(4px) H(38px)', 'propertyHomeClasses': 'Tt(c)! Bdbc($linkColor):h Bdbs(s):h Bdbw(4px):h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkClasses': 'Tt(n)!', 'navLinkClassesOnHover': 'Bdbc($linkColor)!:h Bdbs(s)!:h Bdbw(4px)!:h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkNonHoverClasses': 'C($topNavLinkGray) Bdbs(n)', 'highlightTriangleColor': 'transparent transparent #fff', 'navMainRightClasses': 'Bdc(t) Bdrs(1.5px) Bdbs(s):h Px(10px)!'}, 'featureSwitches': {'useNavSelectLogic': True, 'disableDivider': True, 'followButtons': False, 'navLogoAlign': False, 'navrailCollapse': False, 'enableHighlightTriangle': True, 'useSubnavTitleSlk': True}, 'i13n': {'itc': 0, 'sec': 'navrail'}, 'site': 'finance', 'mrt': {'static': False}, 'renderSecondaryNav': True, 'defaultRowNum': 10, 'components': {'finance': {'linkWidth': 230, 'linksRight': ['feature_promo']}}, 'linkMeta': {'feature_promo': {'bundles': {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'isPremium': True, 'autoStart': True, 'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'checkStoreBeforeCall': True, 'placement': 'finance-eyebrow-index'}}}}, 'navItems': [{'name': 'Personal Finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}]}]}, 'props': {'key': 'Nav-0-DesktopNav', 'id': 'Nav-0-DesktopNav'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'NavHelper', 'config': {'navItems': [{'name': 'Yahoo Finance Plus', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}, 'requiresPremiumExperience': True}, {'name': 'Screeners', 'children': [{'name': 'Saved Screeners', 'url': 'https://finance.yahoo.com/screener'}, {'name': 'Equity Screener', 'url': 'https://finance.yahoo.com/screener/new'}, {'name': 'Mutual Fund Screener', 'url': 'https://finance.yahoo.com/screener/mutualfund/new'}, {'name': 'ETF Screener', 'url': 'https://finance.yahoo.com/screener/etf/new'}, {'name': 'Futures Screener', 'url': 'https://finance.yahoo.com/screener/future/new'}, {'name': 'Index Screener', 'url': 'https://finance.yahoo.com/screener/index/new'}, {'name': 'Analyst Rating Screener', 'url': 'https://finance.yahoo.com/screener/analyst_ratings/new?ncid=dcm_320339942_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Technical Events Screener', 'url': 'https://finance.yahoo.com/screener/tradingcentral_event/new?ncid=dcm_320544712_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Smart Money Screener', 'url': 'https://finance.yahoo.com/screener/institutional_interest/new?ncid=dcm_320344326_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Top Holdings Screener', 'url': 'https://finance.yahoo.com/screener/institutional_holdings/new?ncid=dcm_320545006_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}], 'requiresPremiumExperience': True}]}, 'props': {'key': 'Nav-1-NavHelper', 'id': 'Nav-1-NavHelper'}, 'isPageComposite': True}], 'SecondaryNav': [{'bundleName': 'react-finance', 'name': 'SecondaryNav', 'config': {'ui': {'enableRelativeUrl': True}}, 'props': {'key': 'SecondaryNav-0-SecondaryNav', 'id': 'SecondaryNav-0-SecondaryNav'}, 'isPageComposite': True}], 'Overlay': [{'bundleName': 'react-lightbox', 'name': 'Lightbox', 'props': {'key': 'Overlay-0-Lightbox', 'id': 'Overlay-0-Lightbox'}, 'isPageComposite': True}, {'bundleName': 'tdv2-applet-swisschamp', 'name': 'Empty', 'props': {'key': 'Overlay-1-Empty', 'id': 'Overlay-1-Empty'}, 'isPageComposite': True}], 'Lead': [{'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'LDRB', 'className': 'D(n)--print', 'style': {'marginBottom': '8px', 'paddingTop': '0px', 'marginLeft': 'auto', 'marginRight': 'auto', 'textAlign': 'center', 'lineHeight': '0px', 'position': 'relative', 'zIndex': '5'}, 'key': 'Lead-0-Ad', 'id': 'Lead-0-Ad'}, 'isPageComposite': True}, {'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'MAST', 'style': {'marginBottom': '8px', 'paddingTop': '10px', 'marginLeft': '20px', 'marginRight': '20px', 'textAlign': 'center', 'position': 'relative', 'zIndex': '5'}, 'key': 'Lead-1-Ad', 'id': 'Lead-1-Ad'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'FinanceHeader', 'props': {'className': 'Bgc($lv2BgColor) Bxz(bb) Ovx(a) Pos(r) Maw($newGridWidth) Miw($minGridWidth) Miw(a)!--tab768 Miw(a)!--tab1024 Mstart(a) Mend(a) Px(20px) Py(10px) D(n)--print', 'showAds': True, 'adsConfig': {'positions': ['FB2A', 'FB2B', 'FB2C', 'FB2D']}, 'key': 'Lead-2-FinanceHeader', 'id': 'Lead-2-FinanceHeader'}, 'isPageComposite': True}, {'bundleName': 'tdv2-applet-featurebar', 'name': 'FeatureBar', 'props': {'useWrapper': True, 'key': 'Lead-3-FeatureBar', 'id': 'Lead-3-FeatureBar'}, 'config': {'ui': {'wrapper_classnames': 'Bgc(white) Pos(r) Bxz(bb) Maw($newGridWidth) Miw($minGridWidth) Miw(a)!--tab768 Miw(a)!--tab1024 Mstart(a) Mend(a) Px(20px) Pb(10px) D(n)--print', 'container_classnames': 'W(100%) Bxz(bb) Bdrs(2px) Maw($maxModuleWidth) Mx(a) D(n)--print', 'prerender': {'enabled': False, 'renderTargetId': 'modal'}, 'link_component': 'WaferLink'}, 'site': 'finance', 'useNCP': True}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'DcmPixelIFrame', 'props': {'src': 'https://s.yimg.com/jk/gtm/gtm_ns.html?id=GTM-K85MQ6N&cat=wlistclk&u1={u1}', 'hashStr': 'AON9sUIjs65VG3Q0JA40l601TPeUJ097', 'iFrameId': 'quote-dcm-pixel-iframe', 'key': 'Lead-4-DcmPixelIFrame', 'id': 'Lead-4-DcmPixelIFrame'}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteHeader', 'props': {'key': 'Lead-5-QuoteHeader', 'id': 'Lead-5-QuoteHeader'}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteNav', 'props': {'key': 'Lead-6-QuoteNav', 'id': 'Lead-6-QuoteNav'}, 'isPageComposite': True}, {'bundleName': 'tdv2-applet-rmp', 'name': 'Rmp', 'config': {'serviceId': 'nel_ms', 'assets': {'name': 'SmartAdDynamicData', 'm_id': 'smart-ad-dynamic-data', 'ctrl': 'SmartAdDynamicData'}, 'endpoint': {'method': 'POST', 'path': '/_rcv/remote', 'query': {'ctrl': 'SmartAdDynamicData', 'm_id': 'smart-ad-dynamic-data'}, 'body': {'m_id': 'smart-ad-dynamic-data', 'ctrl': 'SmartAdDynamicData', 'm_mode': 'json', 'site': 'finance', 'config': {'apiVersion': '2', 'adPositions': ['FB2A', 'FB2B', 'FB2C', 'FB2D', 'LDRB', 'LREC', 'MON', 'LREC2', 'MON2', 'LREC3']}}}, 'enableNonIstioFallback': False, 'httpOptions': {'perfLabel': 'read_smart_dynamic_data_rmp', 'timeout': 1000, 'cacheTTL': 60000, 'fallbackTTL': 3600000, 'fallbackTimeout': 4000, 'cacheEnabled': False}, 'pathParamsToForward': ['symbol']}, 'props': {'key': 'Lead-7-Rmp', 'id': 'Lead-7-Rmp'}, 'isPageComposite': True}], 'Col1': [{'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'LDRB2', 'style': {'marginBottom': '8px', 'marginTop': '8px', 'marginLeft': 'auto', 'marginRight': 'auto', 'textAlign': 'center', 'lineHeight': '0px', 'position': 'relative', 'zIndex': '4'}, 'key': 'Col1-0-Ad', 'id': 'Col1-0-Ad'}, 'isPageComposite': True}, {'bundleName': 'Quote.financials', 'name': 'Financials', 'props': {'key': 'Col1-1-Financials', 'id': 'Col1-1-Financials'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'AdUnitWithTdAds', 'props': {'className': 'ad-foot', 'positions': ['FOOT'], 'key': 'Col1-2-AdUnitWithTdAds', 'id': 'Col1-2-AdUnitWithTdAds'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'AdUnitWithTdAds', 'props': {'className': 'ad-fsrvy', 'positions': ['FSRVY'], 'key': 'Col1-3-AdUnitWithTdAds', 'id': 'Col1-3-AdUnitWithTdAds'}, 'isPageComposite': True}], 'Col2': [{'bundleName': 'td-ads', 'name': 'ComboAd', 'props': {'adparseStyle': {'marginBottom': '20px'}, 'finishedStyle': {'marginBottom': '20px'}, 'children': [{'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'LREC', 'id': 'cmbLREC', 'key': 'cmbLREC'}}, {'bundleName': 'td-ads', 'name': 'Ad', 'props': {'pos': 'MON', 'id': 'cmbMON', 'key': 'cmbMON'}}], 'serverHeight': True, 'key': 'Col2-0-ComboAd', 'id': 'Col2-0-ComboAd'}, 'isPageComposite': True}, {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'type': 'eventPromo', 'key': 'Col2-1-MonalixaComponent', 'id': 'Col2-1-MonalixaComponent'}, 'config': {'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'placement': 'finance-desktop-web-qsp-rightrail'}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteModule', 'props': {'type': 'similarCompanies', 'key': 'Col2-2-QuoteModule', 'id': 'Col2-2-QuoteModule'}, 'initMode': {'deferRender': True}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteModule', 'props': {'type': 'earningsChart', 'key': 'Col2-3-QuoteModule', 'id': 'Col2-3-QuoteModule'}, 'initMode': {'deferRender': True}, 'isPageComposite': True}, {'bundleName': 'QuotePage', 'name': 'QuoteModule', 'props': {'type': 'financialsChart', 'key': 'Col2-4-QuoteModule', 'id': 'Col2-4-QuoteModule'}, 'initMode': {'deferRender': True}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'AdUnitWithTdAds', 'props': {'className': 'ad-lrec2', 'positions': ['LREC2'], 'key': 'Col2-5-AdUnitWithTdAds', 'id': 'Col2-5-AdUnitWithTdAds'}, 'isPageComposite': True}, {'bundleName': 'react-finance', 'name': 'Footer', 'props': {'className': 'Pb(15px)', 'isNewCCPAEnabled': True, 'isCCPAEnabled': True, 'key': 'Col2-6-Footer', 'id': 'Col2-6-Footer'}, 'isPageComposite': True}]}, 'spaceid': 95993639, 'enableRmpAssets': True, 'ads': {'events': {'adFetch': {'ps': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,LREC2,FOOT,FSRVY,TRADENOW', 'firstRender': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,TRADENOW', 'sponsoredAds': '', 'sponsoredAdsClass': ''}, 'AUTO': {'autoDDG': 0, 'groups': {'LREC3': 'LREC3', 'LREC4': None, 'MON2': 'LREC3'}, 'ps': {'MON2': {'autoRT': 10000}}}}, 'deferRender': True, 'positions': {'MAST': {'fclose': 2, 'fdb': {'on': '1', 'where': 'inside'}}, 'MAST-9': {'fclose': 2, 'fdb': {'on': '1', 'where': 'inside'}}}, 'removeFSRVY': True, 'enableAdboost': True, 'adBoostGroupConf': {'LREC3': None, 'LREC4': None, 'MON2': {'extrapositions': ['LREC3']}}}, 'initializeAction': 'initQuotePage', 'enableNewResearchInsights': True, 'enableTemplates': True, 'regionOrder': ['UH', 'Nav', 'SecondaryNav', 'Overlay', 'Lead', 'Col1', 'Col2'], '_context': {'pageType': 'quote', 'subscribed': '0', 'enablePremium': '1', 'eventName': '', 'topicName': '', 'category': 'balance-sheet', 'quoteType': 'EQUITY', 'calendarType': '', 'screenerType': '', 'inTrial': '0', 'cryptoUser': '', 'enableTrading': '1'}}}, 'headerOverride': {}, 'queryOverride': {}}, 'compositeConfig': {'Nav-0-DesktopNav': {'name': 'Nav-0-DesktopNav', 'components': [{'bundleName': 'tdv2-applet-navrail', 'name': 'DesktopNav', 'config': {'enablePremiumNav': True, 'navItems': [{'name': 'Personal Finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}]}], 'ui': {'navCache': True, 'remoteAdapter': True, 'makeSticky': False, 'isNavLink': True, 'relativeLinks': True, 'navFont': 'Ff($yahooSansFinanceFont)!', 'headerTitle': 'finance', 'highlightPropertyHome': False, 'dividerClasses': 'H(0)!', 'offsetHack': 'Pt(2px) Bgc(t)!', 'navMainLeftClasses': 'Mend(80px)', 'leftNavClasses': 'Pstart(10px) Mstart(-10px) nr-applet-main-nav-right_Ov(inh)!', 'navTitleClasses': 'Pstart(10px) Mstart(-10px)!', 'linkItemClasses': 'Bgc($linkColor):h W(230px)!', 'subnavLinkClasses': 'Tt(n)! C($primaryColor) C(white)!:h Maw(200px)!', 'darkTheme': False, 'selectColor': 'C($finNavBlueText)! Bdbw(0px) H(42px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'subnavClasses': 'Bgc($lv3BgColor)!', 'hoverColor': 'C($finNavBlueText):h', 'overrideColor': 'C($finNavBlueText)', 'propertyHomeSelectColor': 'Bdbc($linkColor) Bdbs(s)! Bdbw(4px) H(38px)', 'propertyHomeClasses': 'Tt(c)! Bdbc($linkColor):h Bdbs(s):h Bdbw(4px):h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkClasses': 'Tt(n)!', 'navLinkClassesOnHover': 'Bdbc($linkColor)!:h Bdbs(s)!:h Bdbw(4px)!:h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkNonHoverClasses': 'C($topNavLinkGray) Bdbs(n)', 'highlightTriangleColor': 'transparent transparent #fff', 'navMainRightClasses': 'Bdc(t) Bdrs(1.5px) Bdbs(s):h Px(10px)!'}, 'featureSwitches': {'useNavSelectLogic': True, 'disableDivider': True, 'followButtons': False, 'navLogoAlign': False, 'navrailCollapse': False, 'enableHighlightTriangle': True, 'useSubnavTitleSlk': True}, 'i13n': {'itc': 0, 'sec': 'navrail'}, 'site': 'finance', 'mrt': {'static': False}, 'renderSecondaryNav': True, 'defaultRowNum': 10, 'components': {'finance': {'linkWidth': 230, 'linksRight': ['feature_promo']}}, 'linkMeta': {'feature_promo': {'bundles': {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'isPremium': True, 'autoStart': True, 'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'checkStoreBeforeCall': True, 'placement': 'finance-eyebrow-index'}}}}}, 'props': {'key': 'Nav-0-DesktopNav-0-DesktopNav', 'id': 'Nav-0-DesktopNav-0-DesktopNav'}}]}, 'Nav-0-DesktopNav-0-DesktopNav-acct-switch': {'name': 'Nav-0-DesktopNav-0-DesktopNav-acct-switch', 'components': [{'bundleName': 'tdv2-applet-account-switch', 'name': 'AccountSwitch', 'config': {'isEnabled': True}, 'props': {'key': 'Nav-0-DesktopNav-0-DesktopNav-acct-switch-0-AccountSwitch', 'id': 'Nav-0-DesktopNav-0-DesktopNav-acct-switch-0-AccountSwitch'}}]}}, 'compositeStatus': {'Nav-0-DesktopNav': 1, 'Nav-0-DesktopNav-0-DesktopNav-acct-switch': 1}, 'pageData': {'title': 'Apple Inc. (AAPL) Balance Sheet - Yahoo Finance', 'description': \"Get the annual and quarterly balance sheet of Apple Inc. (AAPL) including details of assets, liabilities and shareholders' equity.\", 'keywords': 'balance sheet,asset,liabilities,shareholders equity,return on equity,cash equivalents,retained earning', 'symbol': 'AAPL', 'category': 'balance-sheet', 'meta': {'property': {'twitter:site': '@YahooFinance', 'fb:pages': '458584288257241', 'og:image': 'https://s.yimg.com/cv/apiv2/social/images/yahoo_default_logo.png', 'og:description': \"Get the annual and quarterly balance sheet of Apple Inc. (AAPL) including details of assets, liabilities and shareholders' equity.\", 'og:title': 'Apple Inc. (AAPL) Balance Sheet - Yahoo Finance', 'twitter:description': \"Get the annual and quarterly balance sheet of Apple Inc. (AAPL) including details of assets, liabilities and shareholders' equity.\", 'twitter:title': 'Apple Inc. (AAPL) Balance Sheet - Yahoo Finance', 'al:ios:app_store_id': '328412701', 'al:ios:app_name': 'Yahoo Finance', 'al:android:url': 'intent://quote/AAPL/#Intent;scheme=yfinance;action=android.intent.action.VIEW;package=com.yahoo.mobile.client.android.finance;S.browser_fallback_url=https%3A%2F%2Fplay.google.com%2Fstore%2Fapps%2Fdetails%3Fid%3Dcom.yahoo.mobile.client.android.finance;end', 'al:android:app_name': 'Yahoo Finance', 'al:android:package': 'com.yahoo.mobile.client.android.finance'}, 'name': {'apple-itunes-app': 'app-id=328412701, app-clip-bundle-id=com.yahoo.finance.clip-qsp, affiliate-data=ct=us.fin.mbl.smart-banner&pt=9029, app-argument=https://finance.yahoo.com/quote/AAPL', 'oath:guce:consent-host': 'guce.yahoo.com'}}}, 'spaceid': 95993639, 'status': {'code': 200, 'headers': {'Cache-Control': 'private, no-store, no-cache, max-age=0'}}, 'appConfig': {'timeouts': {'navigate': 10000}, 'spaceid': 1183300002, 'renderTargets': [{'classNames': 'render-target-default Pos(a) W(100%)', 'id': 'default'}, {'classNames': 'render-target-modal O(n)!:f Bdtw(1px) D(n) H(a)! Mih(100%) modal-postopen_Op(1) Pos(a) T(76px) CollapsibleUh_T(60px) Start(0) End(0) Maw(1230px) Miw(984px) Mx(a) modal-open_D(b) modal-postopen_D(b) W(100%) H(100%) Z(9)', 'id': 'modal'}]}, 'routeConfig': {}, 'renderTargets': {'default': {'id': 'default', 'guid': 0, 'classNames': 'render-target-default Pos(a) W(100%)', 'owner': 'app', 'elementId': 'render-target-default', 'url': ''}, 'modal': {'classNames': 'render-target-modal O(n)!:f Bdtw(1px) D(n) H(a)! Mih(100%) modal-postopen_Op(1) Pos(a) T(76px) CollapsibleUh_T(60px) Start(0) End(0) Maw(1230px) Miw(984px) Mx(a) modal-open_D(b) modal-postopen_D(b) W(100%) H(100%) Z(9)', 'id': 'modal', 'guid': 1, 'elementId': 'render-target-modal', 'owner': 'app', 'url': ''}}, 'renderTargetsInited': True}, 'MRTStore': {'mrtConfigRaw': {'app': {'enable': True, 'loadStaticBundles': False}, 'page': {}, 'route': {}}, 'originRenderTargetId': 'default', 'originUrl': '/quote/AAPL/balance-sheet?p=AAPL&lang=en-US®ion=US', 'staticComponents': {'UH-0-HeaderDesktop': {'cache': False, 'static': True, 'enableStaticI13nTracking': False}, 'UH-1-WaferHeaderHelper': {'static': True, 'enableStaticI13nTracking': False}}}, 'RouteStore': {'currentNavigate': {'transactionId': 3338374560538526, 'url': '/quote/AAPL/balance-sheet?p=AAPL&lang=en-US®ion=US', 'method': 'GET', 'body': {}, 'externalUrl': 'https://finance.yahoo.com/quote/AAPL/balance-sheet?p=AAPL&lang=en-US®ion=US', 'route': None, 'error': None, 'isComplete': True}, 'routes': {'status500': {'path': '/__status500', 'method': 'get', 'page': 'status500', 'action': 'loadConfigAndPage'}, 'status404': {'path': '/__status404', 'method': 'get', 'page': 'status404', 'action': 'loadConfigAndPage'}, 'home': {'path': '/', 'method': 'get', 'page': 'home', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'home', 'ver': 'ydotcom'}}}}, 'personalFinance': {'path': '/personal-finance', 'method': 'get', 'page': 'personalFinance', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'personal-finance', 'ver': 'ydotcom'}}}}, 'earnings': {'path': '/topics/:symbol-:quarter-:full(full-year-)?:year-earnings', 'method': 'get', 'page': 'earnings', 'action': 'loadSubscriptionAndConfig', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'earnings', 'ver': 'ydotcom'}}}}, 'shareholdersMeeting': {'path': '/topics/:symbol(yahoo)-:year-shareholders-meeting', 'method': 'get', 'page': 'shareholdersMeeting', 'action': 'loadSubscriptionAndConfig', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'shareholdersmeeting', 'ver': 'ydotcom'}}}}, 'brkLiveStream': {'path': '/:symbol(brk)livestream', 'method': 'get', 'page': 'brkLiveStream', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'initMarketing': False, 'rapid': {'keys': {'pt': 'minihome', 'pct': 'brklivestream', 'pg_name': 'brklivestream', 'ver': 'ydotcom'}}, 'marketing': {'activity_id': 792877}}}, 'liveStream': {'path': '/live/:eventName', 'method': 'get', 'page': 'liveStream', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'initMarketing': False, 'rapid': {'keys': {'pt': 'minihome', 'pct': 'livestream', 'pg_name': ':eventName', 'ver': 'ydotcom'}}, 'marketing': {'activity_id': 792877}}}, 'quote': {'path': '/quote/:symbol/:category?', 'method': 'get', 'page': 'quote', 'action': 'loadQuotePage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'quoteLeaf': {'path': '/__quoteleaf/:symbol/:quoteType/:category', 'method': 'get', 'page': 'quoteLeaf', 'action': 'loadQuotePage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp-leaf', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'quoteLeaf2': {'path': '/__quoteleaf/:symbol/:category', 'method': 'get', 'page': 'quoteLeaf', 'action': 'loadQuotePage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp-leaf', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'quoteECD': {'path': '/__quoteecd/:symbol', 'method': 'get', 'page': 'quoteECD', 'action': 'loadQuotePage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp-ecd', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'quoteECD2': {'path': '/__quoteecd/:symbol', 'method': 'head', 'page': 'quoteECD', 'action': 'loadQuotePage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp-ecd', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'moduleDetails': {'path': '/__moduleDetails/:type/:id', 'method': 'get', 'page': 'moduleDetails', 'action': 'loadConfigAndPage', 'contentSite': 'finance', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'portal-ecd', 'pstcat': ':type', 'pg_name': ':type', 'rvt': ':id', 'ver': 'ydotcom'}}}}, 'companyInsightsWebview': {'path': '/__companyInsights/:symbol/:category', 'method': 'get', 'page': 'companyInsightsWebview', 'action': 'loadQuotePage', 'contentSite': 'finance', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'comp-ins-webview', 'pstcat': ':category', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'fullScreenChart': {'path': '/chart/:symbol', 'method': 'get', 'page': 'fullScreenChartIQ', 'action': 'loadSubscriptionAndConfig', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'chart', 'pstcat': ':quoteType', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'fullScreenChartWebView': {'path': '/__chart/:symbol', 'method': 'get', 'page': 'chartIQWebView', 'action': 'loadSubscriptionAndConfig', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'chart-webview', 'pstcat': ':quoteType', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'embedStockChartWebView': {'path': '/__embed-chart-v1', 'method': 'get', 'page': 'embedChartWebView', 'pageType': 'embedChartWebView', 'action': 'loadConfigAndPage', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'embchart-webview', 'ver': 'ydotcom'}}}}, 'currencies': {'path': '/currencies', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'listName': 'currencies', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'currencies', 'ver': 'ydotcom'}}}, 'spaceid': 2146786654}, 'bonds': {'path': '/bonds', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'bonds', 'ver': 'ydotcom'}}}, 'spaceid': 42328446}, 'trending_tickers': {'path': '/trending-tickers', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'listName': 'trending-tickers', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'trending', 'ver': 'ydotcom'}}}, 'spaceid': 1183331958}, 'world_indices': {'path': '/world-indices', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'listName': 'world-indices', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'indices', 'ver': 'ydotcom'}}}, 'spaceid': 1183331958}, 'commodities': {'path': '/commodities', 'method': 'get', 'page': 'yfinlist', 'pageType': 'yfinlist', 'listName': 'commodities', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'commodities', 'ver': 'ydotcom'}}}, 'spaceid': 97327075}, 'recentQuotes': {'path': '/recent-quotes', 'method': 'get', 'page': 'recentlyViewedList', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'recents', 'ver': 'ydotcom'}}}}, 'screenerLanding': {'path': '/screener', 'method': 'get', 'page': 'screener', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'landing'}}}}, 'plusScreenerLanding': {'path': '/screener/predefined-plus', 'method': 'get', 'page': 'plusScreeners', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'plusScreeners'}}}}, 'screenerDetail': {'path': '/screener/:prefix(predefined|unsaved|equity|mutualfund|insider|etf|future|index|analyst_ratings|tradingcentral_event|institutional_interest|institutional_holdings)?/:screenerId', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'rowCount': 25, 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'detail'}}}}, 'screenerDetail2': {'path': '/screener/:prefix(predefined|analyst_ratings|unsaved|equity|mutualfund|insider|etf)?/:screenerId/:view(heatmap)', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'rowCount': 250, 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'detail'}}}}, 'screenerTypesPage': {'path': '/screeners/types', 'method': 'get', 'page': 'screenerTypesPage', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pg_name': 'types'}}}}, 'portfolios': {'path': '/:prefix(__portfoliow|portfolio|portafoglio|cartera|portafolio|portefeuille)s', 'method': 'get', 'page': 'portfolios', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'watchlist', 'pg_name': 'landing', 'ver': 'ydotcom'}}}}, 'portfolioDetail': {'path': '/:prefix(__portfoliow|portfolio|portafoglio|cartera|portafolio|portefeuille)/:pfId', 'method': 'get', 'page': 'portfolioDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'watchlist', 'pg_name': 'detail', 'ver': 'ydotcom'}}}}, 'portfolioDetail2': {'path': '/:prefix(__portfoliow|portfolio|portafoglio|cartera|portafolio|portefeuille)/:pfId/:viewPrefix(view|visualizzazione|ansicht|vista|visualizacao|vue)/:viewId?', 'method': 'get', 'page': 'portfolioDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'watchlist', 'pg_name': 'detail', 'ver': 'ydotcom'}}}}, 'multiQuote': {'path': '/:prefix(quotes|cotizaciones|cotations|quotazioni|kurse)/:quotes', 'method': 'get', 'page': 'multiQuote', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'multiquotes', 'pg_name': 'multiquotes', 'ver': 'ydotcom'}}}}, 'multiQuote2': {'path': '/:prefix(quotes|cotizaciones|cotations|quotazioni|kurse)/:quotes?/:viewPrefix(view|visualizzazione|ansicht|vista|visualizacao|vue)/:viewId?', 'method': 'get', 'page': 'multiQuote', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'list', 'pstcat': 'multiquotes', 'pg_name': 'multiquotes', 'ver': 'ydotcom'}}}}, 'quoteLookUp': {'path': '/lookup', 'method': 'get', 'page': 'lookup', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'lookUp', 'ver': 'ydotcom', 'pg_name': 'lookup'}}}}, 'quoteLookUpTabs': {'path': '/lookup/:type(all|equity|mutualfund|etf|index|future|currency)', 'method': 'get', 'page': 'lookup', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'lookUp', 'ver': 'ydotcom', 'pg_name': 'lookup'}}}}, 'calendar': {'path': '/calendar/:calendarType(earnings|splits|ipo|economic)?', 'method': 'get', 'page': 'calendar', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'calendar', 'ver': 'ydotcom', 'pg_name': 'earnings'}}}}, 'currencyConverterECD': {'path': '/__currency-converter', 'method': 'get', 'page': 'currencyConverterECD', 'action': 'loadConfigAndPage', 'renderTarget': 'default', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'currency-converter-ecd', 'ver': 'ydotcom'}}}}, 'currencyConverter': {'path': '/currency-converter', 'method': 'get', 'page': 'currencyConverter', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'currency-converter', 'ver': 'ydotcom'}}}}, 'cryptoScreener': {'path': '/crypto/:view(heatmap)?', 'underlyingScrId': 'all_cryptocurrencies_us', 'method': 'get', 'page': 'cryptoLanding', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'cryptocurrency', 'pg_name': 'predefined'}}}}, 'most_activeScreener': {'path': '/:screenerId(most-active)/:view(heatmap)?', 'underlyingScrId': 'most_actives', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'most-active', 'pg_name': 'detail'}}}, 'spaceid': 1183331958}, 'gainersScreener': {'path': '/:screenerId(gainers)/:view(heatmap)?', 'underlyingScrId': 'day_gainers', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'gainers', 'pg_name': 'detail'}}}, 'spaceid': 1183331958}, 'losersScreener': {'path': '/:screenerId(losers)/:view(heatmap)?', 'underlyingScrId': 'day_losers', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'losers', 'pg_name': 'detail'}}}, 'spaceid': 1183331958}, 'mutualfundsScreener': {'path': '/:screenerId(mutualfunds)', 'underlyingScrId': 'top_mutual_funds', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'funds', 'pg_name': 'detail'}}}, 'spaceid': 1183331884}, 'etfsScreener': {'path': '/:screenerId(etfs)', 'underlyingScrId': 'top_etfs_us', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'etfs', 'pg_name': 'detail'}}}, 'spaceid': 1183331881}, 'categoryWatchlists': {'path': '/watchlists/category/:categorySlug', 'method': 'get', 'page': 'categoryWatchlists', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'categoryWatchlists', 'pg_name': ':categorySlug', 'ver': 'ydotcom'}}}}, 'watchlists': {'path': '/watchlists', 'method': 'get', 'page': 'watchlists', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'watchlists', 'pg_name': 'watchlists', 'ver': 'ydotcom'}}}}, 'watchlist': {'path': '/u/:provider/watchlists/:watchlistSlug', 'method': 'get', 'page': 'watchlist', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'watchlist', 'pg_name': ':watchlistSlug', 'ver': 'ydotcom'}}}}, 'eventSplash': {'path': '/splash/:eventName', 'method': 'get', 'page': 'eventSplash', 'action': 'loadConfigAndPage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'initMarketing': False, 'rapid': {'keys': {'pt': 'utility', 'pct': 'event-splash', 'pg_name': ':eventName', 'ver': 'ydotcom'}}}}, 'userInsights': {'path': '/user-insights', 'method': 'get', 'page': 'userInsights', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'user-insights', 'pg_name': 'user_insights', 'ver': 'ydotcom'}}}, 'spaceid': 1197811689}, 'secFilingDetail': {'path': '/sec-filing/:symbol/:secFilingId', 'method': 'get', 'page': 'secFilingDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'secFilingDetail', 'pg_name': 'secFilingDetail', 'ver': 'ydotcom'}}}}, 'videos': {'path': '/videos/:alias?', 'method': 'get', 'page': 'videos', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'video', 'pg_name': 'landing', 'ver': 'ydotcom'}}}}, 'videoDetails': {'path': '/show/:showName', 'method': 'get', 'page': 'videoDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'video', 'pg_name': ':showName', 'ver': 'ydotcom'}}}}, 'rates1': {'path': '/rates/auto/insurance/:state(florida|california|texas|newyork|ohio)', 'method': 'get', 'page': 'rates', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'rates', 'pstcat': 'insurance', 'pg_name': 'insurance', 'ver': 'ydotcom'}}}}, 'rates2': {'path': '/rates/:category(auto|home-equity|credit-card|deposit|mortgage)/:subpath(48-month-new-car-loan|60-month-new-car-loan|72-month-new-car-loan|36-month-used-car-loan|48-month-used-car-loan|60-month-used-car-loan|75k-heloc|50k-heloc|30k-heloc|75k-home-equity-loan|50k-home-equity-loan|30k-home-equity-loan|credit-cards-for-bad-credit|instant-approval-credit-cards|cash-back-credit-cards|reward-credit-cards|airline-credit-cards|student-credit-cards|business-credit-cards|balance-transfer-credit-cards|low-interest-credit-cards|credit|bank|type|jumbo-mma|jumbo-cd|ira-mma|savings|10k-mma|mma|2-year-cd|1-year-cd|6-month-cd|5-1-arm-refinance|30-year-jumbo|15-year-fixed-refinance|30-year-fixed-refinance|15-year-fixed|30-year-fixed|insurance)', 'method': 'get', 'page': 'rates', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'rates', 'pstcat': 'loan', 'pg_name': ':category', 'ver': 'ydotcom'}}}}, 'rates3': {'path': '/rates', 'method': 'get', 'page': 'rates', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'rates', 'pg_name': 'rates', 'ver': 'ydotcom'}}}}, 'personalFinanceStream': {'path': '/personal-finance/:eventName', 'method': 'get', 'page': 'personalFinanceStream', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'initMarketing': False, 'rapid': {'keys': {'pt': 'minihome', 'pct': 'personal-finance', 'pg_name': ':eventName', 'ver': 'ydotcom'}}, 'marketing': {'activity_id': 792877}}}, 'topic': {'path': '/:topic(topic|search|news|budget)/(provider-|):topicName([a-zA-Z0-9-%_]+)', 'method': 'get', 'page': 'topic', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pg_name': ':topicName', 'ver': 'ydotcom'}}}}, 'techTopic': {'path': '/tech', 'method': 'get', 'page': 'techTopic', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'tech', 'pg_name': 'tech', 'ver': 'ydotcom'}}}}, 'techSubpage': {'path': '/:listitem(tech|business)/:topicName', 'method': 'get', 'page': 'techSubpage', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': ':topicName', 'pg_name': ':topicName', 'ver': 'ydotcom'}}}}, 'industries': {'path': '/industries', 'method': 'get', 'page': 'industry', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'industries', 'ver': 'ydotcom', 'pg_name': 'industries'}}}, 'spaceid': 1183335957}, 'industry': {'path': '/industries/:sector(all|financial|healthcare|services|utilities|industrial_goods|basic_materials|conglomerates|consumer_goods|technology)', 'method': 'get', 'page': 'industry', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': ':sector', 'ver': 'ydotcom', 'pg_name': 'industry'}}}, 'spaceid': 1183335957}, 'minihomeNews': {'path': '/news', 'method': 'get', 'page': 'minihomeNews', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'news', 'pg_name': 'news', 'ver': 'ydotcom'}}}}, 'optionsOIScreener': {'path': '/options/:screenerId(highest-open-interest)', 'underlyingScrId': '65f51cea-8dc8-4e56-9f99-6ef7720eb69c', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'options_highest_open_interest', 'pg_name': 'detail'}}}, 'spaceid': 1183331888}, 'optionsScreener': {'path': '/options/:screenerId(highest-implied-volatility)', 'underlyingScrId': '671c40b0-5ea8-4063-89b9-9db45bf9edf0', 'method': 'get', 'page': 'screenerDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'screener', 'ver': 'ydotcom', 'pstcat': 'options_highest_implied_volatility', 'pg_name': 'detail'}}}, 'spaceid': 1183331888}, 'companySummary': {'path': '/company/:entitySlug', 'method': 'get', 'page': 'companySummary', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'company', 'pg_name': 'summary', 'rvt': ':entitySlug', 'ver': 'ydotcom'}}}}, 'trumponomics': {'path': '/:presidentOmics(trumponomics|bidenomics)', 'method': 'get', 'page': 'trumponomics', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'trumponomics', 'ver': 'ydotcom'}}}}, 'premiumPortalECD': {'path': '/__premium', 'method': 'get', 'page': 'premiumPortalECD', 'action': 'loadPremiumPortalPage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'premium', 'ver': 'ydotcom', 'pg_name': 'premium_portal'}}}}, 'reportDetail': {'path': '/research/:category(reports)/:contentId', 'method': 'get', 'page': 'reportDetail', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'reportDetail', 'pg_name': ':category', 'ver': 'ydotcom'}}}}, 'seo_research': {'path': '/research/:category(stock-forecast)/:symbol', 'method': 'get', 'page': 'research', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'research', 'pg_name': 'landing', 'ver': 'ydotcom'}}}}, 'plusPortal': {'path': '/plus-dashboard', 'method': 'get', 'page': 'plusDashboard', 'action': 'loadPremiumPortalPage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'premium', 'ver': 'ydotcom', 'pg_name': 'premium_portal'}}}}, 'webinar': {'path': '/webinars', 'method': 'get', 'action': 'loadSubscriptionAndConfig', 'page': 'webinar', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'minihome', 'pct': 'webinar', 'pg_name': 'webinar', 'ver': 'ydotcom'}}}}, 'hub': {'path': '/taxes', 'method': 'get', 'page': 'hub', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance'}, 'portfolioDetailWebView': {'path': '/:prefix(__portfolio)/:pfId/:viewPrefix(view)/:viewId?', 'method': 'get', 'page': 'portfolioDetailWebView', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'pf-webview', 'pstcat': 'watchlist', 'pg_name': 'detail', 'ver': 'ydotcom'}}}}, 'blogpost': {'path': '/blogs/:contentBlog/:alias.html', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'blogpost', 'pageType': 'content', 'renderTarget': 'modal'}, 'cavideo': {'path': '/video/:alias.html', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'cavideo', 'pageType': 'content', 'renderTarget': 'modal'}, 'preview': {'path': '/m/:uuid([a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12})/:alias.html', 'action': 'loadSubscriptionAndConfig', 'contentType': 'story', 'method': 'get', 'page': 'content', 'pageType': 'content', 'renderTarget': 'modal'}, 'slideshow': {'path': '/photos/:alias', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'slideshow', 'pageType': 'content', 'renderTarget': 'modal'}, 'slideshowPhoto': {'path': '/photos/:alias/:photoAlias.html', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'slideshow', 'pageType': 'content', 'renderTarget': 'modal'}, 'story': {'path': '/:prefix(news)/:alias.html', 'method': 'get', 'page': 'content', 'action': 'loadSubscriptionAndConfig', 'contentType': 'story', 'pageType': 'content', 'renderTarget': 'modal'}, 'premiumPortal': {'path': '/premium', 'method': 'get', 'page': 'premiumPortal', 'action': 'loadPremiumPortalPage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'premium', 'ver': 'ydotcom', 'pg_name': 'premium_portal'}}}}, 'research': {'path': '/research/:category(trade-ideas)?', 'method': 'get', 'page': 'research', 'action': 'loadSubscriptionAndConfig', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'research', 'pg_name': 'landing', 'ver': 'ydotcom'}}}}}}, 'I13nStore': {'appConfig': {'base': {'initComscore': True, 'initRapid': True, 'enableNielsenBeacon': False, 'enablePartneradobeBeacon': False, 'adobeProp53': '', 'enableDeTrackingBeacon': False, 'enableDcmPixel': False, 'rootModelData': {'sec': 'app'}, 'rapid': {'async_all_clicks': True, 'click_timeout': 300, 'client_only': 1, 'compr_type': 'deflate', 'keys': {'ver': 'ydotcom', 'navtype': 'server'}, 'pageview_on_init': True, 'query_parameters': True, 'test_id': '', 'tracked_mods_viewability': [], 'track_right_click': True, 'viewability': True, 'dwell_on': True, 'perf_navigationtime': 2, 'perf_resourcetime': 1, 'webworker_file': '/__rapidworker-1.2.js'}, 'serverPageview': {'enable': True, 'type': 'nonClassified'}, 'secMapping': {'AddSymbolBtn': 'datautility', 'Analyst.PriceTargets': 'qsp-analyst-price-target', 'Analyst.Ratings': 'qsp-recom-trends', 'Analyst.RecommendationRating': 'qsp-recom-rating', 'Analyst.UpgradeDowngradeHistory': 'analyst-history', 'AnalystsUpsell': 'analysts-upsell', 'AssetProfile': 'qsp-assetprofile', 'BrokerCenter': 'brokercenter-landingpage-table', 'CalCarousel': 'cal-carousel', 'CalDatePicker': 'cal-date-picker', 'CalEvents': 'cal-evnts', 'CalTable': 'cal-table', 'ChartIQChartType': 'chartiq-chart_type', 'ChartIQComparison': 'chartiq-comparison', 'ChartIQDrawingTool': 'chartiq-drawing-tool', 'ChartIQInterval': 'chartiq-interval', 'ChartIQLegend': 'chartiq-legend', 'ChartIQRange': 'chartiq-range', 'ChartIQEvents': 'chartiq-events', 'ChartIQShare': 'chartiq-social-share', 'ColorPicker': 'color-picker', 'CompanyInsights': 'company-insights', 'company-insights': 'company-insights', 'corporate-events': 'company-insights-corp', 'research-reports': 'company-insights-research', 'fair-value': 'company-insights-fair', 'dividends': 'company-insights-divid', 'innovation': 'company-insights-innov', 'hiring-trends': 'company-insights-hiring', 'insider-sentiment': 'company-insights-sentiment', 'CompanyProfile': 'qsp-profile', 'CompanySnapshot': 'company-snapshot', 'ColumnItemEditorial': 'editorial-news', 'ColumnItemImage': 'editorial-image', 'ColumnItemLatestNews': 'latest-news', 'ColumnItem.Featured': 'featured-news-item', 'CommunityProfile': 'community-profile', 'Company': 'company', 'Company360': 'company360', 'Company360Drilldown': 'company360-drilldown', 'CryptoAbout': 'crypto-about', 'CryptoAccountManagement': 'crypto-acct-mgmt', 'CryptoDeactivate': 'crypto-deactivate', 'CryptoDeposit': 'crypto-deposit', 'CryptoWithdrawal': 'crypto-withdrawal', 'CryptoHome': 'crypto-home', 'CryptoKYC': 'crypto-create-account', 'CryptoPortfolio': 'crypto-portfolio', 'CryptoPortfolioFinTab': 'crypto-fin-subtab', 'CryptoTradable': 'crypto-tradable', 'CryptoTrade': 'crypto-trade', 'CuratedWatchlists': 'curated-watchlists', 'CWLCategoryTable': 'cwl-category', 'CWLDetail': 'cwl-detail', 'Earnings': 'earnings', 'EditorialNews': 'editorial-news', 'ColumnItem.Video': 'editorial-video', 'CorporateGovernance': 'qsp-corporate', 'CustomColumns': 'toolbar', 'DataUtility': 'datautility', 'DataUtilityHeader': 'datautility-hdr', 'EarningsRevenueBarChart': 'qsp-revenue-chart', 'EarningsScatterChart': 'qsp-earnings-chart', 'ESGMiniScore': 'qsp-esg-mini-score', 'EditColumns': 'toolbar', 'Sustainability.PeerScoresTable': 'sustainability-peer-scores-table', 'EventPromo': 'event-promo', 'FeaturePromo': 'feature-promo', 'FinancialsLeafPage': 'qsp-financials', 'FinancialStatement': 'qsp-statement', 'Footer': 'footer', 'FredHistoricalDataTable': 'fred-qsp-historical', 'FullScreenChart': 'chart', 'FullScreenChartMW': 'fullscreen-chart-mw', 'FuturesChain': 'futures-chain', 'Following': 'megathon-follow', 'HistoricalDataTable': 'qsp-historical', 'Holders': 'qsp-holders', 'Holders.Insiders': 'qsp-insiders', 'Holders.InsiderTransaction': 'qsp-insider-transaction', 'Holders.InsiderRoster': 'qsp-insider-roster', 'Holders.Summary': 'qsp-holdings', 'IndexComponents': 'top-components', 'IndustryLanding': 'industry-landing', 'KeyStatistics': 'qsp-key-stats', 'KeyStatisticsLeafPage': 'qsp-keystatistics', 'LineWidthSelector': 'line-width-selector', 'MarketDataTable': 'datautility', 'MarketSummary': 'mrkt-sum', 'MarketSummaryItem': 'mrkt-sum', 'MustRead': 'must-read', 'NewsStreamMyQuoteNews': 'my-quote-news-stream', 'NewsSummary': 'news-summary', 'MyMarketNews': 'my-quote-news', 'MarketNews': 'market-news', 'OptionContracts': 'qsp-options', 'OptionContractsTable': 'qsp-option-table', 'OptionContract:ResultItem': 'qsp-options', 'OptOutBtn': 'opt-out', 'PortfolioBreadcrumb': 'pf-breadcrumb', 'PortfolioControls': 'pf-controls', 'PortfolioHeader': 'pf-summary', 'PortfolioNewsStream': 'pf-news', 'PortfolioTable': 'pf-table', 'PortfolioToolbar': 'toolbar', 'PositionRow': 'datautility', 'PlusDashboard': 'plus-dashboard', 'PremiumPortal': 'prm-prtl', 'PremiumPromoHeader': 'prm-prmo-hdr', 'PremiumPromoFooter': 'prm-prmo-ftr', 'PressRelease': 'press-releases', 'QSP.FeaturedNews': 'qsp-featured-news', 'QSPSubNav': 'qsp-subnav', 'QSP.News': 'qsp-news', 'QSP.Section': 'qsp-section', 'QSPAddToWatchlist': 'qsp-hdr', 'Quote': 'qsp', 'QuoteContainer': 'qsp', 'QuoteHeader': 'quote-header', 'QuoteNews': 'quote-news', 'QuotesNews': 'quotes-news', 'QuotePill': 'quote-pill', 'QuoteRelated': 'qsp-related', 'QuoteRelatedVideo': 'related-video', 'QuoteSearchAd': 'qsp-search-ad', 'RecommendationsBySymbol': 'recommended-symbols', 'RecommendationsBySymbolSimilar': 'similar-symbols', 'ReportDetail': 'report-detail', 'Research': 'research', 'ResearchInsights': 'research-insights', 'QSPResearchReports': 'qsp-research-reports', 'ScreenerLanding': 'screener-landing', 'ScreenerPlusList': 'screener-plus-list', 'ScreenerCriteria': 'screener-criteria', 'ScreenerFilter': 'screener-filter', 'ScreenerNewFilter': 'screener-new-filter', 'ScreenerResults': 'screener-results', 'ScreenerSaveModal': 'screener-save-modal', 'ScreenerShare': 'screener-share', 'SecFilings': 'qsp-filings', 'SymbolRemoval': 'datautility', 'VideosLeftNav': 'videos-left-nav', 'SwitchVideo': 'video-switch', 'TableHead': 'datautility', 'TableRow': 'datautility', 'TickerNews': 'ticker-news', 'Trumponomics': 'trumponomics', 'UserInsights': 'user-insights', 'Virgo:ResultItem': 'chart', 'VideoPlayerWithLangSelector': 'video-player', 'YFinListTable': 'yfin-list-table'}, 'enableConsentData': True}}, 'comscoreC7Keyword': '', 'currentUrl': '/quote/AAPL/balance-sheet?p=AAPL&lang=en-US®ion=US', 'i13nConfig': {'initComscore': True, 'initRapid': True, 'enableNielsenBeacon': False, 'enablePartneradobeBeacon': False, 'adobeProp53': '', 'enableDeTrackingBeacon': False, 'enableDcmPixel': False, 'rootModelData': {'sec': 'app'}, 'rapid': {'async_all_clicks': True, 'click_timeout': 300, 'client_only': 1, 'compr_type': 'deflate', 'keys': {'ver': 'ydotcom', 'navtype': 'server', 'pt': 'utility', 'pct': 'qsp', 'pstcat': 'equities', 'pg_name': 'balance-sheet', 'rvt': 'AAPL', 'ticker': 'AAPL', 'pl1': 'us_market', 'pl2': 'NMS', 'mrkt': 'us', 'site': 'finance', 'lang': 'en-US', 'colo': 'bf1', '_yrid': 'bae2cj5hu29in', '_rid': 'bae2cj5hu29in', 'abk': ''}, 'pageview_on_init': True, 'query_parameters': True, 'test_id': 'finance-US-en-US-def', 'tracked_mods_viewability': [], 'track_right_click': True, 'viewability': True, 'dwell_on': True, 'perf_navigationtime': 2, 'perf_resourcetime': 1, 'webworker_file': '/__rapidworker-1.2.js', 'spaceid': 95993639}, 'serverPageview': {'enable': True, 'type': 'nonClassified'}, 'secMapping': {'AddSymbolBtn': 'datautility', 'Analyst.PriceTargets': 'qsp-analyst-price-target', 'Analyst.Ratings': 'qsp-recom-trends', 'Analyst.RecommendationRating': 'qsp-recom-rating', 'Analyst.UpgradeDowngradeHistory': 'analyst-history', 'AnalystsUpsell': 'analysts-upsell', 'AssetProfile': 'qsp-assetprofile', 'BrokerCenter': 'brokercenter-landingpage-table', 'CalCarousel': 'cal-carousel', 'CalDatePicker': 'cal-date-picker', 'CalEvents': 'cal-evnts', 'CalTable': 'cal-table', 'ChartIQChartType': 'chartiq-chart_type', 'ChartIQComparison': 'chartiq-comparison', 'ChartIQDrawingTool': 'chartiq-drawing-tool', 'ChartIQInterval': 'chartiq-interval', 'ChartIQLegend': 'chartiq-legend', 'ChartIQRange': 'chartiq-range', 'ChartIQEvents': 'chartiq-events', 'ChartIQShare': 'chartiq-social-share', 'ColorPicker': 'color-picker', 'CompanyInsights': 'company-insights', 'company-insights': 'company-insights', 'corporate-events': 'company-insights-corp', 'research-reports': 'company-insights-research', 'fair-value': 'company-insights-fair', 'dividends': 'company-insights-divid', 'innovation': 'company-insights-innov', 'hiring-trends': 'company-insights-hiring', 'insider-sentiment': 'company-insights-sentiment', 'CompanyProfile': 'qsp-profile', 'CompanySnapshot': 'company-snapshot', 'ColumnItemEditorial': 'editorial-news', 'ColumnItemImage': 'editorial-image', 'ColumnItemLatestNews': 'latest-news', 'ColumnItem.Featured': 'featured-news-item', 'CommunityProfile': 'community-profile', 'Company': 'company', 'Company360': 'company360', 'Company360Drilldown': 'company360-drilldown', 'CryptoAbout': 'crypto-about', 'CryptoAccountManagement': 'crypto-acct-mgmt', 'CryptoDeactivate': 'crypto-deactivate', 'CryptoDeposit': 'crypto-deposit', 'CryptoWithdrawal': 'crypto-withdrawal', 'CryptoHome': 'crypto-home', 'CryptoKYC': 'crypto-create-account', 'CryptoPortfolio': 'crypto-portfolio', 'CryptoPortfolioFinTab': 'crypto-fin-subtab', 'CryptoTradable': 'crypto-tradable', 'CryptoTrade': 'crypto-trade', 'CuratedWatchlists': 'curated-watchlists', 'CWLCategoryTable': 'cwl-category', 'CWLDetail': 'cwl-detail', 'Earnings': 'earnings', 'EditorialNews': 'editorial-news', 'ColumnItem.Video': 'editorial-video', 'CorporateGovernance': 'qsp-corporate', 'CustomColumns': 'toolbar', 'DataUtility': 'datautility', 'DataUtilityHeader': 'datautility-hdr', 'EarningsRevenueBarChart': 'qsp-revenue-chart', 'EarningsScatterChart': 'qsp-earnings-chart', 'ESGMiniScore': 'qsp-esg-mini-score', 'EditColumns': 'toolbar', 'Sustainability.PeerScoresTable': 'sustainability-peer-scores-table', 'EventPromo': 'event-promo', 'FeaturePromo': 'feature-promo', 'FinancialsLeafPage': 'qsp-financials', 'FinancialStatement': 'qsp-statement', 'Footer': 'footer', 'FredHistoricalDataTable': 'fred-qsp-historical', 'FullScreenChart': 'chart', 'FullScreenChartMW': 'fullscreen-chart-mw', 'FuturesChain': 'futures-chain', 'Following': 'megathon-follow', 'HistoricalDataTable': 'qsp-historical', 'Holders': 'qsp-holders', 'Holders.Insiders': 'qsp-insiders', 'Holders.InsiderTransaction': 'qsp-insider-transaction', 'Holders.InsiderRoster': 'qsp-insider-roster', 'Holders.Summary': 'qsp-holdings', 'IndexComponents': 'top-components', 'IndustryLanding': 'industry-landing', 'KeyStatistics': 'qsp-key-stats', 'KeyStatisticsLeafPage': 'qsp-keystatistics', 'LineWidthSelector': 'line-width-selector', 'MarketDataTable': 'datautility', 'MarketSummary': 'mrkt-sum', 'MarketSummaryItem': 'mrkt-sum', 'MustRead': 'must-read', 'NewsStreamMyQuoteNews': 'my-quote-news-stream', 'NewsSummary': 'news-summary', 'MyMarketNews': 'my-quote-news', 'MarketNews': 'market-news', 'OptionContracts': 'qsp-options', 'OptionContractsTable': 'qsp-option-table', 'OptionContract:ResultItem': 'qsp-options', 'OptOutBtn': 'opt-out', 'PortfolioBreadcrumb': 'pf-breadcrumb', 'PortfolioControls': 'pf-controls', 'PortfolioHeader': 'pf-summary', 'PortfolioNewsStream': 'pf-news', 'PortfolioTable': 'pf-table', 'PortfolioToolbar': 'toolbar', 'PositionRow': 'datautility', 'PlusDashboard': 'plus-dashboard', 'PremiumPortal': 'prm-prtl', 'PremiumPromoHeader': 'prm-prmo-hdr', 'PremiumPromoFooter': 'prm-prmo-ftr', 'PressRelease': 'press-releases', 'QSP.FeaturedNews': 'qsp-featured-news', 'QSPSubNav': 'qsp-subnav', 'QSP.News': 'qsp-news', 'QSP.Section': 'qsp-section', 'QSPAddToWatchlist': 'qsp-hdr', 'Quote': 'qsp', 'QuoteContainer': 'qsp', 'QuoteHeader': 'quote-header', 'QuoteNews': 'quote-news', 'QuotesNews': 'quotes-news', 'QuotePill': 'quote-pill', 'QuoteRelated': 'qsp-related', 'QuoteRelatedVideo': 'related-video', 'QuoteSearchAd': 'qsp-search-ad', 'RecommendationsBySymbol': 'recommended-symbols', 'RecommendationsBySymbolSimilar': 'similar-symbols', 'ReportDetail': 'report-detail', 'Research': 'research', 'ResearchInsights': 'research-insights', 'QSPResearchReports': 'qsp-research-reports', 'ScreenerLanding': 'screener-landing', 'ScreenerPlusList': 'screener-plus-list', 'ScreenerCriteria': 'screener-criteria', 'ScreenerFilter': 'screener-filter', 'ScreenerNewFilter': 'screener-new-filter', 'ScreenerResults': 'screener-results', 'ScreenerSaveModal': 'screener-save-modal', 'ScreenerShare': 'screener-share', 'SecFilings': 'qsp-filings', 'SymbolRemoval': 'datautility', 'VideosLeftNav': 'videos-left-nav', 'SwitchVideo': 'video-switch', 'TableHead': 'datautility', 'TableRow': 'datautility', 'TickerNews': 'ticker-news', 'Trumponomics': 'trumponomics', 'UserInsights': 'user-insights', 'Virgo:ResultItem': 'chart', 'VideoPlayerWithLangSelector': 'video-player', 'YFinListTable': 'yfin-list-table'}, 'enableConsentData': True}, 'pageConfig': {'headerOverride': None}, 'routeConfig': {'base': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}}, 'runtimeConfig': {'rapid': {'keys': {'rvt': 'AAPL', 'ticker': 'AAPL', 'pl1': 'us_market', 'pl2': 'NMS', 'pstcat': 'equities', 'pg_name': 'balance-sheet'}}}}, 'PageTransitionStore': {'_appConfig': {'pageTransition': {'enabled': True, 'handleSameTarget': False, 'pluginName': 'modal-fade'}}, '_currentRoute': {'path': '/quote/:symbol/:category?', 'method': 'get', 'page': 'quote', 'action': 'loadQuotePage', 'renderTarget': 'default', 'contentSite': 'finance', 'i13n': {'rapid': {'keys': {'pt': 'utility', 'pct': 'qsp', 'pstcat': ':quoteType', 'pg_name': ':category', 'rvt': ':symbol', 'ticker': ':symbol', 'ver': 'ydotcom'}}}, 'name': 'quote', 'url': '/quote/AAPL/balance-sheet?p=AAPL&lang=en-US®ion=US', 'params': {'symbol': 'AAPL', 'category': 'balance-sheet', 'quoteType': 'EQUITY', 'subscribed': '0', 'inTrial': '0', 'enablePremium': '1', 'enableTrading': '1'}, 'query': {'lang': 'en-US', 'p': 'AAPL', 'region': 'US'}}, '_currentRenderTarget': {'referrer': {'route': {}}, 'id': 'default', 'guid': 0, 'classNames': 'render-target-default', 'owner': 'app', 'elementId': 'render-target-default', 'url': ''}, '_renderTargets': {'default': {'referrer': {'route': {}}, 'id': 'default', 'guid': 0, 'classNames': 'render-target-default', 'owner': 'app', 'elementId': 'render-target-default', 'url': ''}}}, 'VideoPlayerStore': {'_config': {'docking': {'enableOnScrollDown': False, 'enableOnScrollUp': False, 'fadeInAnimation': True, 'position': {'left': 'ref', 'right': 0, 'bottom': 45}, 'ref': '.modal-open .render-target-modal .modalRight', 'width': 300, 'height': 168.75, 'threshold': 60, 'enableOnMuted': True, 'showInfoCard': False}, 'enableRestoreOnNavigate': True, 'enableUndockOnNavigate': True, 'refreshDockingOnNavigate': True, 'totalInactivePlayers': 10, 'videoClickSrc': ['video-click', 'startScreen']}, '_playerConfig': {}}, 'QuoteAutoCompleteStore': {'clear': True}, 'NavrailStore': {'showNavrail': False, 'navTitle': 'finance', 'navSections': '', 'currentUrl': '/quote/AAPL/balance-sheet?p=AAPL&lang=en-US®ion=US', 'pageType': {}, 'navSectionsDisplayTitle': {}, 'site': 'finance'}, 'StreamDataStore': {'quoteData': {'^TNX': {'sourceInterval': 30, 'exchange': 'NYB', 'regularMarketTime': {'raw': 1675698889, 'fmt': '10:54AM EST'}, 'shortName': '10-Yr Bond', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0.085999966, 'fmt': '0.0860'}, 'regularMarketPreviousClose': {'raw': 3.532, 'fmt': '3.5320'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 10, 'customPriceAlertConfidence': 'LOW', 'priceHint': 4, 'regularMarketPrice': {'raw': 3.618, 'fmt': '3.6180'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': -252356400000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^TNX', 'language': 'en-US', 'market': 'us24_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 2.43488, 'fmt': '2.43%'}, 'fullExchangeName': 'ICE Futures', 'tradeable': False}, 'AMZN': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 102.925, 'fmt': '102.93'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699798, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '81.43 - 170.8315', 'fmt': '81.43 - 170.83'}, 'sharesOutstanding': {'raw': 10201700352, 'fmt': '10.202B', 'longFmt': '10,201,700,352'}, 'regularMarketDayHigh': {'raw': 103.9484, 'fmt': '103.95'}, 'shortName': 'Amazon.com, Inc.', 'longName': 'Amazon.com, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -1.8696976, 'fmt': '-1.87'}, 'regularMarketPreviousClose': {'raw': 103.39, 'fmt': '103.39'}, 'fiftyTwoWeekHighChange': {'raw': -69.311195, 'fmt': '-69.31'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 20.090302, 'fmt': '20.09'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 100.65, 'fmt': '100.65'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 101.5203, 'fmt': '101.52'}, 'regularMarketVolume': {'raw': 34788052, 'fmt': '34.788M', 'longFmt': '34,788,052'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 863703000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1035679694848, 'fmt': '1.036T', 'longFmt': '1,035,679,694,848'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'AMZN', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.24671867, 'fmt': '24.67%'}, 'regularMarketDayRange': {'raw': '100.65 - 103.9484', 'fmt': '100.65 - 103.95'}, 'messageBoardId': 'finmb_18749', 'fiftyTwoWeekHigh': {'raw': 170.8315, 'fmt': '170.83'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.40572843, 'fmt': '-40.57%'}, 'uuid': '261fd26b-0151-3813-b0d0-97e4ed4c6505', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 81.43, 'fmt': '81.43'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.808393, 'fmt': '-1.81%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'GOOG': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 102.685, 'fmt': '102.68'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699797, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '83.45 - 144.1625', 'fmt': '83.45 - 144.16'}, 'sharesOutstanding': {'raw': 5968000000, 'fmt': '5.968B', 'longFmt': '5,968,000,000'}, 'regularMarketDayHigh': {'raw': 104.69, 'fmt': '104.69'}, 'shortName': 'Alphabet Inc.', 'longName': 'Alphabet Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.5599976, 'fmt': '-2.56'}, 'regularMarketPreviousClose': {'raw': 105.22, 'fmt': '105.22'}, 'fiftyTwoWeekHighChange': {'raw': -41.502502, 'fmt': '-41.50'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 19.210007, 'fmt': '19.21'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 102.21, 'fmt': '102.21'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 102.66, 'fmt': '102.66'}, 'regularMarketVolume': {'raw': 9848287, 'fmt': '9.848M', 'longFmt': '9,848,287'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1092922200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1311830573056, 'fmt': '1.312T', 'longFmt': '1,311,830,573,056'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'GOOG', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.23019782, 'fmt': '23.02%'}, 'regularMarketDayRange': {'raw': '102.21 - 104.69', 'fmt': '102.21 - 104.69'}, 'messageBoardId': 'finmb_29096', 'fiftyTwoWeekHigh': {'raw': 144.1625, 'fmt': '144.16'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.28788695, 'fmt': '-28.79%'}, 'uuid': 'ee8cce8c-2475-31c0-8436-ecdf889cbfbd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 83.45, 'fmt': '83.45'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -2.432995, 'fmt': '-2.43%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'NFLX': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 363.642, 'fmt': '363.64'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699796, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '162.71 - 412.98', 'fmt': '162.71 - 412.98'}, 'sharesOutstanding': {'raw': 445347008, 'fmt': '445.347M', 'longFmt': '445,347,008'}, 'regularMarketDayHigh': {'raw': 368.45, 'fmt': '368.45'}, 'shortName': 'Netflix, Inc.', 'longName': 'Netflix, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.81958, 'fmt': '-2.82'}, 'regularMarketPreviousClose': {'raw': 365.9, 'fmt': '365.90'}, 'fiftyTwoWeekHighChange': {'raw': -49.899597, 'fmt': '-49.90'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 200.3704, 'fmt': '200.37'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 360.7, 'fmt': '360.70'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 363.0804, 'fmt': '363.08'}, 'regularMarketVolume': {'raw': 1894217, 'fmt': '1.894M', 'longFmt': '1,894,217'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1022160600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 161696776192, 'fmt': '161.697B', 'longFmt': '161,696,776,192'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'NFLX', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 1.2314572, 'fmt': '123.15%'}, 'regularMarketDayRange': {'raw': '360.7 - 368.45', 'fmt': '360.70 - 368.45'}, 'messageBoardId': 'finmb_32012', 'fiftyTwoWeekHigh': {'raw': 412.98, 'fmt': '412.98'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.120828114, 'fmt': '-12.08%'}, 'uuid': '1a1cddac-4d41-374d-b202-739314177b67', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 162.71, 'fmt': '162.71'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.7705876, 'fmt': '-0.77%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'KOSS': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.82, 'fmt': '5.82'}, 'exchange': 'NCM', 'regularMarketTime': {'raw': 1675697530, 'fmt': '10:32AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.44 - 12.86', 'fmt': '4.44 - 12.86'}, 'sharesOutstanding': {'raw': 9189800, 'fmt': '9.19M', 'longFmt': '9,189,800'}, 'regularMarketDayHigh': {'raw': 5.88, 'fmt': '5.88'}, 'shortName': 'Koss Corporation', 'longName': 'Koss Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0.01999998, 'fmt': '0.02'}, 'regularMarketPreviousClose': {'raw': 5.8, 'fmt': '5.80'}, 'fiftyTwoWeekHighChange': {'raw': -7.0399995, 'fmt': '-7.04'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1.3800001, 'fmt': '1.38'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.8, 'fmt': '5.80'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.82, 'fmt': '5.82'}, 'regularMarketVolume': {'raw': 2746, 'fmt': '2,746', 'longFmt': '2,746'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 322151400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 53484636, 'fmt': '53.485M', 'longFmt': '53,484,636'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'KOSS', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.31081083, 'fmt': '31.08%'}, 'regularMarketDayRange': {'raw': '5.8 - 5.88', 'fmt': '5.80 - 5.88'}, 'messageBoardId': 'finmb_283448', 'fiftyTwoWeekHigh': {'raw': 12.86, 'fmt': '12.86'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.54743385, 'fmt': '-54.74%'}, 'uuid': 'ad708ee0-5672-30f5-85f6-bbbcb3e0eccd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.44, 'fmt': '4.44'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.34482723, 'fmt': '0.34%'}, 'fullExchangeName': 'NasdaqCM', 'tradeable': False}, '^N225': {'sourceInterval': 20, 'quoteSourceName': 'Delayed Quote', 'exchange': 'OSA', 'regularMarketTime': {'raw': 1675664103, 'fmt': '3:15PM JST'}, 'shortName': 'Nikkei 225', 'exchangeTimezoneName': 'Asia/Tokyo', 'regularMarketChange': {'raw': 184.18945, 'fmt': '184.19'}, 'regularMarketPreviousClose': {'raw': 27509.46, 'fmt': '27,509.46'}, 'exchangeTimezoneShortName': 'JST', 'exchangeDataDelayedBy': 20, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 27693.65, 'fmt': '27,693.65'}, 'triggerable': False, 'gmtOffSetMilliseconds': 32400000, 'firstTradeDateMilliseconds': -157420800000, 'region': 'US', 'marketState': 'PREPRE', 'quoteType': 'INDEX', 'symbol': '^N225', 'language': 'en-US', 'market': 'jp_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.6695495, 'fmt': '0.67%'}, 'fullExchangeName': 'Osaka', 'tradeable': False}, 'GC=F': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CMX', 'regularMarketTime': {'raw': 1675699198, 'fmt': '10:59AM EST'}, 'shortName': 'Gold', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 2.2000732, 'fmt': '2.20'}, 'regularMarketPreviousClose': {'raw': 1862.9, 'fmt': '1,862.90'}, 'contractSymbol': False, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 10, 'customPriceAlertConfidence': 'NONE', 'regularMarketPrice': {'raw': 1878.8, 'fmt': '1,878.80'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 967608000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'FUTURE', 'symbol': 'GC=F', 'language': 'en-US', 'headSymbol': True, 'headSymbolAsString': 'GC=F', 'market': 'us24_market', 'typeDisp': 'Futures', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.117237195, 'fmt': '0.12%'}, 'fullExchangeName': 'COMEX', 'tradeable': False}, 'META': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 186.53, 'fmt': '186.53'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699798, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '88.09 - 238.3', 'fmt': '88.09 - 238.30'}, 'sharesOutstanding': {'raw': 2255320064, 'fmt': '2.255B', 'longFmt': '2,255,320,064'}, 'regularMarketDayHigh': {'raw': 190.7, 'fmt': '190.70'}, 'shortName': 'Meta Platforms, Inc.', 'longName': 'Meta Platforms, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 1.7200012, 'fmt': '1.72'}, 'regularMarketPreviousClose': {'raw': 186.53, 'fmt': '186.53'}, 'fiftyTwoWeekHighChange': {'raw': -50.050003, 'fmt': '-50.05'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 100.16, 'fmt': '100.16'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 185.8, 'fmt': '185.80'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 188.25, 'fmt': '188.25'}, 'regularMarketVolume': {'raw': 17715095, 'fmt': '17.715M', 'longFmt': '17,715,095'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1337347800000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 493629177856, 'fmt': '493.629B', 'longFmt': '493,629,177,856'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'META', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 1.137019, 'fmt': '113.70%'}, 'regularMarketDayRange': {'raw': '185.8 - 190.7', 'fmt': '185.80 - 190.70'}, 'messageBoardId': 'finmb_20765463', 'fiftyTwoWeekHigh': {'raw': 238.3, 'fmt': '238.30'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.21002938, 'fmt': '-21.00%'}, 'uuid': 'e59f1c4f-b1aa-3d70-a8c3-eb59ff3e461b', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 88.09, 'fmt': '88.09'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.92210436, 'fmt': '0.92%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, '^DJI': {'sourceInterval': 120, 'quoteSourceName': 'Free Realtime Quote', 'exchange': 'DJI', 'regularMarketTime': {'raw': 1675699798, 'fmt': '11:09AM EST'}, 'shortName': 'Dow 30', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -102.76172, 'fmt': '-102.76'}, 'regularMarketPreviousClose': {'raw': 33926.01, 'fmt': '33,926.01'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 33823.25, 'fmt': '33,823.25'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 694362600000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^DJI', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.30289948, 'fmt': '-0.30%'}, 'fullExchangeName': 'DJI', 'tradeable': False}, 'GPRO': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.64, 'fmt': '5.64'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699789, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.5 - 9.42', 'fmt': '4.50 - 9.42'}, 'sharesOutstanding': {'raw': 129668000, 'fmt': '129.668M', 'longFmt': '129,668,000'}, 'regularMarketDayHigh': {'raw': 5.76, 'fmt': '5.76'}, 'shortName': 'GoPro, Inc.', 'longName': 'GoPro, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.19000006, 'fmt': '-0.19'}, 'regularMarketPreviousClose': {'raw': 5.69, 'fmt': '5.69'}, 'fiftyTwoWeekHighChange': {'raw': -3.92, 'fmt': '-3.92'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1, 'fmt': '1.00'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.475, 'fmt': '5.47'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.5, 'fmt': '5.50'}, 'regularMarketVolume': {'raw': 1031197, 'fmt': '1.031M', 'longFmt': '1,031,197'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1403789400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 857598528, 'fmt': '857.599M', 'longFmt': '857,598,528'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'GPRO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.22222222, 'fmt': '22.22%'}, 'regularMarketDayRange': {'raw': '5.475 - 5.76', 'fmt': '5.47 - 5.76'}, 'messageBoardId': 'finmb_113665065', 'fiftyTwoWeekHigh': {'raw': 9.42, 'fmt': '9.42'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.41613588, 'fmt': '-41.61%'}, 'uuid': 'd831d8ea-3a6d-36de-af60-081896d375cd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.5, 'fmt': '4.50'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.3391926, 'fmt': '-3.34%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'SONY': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 90.86, 'fmt': '90.86'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675699786, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '61.72 - 111.98', 'fmt': '61.72 - 111.98'}, 'sharesOutstanding': {'raw': 1234690048, 'fmt': '1.235B', 'longFmt': '1,234,690,048'}, 'regularMarketDayHigh': {'raw': 90.84, 'fmt': '90.84'}, 'shortName': 'Sony Group Corporation', 'longName': 'Sony Group Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -3.3899994, 'fmt': '-3.39'}, 'regularMarketPreviousClose': {'raw': 93.13, 'fmt': '93.13'}, 'fiftyTwoWeekHighChange': {'raw': -22.240005, 'fmt': '-22.24'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 28.019997, 'fmt': '28.02'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 89.6211, 'fmt': '89.62'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 89.74, 'fmt': '89.74'}, 'regularMarketVolume': {'raw': 236011, 'fmt': '236,011', 'longFmt': '236,011'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 99153000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 110801084416, 'fmt': '110.801B', 'longFmt': '110,801,084,416'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SONY', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.4539857, 'fmt': '45.40%'}, 'regularMarketDayRange': {'raw': '89.6211 - 90.84', 'fmt': '89.62 - 90.84'}, 'messageBoardId': 'finmb_23021', 'fiftyTwoWeekHigh': {'raw': 111.98, 'fmt': '111.98'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.19860694, 'fmt': '-19.86%'}, 'uuid': '51ec1656-6a66-39d0-8159-ed49cf2f2289', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 61.72, 'fmt': '61.72'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.6400726, 'fmt': '-3.64%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, '^IXIC': {'sourceInterval': 15, 'quoteSourceName': 'Free Realtime Quote', 'exchange': 'NIM', 'regularMarketTime': {'raw': 1675699797, 'fmt': '11:09AM EST'}, 'shortName': 'Nasdaq', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -88.2666, 'fmt': '-88.27'}, 'regularMarketPreviousClose': {'raw': 12006.955, 'fmt': '12,006.96'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 11918.688, 'fmt': '11,918.69'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 34612200000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^IXIC', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.73512894, 'fmt': '-0.74%'}, 'fullExchangeName': 'Nasdaq GIDS', 'tradeable': False}, 'LPL': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 5.52, 'fmt': '5.52'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675698891, 'fmt': '10:54AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.08 - 8.53', 'fmt': '4.08 - 8.53'}, 'sharesOutstanding': {'raw': 715630976, 'fmt': '715.631M', 'longFmt': '715,630,976'}, 'regularMarketDayHigh': {'raw': 5.52, 'fmt': '5.52'}, 'shortName': 'LG Display Co, Ltd AMERICAN DEP', 'longName': 'LG Display Co., Ltd.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.1949997, 'fmt': '-0.19'}, 'regularMarketPreviousClose': {'raw': 5.68, 'fmt': '5.68'}, 'fiftyTwoWeekHighChange': {'raw': -3.0449996, 'fmt': '-3.04'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1.4050002, 'fmt': '1.41'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.46, 'fmt': '5.46'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.485, 'fmt': '5.49'}, 'regularMarketVolume': {'raw': 76349, 'fmt': '76,349', 'longFmt': '76,349'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1090503000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 3925235968, 'fmt': '3.925B', 'longFmt': '3,925,235,968'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'LPL', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.3443628, 'fmt': '34.44%'}, 'regularMarketDayRange': {'raw': '5.46 - 5.52', 'fmt': '5.46 - 5.52'}, 'messageBoardId': 'finmb_5471044', 'fiftyTwoWeekHigh': {'raw': 8.53, 'fmt': '8.53'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.35697535, 'fmt': '-35.70%'}, 'uuid': '78df0a6f-207d-3a77-adfe-657f86e6d5c9', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.08, 'fmt': '4.08'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.4330935, 'fmt': '-3.43%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, 'SSNLF': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 40.5999, 'fmt': '40.60'}, 'exchange': 'PNK', 'regularMarketTime': {'raw': 1664306331, 'fmt': '3:18PM EDT'}, 'fiftyTwoWeekRange': {'raw': '40.5999 - 57.75', 'fmt': '40.60 - 57.75'}, 'sharesOutstanding': {'raw': 5969780224, 'fmt': '5.97B', 'longFmt': '5,969,780,224'}, 'regularMarketDayHigh': {'raw': 40.5999, 'fmt': '40.60'}, 'shortName': 'SAMSUNG ELECTRONICS CO', 'longName': 'Samsung Electronics Co., Ltd.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0, 'fmt': '0.00'}, 'regularMarketPreviousClose': {'raw': 40.5999, 'fmt': '40.60'}, 'fiftyTwoWeekHighChange': {'raw': -17.1501, 'fmt': '-17.15'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 0, 'fmt': '0.00'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketDayLow': {'raw': 40.5999, 'fmt': '40.60'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 40.5999, 'fmt': '40.60'}, 'regularMarketVolume': {'raw': 200, 'fmt': '200', 'longFmt': '200'}, 'isLoading': False, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 997104600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 301846429696, 'fmt': '301.846B', 'longFmt': '301,846,429,696'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SSNLF', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0, 'fmt': '0.00%'}, 'regularMarketDayRange': {'raw': '40.5999 - 40.5999', 'fmt': '40.60 - 40.60'}, 'messageBoardId': 'finmb_91868', 'fiftyTwoWeekHigh': {'raw': 57.75, 'fmt': '57.75'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.29697144, 'fmt': '-29.70%'}, 'uuid': '5f5ae02b-3a86-367d-b20b-055520cea9ae', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 40.5999, 'fmt': '40.60'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0, 'fmt': '0.00%'}, 'fullExchangeName': 'Other OTC', 'tradeable': False}, 'VZIO': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 9.44, 'fmt': '9.44'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675699688, 'fmt': '11:08AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.47 - 15.42', 'fmt': '6.47 - 15.42'}, 'sharesOutstanding': {'raw': 117636000, 'fmt': '117.636M', 'longFmt': '117,636,000'}, 'regularMarketDayHigh': {'raw': 9.505, 'fmt': '9.51'}, 'shortName': 'VIZIO Holding Corp.', 'longName': 'VIZIO Holding Corp.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.34999943, 'fmt': '-0.35'}, 'regularMarketPreviousClose': {'raw': 9.57, 'fmt': '9.57'}, 'fiftyTwoWeekHighChange': {'raw': -6.2, 'fmt': '-6.20'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.7500005, 'fmt': '2.75'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 9.13, 'fmt': '9.13'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 9.22, 'fmt': '9.22'}, 'regularMarketVolume': {'raw': 45393, 'fmt': '45,393', 'longFmt': '45,393'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1616765400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1792829056, 'fmt': '1.793B', 'longFmt': '1,792,829,056'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'VZIO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.42503873, 'fmt': '42.50%'}, 'regularMarketDayRange': {'raw': '9.13 - 9.505', 'fmt': '9.13 - 9.51'}, 'messageBoardId': 'finmb_27650657', 'fiftyTwoWeekHigh': {'raw': 15.42, 'fmt': '15.42'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.4020752, 'fmt': '-40.21%'}, 'uuid': '98dc8f95-157e-3c62-b8f9-ea5c671822cd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.47, 'fmt': '6.47'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.6572564, 'fmt': '-3.66%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, 'BTC-USD': {'sourceInterval': 15, 'quoteSourceName': 'CoinMarketCap', 'exchange': 'CCC', 'regularMarketTime': {'raw': 1675699620, 'fmt': '4:07PM UTC'}, 'exchangeTimezoneName': 'UTC', 'regularMarketChange': {'raw': -65.80469, 'fmt': '-65.80'}, 'regularMarketPreviousClose': {'raw': 22959.066, 'fmt': '22,959.07'}, 'exchangeTimezoneShortName': 'UTC', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketPrice': {'raw': 23061.99, 'fmt': '23,061.99'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 1410912000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'CRYPTOCURRENCY', 'symbol': 'BTC-USD', 'language': 'en-US', 'market': 'ccc_market', 'typeDisp': 'Cryptocurrency', 'cryptoTradeable': True, 'regularMarketChangePercent': {'raw': -0.284531, 'fmt': '-0.28%'}, 'fullExchangeName': 'CCC', 'tradeable': False}, 'GBPUSD=X': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CCY', 'regularMarketTime': {'raw': 1675699793, 'fmt': '4:09PM GMT'}, 'shortName': 'GBP/USD', 'exchangeTimezoneName': 'Europe/London', 'regularMarketChange': {'raw': -0.0043450594, 'fmt': '-0.0043'}, 'regularMarketPreviousClose': {'raw': 1.2056472, 'fmt': '1.2056'}, 'exchangeTimezoneShortName': 'GMT', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 4, 'currency': 'USD', 'regularMarketPrice': {'raw': 1.2013022, 'fmt': '1.2013'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 1070236800000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'CURRENCY', 'symbol': 'GBPUSD=X', 'language': 'en-US', 'market': 'ccy_market', 'typeDisp': 'Currency', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.36039317, 'fmt': '-0.36%'}, 'fullExchangeName': 'CCY', 'tradeable': False}, 'HEAR': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 9.29, 'fmt': '9.29'}, 'exchange': 'NGM', 'regularMarketTime': {'raw': 1675699651, 'fmt': '11:07AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.22 - 25.33', 'fmt': '6.22 - 25.33'}, 'sharesOutstanding': {'raw': 16557000, 'fmt': '16.557M', 'longFmt': '16,557,000'}, 'regularMarketDayHigh': {'raw': 9.29, 'fmt': '9.29'}, 'shortName': 'Turtle Beach Corporation', 'longName': 'Turtle Beach Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.28999996, 'fmt': '-0.29'}, 'regularMarketPreviousClose': {'raw': 9.33, 'fmt': '9.33'}, 'fiftyTwoWeekHighChange': {'raw': -16.29, 'fmt': '-16.29'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.8200002, 'fmt': '2.82'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 8.94, 'fmt': '8.94'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 9.04, 'fmt': '9.04'}, 'regularMarketVolume': {'raw': 23439, 'fmt': '23,439', 'longFmt': '23,439'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1289831400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 149675280, 'fmt': '149.675M', 'longFmt': '149,675,280'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'HEAR', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.45337626, 'fmt': '45.34%'}, 'regularMarketDayRange': {'raw': '8.94 - 9.29', 'fmt': '8.94 - 9.29'}, 'messageBoardId': 'finmb_851282', 'fiftyTwoWeekHigh': {'raw': 25.33, 'fmt': '25.33'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.643111, 'fmt': '-64.31%'}, 'uuid': '58194bdb-92f1-3b95-b21e-5b66d5d67f2f', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.22, 'fmt': '6.22'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.1082525, 'fmt': '-3.11%'}, 'fullExchangeName': 'NasdaqGM', 'tradeable': False}, 'VUZI': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.66, 'fmt': '5.66'}, 'exchange': 'NCM', 'regularMarketTime': {'raw': 1675699794, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '3.27 - 10.49', 'fmt': '3.27 - 10.49'}, 'sharesOutstanding': {'raw': 63739600, 'fmt': '63.74M', 'longFmt': '63,739,600'}, 'regularMarketDayHigh': {'raw': 5.8, 'fmt': '5.80'}, 'shortName': 'Vuzix Corporation', 'longName': 'Vuzix Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.17000008, 'fmt': '-0.17'}, 'regularMarketPreviousClose': {'raw': 5.75, 'fmt': '5.75'}, 'fiftyTwoWeekHighChange': {'raw': -4.91, 'fmt': '-4.91'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.31, 'fmt': '2.31'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.49, 'fmt': '5.49'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.58, 'fmt': '5.58'}, 'regularMarketVolume': {'raw': 367918, 'fmt': '367,918', 'longFmt': '367,918'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1270474200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 355666976, 'fmt': '355.667M', 'longFmt': '355,666,976'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'VUZI', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.70642203, 'fmt': '70.64%'}, 'regularMarketDayRange': {'raw': '5.49 - 5.8', 'fmt': '5.49 - 5.80'}, 'messageBoardId': 'finmb_13610016', 'fiftyTwoWeekHigh': {'raw': 10.49, 'fmt': '10.49'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.4680648, 'fmt': '-46.81%'}, 'uuid': 'b42c8863-c6d0-341b-9d51-442783839350', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 3.27, 'fmt': '3.27'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -2.956523, 'fmt': '-2.96%'}, 'fullExchangeName': 'NasdaqCM', 'tradeable': False}, 'JPY=X': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CCY', 'regularMarketTime': {'raw': 1675699797, 'fmt': '4:09PM GMT'}, 'shortName': 'USD/JPY', 'exchangeTimezoneName': 'Europe/London', 'regularMarketChange': {'raw': 1.7030029, 'fmt': '1.7030'}, 'regularMarketPreviousClose': {'raw': 131.15, 'fmt': '131.1500'}, 'exchangeTimezoneShortName': 'GMT', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 4, 'currency': 'JPY', 'regularMarketPrice': {'raw': 132.853, 'fmt': '132.8530'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 846633600000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'CURRENCY', 'symbol': 'JPY=X', 'language': 'en-US', 'market': 'ccy_market', 'typeDisp': 'Currency', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 1.2985154, 'fmt': '1.30%'}, 'fullExchangeName': 'CCY', 'tradeable': False}, 'PCRFY': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 8.62, 'fmt': '8.62'}, 'exchange': 'PNK', 'regularMarketTime': {'raw': 1675698716, 'fmt': '10:51AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.66 - 10.89', 'fmt': '6.66 - 10.89'}, 'sharesOutstanding': {'raw': 2334089984, 'fmt': '2.334B', 'longFmt': '2,334,089,984'}, 'regularMarketDayHigh': {'raw': 8.745, 'fmt': '8.74'}, 'shortName': 'PANASONIC HOLDINGS CORP ADR-EAC', 'longName': 'Panasonic Holdings Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.08000088, 'fmt': '-0.08'}, 'regularMarketPreviousClose': {'raw': 8.77, 'fmt': '8.77'}, 'fiftyTwoWeekHighChange': {'raw': -2.2000008, 'fmt': '-2.20'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.0299997, 'fmt': '2.03'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketDayLow': {'raw': 8.62, 'fmt': '8.62'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 8.69, 'fmt': '8.69'}, 'regularMarketVolume': {'raw': 47805, 'fmt': '47,805', 'longFmt': '47,805'}, 'isLoading': False, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 322151400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 20283240448, 'fmt': '20.283B', 'longFmt': '20,283,240,448'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'PCRFY', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.30480477, 'fmt': '30.48%'}, 'regularMarketDayRange': {'raw': '8.62 - 8.745', 'fmt': '8.62 - 8.74'}, 'messageBoardId': 'finmb_320433', 'fiftyTwoWeekHigh': {'raw': 10.89, 'fmt': '10.89'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.20202027, 'fmt': '-20.20%'}, 'uuid': '01e8db59-6c12-3ae1-a223-b71412148081', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.66, 'fmt': '6.66'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.91221064, 'fmt': '-0.91%'}, 'fullExchangeName': 'Other OTC', 'tradeable': False}, 'CL=F': {'sourceInterval': 30, 'quoteSourceName': 'Delayed Quote', 'exchange': 'NYM', 'regularMarketTime': {'raw': 1675699198, 'fmt': '10:59AM EST'}, 'shortName': 'Crude Oil', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.94999695, 'fmt': '-0.95'}, 'regularMarketPreviousClose': {'raw': 73.39, 'fmt': '73.39'}, 'contractSymbol': False, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 10, 'customPriceAlertConfidence': 'NONE', 'regularMarketPrice': {'raw': 72.44, 'fmt': '72.44'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 967003200000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'FUTURE', 'symbol': 'CL=F', 'language': 'en-US', 'headSymbol': True, 'headSymbolAsString': 'CL=F', 'market': 'us24_market', 'typeDisp': 'Futures', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.2944502, 'fmt': '-1.29%'}, 'fullExchangeName': 'NY Mercantile', 'tradeable': False}, '^RUT': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'WCB', 'regularMarketTime': {'raw': 1675698895, 'fmt': '10:54AM EST'}, 'shortName': 'Russell 2000', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -23.100708, 'fmt': '-23.10'}, 'regularMarketPreviousClose': {'raw': 1985.5343, 'fmt': '1,985.53'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 15, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 1962.4336, 'fmt': '1,962.43'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 558279000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^RUT', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.1634505, 'fmt': '-1.16%'}, 'fullExchangeName': 'Chicago Options', 'tradeable': False}, 'TSLA': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 193.01, 'fmt': '193.01'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699798, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '101.81 - 384.29', 'fmt': '101.81 - 384.29'}, 'sharesOutstanding': {'raw': 3164100096, 'fmt': '3.164B', 'longFmt': '3,164,100,096'}, 'regularMarketDayHigh': {'raw': 198.16, 'fmt': '198.16'}, 'shortName': 'Tesla, Inc.', 'longName': 'Tesla, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 4.720108, 'fmt': '4.72'}, 'regularMarketPreviousClose': {'raw': 189.98, 'fmt': '189.98'}, 'fiftyTwoWeekHighChange': {'raw': -189.5899, 'fmt': '-189.59'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 92.89011, 'fmt': '92.89'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 189.92, 'fmt': '189.92'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 194.7001, 'fmt': '194.70'}, 'regularMarketVolume': {'raw': 86577340, 'fmt': '86.577M', 'longFmt': '86,577,340'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1277818200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 616050589696, 'fmt': '616.051B', 'longFmt': '616,050,589,696'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'TSLA', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.9123869, 'fmt': '91.24%'}, 'regularMarketDayRange': {'raw': '189.92 - 198.16', 'fmt': '189.92 - 198.16'}, 'messageBoardId': 'finmb_27444752', 'fiftyTwoWeekHigh': {'raw': 384.29, 'fmt': '384.29'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.4933511, 'fmt': '-49.34%'}, 'uuid': 'ec367bc4-f92c-397c-ac81-bf7b43cffaf7', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 101.81, 'fmt': '101.81'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 2.484529, 'fmt': '2.48%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, '^CMC200': {'sourceInterval': 15, 'quoteSourceName': 'Free Realtime Quote', 'exchange': 'NIM', 'regularMarketTime': {'raw': 1675699637, 'fmt': '11:07AM EST'}, 'shortName': 'CMC Crypto 200', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 4.818054, 'fmt': '4.82'}, 'regularMarketPreviousClose': {'raw': 525.1342, 'fmt': '525.13'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 529.9523, 'fmt': '529.95'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1546266600000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^CMC200', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.91749, 'fmt': '0.92%'}, 'fullExchangeName': 'Nasdaq GIDS', 'tradeable': False}, 'AAPL': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 152.575, 'fmt': '152.57'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699797, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '124.17 - 179.61', 'fmt': '124.17 - 179.61'}, 'sharesOutstanding': {'raw': 15821899776, 'fmt': '15.822B', 'longFmt': '15,821,899,776'}, 'regularMarketDayHigh': {'raw': 153.1, 'fmt': '153.10'}, 'shortName': 'Apple Inc.', 'longName': 'Apple Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.2700043, 'fmt': '-2.27'}, 'regularMarketPreviousClose': {'raw': 154.5, 'fmt': '154.50'}, 'fiftyTwoWeekHighChange': {'raw': -27.380005, 'fmt': '-27.38'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 28.059998, 'fmt': '28.06'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 150.9, 'fmt': '150.90'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 152.23, 'fmt': '152.23'}, 'regularMarketVolume': {'raw': 27886696, 'fmt': '27.887M', 'longFmt': '27,886,696'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 345479400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 2408567799808, 'fmt': '2.409T', 'longFmt': '2,408,567,799,808'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [{'header': 'Dividend', 'message': 'AAPL announced a cash dividend of 0.23 with an ex-date of Feb. 10, 2023', 'meta': {'eventType': 'DIVIDEND', 'dateEpochMs': 1675969200000}}], 'symbol': 'AAPL', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.22598049, 'fmt': '22.60%'}, 'regularMarketDayRange': {'raw': '150.9 - 153.1', 'fmt': '150.90 - 153.10'}, 'messageBoardId': 'finmb_24937', 'fiftyTwoWeekHigh': {'raw': 179.61, 'fmt': '179.61'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.15244143, 'fmt': '-15.24%'}, 'uuid': '8b10e4ae-9eeb-3684-921a-9ab27e4d87aa', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 124.17, 'fmt': '124.17'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.4692584, 'fmt': '-1.47%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, 'SONO': {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 18.66, 'fmt': '18.66'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699680, 'fmt': '11:08AM EST'}, 'fiftyTwoWeekRange': {'raw': '13.65 - 31.22', 'fmt': '13.65 - 31.22'}, 'sharesOutstanding': {'raw': 127345000, 'fmt': '127.345M', 'longFmt': '127,345,000'}, 'regularMarketDayHigh': {'raw': 18.66, 'fmt': '18.66'}, 'shortName': 'Sonos, Inc.', 'longName': 'Sonos, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.7350006, 'fmt': '-0.74'}, 'regularMarketPreviousClose': {'raw': 18.91, 'fmt': '18.91'}, 'fiftyTwoWeekHighChange': {'raw': -13.045, 'fmt': '-13.05'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 4.5249996, 'fmt': '4.52'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 18.14, 'fmt': '18.14'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 18.175, 'fmt': '18.17'}, 'regularMarketVolume': {'raw': 510481, 'fmt': '510,481', 'longFmt': '510,481'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1533216600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 2314495232, 'fmt': '2.314B', 'longFmt': '2,314,495,232'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SONO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.3315018, 'fmt': '33.15%'}, 'regularMarketDayRange': {'raw': '18.14 - 18.66', 'fmt': '18.14 - 18.66'}, 'messageBoardId': 'finmb_10654809', 'fiftyTwoWeekHigh': {'raw': 31.22, 'fmt': '31.22'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.41784114, 'fmt': '-41.78%'}, 'uuid': '98c419db-3a58-3f86-8eb4-a664481f7d12', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 13.65, 'fmt': '13.65'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.8868356, 'fmt': '-3.89%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, '^GSPC': {'sourceInterval': 15, 'quoteSourceName': 'Free Realtime Quote', 'exchange': 'SNP', 'regularMarketTime': {'raw': 1675699797, 'fmt': '11:09AM EST'}, 'shortName': 'S&P 500', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -23.339844, 'fmt': '-23.34'}, 'regularMarketPreviousClose': {'raw': 4136.48, 'fmt': '4,136.48'}, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 4113.14, 'fmt': '4,113.14'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': -1325583000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^GSPC', 'language': 'en-US', 'market': 'us_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.5642441, 'fmt': '-0.56%'}, 'fullExchangeName': 'SNP', 'tradeable': False}, '^FTSE': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'FGI', 'regularMarketTime': {'raw': 1675698897, 'fmt': '3:54PM GMT'}, 'shortName': 'FTSE 100', 'exchangeTimezoneName': 'Europe/London', 'regularMarketChange': {'raw': -70.36963, 'fmt': '-70.37'}, 'regularMarketPreviousClose': {'raw': 7901.8, 'fmt': '7,901.80'}, 'exchangeTimezoneShortName': 'GMT', 'exchangeDataDelayedBy': 15, 'customPriceAlertConfidence': 'LOW', 'priceHint': 2, 'regularMarketPrice': {'raw': 7831.43, 'fmt': '7,831.43'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 441964800000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'INDEX', 'symbol': '^FTSE', 'language': 'en-US', 'market': 'gb_market', 'typeDisp': 'Index', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.89055187, 'fmt': '-0.89%'}, 'fullExchangeName': 'FTSE Index', 'tradeable': False}, 'SI=F': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CMX', 'regularMarketTime': {'raw': 1675699198, 'fmt': '10:59AM EST'}, 'shortName': 'Silver', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.125, 'fmt': '-0.12'}, 'regularMarketPreviousClose': {'raw': 22.405, 'fmt': '22.41'}, 'contractSymbol': False, 'exchangeTimezoneShortName': 'EST', 'exchangeDataDelayedBy': 10, 'customPriceAlertConfidence': 'NONE', 'regularMarketPrice': {'raw': 22.28, 'fmt': '22.28'}, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 967608000000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'FUTURE', 'symbol': 'SI=F', 'language': 'en-US', 'headSymbol': True, 'headSymbolAsString': 'SI=F', 'market': 'us24_market', 'typeDisp': 'Futures', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.55791116, 'fmt': '-0.56%'}, 'fullExchangeName': 'COMEX', 'tradeable': False}, 'EURUSD=X': {'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'exchange': 'CCY', 'regularMarketTime': {'raw': 1675699793, 'fmt': '4:09PM GMT'}, 'shortName': 'EUR/USD', 'exchangeTimezoneName': 'Europe/London', 'regularMarketChange': {'raw': -0.0061432123, 'fmt': '-0.0061'}, 'regularMarketPreviousClose': {'raw': 1.0796804, 'fmt': '1.0797'}, 'exchangeTimezoneShortName': 'GMT', 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'priceHint': 4, 'currency': 'USD', 'regularMarketPrice': {'raw': 1.0735372, 'fmt': '1.0735'}, 'triggerable': False, 'gmtOffSetMilliseconds': 0, 'firstTradeDateMilliseconds': 1070236800000, 'region': 'US', 'marketState': 'REGULAR', 'quoteType': 'CURRENCY', 'symbol': 'EURUSD=X', 'language': 'en-US', 'market': 'ccy_market', 'typeDisp': 'Currency', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.5689796, 'fmt': '-0.57%'}, 'fullExchangeName': 'CCY', 'tradeable': False}}, 'mktmData': {}}, 'QuoteSummaryStore': {'financialsTemplate': {'code': 'N', 'maxAge': 1}, 'cashflowStatementHistory': {'cashflowStatements': [{'investments': {'raw': -9560000000, 'fmt': '-9.56B', 'longFmt': '-9,560,000,000'}, 'changeToLiabilities': {'raw': 9926000000, 'fmt': '9.93B', 'longFmt': '9,926,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -22354000000, 'fmt': '-22.35B', 'longFmt': '-22,354,000,000'}, 'netBorrowings': {'raw': -123000000, 'fmt': '-123M', 'longFmt': '-123,000,000'}, 'totalCashFromFinancingActivities': {'raw': -110749000000, 'fmt': '-110.75B', 'longFmt': '-110,749,000,000'}, 'changeToOperatingActivities': {'raw': -8387000000, 'fmt': '-8.39B', 'longFmt': '-8,387,000,000'}, 'netIncome': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}, 'changeInCash': {'raw': -10952000000, 'fmt': '-10.95B', 'longFmt': '-10,952,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'repurchaseOfStock': {'raw': -95625000000, 'fmt': '-95.62B', 'longFmt': '-95,625,000,000'}, 'totalCashFromOperatingActivities': {'raw': 122151000000, 'fmt': '122.15B', 'longFmt': '122,151,000,000'}, 'depreciation': {'raw': 11104000000, 'fmt': '11.1B', 'longFmt': '11,104,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -1780000000, 'fmt': '-1.78B', 'longFmt': '-1,780,000,000'}, 'dividendsPaid': {'raw': -14841000000, 'fmt': '-14.84B', 'longFmt': '-14,841,000,000'}, 'changeToInventory': {'raw': 1484000000, 'fmt': '1.48B', 'longFmt': '1,484,000,000'}, 'changeToAccountReceivables': {'raw': -1823000000, 'fmt': '-1.82B', 'longFmt': '-1,823,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -160000000, 'fmt': '-160M', 'longFmt': '-160,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 10044000000, 'fmt': '10.04B', 'longFmt': '10,044,000,000'}, 'capitalExpenditures': {'raw': -10708000000, 'fmt': '-10.71B', 'longFmt': '-10,708,000,000'}}, {'investments': {'raw': -3075000000, 'fmt': '-3.08B', 'longFmt': '-3,075,000,000'}, 'changeToLiabilities': {'raw': 14002000000, 'fmt': '14B', 'longFmt': '14,002,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -14545000000, 'fmt': '-14.54B', 'longFmt': '-14,545,000,000'}, 'netBorrowings': {'raw': 12665000000, 'fmt': '12.66B', 'longFmt': '12,665,000,000'}, 'totalCashFromFinancingActivities': {'raw': -93353000000, 'fmt': '-93.35B', 'longFmt': '-93,353,000,000'}, 'changeToOperatingActivities': {'raw': -6146000000, 'fmt': '-6.15B', 'longFmt': '-6,146,000,000'}, 'netIncome': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}, 'changeInCash': {'raw': -3860000000, 'fmt': '-3.86B', 'longFmt': '-3,860,000,000'}, 'endDate': {'raw': 1632528000, 'fmt': '2021-09-25'}, 'repurchaseOfStock': {'raw': -92527000000, 'fmt': '-92.53B', 'longFmt': '-92,527,000,000'}, 'totalCashFromOperatingActivities': {'raw': 104038000000, 'fmt': '104.04B', 'longFmt': '104,038,000,000'}, 'depreciation': {'raw': 11284000000, 'fmt': '11.28B', 'longFmt': '11,284,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -352000000, 'fmt': '-352M', 'longFmt': '-352,000,000'}, 'dividendsPaid': {'raw': -14467000000, 'fmt': '-14.47B', 'longFmt': '-14,467,000,000'}, 'changeToInventory': {'raw': -2642000000, 'fmt': '-2.64B', 'longFmt': '-2,642,000,000'}, 'changeToAccountReceivables': {'raw': -10125000000, 'fmt': '-10.12B', 'longFmt': '-10,125,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': 976000000, 'fmt': '976M', 'longFmt': '976,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 2985000000, 'fmt': '2.98B', 'longFmt': '2,985,000,000'}, 'capitalExpenditures': {'raw': -11085000000, 'fmt': '-11.09B', 'longFmt': '-11,085,000,000'}}, {'investments': {'raw': 5453000000, 'fmt': '5.45B', 'longFmt': '5,453,000,000'}, 'changeToLiabilities': {'raw': -1981000000, 'fmt': '-1.98B', 'longFmt': '-1,981,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -4289000000, 'fmt': '-4.29B', 'longFmt': '-4,289,000,000'}, 'netBorrowings': {'raw': 2499000000, 'fmt': '2.5B', 'longFmt': '2,499,000,000'}, 'totalCashFromFinancingActivities': {'raw': -86820000000, 'fmt': '-86.82B', 'longFmt': '-86,820,000,000'}, 'changeToOperatingActivities': {'raw': 881000000, 'fmt': '881M', 'longFmt': '881,000,000'}, 'netIncome': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}, 'changeInCash': {'raw': -10435000000, 'fmt': '-10.44B', 'longFmt': '-10,435,000,000'}, 'endDate': {'raw': 1601078400, 'fmt': '2020-09-26'}, 'repurchaseOfStock': {'raw': -75992000000, 'fmt': '-75.99B', 'longFmt': '-75,992,000,000'}, 'totalCashFromOperatingActivities': {'raw': 80674000000, 'fmt': '80.67B', 'longFmt': '80,674,000,000'}, 'depreciation': {'raw': 11056000000, 'fmt': '11.06B', 'longFmt': '11,056,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -909000000, 'fmt': '-909M', 'longFmt': '-909,000,000'}, 'dividendsPaid': {'raw': -14081000000, 'fmt': '-14.08B', 'longFmt': '-14,081,000,000'}, 'changeToInventory': {'raw': -127000000, 'fmt': '-127M', 'longFmt': '-127,000,000'}, 'changeToAccountReceivables': {'raw': 6917000000, 'fmt': '6.92B', 'longFmt': '6,917,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': 754000000, 'fmt': '754M', 'longFmt': '754,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 6517000000, 'fmt': '6.52B', 'longFmt': '6,517,000,000'}, 'capitalExpenditures': {'raw': -7309000000, 'fmt': '-7.31B', 'longFmt': '-7,309,000,000'}}, {'investments': {'raw': 58093000000, 'fmt': '58.09B', 'longFmt': '58,093,000,000'}, 'changeToLiabilities': {'raw': -2548000000, 'fmt': '-2.55B', 'longFmt': '-2,548,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': 45896000000, 'fmt': '45.9B', 'longFmt': '45,896,000,000'}, 'netBorrowings': {'raw': -7819000000, 'fmt': '-7.82B', 'longFmt': '-7,819,000,000'}, 'totalCashFromFinancingActivities': {'raw': -90976000000, 'fmt': '-90.98B', 'longFmt': '-90,976,000,000'}, 'changeToOperatingActivities': {'raw': -896000000, 'fmt': '-896M', 'longFmt': '-896,000,000'}, 'issuanceOfStock': {'raw': 781000000, 'fmt': '781M', 'longFmt': '781,000,000'}, 'netIncome': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}, 'changeInCash': {'raw': 24311000000, 'fmt': '24.31B', 'longFmt': '24,311,000,000'}, 'endDate': {'raw': 1569628800, 'fmt': '2019-09-28'}, 'repurchaseOfStock': {'raw': -69714000000, 'fmt': '-69.71B', 'longFmt': '-69,714,000,000'}, 'totalCashFromOperatingActivities': {'raw': 69391000000, 'fmt': '69.39B', 'longFmt': '69,391,000,000'}, 'depreciation': {'raw': 12547000000, 'fmt': '12.55B', 'longFmt': '12,547,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -1078000000, 'fmt': '-1.08B', 'longFmt': '-1,078,000,000'}, 'dividendsPaid': {'raw': -14119000000, 'fmt': '-14.12B', 'longFmt': '-14,119,000,000'}, 'changeToInventory': {'raw': -289000000, 'fmt': '-289M', 'longFmt': '-289,000,000'}, 'changeToAccountReceivables': {'raw': 245000000, 'fmt': '245M', 'longFmt': '245,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -105000000, 'fmt': '-105M', 'longFmt': '-105,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 5076000000, 'fmt': '5.08B', 'longFmt': '5,076,000,000'}, 'capitalExpenditures': {'raw': -10495000000, 'fmt': '-10.49B', 'longFmt': '-10,495,000,000'}}], 'maxAge': 86400}, 'balanceSheetHistoryQuarterly': {'balanceSheetStatements': [{'totalLiab': {'raw': 290020000000, 'fmt': '290.02B', 'longFmt': '290,020,000,000'}, 'totalStockholderEquity': {'raw': 56727000000, 'fmt': '56.73B', 'longFmt': '56,727,000,000'}, 'otherCurrentLiab': {'raw': 67885000000, 'fmt': '67.89B', 'longFmt': '67,885,000,000'}, 'totalAssets': {'raw': 346747000000, 'fmt': '346.75B', 'longFmt': '346,747,000,000'}, 'endDate': {'raw': 1672444800, 'fmt': '2022-12-31'}, 'commonStock': {'raw': 66399000000, 'fmt': '66.4B', 'longFmt': '66,399,000,000'}, 'otherCurrentAssets': {'raw': 16422000000, 'fmt': '16.42B', 'longFmt': '16,422,000,000'}, 'retainedEarnings': {'raw': 3240000000, 'fmt': '3.24B', 'longFmt': '3,240,000,000'}, 'otherLiab': {'raw': 53107000000, 'fmt': '53.11B', 'longFmt': '53,107,000,000'}, 'treasuryStock': {'raw': -12912000000, 'fmt': '-12.91B', 'longFmt': '-12,912,000,000'}, 'otherAssets': {'raw': 60924000000, 'fmt': '60.92B', 'longFmt': '60,924,000,000'}, 'cash': {'raw': 20535000000, 'fmt': '20.54B', 'longFmt': '20,535,000,000'}, 'totalCurrentLiabilities': {'raw': 137286000000, 'fmt': '137.29B', 'longFmt': '137,286,000,000'}, 'shortLongTermDebt': {'raw': 9740000000, 'fmt': '9.74B', 'longFmt': '9,740,000,000'}, 'otherStockholderEquity': {'raw': -12912000000, 'fmt': '-12.91B', 'longFmt': '-12,912,000,000'}, 'propertyPlantEquipment': {'raw': 42951000000, 'fmt': '42.95B', 'longFmt': '42,951,000,000'}, 'totalCurrentAssets': {'raw': 128777000000, 'fmt': '128.78B', 'longFmt': '128,777,000,000'}, 'longTermInvestments': {'raw': 114095000000, 'fmt': '114.09B', 'longFmt': '114,095,000,000'}, 'netTangibleAssets': {'raw': 56727000000, 'fmt': '56.73B', 'longFmt': '56,727,000,000'}, 'shortTermInvestments': {'raw': 30820000000, 'fmt': '30.82B', 'longFmt': '30,820,000,000'}, 'netReceivables': {'raw': 54180000000, 'fmt': '54.18B', 'longFmt': '54,180,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 99627000000, 'fmt': '99.63B', 'longFmt': '99,627,000,000'}, 'inventory': {'raw': 6820000000, 'fmt': '6.82B', 'longFmt': '6,820,000,000'}, 'accountsPayable': {'raw': 57918000000, 'fmt': '57.92B', 'longFmt': '57,918,000,000'}}, {'totalLiab': {'raw': 302083000000, 'fmt': '302.08B', 'longFmt': '302,083,000,000'}, 'totalStockholderEquity': {'raw': 50672000000, 'fmt': '50.67B', 'longFmt': '50,672,000,000'}, 'otherCurrentLiab': {'raw': 67094000000, 'fmt': '67.09B', 'longFmt': '67,094,000,000'}, 'totalAssets': {'raw': 352755000000, 'fmt': '352.75B', 'longFmt': '352,755,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'commonStock': {'raw': 64849000000, 'fmt': '64.85B', 'longFmt': '64,849,000,000'}, 'otherCurrentAssets': {'raw': 21223000000, 'fmt': '21.22B', 'longFmt': '21,223,000,000'}, 'retainedEarnings': {'raw': -3068000000, 'fmt': '-3.07B', 'longFmt': '-3,068,000,000'}, 'otherLiab': {'raw': 38394000000, 'fmt': '38.39B', 'longFmt': '38,394,000,000'}, 'treasuryStock': {'raw': -11109000000, 'fmt': '-11.11B', 'longFmt': '-11,109,000,000'}, 'otherAssets': {'raw': 44011000000, 'fmt': '44.01B', 'longFmt': '44,011,000,000'}, 'cash': {'raw': 23646000000, 'fmt': '23.65B', 'longFmt': '23,646,000,000'}, 'totalCurrentLiabilities': {'raw': 153982000000, 'fmt': '153.98B', 'longFmt': '153,982,000,000'}, 'shortLongTermDebt': {'raw': 11128000000, 'fmt': '11.13B', 'longFmt': '11,128,000,000'}, 'otherStockholderEquity': {'raw': -11109000000, 'fmt': '-11.11B', 'longFmt': '-11,109,000,000'}, 'propertyPlantEquipment': {'raw': 52534000000, 'fmt': '52.53B', 'longFmt': '52,534,000,000'}, 'totalCurrentAssets': {'raw': 135405000000, 'fmt': '135.41B', 'longFmt': '135,405,000,000'}, 'longTermInvestments': {'raw': 120805000000, 'fmt': '120.81B', 'longFmt': '120,805,000,000'}, 'netTangibleAssets': {'raw': 50672000000, 'fmt': '50.67B', 'longFmt': '50,672,000,000'}, 'shortTermInvestments': {'raw': 24658000000, 'fmt': '24.66B', 'longFmt': '24,658,000,000'}, 'netReceivables': {'raw': 60932000000, 'fmt': '60.93B', 'longFmt': '60,932,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 98959000000, 'fmt': '98.96B', 'longFmt': '98,959,000,000'}, 'inventory': {'raw': 4946000000, 'fmt': '4.95B', 'longFmt': '4,946,000,000'}, 'accountsPayable': {'raw': 64115000000, 'fmt': '64.11B', 'longFmt': '64,115,000,000'}}, {'totalLiab': {'raw': 278202000000, 'fmt': '278.2B', 'longFmt': '278,202,000,000'}, 'totalStockholderEquity': {'raw': 58107000000, 'fmt': '58.11B', 'longFmt': '58,107,000,000'}, 'otherCurrentLiab': {'raw': 56539000000, 'fmt': '56.54B', 'longFmt': '56,539,000,000'}, 'totalAssets': {'raw': 336309000000, 'fmt': '336.31B', 'longFmt': '336,309,000,000'}, 'endDate': {'raw': 1656115200, 'fmt': '2022-06-25'}, 'commonStock': {'raw': 62115000000, 'fmt': '62.12B', 'longFmt': '62,115,000,000'}, 'otherCurrentAssets': {'raw': 16386000000, 'fmt': '16.39B', 'longFmt': '16,386,000,000'}, 'retainedEarnings': {'raw': 5289000000, 'fmt': '5.29B', 'longFmt': '5,289,000,000'}, 'otherLiab': {'raw': 53629000000, 'fmt': '53.63B', 'longFmt': '53,629,000,000'}, 'treasuryStock': {'raw': -9297000000, 'fmt': '-9.3B', 'longFmt': '-9,297,000,000'}, 'otherAssets': {'raw': 52605000000, 'fmt': '52.6B', 'longFmt': '52,605,000,000'}, 'cash': {'raw': 27502000000, 'fmt': '27.5B', 'longFmt': '27,502,000,000'}, 'totalCurrentLiabilities': {'raw': 129873000000, 'fmt': '129.87B', 'longFmt': '129,873,000,000'}, 'shortLongTermDebt': {'raw': 14009000000, 'fmt': '14.01B', 'longFmt': '14,009,000,000'}, 'otherStockholderEquity': {'raw': -9297000000, 'fmt': '-9.3B', 'longFmt': '-9,297,000,000'}, 'propertyPlantEquipment': {'raw': 40335000000, 'fmt': '40.34B', 'longFmt': '40,335,000,000'}, 'totalCurrentAssets': {'raw': 112292000000, 'fmt': '112.29B', 'longFmt': '112,292,000,000'}, 'longTermInvestments': {'raw': 131077000000, 'fmt': '131.08B', 'longFmt': '131,077,000,000'}, 'netTangibleAssets': {'raw': 58107000000, 'fmt': '58.11B', 'longFmt': '58,107,000,000'}, 'shortTermInvestments': {'raw': 20729000000, 'fmt': '20.73B', 'longFmt': '20,729,000,000'}, 'netReceivables': {'raw': 42242000000, 'fmt': '42.24B', 'longFmt': '42,242,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 94700000000, 'fmt': '94.7B', 'longFmt': '94,700,000,000'}, 'inventory': {'raw': 5433000000, 'fmt': '5.43B', 'longFmt': '5,433,000,000'}, 'accountsPayable': {'raw': 48343000000, 'fmt': '48.34B', 'longFmt': '48,343,000,000'}}, {'totalLiab': {'raw': 283263000000, 'fmt': '283.26B', 'longFmt': '283,263,000,000'}, 'totalStockholderEquity': {'raw': 67399000000, 'fmt': '67.4B', 'longFmt': '67,399,000,000'}, 'otherCurrentLiab': {'raw': 58168000000, 'fmt': '58.17B', 'longFmt': '58,168,000,000'}, 'totalAssets': {'raw': 350662000000, 'fmt': '350.66B', 'longFmt': '350,662,000,000'}, 'endDate': {'raw': 1648252800, 'fmt': '2022-03-26'}, 'commonStock': {'raw': 61181000000, 'fmt': '61.18B', 'longFmt': '61,181,000,000'}, 'otherCurrentAssets': {'raw': 15809000000, 'fmt': '15.81B', 'longFmt': '15,809,000,000'}, 'retainedEarnings': {'raw': 12712000000, 'fmt': '12.71B', 'longFmt': '12,712,000,000'}, 'otherLiab': {'raw': 52432000000, 'fmt': '52.43B', 'longFmt': '52,432,000,000'}, 'treasuryStock': {'raw': -6494000000, 'fmt': '-6.49B', 'longFmt': '-6,494,000,000'}, 'otherAssets': {'raw': 51959000000, 'fmt': '51.96B', 'longFmt': '51,959,000,000'}, 'cash': {'raw': 28098000000, 'fmt': '28.1B', 'longFmt': '28,098,000,000'}, 'totalCurrentLiabilities': {'raw': 127508000000, 'fmt': '127.51B', 'longFmt': '127,508,000,000'}, 'shortLongTermDebt': {'raw': 9659000000, 'fmt': '9.66B', 'longFmt': '9,659,000,000'}, 'otherStockholderEquity': {'raw': -6494000000, 'fmt': '-6.49B', 'longFmt': '-6,494,000,000'}, 'propertyPlantEquipment': {'raw': 39304000000, 'fmt': '39.3B', 'longFmt': '39,304,000,000'}, 'totalCurrentAssets': {'raw': 118180000000, 'fmt': '118.18B', 'longFmt': '118,180,000,000'}, 'longTermInvestments': {'raw': 141219000000, 'fmt': '141.22B', 'longFmt': '141,219,000,000'}, 'netTangibleAssets': {'raw': 67399000000, 'fmt': '67.4B', 'longFmt': '67,399,000,000'}, 'shortTermInvestments': {'raw': 23413000000, 'fmt': '23.41B', 'longFmt': '23,413,000,000'}, 'netReceivables': {'raw': 45400000000, 'fmt': '45.4B', 'longFmt': '45,400,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 103323000000, 'fmt': '103.32B', 'longFmt': '103,323,000,000'}, 'inventory': {'raw': 5460000000, 'fmt': '5.46B', 'longFmt': '5,460,000,000'}, 'accountsPayable': {'raw': 52682000000, 'fmt': '52.68B', 'longFmt': '52,682,000,000'}}], 'maxAge': 86400}, 'earnings': {'maxAge': 86400, 'earningsChart': {'quarterly': [{'date': '1Q2022', 'actual': {'raw': 1.52, 'fmt': '1.52'}, 'estimate': {'raw': 1.43, 'fmt': '1.43'}}, {'date': '2Q2022', 'actual': {'raw': 1.2, 'fmt': '1.20'}, 'estimate': {'raw': 1.16, 'fmt': '1.16'}}, {'date': '3Q2022', 'actual': {'raw': 1.29, 'fmt': '1.29'}, 'estimate': {'raw': 1.27, 'fmt': '1.27'}}, {'date': '4Q2022', 'actual': {'raw': 1.88, 'fmt': '1.88'}, 'estimate': {'raw': 1.94, 'fmt': '1.94'}}], 'currentQuarterEstimate': {'raw': 1.43, 'fmt': '1.43'}, 'currentQuarterEstimateDate': '1Q', 'currentQuarterEstimateYear': 2023, 'earningsDate': [{'raw': 1682506740, 'fmt': '2023-04-26'}, {'raw': 1682942400, 'fmt': '2023-05-01'}]}, 'financialsChart': {'yearly': [{'date': 2019, 'revenue': {'raw': 260174000000, 'fmt': '260.17B', 'longFmt': '260,174,000,000'}, 'earnings': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}}, {'date': 2020, 'revenue': {'raw': 274515000000, 'fmt': '274.51B', 'longFmt': '274,515,000,000'}, 'earnings': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}}, {'date': 2021, 'revenue': {'raw': 365817000000, 'fmt': '365.82B', 'longFmt': '365,817,000,000'}, 'earnings': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}}, {'date': 2022, 'revenue': {'raw': 394328000000, 'fmt': '394.33B', 'longFmt': '394,328,000,000'}, 'earnings': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}}], 'quarterly': [{'date': '1Q2022', 'revenue': {'raw': 97278000000, 'fmt': '97.28B', 'longFmt': '97,278,000,000'}, 'earnings': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}}, {'date': '2Q2022', 'revenue': {'raw': 82959000000, 'fmt': '82.96B', 'longFmt': '82,959,000,000'}, 'earnings': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}}, {'date': '3Q2022', 'revenue': {'raw': 90146000000, 'fmt': '90.15B', 'longFmt': '90,146,000,000'}, 'earnings': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}}, {'date': '4Q2022', 'revenue': {'raw': 117154000000, 'fmt': '117.15B', 'longFmt': '117,154,000,000'}, 'earnings': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}}]}, 'financialCurrency': 'USD'}, 'price': {'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 152.575, 'fmt': '152.57'}, 'averageDailyVolume3Month': {'raw': 78381785, 'fmt': '78.38M', 'longFmt': '78,381,785'}, 'exchange': 'NMS', 'regularMarketTime': 1675699798, 'volume24Hr': {}, 'regularMarketDayHigh': {'raw': 153.1, 'fmt': '153.10'}, 'shortName': 'Apple Inc.', 'averageDailyVolume10Day': {'raw': 81876490, 'fmt': '81.88M', 'longFmt': '81,876,490'}, 'longName': 'Apple Inc.', 'regularMarketChange': {'raw': -2.2700043, 'fmt': '-2.27'}, 'currencySymbol': '$', 'regularMarketPreviousClose': {'raw': 154.5, 'fmt': '154.50'}, 'preMarketPrice': {'raw': 152.5, 'fmt': '152.50'}, 'preMarketTime': 1675693799, 'exchangeDataDelayedBy': 0, 'toCurrency': None, 'postMarketChange': {}, 'postMarketPrice': {}, 'exchangeName': 'NasdaqGS', 'preMarketChange': {'raw': -2, 'fmt': '-2.00'}, 'circulatingSupply': {}, 'regularMarketDayLow': {'raw': 150.9, 'fmt': '150.90'}, 'priceHint': {'raw': 2, 'fmt': '2', 'longFmt': '2'}, 'currency': 'USD', 'regularMarketPrice': {'raw': 152.23, 'fmt': '152.23'}, 'regularMarketVolume': {'raw': 27887979, 'fmt': '27.89M', 'longFmt': '27,887,979.00'}, 'lastMarket': None, 'regularMarketSource': 'FREE_REALTIME', 'openInterest': {}, 'marketState': 'REGULAR', 'underlyingSymbol': None, 'marketCap': {'raw': 2408567799808, 'fmt': '2.41T', 'longFmt': '2,408,567,799,808.00'}, 'quoteType': 'EQUITY', 'preMarketChangePercent': {'raw': -0.012945, 'fmt': '-1.29%'}, 'volumeAllCurrencies': {}, 'strikePrice': {}, 'symbol': 'AAPL', 'preMarketSource': 'FREE_REALTIME', 'maxAge': 1, 'fromCurrency': None, 'regularMarketChangePercent': {'raw': -0.014692584, 'fmt': '-1.47%'}}, 'incomeStatementHistoryQuarterly': {'incomeStatementHistory': [{'researchDevelopment': {'raw': 7709000000, 'fmt': '7.71B', 'longFmt': '7,709,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 35623000000, 'fmt': '35.62B', 'longFmt': '35,623,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}, 'sellingGeneralAdministrative': {'raw': 6607000000, 'fmt': '6.61B', 'longFmt': '6,607,000,000'}, 'grossProfit': {'raw': 50332000000, 'fmt': '50.33B', 'longFmt': '50,332,000,000'}, 'ebit': {'raw': 36016000000, 'fmt': '36.02B', 'longFmt': '36,016,000,000'}, 'endDate': {'raw': 1672444800, 'fmt': '2022-12-31'}, 'operatingIncome': {'raw': 36016000000, 'fmt': '36.02B', 'longFmt': '36,016,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -1003000000, 'fmt': '-1B', 'longFmt': '-1,003,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 5625000000, 'fmt': '5.62B', 'longFmt': '5,625,000,000'}, 'totalRevenue': {'raw': 117154000000, 'fmt': '117.15B', 'longFmt': '117,154,000,000'}, 'totalOperatingExpenses': {'raw': 81138000000, 'fmt': '81.14B', 'longFmt': '81,138,000,000'}, 'costOfRevenue': {'raw': 66822000000, 'fmt': '66.82B', 'longFmt': '66,822,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': -393000000, 'fmt': '-393M', 'longFmt': '-393,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}}, {'researchDevelopment': {'raw': 6761000000, 'fmt': '6.76B', 'longFmt': '6,761,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 24657000000, 'fmt': '24.66B', 'longFmt': '24,657,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}, 'sellingGeneralAdministrative': {'raw': 6440000000, 'fmt': '6.44B', 'longFmt': '6,440,000,000'}, 'grossProfit': {'raw': 38095000000, 'fmt': '38.09B', 'longFmt': '38,095,000,000'}, 'ebit': {'raw': 24894000000, 'fmt': '24.89B', 'longFmt': '24,894,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'operatingIncome': {'raw': 24894000000, 'fmt': '24.89B', 'longFmt': '24,894,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -827000000, 'fmt': '-827M', 'longFmt': '-827,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 3936000000, 'fmt': '3.94B', 'longFmt': '3,936,000,000'}, 'totalRevenue': {'raw': 90146000000, 'fmt': '90.15B', 'longFmt': '90,146,000,000'}, 'totalOperatingExpenses': {'raw': 65252000000, 'fmt': '65.25B', 'longFmt': '65,252,000,000'}, 'costOfRevenue': {'raw': 52051000000, 'fmt': '52.05B', 'longFmt': '52,051,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': -237000000, 'fmt': '-237M', 'longFmt': '-237,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}}, {'researchDevelopment': {'raw': 6797000000, 'fmt': '6.8B', 'longFmt': '6,797,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 23066000000, 'fmt': '23.07B', 'longFmt': '23,066,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}, 'sellingGeneralAdministrative': {'raw': 6012000000, 'fmt': '6.01B', 'longFmt': '6,012,000,000'}, 'grossProfit': {'raw': 35885000000, 'fmt': '35.88B', 'longFmt': '35,885,000,000'}, 'ebit': {'raw': 23076000000, 'fmt': '23.08B', 'longFmt': '23,076,000,000'}, 'endDate': {'raw': 1656115200, 'fmt': '2022-06-25'}, 'operatingIncome': {'raw': 23076000000, 'fmt': '23.08B', 'longFmt': '23,076,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -719000000, 'fmt': '-719M', 'longFmt': '-719,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 3624000000, 'fmt': '3.62B', 'longFmt': '3,624,000,000'}, 'totalRevenue': {'raw': 82959000000, 'fmt': '82.96B', 'longFmt': '82,959,000,000'}, 'totalOperatingExpenses': {'raw': 59883000000, 'fmt': '59.88B', 'longFmt': '59,883,000,000'}, 'costOfRevenue': {'raw': 47074000000, 'fmt': '47.07B', 'longFmt': '47,074,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': -10000000, 'fmt': '-10M', 'longFmt': '-10,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}}, {'researchDevelopment': {'raw': 6387000000, 'fmt': '6.39B', 'longFmt': '6,387,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 30139000000, 'fmt': '30.14B', 'longFmt': '30,139,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}, 'sellingGeneralAdministrative': {'raw': 6193000000, 'fmt': '6.19B', 'longFmt': '6,193,000,000'}, 'grossProfit': {'raw': 42559000000, 'fmt': '42.56B', 'longFmt': '42,559,000,000'}, 'ebit': {'raw': 29979000000, 'fmt': '29.98B', 'longFmt': '29,979,000,000'}, 'endDate': {'raw': 1648252800, 'fmt': '2022-03-26'}, 'operatingIncome': {'raw': 29979000000, 'fmt': '29.98B', 'longFmt': '29,979,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -691000000, 'fmt': '-691M', 'longFmt': '-691,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 5129000000, 'fmt': '5.13B', 'longFmt': '5,129,000,000'}, 'totalRevenue': {'raw': 97278000000, 'fmt': '97.28B', 'longFmt': '97,278,000,000'}, 'totalOperatingExpenses': {'raw': 67299000000, 'fmt': '67.3B', 'longFmt': '67,299,000,000'}, 'costOfRevenue': {'raw': 54719000000, 'fmt': '54.72B', 'longFmt': '54,719,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': 160000000, 'fmt': '160M', 'longFmt': '160,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}}], 'maxAge': 86400}, 'incomeStatementHistory': {'incomeStatementHistory': [{'researchDevelopment': {'raw': 26251000000, 'fmt': '26.25B', 'longFmt': '26,251,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 119103000000, 'fmt': '119.1B', 'longFmt': '119,103,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}, 'sellingGeneralAdministrative': {'raw': 25094000000, 'fmt': '25.09B', 'longFmt': '25,094,000,000'}, 'grossProfit': {'raw': 170782000000, 'fmt': '170.78B', 'longFmt': '170,782,000,000'}, 'ebit': {'raw': 119437000000, 'fmt': '119.44B', 'longFmt': '119,437,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'operatingIncome': {'raw': 119437000000, 'fmt': '119.44B', 'longFmt': '119,437,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -2931000000, 'fmt': '-2.93B', 'longFmt': '-2,931,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 19300000000, 'fmt': '19.3B', 'longFmt': '19,300,000,000'}, 'totalRevenue': {'raw': 394328000000, 'fmt': '394.33B', 'longFmt': '394,328,000,000'}, 'totalOperatingExpenses': {'raw': 274891000000, 'fmt': '274.89B', 'longFmt': '274,891,000,000'}, 'costOfRevenue': {'raw': 223546000000, 'fmt': '223.55B', 'longFmt': '223,546,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': -334000000, 'fmt': '-334M', 'longFmt': '-334,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 99803000000, 'fmt': '99.8B', 'longFmt': '99,803,000,000'}}, {'researchDevelopment': {'raw': 21914000000, 'fmt': '21.91B', 'longFmt': '21,914,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 109207000000, 'fmt': '109.21B', 'longFmt': '109,207,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}, 'sellingGeneralAdministrative': {'raw': 21973000000, 'fmt': '21.97B', 'longFmt': '21,973,000,000'}, 'grossProfit': {'raw': 152836000000, 'fmt': '152.84B', 'longFmt': '152,836,000,000'}, 'ebit': {'raw': 108949000000, 'fmt': '108.95B', 'longFmt': '108,949,000,000'}, 'endDate': {'raw': 1632528000, 'fmt': '2021-09-25'}, 'operatingIncome': {'raw': 108949000000, 'fmt': '108.95B', 'longFmt': '108,949,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -2645000000, 'fmt': '-2.65B', 'longFmt': '-2,645,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 14527000000, 'fmt': '14.53B', 'longFmt': '14,527,000,000'}, 'totalRevenue': {'raw': 365817000000, 'fmt': '365.82B', 'longFmt': '365,817,000,000'}, 'totalOperatingExpenses': {'raw': 256868000000, 'fmt': '256.87B', 'longFmt': '256,868,000,000'}, 'costOfRevenue': {'raw': 212981000000, 'fmt': '212.98B', 'longFmt': '212,981,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': 258000000, 'fmt': '258M', 'longFmt': '258,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 94680000000, 'fmt': '94.68B', 'longFmt': '94,680,000,000'}}, {'researchDevelopment': {'raw': 18752000000, 'fmt': '18.75B', 'longFmt': '18,752,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 67091000000, 'fmt': '67.09B', 'longFmt': '67,091,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}, 'sellingGeneralAdministrative': {'raw': 19916000000, 'fmt': '19.92B', 'longFmt': '19,916,000,000'}, 'grossProfit': {'raw': 104956000000, 'fmt': '104.96B', 'longFmt': '104,956,000,000'}, 'ebit': {'raw': 66288000000, 'fmt': '66.29B', 'longFmt': '66,288,000,000'}, 'endDate': {'raw': 1601078400, 'fmt': '2020-09-26'}, 'operatingIncome': {'raw': 66288000000, 'fmt': '66.29B', 'longFmt': '66,288,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -2873000000, 'fmt': '-2.87B', 'longFmt': '-2,873,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 9680000000, 'fmt': '9.68B', 'longFmt': '9,680,000,000'}, 'totalRevenue': {'raw': 274515000000, 'fmt': '274.51B', 'longFmt': '274,515,000,000'}, 'totalOperatingExpenses': {'raw': 208227000000, 'fmt': '208.23B', 'longFmt': '208,227,000,000'}, 'costOfRevenue': {'raw': 169559000000, 'fmt': '169.56B', 'longFmt': '169,559,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': 803000000, 'fmt': '803M', 'longFmt': '803,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 57411000000, 'fmt': '57.41B', 'longFmt': '57,411,000,000'}}, {'researchDevelopment': {'raw': 16217000000, 'fmt': '16.22B', 'longFmt': '16,217,000,000'}, 'effectOfAccountingCharges': {}, 'incomeBeforeTax': {'raw': 65737000000, 'fmt': '65.74B', 'longFmt': '65,737,000,000'}, 'minorityInterest': {}, 'netIncome': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}, 'sellingGeneralAdministrative': {'raw': 18245000000, 'fmt': '18.25B', 'longFmt': '18,245,000,000'}, 'grossProfit': {'raw': 98392000000, 'fmt': '98.39B', 'longFmt': '98,392,000,000'}, 'ebit': {'raw': 63930000000, 'fmt': '63.93B', 'longFmt': '63,930,000,000'}, 'endDate': {'raw': 1569628800, 'fmt': '2019-09-28'}, 'operatingIncome': {'raw': 63930000000, 'fmt': '63.93B', 'longFmt': '63,930,000,000'}, 'otherOperatingExpenses': {}, 'interestExpense': {'raw': -3576000000, 'fmt': '-3.58B', 'longFmt': '-3,576,000,000'}, 'extraordinaryItems': {}, 'nonRecurring': {}, 'otherItems': {}, 'incomeTaxExpense': {'raw': 10481000000, 'fmt': '10.48B', 'longFmt': '10,481,000,000'}, 'totalRevenue': {'raw': 260174000000, 'fmt': '260.17B', 'longFmt': '260,174,000,000'}, 'totalOperatingExpenses': {'raw': 196244000000, 'fmt': '196.24B', 'longFmt': '196,244,000,000'}, 'costOfRevenue': {'raw': 161782000000, 'fmt': '161.78B', 'longFmt': '161,782,000,000'}, 'totalOtherIncomeExpenseNet': {'raw': 1807000000, 'fmt': '1.81B', 'longFmt': '1,807,000,000'}, 'maxAge': 1, 'discontinuedOperations': {}, 'netIncomeFromContinuingOps': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}, 'netIncomeApplicableToCommonShares': {'raw': 55256000000, 'fmt': '55.26B', 'longFmt': '55,256,000,000'}}], 'maxAge': 86400}, 'balanceSheetHistory': {'balanceSheetStatements': [{'totalLiab': {'raw': 302083000000, 'fmt': '302.08B', 'longFmt': '302,083,000,000'}, 'totalStockholderEquity': {'raw': 50672000000, 'fmt': '50.67B', 'longFmt': '50,672,000,000'}, 'otherCurrentLiab': {'raw': 67094000000, 'fmt': '67.09B', 'longFmt': '67,094,000,000'}, 'totalAssets': {'raw': 352755000000, 'fmt': '352.75B', 'longFmt': '352,755,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'commonStock': {'raw': 64849000000, 'fmt': '64.85B', 'longFmt': '64,849,000,000'}, 'otherCurrentAssets': {'raw': 21223000000, 'fmt': '21.22B', 'longFmt': '21,223,000,000'}, 'retainedEarnings': {'raw': -3068000000, 'fmt': '-3.07B', 'longFmt': '-3,068,000,000'}, 'otherLiab': {'raw': 38394000000, 'fmt': '38.39B', 'longFmt': '38,394,000,000'}, 'treasuryStock': {'raw': -11109000000, 'fmt': '-11.11B', 'longFmt': '-11,109,000,000'}, 'otherAssets': {'raw': 44011000000, 'fmt': '44.01B', 'longFmt': '44,011,000,000'}, 'cash': {'raw': 23646000000, 'fmt': '23.65B', 'longFmt': '23,646,000,000'}, 'totalCurrentLiabilities': {'raw': 153982000000, 'fmt': '153.98B', 'longFmt': '153,982,000,000'}, 'shortLongTermDebt': {'raw': 11128000000, 'fmt': '11.13B', 'longFmt': '11,128,000,000'}, 'otherStockholderEquity': {'raw': -11109000000, 'fmt': '-11.11B', 'longFmt': '-11,109,000,000'}, 'propertyPlantEquipment': {'raw': 52534000000, 'fmt': '52.53B', 'longFmt': '52,534,000,000'}, 'totalCurrentAssets': {'raw': 135405000000, 'fmt': '135.41B', 'longFmt': '135,405,000,000'}, 'longTermInvestments': {'raw': 120805000000, 'fmt': '120.81B', 'longFmt': '120,805,000,000'}, 'netTangibleAssets': {'raw': 50672000000, 'fmt': '50.67B', 'longFmt': '50,672,000,000'}, 'shortTermInvestments': {'raw': 24658000000, 'fmt': '24.66B', 'longFmt': '24,658,000,000'}, 'netReceivables': {'raw': 60932000000, 'fmt': '60.93B', 'longFmt': '60,932,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 98959000000, 'fmt': '98.96B', 'longFmt': '98,959,000,000'}, 'inventory': {'raw': 4946000000, 'fmt': '4.95B', 'longFmt': '4,946,000,000'}, 'accountsPayable': {'raw': 64115000000, 'fmt': '64.11B', 'longFmt': '64,115,000,000'}}, {'totalLiab': {'raw': 287912000000, 'fmt': '287.91B', 'longFmt': '287,912,000,000'}, 'totalStockholderEquity': {'raw': 63090000000, 'fmt': '63.09B', 'longFmt': '63,090,000,000'}, 'otherCurrentLiab': {'raw': 53577000000, 'fmt': '53.58B', 'longFmt': '53,577,000,000'}, 'totalAssets': {'raw': 351002000000, 'fmt': '351B', 'longFmt': '351,002,000,000'}, 'endDate': {'raw': 1632528000, 'fmt': '2021-09-25'}, 'commonStock': {'raw': 57365000000, 'fmt': '57.37B', 'longFmt': '57,365,000,000'}, 'otherCurrentAssets': {'raw': 14111000000, 'fmt': '14.11B', 'longFmt': '14,111,000,000'}, 'retainedEarnings': {'raw': 5562000000, 'fmt': '5.56B', 'longFmt': '5,562,000,000'}, 'otherLiab': {'raw': 43050000000, 'fmt': '43.05B', 'longFmt': '43,050,000,000'}, 'treasuryStock': {'raw': 163000000, 'fmt': '163M', 'longFmt': '163,000,000'}, 'otherAssets': {'raw': 38762000000, 'fmt': '38.76B', 'longFmt': '38,762,000,000'}, 'cash': {'raw': 34940000000, 'fmt': '34.94B', 'longFmt': '34,940,000,000'}, 'totalCurrentLiabilities': {'raw': 125481000000, 'fmt': '125.48B', 'longFmt': '125,481,000,000'}, 'shortLongTermDebt': {'raw': 9613000000, 'fmt': '9.61B', 'longFmt': '9,613,000,000'}, 'otherStockholderEquity': {'raw': 163000000, 'fmt': '163M', 'longFmt': '163,000,000'}, 'propertyPlantEquipment': {'raw': 49527000000, 'fmt': '49.53B', 'longFmt': '49,527,000,000'}, 'totalCurrentAssets': {'raw': 134836000000, 'fmt': '134.84B', 'longFmt': '134,836,000,000'}, 'longTermInvestments': {'raw': 127877000000, 'fmt': '127.88B', 'longFmt': '127,877,000,000'}, 'netTangibleAssets': {'raw': 63090000000, 'fmt': '63.09B', 'longFmt': '63,090,000,000'}, 'shortTermInvestments': {'raw': 27699000000, 'fmt': '27.7B', 'longFmt': '27,699,000,000'}, 'netReceivables': {'raw': 51506000000, 'fmt': '51.51B', 'longFmt': '51,506,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 109106000000, 'fmt': '109.11B', 'longFmt': '109,106,000,000'}, 'inventory': {'raw': 6580000000, 'fmt': '6.58B', 'longFmt': '6,580,000,000'}, 'accountsPayable': {'raw': 54763000000, 'fmt': '54.76B', 'longFmt': '54,763,000,000'}}, {'totalLiab': {'raw': 258549000000, 'fmt': '258.55B', 'longFmt': '258,549,000,000'}, 'totalStockholderEquity': {'raw': 65339000000, 'fmt': '65.34B', 'longFmt': '65,339,000,000'}, 'otherCurrentLiab': {'raw': 47867000000, 'fmt': '47.87B', 'longFmt': '47,867,000,000'}, 'totalAssets': {'raw': 323888000000, 'fmt': '323.89B', 'longFmt': '323,888,000,000'}, 'endDate': {'raw': 1601078400, 'fmt': '2020-09-26'}, 'commonStock': {'raw': 50779000000, 'fmt': '50.78B', 'longFmt': '50,779,000,000'}, 'otherCurrentAssets': {'raw': 11264000000, 'fmt': '11.26B', 'longFmt': '11,264,000,000'}, 'retainedEarnings': {'raw': 14966000000, 'fmt': '14.97B', 'longFmt': '14,966,000,000'}, 'otherLiab': {'raw': 46108000000, 'fmt': '46.11B', 'longFmt': '46,108,000,000'}, 'treasuryStock': {'raw': -406000000, 'fmt': '-406M', 'longFmt': '-406,000,000'}, 'otherAssets': {'raw': 33952000000, 'fmt': '33.95B', 'longFmt': '33,952,000,000'}, 'cash': {'raw': 38016000000, 'fmt': '38.02B', 'longFmt': '38,016,000,000'}, 'totalCurrentLiabilities': {'raw': 105392000000, 'fmt': '105.39B', 'longFmt': '105,392,000,000'}, 'shortLongTermDebt': {'raw': 8773000000, 'fmt': '8.77B', 'longFmt': '8,773,000,000'}, 'otherStockholderEquity': {'raw': -406000000, 'fmt': '-406M', 'longFmt': '-406,000,000'}, 'propertyPlantEquipment': {'raw': 45336000000, 'fmt': '45.34B', 'longFmt': '45,336,000,000'}, 'totalCurrentAssets': {'raw': 143713000000, 'fmt': '143.71B', 'longFmt': '143,713,000,000'}, 'longTermInvestments': {'raw': 100887000000, 'fmt': '100.89B', 'longFmt': '100,887,000,000'}, 'netTangibleAssets': {'raw': 65339000000, 'fmt': '65.34B', 'longFmt': '65,339,000,000'}, 'shortTermInvestments': {'raw': 52927000000, 'fmt': '52.93B', 'longFmt': '52,927,000,000'}, 'netReceivables': {'raw': 37445000000, 'fmt': '37.45B', 'longFmt': '37,445,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 98667000000, 'fmt': '98.67B', 'longFmt': '98,667,000,000'}, 'inventory': {'raw': 4061000000, 'fmt': '4.06B', 'longFmt': '4,061,000,000'}, 'accountsPayable': {'raw': 42296000000, 'fmt': '42.3B', 'longFmt': '42,296,000,000'}}, {'totalLiab': {'raw': 248028000000, 'fmt': '248.03B', 'longFmt': '248,028,000,000'}, 'totalStockholderEquity': {'raw': 90488000000, 'fmt': '90.49B', 'longFmt': '90,488,000,000'}, 'otherCurrentLiab': {'raw': 43242000000, 'fmt': '43.24B', 'longFmt': '43,242,000,000'}, 'totalAssets': {'raw': 338516000000, 'fmt': '338.52B', 'longFmt': '338,516,000,000'}, 'endDate': {'raw': 1569628800, 'fmt': '2019-09-28'}, 'commonStock': {'raw': 45174000000, 'fmt': '45.17B', 'longFmt': '45,174,000,000'}, 'otherCurrentAssets': {'raw': 12352000000, 'fmt': '12.35B', 'longFmt': '12,352,000,000'}, 'retainedEarnings': {'raw': 45898000000, 'fmt': '45.9B', 'longFmt': '45,898,000,000'}, 'otherLiab': {'raw': 50503000000, 'fmt': '50.5B', 'longFmt': '50,503,000,000'}, 'treasuryStock': {'raw': -584000000, 'fmt': '-584M', 'longFmt': '-584,000,000'}, 'otherAssets': {'raw': 32978000000, 'fmt': '32.98B', 'longFmt': '32,978,000,000'}, 'cash': {'raw': 48844000000, 'fmt': '48.84B', 'longFmt': '48,844,000,000'}, 'totalCurrentLiabilities': {'raw': 105718000000, 'fmt': '105.72B', 'longFmt': '105,718,000,000'}, 'shortLongTermDebt': {'raw': 10260000000, 'fmt': '10.26B', 'longFmt': '10,260,000,000'}, 'otherStockholderEquity': {'raw': -584000000, 'fmt': '-584M', 'longFmt': '-584,000,000'}, 'propertyPlantEquipment': {'raw': 37378000000, 'fmt': '37.38B', 'longFmt': '37,378,000,000'}, 'totalCurrentAssets': {'raw': 162819000000, 'fmt': '162.82B', 'longFmt': '162,819,000,000'}, 'longTermInvestments': {'raw': 105341000000, 'fmt': '105.34B', 'longFmt': '105,341,000,000'}, 'netTangibleAssets': {'raw': 90488000000, 'fmt': '90.49B', 'longFmt': '90,488,000,000'}, 'shortTermInvestments': {'raw': 51713000000, 'fmt': '51.71B', 'longFmt': '51,713,000,000'}, 'netReceivables': {'raw': 45804000000, 'fmt': '45.8B', 'longFmt': '45,804,000,000'}, 'maxAge': 1, 'longTermDebt': {'raw': 91807000000, 'fmt': '91.81B', 'longFmt': '91,807,000,000'}, 'inventory': {'raw': 4106000000, 'fmt': '4.11B', 'longFmt': '4,106,000,000'}, 'accountsPayable': {'raw': 46236000000, 'fmt': '46.24B', 'longFmt': '46,236,000,000'}}], 'maxAge': 86400}, 'cashflowStatementHistoryQuarterly': {'cashflowStatements': [{'investments': {'raw': 2483000000, 'fmt': '2.48B', 'longFmt': '2,483,000,000'}, 'changeToLiabilities': {'raw': -5944000000, 'fmt': '-5.94B', 'longFmt': '-5,944,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -1445000000, 'fmt': '-1.45B', 'longFmt': '-1,445,000,000'}, 'netBorrowings': {'raw': -9615000000, 'fmt': '-9.62B', 'longFmt': '-9,615,000,000'}, 'totalCashFromFinancingActivities': {'raw': -35563000000, 'fmt': '-35.56B', 'longFmt': '-35,563,000,000'}, 'changeToOperatingActivities': {'raw': 1979000000, 'fmt': '1.98B', 'longFmt': '1,979,000,000'}, 'netIncome': {'raw': 29998000000, 'fmt': '30B', 'longFmt': '29,998,000,000'}, 'changeInCash': {'raw': -3003000000, 'fmt': '-3B', 'longFmt': '-3,003,000,000'}, 'endDate': {'raw': 1672444800, 'fmt': '2022-12-31'}, 'repurchaseOfStock': {'raw': -21791000000, 'fmt': '-21.79B', 'longFmt': '-21,791,000,000'}, 'totalCashFromOperatingActivities': {'raw': 34005000000, 'fmt': '34.01B', 'longFmt': '34,005,000,000'}, 'depreciation': {'raw': 2916000000, 'fmt': '2.92B', 'longFmt': '2,916,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -141000000, 'fmt': '-141M', 'longFmt': '-141,000,000'}, 'dividendsPaid': {'raw': -3768000000, 'fmt': '-3.77B', 'longFmt': '-3,768,000,000'}, 'changeToInventory': {'raw': -1807000000, 'fmt': '-1.81B', 'longFmt': '-1,807,000,000'}, 'changeToAccountReceivables': {'raw': 4275000000, 'fmt': '4.28B', 'longFmt': '4,275,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -389000000, 'fmt': '-389M', 'longFmt': '-389,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 2588000000, 'fmt': '2.59B', 'longFmt': '2,588,000,000'}, 'capitalExpenditures': {'raw': -3787000000, 'fmt': '-3.79B', 'longFmt': '-3,787,000,000'}}, {'investments': {'raw': 2806000000, 'fmt': '2.81B', 'longFmt': '2,806,000,000'}, 'changeToLiabilities': {'raw': 15774000000, 'fmt': '15.77B', 'longFmt': '15,774,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -1217000000, 'fmt': '-1.22B', 'longFmt': '-1,217,000,000'}, 'netBorrowings': {'raw': 1657000000, 'fmt': '1.66B', 'longFmt': '1,657,000,000'}, 'totalCashFromFinancingActivities': {'raw': -26794000000, 'fmt': '-26.79B', 'longFmt': '-26,794,000,000'}, 'changeToOperatingActivities': {'raw': -9873000000, 'fmt': '-9.87B', 'longFmt': '-9,873,000,000'}, 'netIncome': {'raw': 20721000000, 'fmt': '20.72B', 'longFmt': '20,721,000,000'}, 'changeInCash': {'raw': -3884000000, 'fmt': '-3.88B', 'longFmt': '-3,884,000,000'}, 'endDate': {'raw': 1663977600, 'fmt': '2022-09-24'}, 'repurchaseOfStock': {'raw': -24736000000, 'fmt': '-24.74B', 'longFmt': '-24,736,000,000'}, 'totalCashFromOperatingActivities': {'raw': 24127000000, 'fmt': '24.13B', 'longFmt': '24,127,000,000'}, 'depreciation': {'raw': 2865000000, 'fmt': '2.87B', 'longFmt': '2,865,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -597000000, 'fmt': '-597M', 'longFmt': '-597,000,000'}, 'dividendsPaid': {'raw': -3703000000, 'fmt': '-3.7B', 'longFmt': '-3,703,000,000'}, 'changeToInventory': {'raw': 435000000, 'fmt': '435M', 'longFmt': '435,000,000'}, 'changeToAccountReceivables': {'raw': -6384000000, 'fmt': '-6.38B', 'longFmt': '-6,384,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -12000000, 'fmt': '-12M', 'longFmt': '-12,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 589000000, 'fmt': '589M', 'longFmt': '589,000,000'}, 'capitalExpenditures': {'raw': -3289000000, 'fmt': '-3.29B', 'longFmt': '-3,289,000,000'}}, {'investments': {'raw': 6953000000, 'fmt': '6.95B', 'longFmt': '6,953,000,000'}, 'changeToLiabilities': {'raw': -4725000000, 'fmt': '-4.72B', 'longFmt': '-4,725,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': 4234000000, 'fmt': '4.23B', 'longFmt': '4,234,000,000'}, 'netBorrowings': {'raw': 971000000, 'fmt': '971M', 'longFmt': '971,000,000'}, 'totalCashFromFinancingActivities': {'raw': -27445000000, 'fmt': '-27.45B', 'longFmt': '-27,445,000,000'}, 'changeToOperatingActivities': {'raw': 2497000000, 'fmt': '2.5B', 'longFmt': '2,497,000,000'}, 'netIncome': {'raw': 19442000000, 'fmt': '19.44B', 'longFmt': '19,442,000,000'}, 'changeInCash': {'raw': -319000000, 'fmt': '-319M', 'longFmt': '-319,000,000'}, 'endDate': {'raw': 1656115200, 'fmt': '2022-06-25'}, 'repurchaseOfStock': {'raw': -24562000000, 'fmt': '-24.56B', 'longFmt': '-24,562,000,000'}, 'totalCashFromOperatingActivities': {'raw': 22892000000, 'fmt': '22.89B', 'longFmt': '22,892,000,000'}, 'depreciation': {'raw': 2805000000, 'fmt': '2.81B', 'longFmt': '2,805,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -615000000, 'fmt': '-615M', 'longFmt': '-615,000,000'}, 'dividendsPaid': {'raw': -3811000000, 'fmt': '-3.81B', 'longFmt': '-3,811,000,000'}, 'changeToInventory': {'raw': -16000000, 'fmt': '-16M', 'longFmt': '-16,000,000'}, 'changeToAccountReceivables': {'raw': -981000000, 'fmt': '-981M', 'longFmt': '-981,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -43000000, 'fmt': '-43M', 'longFmt': '-43,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 3870000000, 'fmt': '3.87B', 'longFmt': '3,870,000,000'}, 'capitalExpenditures': {'raw': -2102000000, 'fmt': '-2.1B', 'longFmt': '-2,102,000,000'}}, {'investments': {'raw': -6390000000, 'fmt': '-6.39B', 'longFmt': '-6,390,000,000'}, 'changeToLiabilities': {'raw': -21398000000, 'fmt': '-21.4B', 'longFmt': '-21,398,000,000'}, 'totalCashflowsFromInvestingActivities': {'raw': -9265000000, 'fmt': '-9.27B', 'longFmt': '-9,265,000,000'}, 'netBorrowings': {'raw': -1751000000, 'fmt': '-1.75B', 'longFmt': '-1,751,000,000'}, 'totalCashFromFinancingActivities': {'raw': -28351000000, 'fmt': '-28.35B', 'longFmt': '-28,351,000,000'}, 'changeToOperatingActivities': {'raw': 9486000000, 'fmt': '9.49B', 'longFmt': '9,486,000,000'}, 'netIncome': {'raw': 25010000000, 'fmt': '25.01B', 'longFmt': '25,010,000,000'}, 'changeInCash': {'raw': -9450000000, 'fmt': '-9.45B', 'longFmt': '-9,450,000,000'}, 'endDate': {'raw': 1648252800, 'fmt': '2022-03-26'}, 'repurchaseOfStock': {'raw': -22961000000, 'fmt': '-22.96B', 'longFmt': '-22,961,000,000'}, 'totalCashFromOperatingActivities': {'raw': 28166000000, 'fmt': '28.17B', 'longFmt': '28,166,000,000'}, 'depreciation': {'raw': 2737000000, 'fmt': '2.74B', 'longFmt': '2,737,000,000'}, 'otherCashflowsFromInvestingActivities': {'raw': -194000000, 'fmt': '-194M', 'longFmt': '-194,000,000'}, 'dividendsPaid': {'raw': -3595000000, 'fmt': '-3.6B', 'longFmt': '-3,595,000,000'}, 'changeToInventory': {'raw': 384000000, 'fmt': '384M', 'longFmt': '384,000,000'}, 'changeToAccountReceivables': {'raw': 9476000000, 'fmt': '9.48B', 'longFmt': '9,476,000,000'}, 'otherCashflowsFromFinancingActivities': {'raw': -44000000, 'fmt': '-44M', 'longFmt': '-44,000,000'}, 'maxAge': 1, 'changeToNetincome': {'raw': 2471000000, 'fmt': '2.47B', 'longFmt': '2,471,000,000'}, 'capitalExpenditures': {'raw': -2514000000, 'fmt': '-2.51B', 'longFmt': '-2,514,000,000'}}], 'maxAge': 86400}, 'quoteType': {'exchange': 'NMS', 'shortName': 'Apple Inc.', 'longName': 'Apple Inc.', 'exchangeTimezoneName': 'America/New_York', 'exchangeTimezoneShortName': 'EST', 'isEsgPopulated': False, 'gmtOffSetMilliseconds': '-18000000', 'quoteType': 'EQUITY', 'symbol': 'AAPL', 'messageBoardId': 'finmb_24937', 'market': 'us_market'}, 'summaryDetail': {'previousClose': {'raw': 154.5, 'fmt': '154.50'}, 'regularMarketOpen': {'raw': 152.575, 'fmt': '152.57'}, 'twoHundredDayAverage': {'raw': 147.80174, 'fmt': '147.80'}, 'trailingAnnualDividendYield': {'raw': 0.005889968, 'fmt': '0.59%'}, 'payoutRatio': {'raw': 0.1545, 'fmt': '15.45%'}, 'volume24Hr': {}, 'regularMarketDayHigh': {'raw': 153.1, 'fmt': '153.10'}, 'navPrice': {}, 'averageDailyVolume10Day': {'raw': 81876490, 'fmt': '81.88M', 'longFmt': '81,876,490'}, 'totalAssets': {}, 'regularMarketPreviousClose': {'raw': 154.5, 'fmt': '154.50'}, 'fiftyDayAverage': {'raw': 138.8904, 'fmt': '138.89'}, 'trailingAnnualDividendRate': {'raw': 0.91, 'fmt': '0.91'}, 'open': {'raw': 152.575, 'fmt': '152.57'}, 'toCurrency': None, 'averageVolume10days': {'raw': 81876490, 'fmt': '81.88M', 'longFmt': '81,876,490'}, 'expireDate': {}, 'yield': {}, 'algorithm': None, 'dividendRate': {'raw': 0.92, 'fmt': '0.92'}, 'exDividendDate': {'raw': 1675987200, 'fmt': '2023-02-10'}, 'beta': {'raw': 1.277894, 'fmt': '1.28'}, 'circulatingSupply': {}, 'startDate': {}, 'regularMarketDayLow': {'raw': 150.9, 'fmt': '150.90'}, 'priceHint': {'raw': 2, 'fmt': '2', 'longFmt': '2'}, 'currency': 'USD', 'trailingPE': {'raw': 25.8455, 'fmt': '25.85'}, 'regularMarketVolume': {'raw': 27887979, 'fmt': '27.89M', 'longFmt': '27,887,979'}, 'lastMarket': None, 'maxSupply': {}, 'openInterest': {}, 'marketCap': {'raw': 2408567799808, 'fmt': '2.41T', 'longFmt': '2,408,567,799,808'}, 'volumeAllCurrencies': {}, 'strikePrice': {}, 'averageVolume': {'raw': 78381785, 'fmt': '78.38M', 'longFmt': '78,381,785'}, 'priceToSalesTrailing12Months': {'raw': 6.215065, 'fmt': '6.22'}, 'dayLow': {'raw': 150.9, 'fmt': '150.90'}, 'ask': {'raw': 152.31, 'fmt': '152.31'}, 'ytdReturn': {}, 'askSize': {'raw': 2200, 'fmt': '2.2k', 'longFmt': '2,200'}, 'volume': {'raw': 27887979, 'fmt': '27.89M', 'longFmt': '27,887,979'}, 'fiftyTwoWeekHigh': {'raw': 179.61, 'fmt': '179.61'}, 'forwardPE': {'raw': 23.030256, 'fmt': '23.03'}, 'maxAge': 1, 'fromCurrency': None, 'fiveYearAvgDividendYield': {'raw': 0.96, 'fmt': '0.96'}, 'fiftyTwoWeekLow': {'raw': 124.17, 'fmt': '124.17'}, 'bid': {'raw': 152.34, 'fmt': '152.34'}, 'tradeable': False, 'dividendYield': {'raw': 0.006, 'fmt': '0.60%'}, 'bidSize': {'raw': 3000, 'fmt': '3k', 'longFmt': '3,000'}, 'dayHigh': {'raw': 153.1, 'fmt': '153.10'}, 'coinMarketCapLink': None}, 'symbol': 'AAPL', 'pageViews': {'shortTermTrend': 'UP', 'midTermTrend': 'UP', 'longTermTrend': 'UP', 'maxAge': 1}}, 'FinanceConfigStore': {'app': {'base': {'feedback': {'enabled': False}, 'marketdata': {'lists': {'most_active': {'name': 'MOST_ACTIVE_TITLE', 'uri': '/most-active', 'count': 5, 'listCount': 30, 'predefinedScrId': 'most_actives'}, 'options_highest_open_interest': {'name': 'OPTIONS_HIGHEST_OPEN_INTEREST_TITLE', 'uri': '/options/highest-open-interest', 'predefinedScrId': '65f51cea-8dc8-4e56-9f99-6ef7720eb69c'}, 'gainers': {'name': 'GAINERS_TITLE', 'uri': '/gainers', 'count': 5, 'listCount': 30, 'predefinedScrId': 'day_gainers'}, 'commodities': {'name': 'FUTURES', 'uri': '/commodities', 'count': 5, 'listCount': 30}, 'currencies': {'name': 'CURRENCIES_TITLE', 'uri': '/currencies', 'count': 5, 'listCount': 30}, 'trending_tickers': {'name': 'TRENDING_TICKERS_TITLE', 'uri': '/trending-tickers', 'count': 5, 'listCount': 30}, 'bonds': {'name': 'BONDS_TITLE', 'uri': '/bonds', 'count': 5, 'listCount': 30}, 'cryptocurrencies': {'name': 'CRYPTO_CURRENCIES', 'uri': '/crypto', 'count': 5, 'predefinedScrId': 'all_cryptocurrencies_us'}, 'losers': {'name': 'LOSERS_TITLE', 'uri': '/losers', 'count': 5, 'listCount': 30, 'predefinedScrId': 'day_losers'}, 'options_highest_implied_volatility': {'name': 'OPTIONS_HIGHEST_IMPLIED_VOLATALITY_TITLE', 'uri': '/options/highest-implied-volatility', 'predefinedScrId': '671c40b0-5ea8-4063-89b9-9db45bf9edf0'}, 'mutualfunds': {'name': 'MUTUALFUNDS_TITLE', 'uri': '/mutualfunds', 'count': 5, 'listCount': 30, 'predefinedScrId': 'top_mutual_funds'}, 'world_indices': {'name': 'WORLD_INDICES', 'uri': '/world-indices', 'count': 5, 'listCount': 30}, 'etfs': {'name': 'ETFS_TITLE', 'uri': '/etfs', 'count': 5, 'listCount': 30, 'predefinedScrId': 'top_etfs_us'}}, 'defaultLists': ['recentQuotes', 'cryptocurrencies', 'trending_tickers', 'most_active', 'gainers', 'losers', 'mutualfunds', 'etfs', 'currencies', 'commodities', 'options_highest_open_interest', 'options_highest_implied_volatility'], 'orderedLists': ['cryptocurrencies', 'trending_tickers', 'most_active', 'gainers', 'losers', 'mutualfunds', 'etfs', 'commodities', 'options_highest_open_interest', 'options_highest_implied_volatility', 'world_indices', 'currencies', 'bonds']}, 'host': 'finance.yahoo.com', 'hiringLinks': {'snv': 'https://www.linkedin.com/jobs2/cap/view/208631894?pathWildcard=208631894&trk=job_capjs', 'nyc': 'https://www.linkedin.com/jobs/view/188529482'}, 'timeouts': {'navigate': 10000}, 'spaceIds': {'TRADE_IDEAS': 1197807300, 'most_active': 1183331958, 'fullScreenChart': 2022773886, 'FUTURE': 97327109, 'EQUITY': 95993639, 'gainers': 1183331958, 'SCREENER_FUTURE': 1183336017, 'CRYPTO_PORTFOLIO': 1197812219, 'commodities': 97327075, 'SCREENER_EQUITY': 1183335883, 'SCREENER_INDEX': 1183336019, 'COMMODITY': 97327109, 'currencies': 2146786654, 'trending_tickers': 1183331958, 'BONDS': 95993639, 'bonds': 42328446, 'SCREENER_INSIDER': 1183335958, 'CURRENCY': 96390611, 'SCREENER_ETF': 1183335947, 'INDEX': 95993639, 'CRYPTOCURRENCY': 1197805203, 'QUOTE_BASE': 95993639, 'OPTION': 1197783905, 'fullScreenChart_MUTUALFUND': 1197773430, 'losers': 1183331958, 'SCREENER_BASE': 1183335867, 'ETF': 96469363, 'SCREENER_CRYPTOCURRENCY': 1183335995, 'CUL_IDX': 95993639, 'MUTUALFUND': 2712295, 'CUL_SUB_IDX': 95993639, 'mutualfunds': 1183331884, 'world_indices': 1183331958, 'SCREENER_OPTION': 1183335974, 'RESEARCH_REPORTS': 1197807299, 'etfs': 1183331881, 'industries': 1183331958, 'CATEGORY_options': 28951412, 'options': 1183331888, 'SCREENER_MUTUALFUND': 1183335884}, 'videoReel': {'capPortfolioSymbols': 20, 'capRecentQuotes': 20}, 'enableVideoManager': True, 'premium': {'sku': {'monthly': 'fin-yh-ft22178', 'annually': 'fin-yh-fte993687'}}, 'nativeAds': {'se': 4492794}, 'videoPlayer': {'baseUrl': 'https://yep.video.yahoo.com/oath/js/1/oath-player.js', 'device': 'nextgen-desktop', 'docking': {'fadeInAnimation': True, 'width': 300, 'height': 168.75, 'position': {'left': 'ref', 'right': 0, 'bottom': 45}, 'enableOnMuted': True, 'enableOnScrollUp': False, 'threshold': 60, 'enableOnScrollDown': False, 'ref': '.modal-open .render-target-modal .modalRight', 'showInfoCard': False}, 'enableRestoreOnNavigate': True, 'refreshDockingOnNavigate': True, 'version': None, 'vpaidTimeout': 10}}}}, 'LangStore': {'defaultBundle': 'td-app-finance', 'baseLangs': {'td-app-finance': {'10_YEARS': '10 Years', '1_D': '1D', '1_DAY_CHANGE': 'Change (1D)', '1_D_PERFORMANCE': '1D Performance', '1_D_PERF_ASC': '1D Performance Asc', '1_D_PERF_DESC': '1D Performance Desc', '1_M': '1M', '1_Y': '1Y', '1_YEAR': '1 Year', '200_DAY_MOVING_AVG': '200-Day Moving Average', '2_Y': '2Y', '30_DAYS_AGO': '30 Days Ago', '3_M': '3M', '3_YEARS': '3 Years', '50_DAY_MOVING_AVG': '50-Day Moving Average', '52_WEEK_CHANGE': '52-Week Change', '5_D': '5D', '5_Y': '5Y', '5_YEARS': '5 Years', '5_YEAR_AVERAGE_DIVIDEND_YIELD': '5 Year Average Dividend Yield', '60_DAYS_AGO': '60 Days Ago', '6_M': '6M', '7_DAYS_AGO': '7 Days Ago', '7_DAY_VISITS': 'Visits (7D)', '7_DAY_YIELD': '7 Day Yield', '90_DAYS_AGO': '90 Days Ago', 'ABOUT_TEXT': 'About {value}', 'ABOVE_AVG': 'Above Average', 'ACCIDENT_HEALTH_INSURANCE': 'Accident & Health Insurance', 'ACCIDENT_HEALTH_INSURANCE_DESC': 'Accident & Health Insurance Stocks', 'ACCOUNTS_PAYABLE': 'Accounts Payable', 'ACCOUNTS_RECEIVABLE': 'Accounts receivable', 'ACCOUNT_INFO': 'Account Info', 'ACCOUNT': 'Account', 'ACCRUED_INTEREST_RECEIVABLE': 'Accrued Interest Receivable', 'ACCRUED_INVESTMENT_INCOME': 'Accrued Investment Income', 'ACCUMULATED_AMORTIZATION': 'Accumulated Amortization', 'ACCUMULATED_DEPRECIATION': 'Accumulated Depreciation', 'ACCUMULATED_OTHER_COMPREHENSIVE_INCOME': 'Accumulated other comprehensive income', 'ACCURED_LIABILITES': 'Accrued liabilities', 'ACQUISITIONS_NET': 'Acquisitions, net', 'ACTIONS': 'Actions', 'ACTUAL': 'Actual', 'ADD': 'Add', 'ADDED': 'Added', 'ADDITIONAL_PAID_IN_CAPITAL': 'Additional Paid in Capital', 'ADDRESS': 'Address', 'ADD_AVATAR': 'Add avatar', 'ADD_CHART_COMPARISONS': 'Add Comparisons', 'ADD_CHART_INDICATORS': 'Add Indicators', 'ADD_FIELD': 'Add {field}', 'ADD_FILTER': 'Add another filter', 'ADD_HOLDINGS': 'Add Holdings', 'ADD_INDICATORS': 'Indicators', 'ADD_LOT': 'Add Lot', 'ADD_MANAGE_ACCOUNTS': 'Add or Manage accounts', 'ADD_REMOVE_LIST': 'Add to or remove from my watchlist', 'ADD_CASH_HOLDING': 'Add cash holding', 'ADD_NEW_CASH_TRANSACTION': 'Add Cash Transaction', 'ADD_NEW_TRANSACTION': 'Add a new transaction - {symbol} ({name})', 'ADD_SELECTED_STOCKS': 'Add Selected Stocks to...', 'ADD_SELECTED_STOCKS_SIGNED_OUT': '{content} to add selected stocks to your portfolios.', 'ADD_SYMBOL': 'Add Symbol', 'ADD_TO_PORTFOLIO': 'Add to Portfolio', 'ADD_TO_TOTAL_HOLDINGS': 'Add to Total Holdings', 'ADD_TO_WATCHLIST': 'Add to watchlist', 'ADD_TRANSACTION': 'Add a transaction', 'ADJUSTED_CLOSE': 'Adj Close**', 'ADJUSTED_GEOGRAPHY_SEGMENT_DATA': 'Adjusted Geography Segment Data', 'ADJUSTMENT_TO_NET_INCOME': 'Adjustments To Net Income', 'ADS_RELATED_TO': 'Ads related to: {name}', 'ADVANCE_FROM_FEDERAL_HOME_LOAN_BANKS': 'Advance From Federal Home Loan Banks', 'ADVERTISE_WITH_US': 'Advertise with us', 'ADVERTISING_AGENCIES': 'Advertising Agencies', 'ADVERTISING_AGENCIES_DESC': 'Advertising Agencies Stocks', 'ADVANCED_CHART': 'Advanced Chart', 'AD_ABBR': 'Ad', 'AD_DISLIKE': \"I don't like this ad\", 'AD_FEEDBACK_ADLITE_PROMO': 'Try Yahoo Finance Plus', 'AD_FEEDBACK_MESSAGE': 'Improve your future experience.', 'AD_FEEDBACK_NEGATIVE': \"Why don't you like this ad?\", 'AD_FEEDBACK_REVIEW': \"We'll review and make changes needed.\", 'AD_FEEDBACK_THANKYOU': 'Thanks for your feedback', 'AD_HIDDEN': 'This ad has been hidden', 'AD_LIKE': 'I like this ad', 'AD_TERMS': 'Why this ad?', 'ADD_DATE': 'Add date', 'AERONAUTIQUE_TITLE': 'Aeronautics', 'AEROSPACE_DEFENSE_MAJOR_DIVERSIFIED': 'Aerospace/Defense - Major Diversified', 'AEROSPACE_DEFENSE_MAJOR_DIVERSIFIED_DESC': 'Aerospace/Defense - Major Diversified Stocks', 'AEROSPACE_DEFENSE_PRODUCTS_SERVICES': 'Aerospace/Defense Products & Services', 'AEROSPACE_DEFENSE_PRODUCTS_SERVICES_DESC': 'Aerospace/Defense Products & Services Stocks', 'AGE': 'Age', 'AGGRESSIVE_SMALL_CAPS': 'Aggressive Small Caps', 'AGGRESSIVE_SMALL_CAPS_DESC': 'Small cap stocks with earnings growth rates better than 25%.', 'AGRICULTURAL_CHEMICALS': 'Agricultural Chemicals', 'AGRICULTURAL_CHEMICALS_DESC': 'Agricultural Chemicals Stocks', 'AIR_DELIVERY_FREIGHT_SERVICES': 'Air Delivery & Freight Services', 'AIR_DELIVERY_FREIGHT_SERVICES_DESC': 'Air Delivery & Freight Services Stocks', 'AIR_SERVICES_OTHER': 'Air Services, Other', 'AIR_SERVICES_OTHER_DESC': 'Air Services, Other Stocks', 'ALGORITHM': 'Algorithm', 'ALGO_WATCHLIST': 'Watchlist', 'ALIMENTACION-Y-CONSUMO_TITLE': 'Food and Consumption', 'ALL': 'All', 'ALLOCATION': 'Allocation', 'ALLOWANCE_FOR_DOUBTFUL_ACCOUNTS_RECEIVABLE': 'Allowance For Doubtful Accounts Receivable', 'ALLOWANCE_FOR_LOANS_AND_LEASE_LOSSES': 'Allowance for Loans And Lease Losses', 'ALLOWANCE_FOR_NOTES_RECEIVABLE': 'Allowance for Notes Receivable', 'ALL_EVENTS': 'All Events', 'ALL_INDICATORS': 'All Indicators', 'ALL_MARKETS': 'All Markets', 'ALL_NUMBER_IN_THOUSANDS': 'All numbers in thousands', 'ALL_PORTFOLIOS': 'All Portfolios', 'ALL_POSITIONS': 'All Positions', 'ALL_REPORTS': 'All reports', 'ALL_SCREENERS': 'All Screeners', 'ALL_TAXES_PAID': 'All Taxes Paid', 'ALPHA': 'Alpha', 'ALUMINUM': 'Aluminum', 'ALUMINUM_DESC': 'Aluminum Stocks', 'AMORTIZATION': 'Amortization', 'AMORTIZATION_AMORTIZATION_CASH_FLOW': 'Amortization & Amortization Cash Flow', 'AMORTIZATION_OF_FINANCING_COSTS_AND_DISCOUNTS': 'Amortization of Financing Costs And Discounts', 'AMORTIZATION_OF_INTANGIBLES': 'Amortization of Intangibles', 'AMORTIZATION_OF_SECURITIES': 'Amortization of Securities', 'ANALYSIS': 'Analysis', 'ANALYSTS': 'Analysts', 'ANALYST_PRICE_TARGETS': 'Analyst Price Targets', 'ANALYST_PROFILE': 'Analyst Profile', 'ANALYST_QUARTER_LABEL': '{label} ({month} {year})', 'ANALYST_RATING': 'Analyst Rating', 'ANALYST_RATINGS': 'Analyst Ratings', 'ANALYST_REPORT': 'Analyst Report', 'ANALYST_STRONG_BUY_STOCKS': 'Analyst Strong Buy Stocks', 'ANALYST_YEAR_LABEL': '{label} ({year})', 'ANALYSTS_ARE_SAYING': 'Analysts Are Saying', 'ANALYTICS': 'Analytics', 'AND': 'and', 'ANNOUNCEMENT': 'Announcement', 'ANNOUNCEMENT_PLACEHOLDER': 'Users will be able to see your anouncement in your livestream room', 'ANNUAL': 'Annual', 'ANNUAL_HOLDINGS_TURNOVER': 'Holdings Turnover', 'ANNUAL_REPORT_EXPENSE_RATIO': 'Annual Report Expense Ratio (net)', 'ANNUAL_TOTAL_RETURNS': 'Annual Total Return (%) History', 'ANNUAL_STOCK_PERFORMANCE_DATA': 'Annual Stock Performance Data', 'APPAREL_STORES': 'Apparel Stores', 'APPAREL_STORES_DESC': 'Apparel Stores Stocks', 'APPLET_COMMENT_COMMENTS': 'Comments', 'APPLIANCES': 'Appliances', 'APPLIANCES_DESC': 'Appliances Stocks', 'APPLICATION_SOFTWARE': 'Application Software', 'APPLICATION_SOFTWARE_DESC': 'Application Software Stocks', 'APPLIED': 'Applied', 'APPLIED_FILTERS': 'Applied Filters for {type} screener', 'APPLY': 'Apply', 'APP_PROMO_ALERTS': 'News and price alerts', 'APP_PROMO_FREE_DATA': 'Free real-time data', 'APP_PROMO_GET_APP': 'Get the App', 'APP_PROMO_HOLDINGS': 'Add and edit holdings', 'APP_PROMO_OPEN_APP': 'Open in App', 'APP_PROMO_PERFORMANCE': 'Track performance', 'APP_PROMO_WATCHLISTS': 'Create multiple watchlists', 'AREA': 'Area', 'ARGUS_RATING': 'Argus Rating', 'ARROW': 'Arrow', 'ASC_ORDER': 'Ascending Order', 'AS_OF': 'As of:', 'ASK': 'Ask', 'ASSET': 'Asset', 'ASSETS': 'Assets', 'ASSET_CLASS': 'Asset Class', 'ASSETS_HELD_FOR_SALE': 'Assets Held for Sale', 'ASSETS_HELD_FOR_SALE_CURRENT': 'Assets Held for Sale Current', 'ASSETS_OF_DISCONTINUED_OPERATIONS': 'Assets of Discontinued Operations', 'ASSET_IMPAIRMENT_CHARGE': 'Asset Impairment Charge', 'ASSET_MANAGEMENT': 'Asset Management', 'ASSET_MANAGEMENT_DESC': 'Asset Management Stocks', 'ATTRIBUTES': 'Attributes', 'AUDIOVISUAL-Y-MEDIOS_TITLE': 'Audiovisual and Media', 'AUSTRALIA': 'Australia', 'AUTO': 'Auto', 'AUTOCOMPLETE_PLACEHOLDER': 'VZ, AAPL, TSLA', 'AUTOMATIC_PICK': 'Automatic Pick', 'AUTOMOBILE_TITLE': 'Automobile', 'AUTOS_TITLE': 'Autos', 'AUTOS_TRANSPORTATION_TITLE': 'Autos & Transportation', 'AUTO_DEALERSHIPS': 'Auto Dealerships', 'AUTO_DEALERSHIPS_DESC': 'Auto Dealerships Stocks', 'AUTO_MANUFACTURERS_MAJOR': 'Auto Manufacturers - Major', 'AUTO_MANUFACTURERS_MAJOR_DESC': 'Auto Manufacturers - Major Stocks', 'AUTO_PARTS': 'Auto Parts', 'AUTO_PARTS_DESC': 'Auto Parts Stocks', 'AUTO_PARTS_STORES': 'Auto Parts Stores', 'AUTO_PARTS_STORES_DESC': 'Auto Parts Stores Stocks', 'AUTO_PARTS_WHOLESALE': 'Auto Parts Wholesale', 'AUTO_PARTS_WHOLESALE_DESC': 'Auto Parts Wholesale Stocks', 'AVAILABLE_FOR_SALE_SECURITIES': 'Available for Sale Securities', 'AVATAR_COPY': 'Choosing a more professional avatar will gain more trust from your followers.', 'AVERAGE': 'Average', 'AVERAGE_DILUTION_EARNINGS': 'Average Dilution Earnings', 'AVERAGE_FOR_CATEGORY': 'Average for Category', 'AVERAGE_VOLUME_3MONTH': 'Avg. Volume', 'AVG_COST_PER_QUANTITY': 'Avg Cost / Quantity', 'AVG_COST_PER_SHARE': 'Avg Cost / Share', 'AVERAGE_COST_PER_SHARE': 'Average Cost / Share', 'AVG_ESTIMATE': 'Avg. Estimate', 'AVG_HOURLY_EARNINGS': 'Average \\nHourly Earnings', 'AVG_MATURITY': 'Avg Maturity (days)', 'AVG_VOL_10_DAY': 'Avg Vol (10 day)', 'AVG_VOL_3_MONTH': 'Avg Vol (3 month)', 'BACK': 'Back', 'BALANCE_SHEET': 'Balance Sheet', 'BANCA-Y-SEGUROS_TITLE': 'Banking & Insurance', 'BANK_INDEBTEDNESS': 'Bank Indebtedness', 'BANK_OWNED_LIFE_INSURANCE': 'Bank Owned Life Insurance', 'BANQUE-ET-ASSURANCE_TITLE': 'Banking & Insurance', 'BAR': 'Bar', 'BASIC': 'Basic', 'BASIC_ACCOUNTING_CHANGE': 'Basic Accounting Change', 'BASIC_AVERAGE_SHARES': 'Basic Average Shares', 'BASIC_CONTINUOUS_OPERATIONS': 'Basic Continuous Operations', 'BASIC_DISCONTINUOUS_OPERATIONS': 'Basic Discontinuous Operations', 'BASIC_EPS': 'Basic EPS', 'BASIC_EPS_OTHER_GAINS_LOSSES': 'Basic EPS Other Gains Losses', 'BASIC_EXTRAORDINARY': 'Basic Extraordinary', 'BASIC_MATERIALS': 'Basic Materials', 'BASIC_MATERIALS_DESC': 'Basic Materials Stocks', 'BASIC_MATERIALS_WHOLESALE': 'Basic Materials Wholesale', 'BASIC_MATERIALS_WHOLESALE_DESC': 'Basic Materials Wholesale Stocks', 'BASIC_PORTFOLIO': 'Basic Portfolio', 'BEARISH': 'Bearish', 'BEARISH_STOCKS_RIGHT_NOW': 'Bearish Stocks Right Now', 'BEARS_SAY': 'Bears Say', 'BEAT': 'Beat', 'BEA_CODE': 'BEA Code', 'BEGINNING_CASH_POSITION': 'Beginning Cash Position', 'BEHAVIOR': 'Behavior', 'BELOW_AVG': 'Below Average', 'BENI-DI-CONSUMO_TITLE': 'Consumer Goods', 'BENS-DE-CONSUMO_TITLE': 'Consumer goods', 'BEST_ONE_YR_TOTAL_RETURN': 'Best 1 Yr Total Return ({date})', 'BEST_THREE_YR_TOTAL_RETURN': 'Best 3-Yr Total Return', 'BETA': 'BETA', 'BETA_5Y': 'Beta (5Y Monthly)', 'BETA_PORTFOLIO': 'Beta portfolio', 'BEVERAGES_BREWERS': 'Beverages - Brewers', 'BEVERAGES_BREWERS_DESC': 'Beverages - Brewers Stocks', 'BEVERAGES_SOFT_DRINKS': 'Beverages - Soft Drinks', 'BEVERAGES_SOFT_DRINKS_DESC': 'Beverages - Soft Drinks Stocks', 'BEVERAGES_WINERIES_DISTILLERS': 'Beverages - Wineries & Distillers', 'BEVERAGES_WINERIES_DISTILLERS_DESC': 'Beverages - Wineries & Distillers Stocks', 'BECOME_STREAMER': 'Become a livestreamer', 'BI_WEEKLY': 'Bi-weekly', 'BID': 'Bid', 'BILLION_SHORT': '{num}B', 'BIO': 'Bio', 'BIOTECHNOLOGY': 'Biotechnology', 'BIOTECHNOLOGY_DESC': 'Biotechnology Stocks', 'BIO_PLACEHOLDER': 'Tell your followers more about you', 'BLOCK_NO': 'Block No.', 'BLOCK_REWARD': 'Block Reward', 'BLOCK_RR': 'Block RR.', 'BLOG': 'Blog', 'BONDS': 'Bonds', 'BOND_A': 'A', 'BOND_AA': 'AA', 'BOND_AAA': 'AAA', 'BOND_B': 'B', 'BOND_BB': 'BB', 'BOND_BBB': 'BBB', 'BOND_BELOW_B': 'Below B', 'BOND_HOLDINGS': 'Bond Holdings', 'BOND_RATINGS': 'Bond Ratings', 'BOND_US_GOVERMENT': 'US Government', 'BOOK_VALUE_PER_SHARE': 'Book Value Per Share', 'BRAZIL': 'Brazil', 'BREXIT_TITLE': 'Brexit', 'BROADCASTING_RADIO': 'Broadcasting - Radio', 'BROADCASTING_RADIO_DESC': 'Broadcasting - Radio Stocks', 'BROADCASTING_TV': 'Broadcasting - TV', 'BROADCASTING_TV_DESC': 'Broadcasting - TV Stocks', 'BROKERAGE_AVAILABILITY': 'Brokerage Availability', 'BROUGHT_TO_YOU_BY_ISS': 'Corporate governance scores courtesy of', 'BROUGHT_TO_YOU_BY_ISS_CONTEXT': 'Scores indicate decile rank relative to index or region. A decile score of 1 indicates lower governance risk, while a 10 indicates higher governance risk.', 'BROWSER_UPGRADE': 'Some parts of this page is not supported on your current browser version. Please upgrade the browser to the latest.', 'BUILDINGS_AND_IMPROVEMENTS': 'Buildings And Improvements', 'BUILDING_MATERIALS_WHOLESALE': 'Building Materials Wholesale', 'BUILDING_MATERIALS_WHOLESALE_DESC': 'Building Materials Wholesale Stocks', 'BUILD_SCREENER_MSG': 'Build {type} screener with filters below', 'BULLISH': 'Bullish', 'BULLISH_STOCKS_RIGHT_NOW': 'Bullish Stocks Right Now', 'BULLS_SAY': 'Bulls Say', 'BULLISH_BEARISH_TITLE': 'How do you feel about {symbol}?', 'BUSINESS_EQUIPMENT': 'Business Equipment', 'BUSINESS_EQUIPMENT_DESC': 'Business Equipment Stocks', 'BUSINESS_SERVICES': 'Business Services', 'BUSINESS_SERVICES_DESC': 'Business Services Stocks', 'BUSINESS_SERVICES_TITLE': 'Business Services', 'BUSINESS_SOFTWARE_SERVICES': 'Business Software & Services', 'BUSINESS_SOFTWARE_SERVICES_DESC': 'Business Software & Services Stocks', 'BUY': 'Buy', 'BUY_SLASH_SELL': 'Buy/Sell', 'BUY_TO_COVER': 'Buy to Cover', 'BY': 'By', 'BY_ENTITY': 'by {entity}', 'CALENDAR': 'Calendar', 'CALENDAR_FRI': 'Fri', 'CALENDAR_MON': 'Mon', 'CALENDAR_MONTH_0': 'Jan', 'CALENDAR_MONTH_1': 'Feb', 'CALENDAR_MONTH_10': 'Nov', 'CALENDAR_MONTH_11': 'Dec', 'CALENDAR_MONTH_2': 'Mar', 'CALENDAR_MONTH_3': 'Apr', 'CALENDAR_MONTH_4': 'May', 'CALENDAR_MONTH_5': 'Jun', 'CALENDAR_MONTH_6': 'Jul', 'CALENDAR_MONTH_7': 'Aug', 'CALENDAR_MONTH_8': 'Sep', 'CALENDAR_MONTH_9': 'Oct', 'CALENDAR_SAT': 'Sat', 'CALENDAR_SUN': 'Sun', 'CALENDAR_THU': 'Thu', 'CALENDAR_TUES': 'Tues', 'CALENDAR_WED': 'Wed', 'CALLOUT': 'Callout', 'CANADA_TITLE': 'Canada', 'CANCEL': 'Cancel', 'CANDLE': 'Candle', 'CANVASS DISPLAY_TEXT': '${symbol} conversation', 'CANVASS SENTIMENT_PROMPT': 'How are you feeling about {symbol}?', 'CAPITAL_EX': 'Capital Expenditure', 'CAPITAL_EXPENDITURE': 'Capital Expenditure', 'CAPITAL_EXPENDITURE_REPORTED': 'Capital Expenditure Reported', 'CAPITAL_GAIN': 'Capital Gain', 'CAPITAL_LEASE_OBLIGATIONS': 'Capital Lease Obligations', 'CAPITAL_OR': 'OR', 'CAPITAL_STOCK': 'Capital Stock', 'CAPITAL_SURPLUS': 'Capital Surplus', 'CAREERS_TITLE': 'Careers', 'CASH': 'Cash', 'CASH_AND_CASH_EQUIVALENTS': 'Cash And Cash Equivalents', 'CASH_AND_DUE_FROM_BANKS': 'Cash And Due from Banks', 'CASH_AT_BEGINNING_OF_PERIOD': 'Cash at beginning of period', 'CASH_AT_END_OF_PERIOD': 'Cash at end of period', 'CASH_CASH_EQUIVALENTS_AND_FEDERAL_FUNDS_SOLD': 'Cash, Cash Equivalents & Federal Funds Sold', 'CASH_CASH_EQUIVALENTS_AND_SHORT_TERM_INVESTMENTS': 'Cash, Cash Equivalents & Short Term Investments', 'CASH_DEPOSIT': 'Cash Deposit', 'CASH_DIVIDENDS_PAID': 'Cash Dividends Paid', 'CASH_EQUIVALENTS': 'Cash Equivalents', 'CASH_FLOW': 'Cash Flow', 'CASH_FLOWSFROMUSEDIN_OPERATING_ACTIVITIES_DIRECT': 'Cash Flows from Used in Operating Activities Direct', 'CASH_FLOW_FROM_CONTINUING_FINANCING_ACTIVITIES': 'Cash Flow from Continuing Financing Activities', 'CASH_FLOW_FROM_CONTINUING_INVESTING_ACTIVITIES': 'Cash Flow from Continuing Investing Activities', 'CASH_FLOW_FROM_CONTINUING_OPERATING_ACTIVITIES': 'Cash Flow from Continuing Operating Activities', 'CASH_FLOW_FROM_DISCONTINUED_OPERATION': 'Cash Flow from Discontinued Operation', 'CASH_FLOW_FROM_FINANCING_ACT': 'Cash flows from financing activities', 'CASH_FLOW_FROM_INVESTING_ACT': 'Cash flows from investing activities ', 'CASH_FLOW_FROM_OP_ACT': 'Cash flows from operating activities', 'CASH_FLOW_STATEMENT': 'Cash Flow Statement', 'CASH_FROM_DISCONTINUED_FINANCING_ACTIVITIES': 'Cash from Discontinued Financing Activities', 'CASH_FROM_DISCONTINUED_INVESTING_ACTIVITIES': 'Cash from Discontinued Investing Activities', 'CASH_FROM_DISCONTINUED_OPERATING_ACTIVITIES': 'Cash from Discontinued Operating Activities', 'CASH_HOLDINGS': 'Cash Holdings', 'CASH_MANAGEMENT': 'Cash management', 'CASH_MANAGEMENT_CAPS': 'Cash Management', 'CASH_PAIDFOR_INSURANCE_ACTIVITIES': 'Cash Paid for Insurance Activities', 'CASH_PAIDTO_REINSURERS': 'Cash Paid to Reinsurers', 'CASH_PAYMENTSFOR_DEPOSITSBY_BANKSAND_CUSTOMERS': 'Cash Payments for Depositsby Banks & Customers', 'CASH_PAYMENTSFOR_LOANS': 'Cash Payments for Loans', 'CASH_RECEIPTSFROM_DEPOSITSBY_BANKSAND_CUSTOMERS': 'Cash Receipts from Depositsby Banks & Customers', 'CASH_RECEIPTSFROM_FEESAND_COMMISSIONS': 'Cash Receipts from Fees & Commissions', 'CASH_RECEIPTSFROM_LOANS': 'Cash Receipts from Loans', 'CASH_RECEIPTSFROM_SECURITIES_RELATED_ACTIVITIES': 'Cash Receipts from Securities Related Activities', 'CASH_RECEIPTSFROM_TAX_REFUNDS': 'Cash Receipts from Tax Refunds', 'CASH_RECEIVEDFROM_INSURANCE_ACTIVITIES': 'Cash Received from Insurance Activities', 'CASH_SETTINGS_BUY_BEHAVIOR': 'Use available cash holdings', 'CASH_SETTINGS_BUY_BEHAVIOR_LONG': 'Use available cash holdings to purchase new stocks', 'CASH_SETTINGS_SELL_BEHAVIOR': 'Auto-add proceeds to cash holdings', 'CASH_SETTINGS_SELL_BEHAVIOR_LONG': 'Auto-add sell proceeds to my Cash holdings', 'CASH_SETTINGS_DIVIDENDS_BEHAVIOR': 'Auto-add payouts to cash holdings', 'CASH_SETTINGS_DIVIDENDS_BEHAVIOR_LONG': 'Auto-add dividend payouts to my Cash holdings', 'CASH_TIP': 'Tip: Type \"$$\" to enter custom symbols such as \"$$CASH\"', 'CASH_WITHDRAW': 'Cash Withdraw', 'CATALOG_MAIL_ORDER_HOUSES': 'Catalog & Mail Order Houses', 'CATALOG_MAIL_ORDER_HOUSES_DESC': 'Catalog & Mail Order Houses Stocks', 'CATEGORY': 'Category', 'CATEGORY_AVG': 'Category Average', 'CATEGORY_RANK_YDT': 'Rank in Category (ytd)', 'CATEGORY_RANK_YDT_PERCENT': '% Rank in Category (ytd)', 'CATV_SYSTEMS': 'CATV Systems', 'CATV_SYSTEMS_DESC': 'CATV Systems Stocks', 'CEDED_PREMIUMS': 'Ceded Premiums', 'CEMENT': 'Cement', 'CEMENT_DESC': 'Cement Stocks', 'CHANGE': 'Change', 'CHANGEIN_INSURANCE_CONTRACT_ASSETS': 'Change in Insurance Contract Assets', 'CHANGES_IN_ACCOUNTS_RECEIVABLES': 'Changes in Accounts Receivables', 'CHANGES_IN_ACCOUNT_RECEIVABLES': 'Changes in Account Receivables', 'CHANGES_IN_CASH': 'Changes in Cash', 'CHANGES_IN_INVENTORIES': 'Changes In Inventories', 'CHANGES_IN_LIABILITIES': 'Changes In Liabilities', 'CHANGES_IN_OTHER_OPERATING_ACT': 'Changes In Other Operating Activities', 'CHANGES_IN_PRICE_AND_MARKET_CAP': 'Changes in Price and Market Cap', 'CHANGES_IN_VOLUME_AND_OWNERSHIP': 'Changes in Volume and Ownership', 'CHANGE_IN_ACCOUNT_PAYABLE': 'Change in Account Payable', 'CHANGE_IN_ACCRUED_EXPENSE': 'Change in Accrued Expense', 'CHANGE_IN_ACCRUED_INVESTMENT_INCOME': 'Change in Accrued Investment Income', 'CHANGE_IN_CASH_AND_EQ': 'Change in Cash and Cash Equivalents', 'CHANGE_IN_DEFERRED_ACQUISITION_COSTS': 'Change in Deferred Acquisition Costs', 'CHANGE_IN_DEFERRED_CHARGES': 'Change in Deferred Charges', 'CHANGE_IN_DIVIDEND_PAYABLE': 'Change in Dividend Payable', 'CHANGE_IN_FEDERAL_FUNDS_AND_SECURITIES_SOLD_FOR_REPURCHASE': 'Change in Federal Funds And Securities Sold for Repurchase', 'CHANGE_IN_FUNDS_WITHHELD': 'Change in Funds Withheld', 'CHANGE_IN_INCOME_TAX_PAYABLE': 'Change in Income Tax Payable', 'CHANGE_IN_INTEREST_PAYABLE': 'Change in Interest Payable', 'CHANGE_IN_INVENTORY': 'Change in Inventory', 'CHANGE_IN_LOANS': 'Change in Loans', 'CHANGE_IN_LOSS_AND_LOSS_ADJUSTMENT_EXPENSE_RESERVES': 'Change in Loss And Loss Adjustment Expense Reserves', 'CHANGE_IN_OTHER_CURRENT_ASSETS': 'Change in Other Current Assets', 'CHANGE_IN_OTHER_CURRENT_LIABILITIES': 'Change in Other Current Liabilities', 'CHANGE_IN_OTHER_WORKING_CAPITAL': 'Change in Other Working Capital', 'CHANGE_IN_PAYABLE': 'Change in Payable', 'CHANGE_IN_PAYABLES_AND_ACCRUED_EXPENSE': 'Change in Payables And Accrued Expense', 'CHANGE_IN_PREPAID_ASSETS': 'Change in Prepaid Assets', 'CHANGE_IN_RECEIVABLES': 'Change in Receivables', 'CHANGE_IN_REINSURANCE_RECOVERABLE_ON_PAID_AND_UNPAID_LOSSES': 'Change in Reinsurance Recoverable on Paid And Unpaid Losses', 'CHANGE_IN_RESTRICTED_CASH': 'Change in Restricted Cash', 'CHANGE_IN_TAX_PAYABLE': 'Change in Tax Payable', 'CHANGE_IN_TRADING_ACCOUNT_SECURITIES': 'Change in Trading Account Securities', 'CHANGE_IN_UNEARNED_PREMIUMS': 'Change in Unearned Premiums', 'CHANGE_IN_WORKING_CAPITAL': 'Change in working capital', 'CHARACTERISTICS': 'Characteristics', 'CHART': 'Chart', 'CHART_EVENTS': 'Chart Events', 'CHARTIQ_DISCLAIMER_TEXT': 'In partnership with ChartIQ', 'CHARTIQ_FEEDBACK': 'Give feedback', 'CHARTIQ_INTERVAL_DAY': '1 day', 'CHARTIQ_INTERVAL_DAYS': '{n} days', 'CHARTIQ_INTERVAL_HOUR': '1 hour', 'CHARTIQ_INTERVAL_HOURS': '{n} hours', 'CHARTIQ_INTERVAL_MIN': '1 min', 'CHARTIQ_INTERVAL_MINS': '{n} mins', 'CHARTIQ_INTERVAL_MONTH': '1 month', 'CHARTIQ_INTERVAL_MONTHS': '{n} months', 'CHARTIQ_INTERVAL_WEEK': '1 week', 'CHARTIQ_INTERVAL_YEAR': '1 year', 'CHART_NOT_AVAILABLE': 'This chart is not available', 'CHART_NOT_SUPPORTED': 'Stock chart is not supported by your current browser', 'CHART_PREFERENCE': 'Chart Preference', 'CHART_TEMP_NOT_AVAILABLE': 'Unable to display charts. Please try again later.', 'CHART_TYPE': 'Chart Type', 'CHART_FEATURE_CUE_EXPERT_1': 'See all the pro tools we have for you! Expand to explore', 'CHART_FEATURE_CUE_EXPERT_2': 'You asked, we added! Expand to explore our new features', 'CHART_FEATURE_CUE_START_1': 'This graph has more to offer! Expand to explore', 'CHART_FEATURE_CUE_START_2': 'See what else our graphs can do! Expand now', 'CHART_FEATURE_MARKETING_HEADLINE': 'NEW: Experience our best charts yet.', 'CHART_FEATURE_MARKETING_SUBHEAD': 'Everything you need for any kind of investing', 'CHART_FEATURE_MARKETING_ACTION': 'Explore new charts', 'CHART_FEATURE_MARKETING_TIP_1': 'Find MACD, RSI, and more than 100 different indicators', 'CHART_FEATURE_MARKETING_TIP_2': 'Compare multiple stocks, indexes, and more, all at once', 'CHART_FEATURE_MARKETING_TIP_3': 'Create your own analysis with 37 drawing tools ', 'CHART_FEATURE_MARKETING_TIP_4': 'Download your chart information in table format', 'CHART_FEATURE_MARKETING_TIP_5': 'Use Line, Candle, and other 30 different type of graphs', 'CHART_FEATURE_MARKETING_TIP_6': \"Light or Dark mode, that's up to you\", 'CHART_FEATURE_MARKETING_TIP_7': 'Real Time for all US exchanges (equities and etfs)', 'CHART_FEATURE_MARKETING_TIP_8': 'Accessibility: keyboard navigation for dialogs & UI controls', 'CHEMICALS_MAJOR_DIVERSIFIED': 'Chemicals - Major Diversified', 'CHEMICALS_MAJOR_DIVERSIFIED_DESC': 'Chemicals - Major Diversified Stocks', 'CHEMIE_TITLE': 'Chemie', 'CHIMICA-E-MATERIE-PRIME_TITLE': 'Chemical and Basic materials', 'CHOOSE_FILTERS': 'Choose filters to screen {quoteType}', 'CHOOSE_RECENT_VIEW': 'Recently viewed symbols', 'CIGARETTES': 'Cigarettes', 'CIGARETTES_DESC': 'Cigarettes Stocks', 'CIRCULATING_SUPPLY': 'Circulating Supply', 'CLAIMS_PAID': 'Claims Paid', 'CLASSESOF_CASH_PAYMENTS': 'Classes of Cash Payments', 'CLASSESOF_CASH_RECEIPTSFROM_OPERATING_ACTIVITIES': 'Classes of Cash Receipts from Operating Activities', 'CLEANING_PRODUCTS': 'Cleaning Products', 'CLEANING_PRODUCTS_DESC': 'Cleaning Products Stocks', 'CLEAR': 'Clear', 'CLEAR_DRAWINGS': 'Clear Drawings', 'CLOSE': 'Close', 'CLOSED': 'Closed', 'CLOSEDEND_FUND_DEBT': 'Closed-End Fund - Debt', 'CLOSEDEND_FUND_DEBT_DESC': 'Closed-End Fund - Debt Stocks', 'CLOSEDEND_FUND_EQUITY': 'Closed-End Fund - Equity', 'CLOSEDEND_FUND_EQUITY_DESC': 'Closed-End Fund - Equity Stocks', 'CLOSEDEND_FUND_FOREIGN': 'Closed-End Fund - Foreign', 'CLOSEDEND_FUND_FOREIGN_DESC': 'Closed-End Fund - Foreign Stocks', 'COIN_MARKET_CAP': 'CoinMarketCap', 'COIN_TYPE': 'Coin Type', 'COLLAPSE': 'Collapse', 'COLLAPSE_ALL': 'Collapse All', 'COLOR': 'Color', 'COLORED_BAR': 'Colored Bar', 'COMMERCIAL_LOAN': 'Commercial Loan', 'COMMERCIAL_PAPER': 'Commercial Paper', 'COMMISSION': 'Commission', 'COMMISSION_PAID': 'Commission Paid', 'COMMODITIES_TITLE': 'Futures', 'COMMONLY_USED': 'Commonly used', 'COMMON_STOCK': 'Common Stock', 'COMMON_STOCK_DIVIDEND_PAID': 'Common Stock Dividend Paid', 'COMMON_STOCK_EQUITY': 'Common Stock Equity', 'COMMON_STOCK_ISSUANCE': 'Common Stock Issuance', 'COMMON_STOCK_ISSUED': 'Common stock issued', 'COMMON_STOCK_PAYMENTS': 'Common Stock Payments', 'COMMON_STOCK_REPURCHASED': 'Common stock repurchased', 'COMMON_UTILITY_PLANT': 'Common Utility Plant', 'COMMUNICATION_EQUIPMENT': 'Communication Equipment', 'COMMUNICATION_EQUIPMENT_DESC': 'Communication Equipment Stocks', 'COMMUNICATION_SERVICES': 'Communication Services', 'COMMUNITY': 'Message Boards', 'COMMUNITY_SENTIMENT_DESC': 'We’ve tracked changes in conversation so you can see what the buzz is about.', 'COMMUNITY_SENTIMENT_TITLE': 'Community Conversation', 'COMPACT_TABLE_DENSITY': 'Compact Table Density', 'COMPANIES': 'Companies', 'COMPANY': 'Name', 'COMPANY360': 'Company 360', 'COMPANY_360_FOOTER_DIVIDENDS': 'Morningstar calculates dividend yield based on distributions. It measures the income generated by investing in a stock.', 'COMPANY_360_FOOTER_EARNINGS': \"Refinitiv's I/B/E/S database aggregates earnings estimates from sell-side analysts and derives a consensus forecast.\", 'COMPANY_360_FOOTER_INNOVATION': \"Trea's Innovation Index provides a comprehensive look into every aspect of a company's research and development.\", 'COMPANY_360_FOOTER_SIGDEV': \"Refinitiv's Significant Developments highlight the most pertinent market-moving company news headlines.\", 'COMPANY_360_LEGEND_INNOVATION': 'Sector score {score}', 'COMPANY_360_MOST_RECENT': 'most recent', 'COMPANY_360_NO_DATA': '{type} data is not made public by this company', 'COMPANY_ANALYSIS': 'Company analysis', 'COMPANY_DATA_PROVIDED_BY': '{companyName} data provided by', 'COMPANY_INSIGHTS': 'Company Insights', 'COMPANY_METRICS': 'Company Metrics', 'COMPANY_NAME': 'Company Name', 'COMPANY_OUTLOOK': 'Company Outlook', 'COMPANY_PROFILE': 'Profile', 'COMPANY_SUMMARY': 'Company Summary', 'COMPANY_VS_SECTOR': '{company} vs Sector', 'COMPARABLE': 'Comparable', 'COMPARISON': 'Comparison', 'COMPENSATION_DISCLOSURE': 'Amounts are as of {date} and compensation values are for the last fiscal year ending on that date. Pay is salary, bonuses, etc. Exercised is the value of options exercised during the fiscal year. Currency in {currency}.', 'COMPETITOR_FILINGS': 'Competitor Filings', 'COMPLETE_LIST': 'Complete list', 'COMPONENTS': 'Components', 'COMPUTERS_WHOLESALE': 'Computers Wholesale', 'COMPUTERS_WHOLESALE_DESC': 'Computers Wholesale Stocks', 'COMPUTER_BASED_SYSTEMS': 'Computer Based Systems', 'COMPUTER_BASED_SYSTEMS_DESC': 'Computer Based Systems Stocks', 'COMPUTER_PERIPHERALS': 'Computer Peripherals', 'COMPUTER_PERIPHERALS_DESC': 'Computer Peripherals Stocks', 'CONFECTIONERS': 'Confectioners', 'CONFECTIONERS_DESC': 'Confectioners Stocks', 'CONFIRM': 'Confirm', 'CONFIRM_DELETE': 'Confirm Delete', 'CONFIRM_DELETE_MSG': 'Are you sure you want to delete {pfName}?', 'CONFIRM_DELETE_SCREENER_MSG': 'Are you sure you want to delete {scrName} screener?', 'CONFIRM_DELETE_TICKER': 'Are you sure you want to remove {symbol}?', 'CONFIRM_DELETE_ALL_TICKERS': 'Are you sure you want to remove all of these symbols from this portfolio?', 'CONFIRM_DELETE_TICKER_TRANSACTIONS_PLURAL': 'There are {transactionsCount} transactions associated with this symbol. Are you sure you want to remove {symbol}?', 'CONFIRM_UNLINK_MSG': 'Are you sure you want to unlink {pfName}?', 'CONGLOMERATES': 'Conglomerates', 'CONGLOMERATES_DESC': 'Conglomerates Stocks', 'CONSERVATIVE_FOREIGN_FUNDS': 'Conservative Foreign Funds', 'CONSERVATIVE_FOREIGN_FUNDS_DESC': 'Foreign funds with Performance Rating of 4 & 5, low risk and top-half returns', 'CONSTRUCAO-EQUIPAMENTOS_TITLE': 'Construction & Equipment', 'CONSTRUCCION-Y-TRANSPORTES_TITLE': 'Construction and Transportation', 'CONSTRUCCION_TITLE': 'Building', 'CONSTRUCTION_IN_PROGRESS': 'Construction in Progress', 'CONSUMER_CYCLICAL': 'Consumer Cyclical', 'CONSUMER_DEFENSIVE': 'Consumer Defensive', 'CONSUMER_GOODS': 'Consumer Goods', 'CONSUMER_GOODS_DESC': 'Consumer Goods Stocks', 'CONSUMER_LOAN': 'Consumer Loan', 'CONSUMER_PRODUCTS_MEDIA_TITLE': 'Consumer Products & Media', 'CONSUMER_SERVICES': 'Consumer Services', 'CONSUMER_SERVICES_DESC': 'Consumer Services Stocks', 'CONTINUING_AND_DISCONTINUED_BASIC_EPS': 'Continuing & Discontinued Basic EPS', 'CONTINUING_AND_DISCONTINUED_DILUTED_EPS': 'Continuing & Discontinued Diluted EPS', 'CONTRACT_NAME': 'Contract Name', 'CONTRACT_RANGE': 'Contract Range', 'CONVERSATIONS': 'Conversations', 'CONVERTIBLE': 'Convertable', 'CONVERT_TO_WATCHLIST': 'Convert this to watchlist', 'CONVO_MSG_APPS_TITLE_END': '{host} is removing Conversations', 'CONVO_MSG_END_1': '{host} will soon be removing our Conversations message boards. Thanks for being such a loyal member of our Finance Conversations community!', 'CONVO_MSG_END_2': '{host} will be removing our Conversations message boards on Aug. 15. Thanks for being such a loyal member of our Finance Conversations community!', 'CONVO_MSG_HK_1': 'Our goal is to create a safe and engaging place for users to connect over interests and passions. In order to improve our community experience, we will soon be disabling commenting.', 'CONVO_MSG_HK_2': 'Our goal is to create a safe and engaging place for users to connect over interests and passions. In order to improve our community experience, we will soon be disabling commenting on August 15.', 'COPIED_TO_CLIPBOARD': 'Copied to clipboard.', 'COLORED_AREA': 'Colored Area', 'COPPER': 'Copper', 'COPPER_DESC': 'Copper Stocks', 'COPY': 'Copy', 'CORPORATE_ACTIONS': 'Corporate Actions', 'CORPORATE_EVENTS': 'Corporate Events', 'CORPORATE_GOVERNANCE': 'Corporate Governance', 'CORRECTIVE': 'Corrective:', 'COST_OF_REVENUE': 'Cost of Revenue', 'COST_PER_QUANTITY': 'Cost / Quantity', 'COST_PER_SHARE': 'Cost / Share', 'COST_PER_SHARE_DESCRIPTION': 'Price paid for buying an individual stock, or simply price per share.', 'CREATE': 'Create', 'CREATE_NEW_PORTFOLIO': 'Create New Portfolio', 'CREATE_NEW_LIST': 'Create list', 'CREATE_NEW_SCREENER': 'Create New Screener', 'CREATE_A_NEW_SCREENER': 'Create a New Screener', 'CREATE_NEW_SCREENER_DES': 'Pick a screener type to get started', 'CREATE_NEW_VIEW': 'Create New View', 'CREATE_PF_ERROR': 'Unable to create new portfolio. Please retry.', 'CREATE_PORTFOLIO': 'Create Portfolio', 'CREATE_STREAM_PROFILE': 'Create my Streamer profile', 'CREATE_WATCHLIST_UPSELL': 'Create watchlists to find unexpected patterns', 'CREATOR_TERMS_AGREEMENT': \"You agree to our {termsAndConditionsLink} Also, each product may be subject to additional terms required by the product's vendor, which you can review here.\", 'CREDIT_CARD': 'Credit Card', 'CREDIT_LOSSES_PROVISION': 'Credit Losses Provision', 'CREDIT_QUALITY': 'Credit Quality', 'CREDIT_SERVICES': 'Credit Services', 'CREDIT_SERVICES_DESC': 'Credit Services Stocks', 'CRYPTO_CURRENCIES': 'Cryptocurrencies', 'CRYPTO_ACCOUNT_MANAGEMENT': 'Crypto Account Management', 'CRYPTO_ACCOUNT_REMAINING_STEPS': 'Remaining steps', 'CRYPTO_ACCOUNT_REMAINING_STEPS_INFO': 'You are close to finishing up your account creation. Initiate fund transfer and start trading', 'CRYPTO_INITIATE_FUNDS': 'Add your bank account using Plaid and start initiating funds for crypto trading.', 'CRYPTO_TRADABLE_TITLE': 'Browse over 300 cryptos on Yahoo from here', 'CRYPTO_TRADABLE_INFO': 'Learn about Yahoo Crypto now, sign up today and start browsing. Certain limitations apply.', 'CRYPTO_TRADING_ACTION': 'Browse tradable coins', 'CRYPTO_TRADING_INFO': 'Learn about Yahoo Crypto now, sign up today and start browsing 21 cryptos. Certain limitations apply.', 'CRYPTO_TRADING_LEARN_MORE': 'Learn more about Yahoo Crypto', 'CRYPTO_TRADING_TITLE': 'The new crypto trading starts from here', 'CRYPTO_TRANSACTION_LIMIT_TITLE': 'Your current transaction limit', 'CRYPTO_TRANSACTION_UNLOCK_LIMIT_TITLE': 'Unlock unlimited trading', 'CRYPTO_TRANSACTION_UNLOCK_LIMIT_INFO': 'Don’t want to be limited? Send a link to your phone to verify your government ID and get unlimited crypto trading today!', 'CROSSHAIR': 'Crosshair', 'CRYPTO_ALL_IN_ONE': 'Security and simplicity, all in one place', 'CRYPTO_3_EASY_STEPS': 'Start buying cryptos in 3 Easy Steps', 'CRYPTO_CREATE_ACCT': 'Create account', 'CRYPTO_EXPLORE': 'Explore 300+ coins for your trading', 'CRYPTO_HOURS': 'Full extended hours trading with 24/7 live help and support', 'CRYPTO_EXT_HOURS': 'Extended Trading Hours', 'CRYPTO_HOW_IT_WORKS': 'How it works', 'CRYPTO_OPEN_ACCT': 'Open an account at Yahoo to trade 300+ coins', 'CRYPTO_OPEN_ACCT2': 'Open an account at Yahoo to trade these coins', 'CRYPTO_NO_TX_FEES': 'No transactional fees', 'CRYPTO_MARKETING': 'Security and simplicity, all in one place', 'CRYPTO_SECURITY': 'Security', 'CRYPTO_TRANSFER_FUND_TX': 'Transfer your funds and start transacting', 'CRYPTO_TRANSFER_FUND': 'Transfer Funds', 'CRYPTO_VERIFY_ID': 'Verify your identity', 'ALL_CRYPTOCURRENCIES_US': 'Cryptocurrencies', 'ALL_CRYPTOCURRENCIES_EU': 'Cryptocurrencies', 'CURATED_BY': 'Curated by', 'CURRENCY': 'Currency', 'CURRENCY_NOTICE': 'Currency in {currency}', 'CURRENCY_VALUE': 'Currency: {currency}', 'CURRENT': 'Current', 'CURRENT_ACCRUED_EXPENSES': 'Current Accrued Expenses', 'CURRENT_ASSETS': 'Current Assets', 'CURRENT_CAPITAL_LEASE_OBLIGATION': 'Current Capital Lease Obligation', 'CURRENT_DEBT': 'Current Debt', 'CURRENT_DEBT_AND_CAPITAL_LEASE_OBLIGATION': 'Current Debt And Capital Lease Obligation', 'CURRENT_DEFERRED_ASSETS': 'Current Deferred Assets', 'CURRENT_DEFERRED_LIABILITIES': 'Current Deferred Liabilities', 'CURRENT_DEFERRED_REVENUE': 'Current Deferred Revenue', 'CURRENT_DEFERRED_TAXES_ASSETS': 'Current Deferred Taxes Assets', 'CURRENT_DEFERRED_TAXES_LIABILITIES': 'Current Deferred Taxes Liabilities', 'CURRENT_ESTIMATE': 'Current Estimate', 'CURRENT_LIABILITIES': 'Current Liabilities', 'CURRENT_NOTES_PAYABLE': 'Current Notes Payable', 'CURRENT_PRICE': 'Current Price', 'CURRENT_PROVISIONS': 'Current Provisions', 'CURRENT_QTR': 'Current Qtr.', 'CURRENT_RATIO': 'Current Ratio', 'CURRENT_YEAR': 'Current Year', 'CUSTOM': 'Custom', 'CUSTOMER_ACCEPTANCES': 'Customer Acceptances', 'CUSTOMER_ACCOUNTS': 'Customer Accounts', 'CUSTOMIZE': 'Customize', 'CWL_FOLLOWING_EMPTY': 'You are currently not following any lists', 'CWL_SIGN_IN_TO_VIEW': 'Sign in to view your followed lists', 'DAILY': 'Daily', 'DAILY_GAIN': 'Daily Gain', 'DAILY_PERCENT_GAIN': 'Daily % Gain', 'DAIRY_PRODUCTS': 'Dairy Products', 'DAIRY_PRODUCTS_DESC': 'Dairy Products Stocks', 'DARK': 'Dark', 'DASH': '-', 'DASHBOARD': 'Dashboard', 'DATA_NA': 'Data N/A', 'DATA_PROVIDED_BY': 'Data provided by {dataSource}', 'DATA_STORAGE_DEVICES': 'Data Storage Devices', 'DATA_STORAGE_DEVICES_DESC': 'Data Storage Devices Stocks', 'DATA_UTILITY_PF_TITLE': 'My Portfolio & Markets', 'DATA_UNAVAILABLE': 'Data unavailable', 'DATE': 'Date', 'DATES': 'Dates', 'DATE_FORMAT_ERROR': \"Date format should be 'mm/dd/yyyy'\", 'DATE_PRIOR_THAN_MIN_ERROR': \"Date shouldn't be prior to '{date}'\", 'DATE_RANGE': 'Date Range', 'DATE_RANGE_ERROR': \"'Start' date must be prior to 'End' date.\", 'DATE_REPORTED': 'Date Reported', 'DAYS_RANGE': \"Day's Range\", 'DAY_CHG': 'Day Chg', 'DAY_CHG_PCT': 'Day Chg %', 'DAY_GAIN': 'Day Gain', 'DAY_GAINERS': 'Day Gainers', 'DAY_GAINERS_DESC': 'Stocks ordered in descending order by price percent change with respect to the previous close.', 'DAY_LOSERS': 'Day Losers', 'DAY_LOSERS_DESC': 'Stocks ordered in ascending order by price percent change with respect to the previous close.', 'DC_1YR_TARGET_EST': '1yr Target Est', 'DC_200_DMA': '200-DMA', 'DC_200_DMA_CHG': '200-DMA Chg', 'DC_200_DMA_CHG_P': '200-DMA Chg %', 'DC_50_DMA': '50-DMA', 'DC_50_DMA_CHG': '50-DMA Chg', 'DC_50_DMA_CHG_P': '50-DMA Chg %', 'DC_52_WK_HIGH': '52-Wk High', 'DC_52_WK_HIGH_CHG': '52-Wk High Chg', 'DC_52_WK_HIGH_CHG_P': '52-Wk High Chg %', 'DC_52_WK_LOW': '52-Wk Low', 'DC_52_WK_LOW_CHG': '52-Wk Low Chg', 'DC_52_WK_LOW_CHG_P': '52-Wk Low Chg %', 'DC_52_WK_RANGE': '52-Wk Range', 'DC_ANNUALIZED_GAIN': 'Annualized Gain', 'DC_ANNUALIZED_GAIN_PERCENT': 'Annualized Gain %', 'DC_AVG_VOL_10DAY': 'Avg Vol (10day)', 'DC_AVG_VOL_3M': 'Avg Vol (3m)', 'DC_CHG_P': 'Chg %', 'DC_EX_DIV_DATE': 'Ex-Div Date', 'DC_FORWARD_ANNUAL_DIV_RATE': 'Forward Annual Div Rate', 'DC_FORWARD_ANNUAL_DIV_YIELD': 'Forward Annual Div Yield', 'DC_NO_OF_LOTS': 'No. of Lots', 'DC_PEG_RATIO_5YR_EXPECTED': 'PEG Ratio (5yr expected)', 'DC_POST_MKT_CHG': 'Post-Mkt Chg', 'DC_POST_MKT_CHG_P': 'Post-Mkt Chg %', 'DC_POST_MKT_PRICE': 'Post-Mkt Price', 'DC_POST_MKT_TIME': 'Post-Mkt Time', 'DC_PRE_MKT_CHG': 'Pre-Mkt Chg', 'DC_PRE_MKT_CHG_P': 'Pre-Mkt Chg %', 'DC_PRE_MKT_PRICE': 'Pre-Mkt Price', 'DC_PRE_MKT_TIME': 'Pre-Mkt Time', 'DC_TRAILING_ANNUAL_DIV_RATE': 'Trailing Annual Div Rate', 'DC_TRAILING_ANNUAL_DIV_YIELD': 'Trailing Annual Div Yield', 'DC_TRAILING_P_E': 'Trailing P/E', 'DDA_COSTOF_REVENUE': 'DDA Cost of Revenue', 'DEBT_RATIOS': 'Debt Ratios', 'DEBT_REPAYMENT': 'Debt repayment', 'DECORATION': 'Decoration:', 'DECREASEIN_INTEREST_BEARING_DEPOSITSIN_BANK': 'Decrease in Interest Bearing Depositsin Bank', 'DEFERRED_ASSETS': 'Deferred Assets', 'DEFERRED_INCOME_TAX': 'Deferred Income Tax', 'DEFERRED_INCOME_TAXES': 'Deferred income taxes', 'DEFERRED_LONG_TERM_ASSET_CHARGES': 'Deferred Long Term Asset Charges', 'DEFERRED_LONG_TERM_LIABILITY_CHARGES': 'Deferred Long Term Liability Charges', 'DEFERRED_POLICY_ACQUISITION_COSTS': 'Deferred Policy Acquisition Costs', 'DEFERRED_REVENUES': 'Deferred revenues', 'DEFERRED_TAX': 'Deferred Tax', 'DEFERRED_TAXES_LIABILITIES': 'Deferred taxes liabilities', 'DEFERRED_TAX_ASSETS': 'Deferred Tax Assets', 'DEFINED_PENSION_BENEFIT': 'Defined Pension Benefit', 'DELETE': 'Delete', 'DELETE_LOT': 'Delete Lot', 'DELETE_PORTFOLIO': 'Delete Portfolio', 'DELETE_PORTFOLIO_ERROR': 'Unable to delete portfolio. Please retry.', 'DELETE_PORTFOLIO_TITLE': 'Delete Portfolio?', 'DELETE_SCREENER': 'Delete Screener', 'DELETE_SYMBOLS': 'Delete Symbols', 'DELETE_SYMBOLS_ERROR': 'Unable to delete symbols. Please retry.', 'DELETE_SYMBOLS_TITLE': 'Delete Symbols?', 'DELETE_TRANSACTION': 'Delete transaction', 'DELETE_TRANSACTION_MESSAGE': 'Are you sure you want to remove this {transactionType} transaction for {symbol}?', 'DELETE_TRANSACTION_MESSAGE_CASH': 'Are you sure you want to remove this {transactionType} cash transaction?', 'DELETE_VIEW': 'Delete View', 'DELETE_VIEW_ERROR': 'Unable to delete view. Please retry.', 'DELETE_VIEW_TITLE': 'Delete View?', 'DEPARTMENT_STORES': 'Department Stores', 'DEPARTMENT_STORES_DESC': 'Department Stores Stocks', 'DEPLETION': 'Depletion', 'DEPLETION_DEPLETION_INCOME_STATEMENT': 'Depletion & Depletion Income Statement', 'DEPOSITSBY_BANK': 'Depositsby Bank', 'DEPRECIATION': 'Depreciation', 'DEPRECIATION_AMORTIZATION_DEPLETION': 'Depreciation Amortization Depletion', 'DEPRECIATION_AND_AMORTIZATION': 'Depreciation & amortization', 'DEPRECIATION_DEPRECIATION_INCOME_STATEMENT': 'Depreciation & Depreciation Income Statement', 'DERIVATIVE_ASSETS': 'Derivative Assets', 'DERIVATIVE_PRODUCT_LIABILITIES': 'Derivative Product Liabilities', 'DESCRIPTION': 'Description', 'DESC_ORDER': 'Descending Order', 'DETAILS': 'Details', 'DG_BASIC': 'Basic', 'DG_DETAILS': 'Details', 'DG_ESTIMATES': 'Estimates', 'DG_EXTENDED_HOURS': 'Extended Hours', 'DG_MOVING_AVERAGES': 'Moving Averages', 'DG_PORTFOLIOS': 'Portfolios', 'DIAGNOSTIC_SUBSTANCES': 'Diagnostic Substances', 'DIAGNOSTIC_SUBSTANCES_DESC': 'Diagnostic Substances Stocks', 'DIFF': 'Diff', 'DIFFERENCE': 'Difference', 'DILUTED': 'Diluted', 'DILUTED_ACCOUNTING_CHANGE': 'Diluted Accounting Change', 'DILUTED_AVERAGE_SHARES': 'Diluted Average Shares', 'DILUTED_CONTINUOUS_OPERATIONS': 'Diluted Continuous Operations', 'DILUTED_DISCONTINUOUS_OPERATIONS': 'Diluted Discontinuous Operations', 'DILUTED_EPS': 'Diluted EPS', 'DILUTED_EPS_OTHER_GAINS_LOSSES': 'Diluted EPS Other Gains Losses', 'DILUTED_EXTRAORDINARY': 'Diluted Extraordinary', 'DILUTED_NI_AVAILTO_COM_STOCKHOLDERS': 'Diluted NI Available to Com Stockholders', 'DIRECT': 'Direct', 'DISABLED': 'Disabled', 'DISCONTINUED_OPS': 'Discontinued Operations', 'DISCOUNT_VARIETY_STORES': 'Discount, Variety Stores', 'DISCOUNT_VARIETY_STORES_DESC': 'Discount, Variety Stores Stocks', 'DISCOVER_INVESTMENT_IDEAS': 'Discover Investment Ideas', 'DIVERSIFIED_BUSINESS_TITLE': 'Diversified Business', 'DIVERSIFIED_COMMUNICATION_SERVICES': 'Diversified Communication Services', 'DIVERSIFIED_COMMUNICATION_SERVICES_DESC': 'Diversified Communication Services Stocks', 'DIVERSIFIED_COMPUTER_SYSTEMS': 'Diversified Computer Systems', 'DIVERSIFIED_COMPUTER_SYSTEMS_DESC': 'Diversified Computer Systems Stocks', 'DIVERSIFIED_ELECTRONICS': 'Diversified Electronics', 'DIVERSIFIED_ELECTRONICS_DESC': 'Diversified Electronics Stocks', 'DIVERSIFIED_INVESTMENTS': 'Diversified Investments', 'DIVERSIFIED_INVESTMENTS_DESC': 'Diversified Investments Stocks', 'DIVERSIFIED_MACHINERY': 'Diversified Machinery', 'DIVERSIFIED_MACHINERY_DESC': 'Diversified Machinery Stocks', 'DIVERSIFIED_UTILITIES': 'Diversified Utilities', 'DIVERSIFIED_UTILITIES_DESC': 'Diversified Utilities Stocks', 'DIVIDEND_MANAGEMENT': 'Dividend Management', 'DIVIDEND_PAYOUT': 'Your next dividend payout is scheduled for {date}. Payouts are reflected in your Cash Holdings and will also be added here automatically.', 'DIVIDEND_PAYOUT_LABEL': 'Dividend payout', 'DIVIDEND_PAYOUT_RATIO': 'Dividend Payout Ratio', 'DIVIDENDS': 'Dividends', 'DIVIDENDS_AND_SPLITS': 'Dividends & Splits', 'DIVIDENDS_ONLY': 'Dividends Only', 'DIVIDENDS_PAID': 'Dividends Paid', 'DIVIDENDS_PAID_DIRECT': 'Dividends Paid Direct', 'DIVIDENDS_PAYABLE': 'Dividends Payable', 'DIVIDENDS_RECEIVED_CFI': 'Dividends Received CFI', 'DIVIDENDS_RECEIVED_DIRECT': 'Dividends Received Direct', 'DIVIDEND_AND_YIELD': 'Forward Dividend & Yield', 'DIVIDEND_DATE': 'Dividend Date', 'DIVIDEND_INCOME': 'Dividend Income', 'DIVIDEND_PAID_CFO': 'Dividend Paid CFO', 'DIVIDEND_PER_SHARE': 'Dividend Per Share', 'DIVIDEND_RECEIVED_CFO': 'Dividend Received CFO', 'DOMESTIC_SALES': 'Domestic Sales', 'DONE': 'Done', 'DOODLE': 'Doodle', 'DOWN': 'Down', 'DOWNGRADE': 'Downgrade', 'DOWNLOAD': 'Download', 'DOWNLOAD_APP_NOTE': 'To view complete list, get the Yahoo Finance App', 'DOWN_LAST_30_DAYS': 'Down Last 30 Days', 'DOWN_LAST_7_DAYS': 'Down Last 7 Days', 'DRAW': 'Draw', 'DRUGS_GENERIC': 'Drugs - Generic', 'DRUGS_GENERIC_DESC': 'Drugs - Generic Stocks', 'DRUGS_WHOLESALE': 'Drugs Wholesale', 'DRUGS_WHOLESALE_DESC': 'Drugs Wholesale Stocks', 'DRUG_DELIVERY': 'Drug Delivery', 'DRUG_DELIVERY_DESC': 'Drug Delivery Stocks', 'DRUG_MANUFACTURERS_MAJOR': 'Drug Manufacturers - Major', 'DRUG_MANUFACTURERS_MAJOR_DESC': 'Drug Manufacturers - Major Stocks', 'DRUG_MANUFACTURERS_OTHER': 'Drug Manufacturers - Other', 'DRUG_MANUFACTURERS_OTHER_DESC': 'Drug Manufacturers - Other Stocks', 'DRUG_RELATED_PRODUCTS': 'Drug Related Products', 'DRUG_RELATED_PRODUCTS_DESC': 'Drug Related Products Stocks', 'DRUG_STORES': 'Drug Stores', 'DRUG_STORES_DESC': 'Drug Stores Stocks', 'DUEFROM_RELATED_PARTIES_CURRENT': 'Due from Related Parties Current', 'DUEFROM_RELATED_PARTIES_NON_CURRENT': 'Due from Related Parties Non Current', 'DUETO_RELATED_PARTIES': 'Due to Related Parties', 'DUETO_RELATED_PARTIES_CURRENT': 'Due to Related Parties Current', 'DUETO_RELATED_PARTIES_NON_CURRENT': 'Due to Related Parties Non Current', 'DUE_FROM_RELATED_PARTIES': 'Due from Related Parties', 'DURATION': 'Duration', 'DYNAMIC': 'Dynamic', 'EARNINGS': 'Earnings', 'EARNINGS_BEFORE_INTEREST_TAX': 'Earnings Before Interest and Taxes', 'EARNINGS_CALENDAR': 'Earnings Calendar', 'EARNINGS_CALL': 'Earnings Call', 'EARNINGS_DATE': 'Earnings Date', 'EARNINGS_DOWNLOAD_TITLE': 'Download {earnings} slides', 'EARNINGS_ESTIMATE': 'Earnings Estimate', 'EARNINGS_FROM_EQUITY_INTEREST': 'Earnings from Equity Interest', 'EARNINGS_FROM_EQUITY_INTEREST_NET_OF_TAX': 'Earnings from Equity Interest Net of Tax', 'EARNINGS_HISTORY': 'Earnings History', 'EARNINGS_LOSSES_FROM_EQUITY_INVESTMENTS': 'Earnings Losses from Equity Investments', 'EARNINGS_PER_SHARE': 'Earnings Per Share', 'EARNINGS_REPORT': 'Earnings Report', 'EBIT': 'EBIT', 'EBITDA': 'EBITDA', 'ECONOMIC': 'Economic', 'ECONOMIC_INDICATOR': 'Economic Indicator', 'ECONOMIC_MOAT': 'Economic Moat', 'ECONOMIC_TRENDS': 'Economic Trends', 'EDIT': 'Edit', 'EDITORS_PICK': \"Editor's Pick\", 'EDIT_CASH_SETTINGS': 'Edit Cash Settings', 'EDIT_CURRENCY': 'Edit Currency', 'EDIT_CURRENCY_ERROR': 'Unable to change currency. Please retry.', 'EDIT_EXISTING_CASH_TRANSACTION': 'Edit Cash Transaction', 'EDIT_EXISTING_TRANSACTION': 'Edit transaction - {symbol} ({name})', 'EDIT_PORTOFLIO': 'Edit Portfolio', 'EDIT_SYMBOLS': 'Edit Symbols', 'EDIT_TOTAL_HOLDINGS_SETTINGS': 'Edit Total Holdings Settings', 'EDIT_TRANSACTION': 'Edit transaction', 'EDIT_VIEW': 'Edit View', 'EDUCATION_LOT': 'Share lots are the summary of your key purchasing of stocks on different days.', 'EDUCATION_TRAINING_SERVICES': 'Education & Training Services', 'EDUCATION_TRAINING_SERVICES_DESC': 'Education & Training Services Stocks', 'EDUCATION_TRANSACTION': 'Transactions will record every transaction you do including buy, sell, etc.', 'EFFECT_OF_ACCOUNTING_CHANGES': 'Effect of Accounting Changes', 'EFFECT_OF_EXCHANGE_RATE_CHANGES': 'Effect of Exchange Rate Changes', 'ELECTRIC_UTILITIES': 'Electric Utilities', 'ELECTRIC_UTILITIES_DESC': 'Electric Utilities Stocks', 'ELECTRIC_UTILITY_PLANT': 'Electric Utility Plant', 'ELECTRONICS_STORES': 'Electronics Stores', 'ELECTRONICS_STORES_DESC': 'Electronics Stores Stocks', 'ELECTRONICS_WHOLESALE': 'Electronics Wholesale', 'ELECTRONICS_WHOLESALE_DESC': 'Electronics Wholesale Stocks', 'ELECTRONIC_EQUIPMENT': 'Electronic Equipment', 'ELECTRONIC_EQUIPMENT_DESC': 'Electronic Equipment Stocks', 'ELLIPSE': 'Ellipse', 'EMAIL': 'Email', 'EMPLOYEE_BENEFITS': 'Employee Benefits', 'EMPLOYEES': 'Employees', 'EMPLOYMENT_ENTERPRISING_TITLE': 'Employment and enterprising', 'ENABLED': 'Enabled', 'END_CASH_POSITION': 'End Cash Position', 'END_DATE': 'End Date', 'ENERGIA-PETROLEO-GAS_TITLE': 'Energy & Oil & Gas', 'ENERGIA_TITLE': 'Energy', 'ENERGIE-ET-ENVIRONNEMENT_TITLE': 'Energy & Environment', 'ENERGY_TITLE': 'Energy', 'ENTERPRISE_VALUE': 'Enterprise Value', 'ENTERPRISE_VALUE_TO_EBITDA': 'Enterprise Value/EBITDA', 'ENTERPRISE_VALUE_TO_REVENUE': 'Enterprise Value/Revenue', 'ENTERTAINMENT_DIVERSIFIED': 'Entertainment - Diversified', 'ENTERTAINMENT_DIVERSIFIED_DESC': 'Entertainment - Diversified Stocks', 'ENTER_COMMUNITY_ROOM': 'Enter this livestream room for more', 'ENTER_EMAIL': 'Enter email', 'ENTER_PERSONAL_INFO': 'Enter your personal information', 'ENTER_PORTFOLIO_NAME': 'Enter Portfolio Name', 'ENTER_SYMBOL_COMPANY': 'Enter symbols or company names', 'ENTER_VIEW_NAME': 'Enter View Name', 'ENVIRONMENT': 'Environment Risk Score', 'ENVIRONMENTAL': 'Environmental', 'EPS_ACTUAL': 'EPS Actual', 'EPS_AND_INCOME_STATEMENT': 'EPS and Income Statement', 'EPS_EST': 'EPS Est.', 'EPS_RATIO': 'EPS (TTM)', 'EPS_REVISIONS': 'EPS Revisions', 'EPS_TREND': 'EPS Trend', 'EQUIPMENT': 'Equipment', 'EQUITY_AND_OTHER_INVESTMENTS': 'Equity and other investments', 'EQUITY_HOLDINGS': 'Equity Holdings', 'EQUITY_INVESTMENTS': 'Equity Investments', 'EQUITY_SCREENER': 'Equity Screener', 'EQUITY_SCREENER_DES': 'Find the best stocks according to your criteria with coverage that includes global markets with more than 50 regions', 'ESG_ADULT': 'Adult Entertainment', 'ESG_AGGREGATE_PERF': 'AGGREGATE PERFORMANCE', 'ESG_ALCOHOLIC': 'Alcoholic Beverages', 'ESG_ANIMALTESTING': 'Animal Testing', 'ESG_AUM_DEF': \"The percent of a fund's assets under management that has ESG scores from Sustainalytics.\", 'ESG_AUM_PERCENTAGE': 'based on {percentage}% AUM', 'ESG_AVG_PERF': 'Medium', 'ESG_CATHOLIC': 'Catholic Values', 'ESG_CATHOLIC_DEF': 'Flags a company’s involvement in abortion, contraceptives, or human embryonic stem cell and fetal tissue research.', 'ESG_CAT_PERCENT_RANK': 'Sustainability % rank in category: {rank}', 'ESG_COAL': 'Thermal Coal', 'ESG_CONTROVERSIALWEAPONS': 'Controversial Weapons', 'ESG_CONTROVERSY_DEDUCTION': 'Controversy Deduction', 'ESG_CONTROVERSY_LEVEL': '{level} Controversy level', 'ESG_CONTROVERSY_LEVEL_DEF': 'Sustainalytics’ Controversies Research identifies companies involved in incidents and events that may negatively impact stakeholders, the environment or the company’s operations. Controversies are rated on a scale from one to five with five denoting the most serious controversies with the largest potential impact.', 'ESG_CONTROVERSY_LEVEL_TITLE': 'Controversy Level', 'ESG_DATA_NOT_AVAILABLE': 'Sustainability data is not available', 'ESG_E': 'E', 'ESG_FOCUS': 'Yes, ESG Focus', 'ESG_FOOTER_MSG': \"Sustainalytics' ESG Risk Ratings measure how well a company manages environmental, social, and governance issues.\", 'ESG_FURLEATHER': 'Fur and Specialty Leather', 'ESG_G': 'G', 'ESG_GAMBLING': 'Gambling', 'ESG_GMO': 'GMO', 'ESG_LAG_PERF': 'Negligible', 'ESG_LAST_UPDATED': 'Last updated on {month}/{year}', 'ESG_LEAD_PERF': 'Severe', 'ESG_MILITARYCONTRACT': 'Military Contracting', 'ESG_NUCLEAR': 'Nuclear', 'ESG_OUT_PERF': 'High', 'ESG_PALMOIL': 'Palm Oil', 'ESG_PEER_CATEGORY_AVG': 'Peer avg.', 'ESG_PERFORMANCE_FUNDS': 'ESG Performance for the Fund Portfolio Snapshot', 'ESG_PERFORMANCE_VS_PEER': 'ESG Performance vs {peerCount} Peer Companies', 'ESG_PERF_HISTORICAL': 'Historical ESG Performance', 'ESG_PERF_TITLE': 'ESG PERFORMANCE', 'ESG_PESTICIDES': 'Pesticides', 'ESG_PORT_CONTROVERSY_DEF': 'The Portfolio Controversy Score is the asset-weighted average level of the seriousness of the controversial incidents of companies in the portfolio. A lower score is better than a higher score, as it indicates fewer controversies. Controversies are represented as: Low, Moderate, Significant, High, or Severe, or None, if there is no evidence of controversy.', 'ESG_PORT_ESG_DEF': \"The Portfolio ESG Score is the asset-weighted average of the normalized company ESG Scores for the covered holdings in a portfolio. Higher scores are better than lower scores and, at the portfolio level, indicate that a fund has more of its assets invested in companies that score well under Sustainalytics' ESG methodology, which evaluates company preparedness, disclosure. \", 'ESG_PORT_SCORE': 'Portfolio Sustainability Score', 'ESG_POWERED_BY': 'ESG data provided by Sustainalytics, Inc.', 'ESG_PRODUCT_INVOLVE_DEF': 'Flags a company’s involvement in products, services and business activities commonly used for screening purposes.', 'ESG_RATINGS': 'Environment, Social and Governance (ESG) Risk Ratings', 'ESG_RATINGS_DEF': 'Sustainalytics’ ESG Risk Ratings assess the degree to which a company’s enterprise business value is at risk driven by environmental, social and governance issues. The rating employs a two-dimensional framework that combines an assessment of a company’s exposure to industry-specific material ESG issues with an assessment of how well the company is managing those issues. The final ESG Risk Ratings scores are a measure of unmanaged risk on an absolute scale of 0-100, with a lower score signaling less unmanaged ESG Risk.', 'ESG_REL_CAT': 'Relative to Morningstar Category: {relation}', 'ESG_S': 'S', 'ESG_SCORE': 'ESG Risk Score', 'ESG_SCORES': 'ESG Scores', 'ESG_SCORE_PEERS': 'ESG Risk Score for Peers', 'ESG_SMALLARMS': 'Small Arms', 'ESG_SOCIALLY_RESPONSIBLE_FUND_DEF': 'An indication that the fund discloses in their prospectus that they employ socially responsible or ESG principles in their investment selection processes. These funds make investments based on ethics or values on issues like environmental responsibility, human rights, or religious views. This group also includes funds that may avoid investing in companies that produce or distribute alcohol, tobacco, or weapons.', 'ESG_SUSTAINABILITY_MANDATE': 'Sustainability mandate: {responsible}', 'ESG_SUSTAINABILITY_RATING': 'Sustainability Rating', 'ESG_SUSTAINABILITY_SCORE': 'Sustainability Score', 'ESG_SUSTAINABILITY_SCORE_DEF': 'Morningstar assigns Sustainability Ratings by ranking all scored funds within a Morningstar Category by their Portfolio Sustainability Scores. The ranked funds are then divided into five groups, based on a normal distribution to assign a rating from \"High\" to \"Low\", or 5 globes to 1 globe.', 'ESG_THIS_COMPANY': '( this company )', 'ESG_TOBACCO': 'Tobacco Products', 'ESG_TOTAL_SCORE': 'Total ESG Risk score', 'ESG_UNDER_PERF': 'Low', 'EST': 'Est.', 'ESTIMATE': 'Estimate', 'ESTIMATED_RESULTS': 'Estimated results', 'ETF': 'ETF', 'ETF_SCREENER': 'ETF Screener', 'ETF_SCREENER_DES': 'Search hundreds of ETFs by criteria such as the expense ratio, historical performance, and more', 'ETFS': 'ETFs', 'ETF_LEGAL_TYPE': 'Legal Type', 'EVENTS': 'Events', 'EVENTS_CALENDAR_MSG': 'Events Calendar for:', 'EVENTS_NONE': 'No events found', 'EVENTS_SELECT_A_FEW': 'Select a few events to plot.', 'EVENT_DESCRIPTION': 'Event Description', 'EVENT_FILTERS': 'Event Filters', 'EVENT_LIST': 'Event List', 'EVENT_LIST_BACK': 'Back to events list', 'EVENT_TIME_TYPE_AMC': 'After Market Close', 'EVENT_TIME_TYPE_BMO': 'Before Market Open', 'EVENT_TIME_TYPE_TAS': 'Time As Supplied', 'EVENT_TIME_TYPE_TNS': 'Time Not Supplied', 'EXCESS_TAX_BENEFIT_FROM_STOCK_BASED_COMPENSATION': 'Excess Tax Benefit from Stock Based Compensation', 'EXCISE_TAXES': 'Excise Taxes', 'EXERCISED': 'Exercised', 'EXHIBITS': 'Exhibits', 'EXPAND': 'Expand', 'EXPAND_ALL': 'Expand All', 'EXPAND_SLASH_COLLAPSE_ALL': 'Expand/Collapse All', 'EXPAND_SLASH_COLLAPSE_ALL_SPACE': 'Expand / Collapse All', 'EXPENSE': 'Expense', 'EXPENSE_RATIO': 'Expense Ratio (net)', 'EXPIRED': 'Expired', 'EXPIRE_DATE': 'Expire Date', 'EXPLORATION_DEVELOPMENT_AND_MINERAL_PROPERTY_LEASE_EXPENSES': 'Exploration Development & Mineral Property Lease Expenses', 'EXPLORE': 'Explore', 'EXPLORE_NEW_FINANCIALS': 'Explore detailed look into companies’ financial history', 'EXPORT': 'Export', 'EXPORTS': 'Exports', 'EXPORT_VIEW': 'Export View', 'EXPOSURE': 'Exposure', 'EXTENDED_HOURS': 'Extended hours', 'EXTENSION_PROMO_TITLE': 'Get live quotes and news on new tabs', 'EXTRAORDINARY_ITEMS': 'Extraordinary Items', 'EX_DIVIDEND_DATE': 'Ex-Dividend Date', 'FACEBOOK': 'Facebook', 'FACEBOOK_SHARE': 'Share', 'FAILED_TO_COPY': 'Failed to copy.', 'FAILED_TO_LOAD_SCREENERS_LINE_1': 'We are working on getting your other screeners ready.', 'FAILED_TO_LOAD_SCREENERS_LINE_2': 'You can still create another one.', 'FAILSAFE_CACHE_MESSAGE': 'We are experiencing some temporary issues. The market data on this page is currently delayed. Please bear with us as we address this and restore your personalized lists.', 'FAIR_VALUE': 'Fair Value', 'FARMACEUTICA_TITLE': 'Pharmaceutical', 'FARM_CONSTRUCTION_MACHINERY': 'Farm & Construction Machinery', 'FARM_CONSTRUCTION_MACHINERY_DESC': 'Farm & Construction Machinery Stocks', 'FARM_PRODUCTS': 'Farm Products', 'FARM_PRODUCTS_DESC': 'Farm Products Stocks', 'FEATURECUE_BETA_PORTFOLIO': 'Create a new Beta Portfolio to experience all the new features.', 'FEATURECUE_CHART_SLT': 'Click here to switch to Line, Candle or Bar charts!', 'FEATURECUE_QUOTE_TRADE': 'See all your accounts in one place. Trade quickly and easily with any US broker.', 'FEATURECUE_TICKER_SHARE_LIST': 'NEW: Share lists of your favorite tickers', 'FEATURECUE_TICKER_SHARE_LIST_SHORT': 'NEW: Share ticker lists', 'FEATURECUE_CUSTOMSYMBOL_IN_TOTALGAINS': 'NEW: Custom symbols like $$CASH are now reflected in your day and total gain percentages', 'FEATURECUE_CRYPTOCURRENCIES_NAV': \"NEW: We've added over 9,000 cryptocurrencies\", 'FEDERAL_FUNDS_PURCHASED': 'Federal Funds Purchased', 'FEDERAL_FUNDS_PURCHASED_AND_SECURITIES_SOLD_UNDER_AGREEMENT_TO_REPURCHASE': 'Federal Funds Purchased And Securities Sold Under Agreement To Repurchase', 'FEDERAL_FUNDS_SOLD': 'Federal Funds Sold', 'FEDERAL_FUNDS_SOLD_AND_SECURITIES_PURCHASE_UNDER_AGREEMENTS_TO_RESELL': 'Federal Funds Sold & Securities Purchased Under Agreements to Resell', 'FEDERAL_HOME_LOAN_BANK_STOCK': 'Federal Home Loan Bank Stock', 'FEE': 'Fee', 'FEESAND_COMMISSION_EXPENSE': 'Fees & Commission Expense', 'FEESAND_COMMISSION_INCOME': 'Fees & Commission Income', 'FEES_AND_COMMISSIONS': 'Fees And Commissions', 'FEES_AND_EXPENSES': 'Fees & Expenses', 'FEE_REVENUE_AND_OTHER_INCOME': 'Fee Revenue & Other Income', 'FIBONACCI': 'Fibonacci', 'FIBONACCI_RATIOS': 'Fibonacci Ratios', 'FIBONACCI_TIMEZONE': 'Fibonacci Timezone', 'FIFTY_TWO_WK_RANGE': '52 Week Range', 'FILINGS': 'Filings', 'FILLED_JOBS': 'Filled Jobs', 'FILTERS': 'Filters', 'FILTER_CREATED': 'Created on {date}', 'FILTER_REPORTS': 'Filter reports', 'FILTER_TRADE_IDEAS': 'Filter investment ideas', 'FILTER_UPDATED': 'Updated on {date}', 'FINAL_ROUND_TITLE': 'The Final Round', 'FINANCIAL': 'Financial', 'FINANCIALS': 'Financials', 'FINANCIAL_ASSETS': 'Financial Assets', 'FINANCIAL_ASSETS_DESIGNATEDAS_FAIR_VALUE_THROUGH_PROFITOR_LOSS_TOTAL': 'Financial Assets Designatedas Fair Value Through Profitor Loss Total', 'FINANCIAL_CURRENCY': 'Currency in {currency}. {thousandsMessage}', 'FINANCIAL_DESC': 'Financial Stocks', 'FINANCIAL_HIGHLIGHTS': 'Financial Highlights', 'FINANCIAL_INSTRUMENTS_SOLD_UNDER_AGREEMENTS_TO_REPURCHASE': 'Financial Instruments Sold Under Agreements To Repurchase', 'FINANCIAL_SERVICES': 'Financial Services', 'FINANCIAL_TITLE': 'Financial', 'FINANCING_ACTIVITIES_CASHFLOWS_PROVIDED': 'Financing Activities, Cash Flows Provided By or Used In', 'FINANCING_CASH_FLOW': 'Financing Cash Flow', 'FINANZAS_TITLE': 'Finance & Banking', 'FINANZA_TITLE': 'Finance & Banking', 'FIND_EARNINGS_FOR_SYMBOLS': 'Find earnings for symbols', 'FIND_FILTERS': 'Find filters', 'FIND_RESULTS': 'Find {text}', 'FINISHED_GOODS': 'Finished Goods', 'FISCAL_YEAR': 'Fiscal Year', 'FISCAL_YEAR_ENDS': 'Fiscal Year Ends', 'FIVE_YEAR': '5-Year', 'FIVE_YEAR_AVERAGE_RETURN': '5y Average Return', 'FIVE_YEAR_EXPENSE_PROJECTION': '5 Yr Expense Projection', 'FIVE_YEAR_GROWTH_RATE': 'PE Growth Rate(5Y)', 'FIVE_YR_AVG_RETURN_PCT': '5-Year Average Return', 'FIXED_ASSETS_REVALUATION_RESERVE': 'Fixed Assets Revaluation Reserve', 'FIXED_MATURITY_INVESTMENTS': 'Fixed Maturity Investments', 'FLIGHT_FLEET_VEHICLE_AND_RELATED_EQUIPMENTS': 'Flight Fleet Vehicle & Related Equipments', 'FLOATING': 'Floating', 'FOLLOW': 'Follow', 'FOLLOWER_COUNT': '{count} followers', 'FOLLOWING_TITLE': 'Following', 'FOLLOW_ONBOARDING_TITLE': 'Follow the right companies and find patterns you need.', 'FOLLOW_ONBOARDING_DESC': 'Follow stocks with a click, and we’ll organize them into lists. You can also create and organize watchlists under Following', 'UNFOLLOW': 'Unfollow', 'FOLLOWING_TICKER': 'Now following {ticker}', 'TICKERS_IN_LIST': 'Watchlists with {ticker}:', 'UNFOLLOW_EVERYWHERE': 'Unfollow {ticker} everywhere', 'FOOD_MAJOR_DIVERSIFIED': 'Food - Major Diversified', 'FOOD_MAJOR_DIVERSIFIED_DESC': 'Food - Major Diversified Stocks', 'FOOD_WHOLESALE': 'Food Wholesale', 'FOOD_WHOLESALE_DESC': 'Food Wholesale Stocks', 'FOOTER_COMPANY_TEXT': '{copyright}. All rights reserved.', 'FOOT_NOTES': 'Footnotes', 'FOR': 'for', 'FORECLOSED_ASSETS': 'Foreclosed Assets', 'FOREIGN_CURRENCY_TRANSLATION_ADJUSTMENTS': 'Foreign Currency Translation Adjustments', 'FOREIGN_EXCHANGE_TRADING_GAINS': 'Foreign Exchange Trading Gains', 'FOREIGN_MONEY_CENTER_BANKS': 'Foreign Money Center Banks', 'FOREIGN_MONEY_CENTER_BANKS_DESC': 'Foreign Money Center Banks Stocks', 'FOREIGN_REGIONAL_BANKS': 'Foreign Regional Banks', 'FOREIGN_REGIONAL_BANKS_DESC': 'Foreign Regional Banks Stocks', 'FOREIGN_SALES': 'Foreign Sales', 'FOREIGN_UTILITIES': 'Foreign Utilities', 'FOREIGN_UTILITIES_DESC': 'Foreign Utilities Stocks', 'FORWARD_ANNUAL_DIVIDEND_RATE': 'Forward Annual Dividend Rate', 'FORWARD_ANNUAL_DIVIDEND_YIELD': 'Forward Annual Dividend Yield', 'FORWARD_PE': 'Forward P/E', 'FRANCE': 'France', 'FREE_CASH_FLOW': 'Free Cash Flow', 'FREE_REALTIME': 'Real Time Price', 'FREQUENCY': 'Frequency', 'FROM': 'From', 'FUEL_AND_PURCHASE_POWER': 'Fuel & Purchase Power', 'FULL_CHART_VIEW': 'Full Chart View', 'FULL_FILING_AT_EDGAR_ONLINE': 'Full Filing', 'FULL_SCREEN': 'Full screen', 'FULL_TIME_EMPLOYEES': 'Full Time Employees', 'FUNDAMENTAL': 'Fundamental', 'FUNDAMENTALS': 'Fundamentals', 'FUND_FAMILY': 'Fund Family', 'FUND_INCEPTION_DATE': 'Inception Date', 'FUND_OPERATIONS': 'Fund Operations', 'FUND_OVERVIEW': 'Fund Overview', 'FUND_SUMMARY': 'Fund Summary', 'FUTURE': 'Future', 'FUTURES_SCREENER': 'Futures Screener', 'FUTURES_SCREENER_DES': 'Find the contracts to invest in and includes exchanges, day percent change, and region filters for further customization', 'FUTURES': 'Futures', 'FUTURES_CHAIN': 'Futures Chain', 'FUTURE_POLICY_BENEFITS': 'Future Policy Benefits', 'FYE': 'fye', 'GAINON_SALEOF_INVESTMENT_PROPERTY': 'Gain on Saleof Investment Property', 'GAINON_SALEOF_LOANS': 'Gain on Saleof Loans', 'GAINS_LOSSES_NOT_AFFECTING_RETAINED_EARNINGS': 'Gains Losses Not Affecting Retained Earnings', 'GAIN_LOSSON_SALEOF_ASSETS': 'Gain Losson Saleof Assets', 'GAIN_LOSS_ON_INVESTMENT_SECURITIES': 'Gain Loss On Investment Securities', 'GAIN_LOSS_ON_SALE_OF_BUSINESS': 'Gain Loss On Sale of Business', 'GAIN_LOSS_ON_SALE_OF_PPE': 'Gain Loss On Sale of PPE', 'GAIN_ON_SALE_OF_BUSINESS': 'Gain on Sale of Business', 'GAIN_ON_SALE_OF_PPE': 'Gain on Sale of PPE', 'GAIN_ON_SALE_OF_SECURITY': 'Gain on Sale of Security', 'GAMING_ACTIVITIES': 'Gaming Activities', 'GAMING_ACTIVITIES_DESC': 'Gaming Activities Stocks', 'GAS_UTILITIES': 'Gas Utilities', 'GAS_UTILITIES_DESC': 'Gas Utilities Stocks', 'GATHERING_HOLDINGS': 'Gathering holdings...', 'GDP_REAL': 'Real GDP per Capita', 'GDP_VALUE': 'GDP Value', 'GENERAL': 'Breaking News', 'GENERAL_AND_ADMINISTRATIVE_EXPENSE': 'General & Administrative Expense', 'GENERAL_BUILDING_MATERIALS': 'General Building Materials', 'GENERAL_BUILDING_MATERIALS_DESC': 'General Building Materials Stocks', 'GENERAL_CONTRACTORS': 'General Contractors', 'GENERAL_CONTRACTORS_DESC': 'General Contractors Stocks', 'GENERAL_ENTERTAINMENT': 'General Entertainment', 'GENERAL_ENTERTAINMENT_DESC': 'General Entertainment Stocks', 'GENERAL_PARTNERSHIP_CAPITAL': 'General Partnership Capital', 'GENERATE_LINK': 'Generate Sharable Link', 'GERMANY': 'Germany', 'GET_FINANCE_APP': 'Get the Yahoo Finance app', 'GET_STARTED': 'Get started', 'GIVE_FEEDBACK': 'Give feedback', 'GOLD': 'Gold', 'GOLD_DESC': 'Gold Stocks', 'GOODWILL': 'Goodwill', 'GOODWILL_AND_OTHER_INTANGIBLE_ASSETS': 'Goodwill And Other Intangible Assets', 'GOOD_LIFE_TITLE': 'The Good Life', 'GOTO_SYMBOL': 'Go to Symbol', 'GOTO_TEXT': 'Go to {text}', 'GOTO_TRANSACTION': 'Go to Transaction', 'GOVERNANCE': 'Governance Risk Score', 'GOVERNANCE_QUICKSCORE': '{company}’s ISS Governance QualityScore as of {date} is {score}.', 'GRAY_BACKGROUND_STRIPS': 'Gray background strips', 'GROCERY_STORES': 'Grocery Stores', 'GROCERY_STORES_DESC': 'Grocery Stores Stocks', 'GROSS_ACCOUNTS_RECEIVABLE': 'Gross Accounts Receivable', 'GROSS_LOAN': 'Gross Loan', 'GROSS_PPE': 'Gross PPE', 'GROSS_PREMIUMS_WRITTEN': 'Gross Premiums Written', 'GROSS_PROFIT': 'Gross Profit', 'GROSS_PROPERTY_PLANT_AND_EQUIPMENT': 'Gross property, plant and equipment', 'GROWTH_ESTIMATES': 'Growth Estimates', 'GROWTH_TECHNOLOGY_STOCKS': 'Growth Technology Stocks', 'GROWTH_TECHNOLOGY_STOCKS_DESC': 'Technology stocks with revenue and earnings growth in excess of 25%.', 'HARDWARE_ELECTRONICS_TITLE': 'Computer Hardware & Electronics', 'HAVE_NO_SCREENERS': 'Screeners lets you choose from hundreds of data filters to discover Stocks, Mutual Funds, ETFs and more. {more}', 'HEADS_UP_DISPLAY_HIDE': 'Hide Heads-Up Display', 'HEADS_UP_DISPLAY_SHOW': 'Show Heads-Up Display', 'HELP': 'Help', 'HEALTHCARE': 'Healthcare', 'HEALTHCARE_DESC': 'Healthcare Stocks', 'HEALTHCARE_INFORMATION_SERVICES': 'Healthcare Information Services', 'HEALTHCARE_INFORMATION_SERVICES_DESC': 'Healthcare Information Services Stocks', 'HEALTHCARE_TITLE': 'Healthcare', 'HEALTH_CARE_PLANS': 'Health Care Plans', 'HEALTH_CARE_PLANS_DESC': 'Health Care Plans Stocks', 'HEATMAP_VIEW': 'Heatmap View', 'HEAVY_CONSTRUCTION': 'Heavy Construction', 'HEAVY_CONSTRUCTION_DESC': 'Heavy Construction Stocks', 'HEDGING_ASSETS_CURRENT': 'Hedging Assets Current', 'HELD_TO_MATURITY_SECURITIES': 'Held To Maturity Securities', 'HELP_INFO_ADJ_CLOSE': '**Adjusted close price adjusted for splits and dividend and/or capital gain distributions.', 'HELP_INFO_CLOSE': '*Close price adjusted for splits.', 'HIDE_ALL': 'Hide all', 'HIDE_OUTLIERS': 'Hide outliers', 'HIGH': 'High', 'HIGH-TECH_TITLE': 'Tech', 'HIGH_ESTIMATE': 'High Estimate', 'HIGH_YIELD_BOND': 'High Yield Bond', 'HIGH_YIELD_BOND_DESC': 'High Yield Bond with Performance Rating of 4 & 5, low risk and top-half returns', 'HIRING': 'Hiring', 'HIRING_FOOTER_MSG': 'Greenwich HR aggregates job listings from public and private sources. Job listings signal hiring action 1-3m ahead.', 'HIRING_LEGEND_MSG': '% Change in total hiring', 'HIRING_TRENDS': 'Hiring Trends', 'HISTORICAL_DATA': 'Historical Data', 'HISTORICAL_PERFORMANCE': 'Historical Performance', 'HISTORICAL_PRICE': 'Historical Prices', 'HOLD': 'Hold', 'HOLDER': 'Holder', 'HOLDERS': 'Holders', 'HOLDINGS': 'Holdings', 'HOLLOW_CANDLE': 'Hollow Candle', 'HOME_FURNISHINGS_FIXTURES': 'Home Furnishings & Fixtures', 'HOME_FURNISHINGS_FIXTURES_DESC': 'Home Furnishings & Fixtures Stocks', 'HOME_FURNISHING_STORES': 'Home Furnishing Stores', 'HOME_FURNISHING_STORES_DESC': 'Home Furnishing Stores Stocks', 'HOME_HEALTH_CARE': 'Home Health Care', 'HOME_HEALTH_CARE_DESC': 'Home Health Care Stocks', 'HOME_IMPROVEMENT_STORES': 'Home Improvement Stores', 'HOME_IMPROVEMENT_STORES_DESC': 'Home Improvement Stores Stocks', 'HONG_KONG_STOCKS': 'Hong Kong Stocks', 'HORIZONTAL': 'Horizontal', 'HOSPITALS': 'Hospitals', 'HOSPITALS_DESC': 'Hospitals Stocks', 'HOUSEWARES_ACCESSORIES': 'Housewares & Accessories', 'HOUSEWARES_ACCESSORIES_DESC': 'Housewares & Accessories Stocks', 'IDENTITY_VERIFICATION': 'Identity verification', 'IMMOBILIER-ET-BTP_TITLE': 'Construction and public works', 'IMPAIRMENT_OF_CAPITAL_ASSETS': 'Impairment of Capital Assets', 'IMPLIED_SHARES_OUTSTANDING': 'Implied Shares Outstanding', 'IMPORT': 'Import', 'IMPORT_PF_ERROR': 'There was some error while importing your portfolio. Please Try Again.', 'IMPORT_PORTFOLIO': 'Import Portfolio', 'IMPORT_PORTFOLIO_MSG': 'Import your portfolio via CSV file', 'IMPULSE': 'Impulse:', 'INCLUDE_BETA_PORTFOLIO_VALUES': 'Include Beta portfolio values', 'INCOME': 'Income', 'INCOMEFROM_ASSOCIATESAND_OTHER_PARTICIPATING_INTERESTS': 'Income from Associates & Other Participating Interests', 'INCOME_BEFORE_TAX': 'Income Before Tax', 'INCOME_FROM_CONTINUING_OPS': 'Income from Continuing Operations', 'INCOME_STATEMENT': 'Income Statement', 'INCOME_TAX_EXPENSE': 'Income Tax Expense', 'INCOME_TAX_PAID_SUPPLEMENTAL_DATA': 'Income Tax Paid Supplemental Data', 'INCOME_TAX_PAYABLE': 'Income Tax Payable', 'INCREASEIN_INTEREST_BEARING_DEPOSITSIN_BANK': 'Increase in Interest Bearing Depositsin Bank', 'INCREASE_DECREASE_IN_DEPOSIT': 'Increase Decrease in Deposit', 'INCREASE_DECREASE_IN_NET_UNEARNED_PREMIUM_RESERVES': 'Increase Decrease in Net Unearned Premium Reserves', 'INDEPENDENT_OIL_GAS': 'Independent Oil & Gas', 'INDEPENDENT_OIL_GAS_DESC': 'Independent Oil & Gas Stocks', 'INDEX': 'Index', 'INDEX_SCREENER': 'Index Screener', 'INDEX_SCREENER_DES': 'Find stock market indexes often grouped around a particular sector, industry, or the stock market overall', 'INDEXES': 'Indexes', 'INDEX_COMPONENTS_NO_DATA': 'Components data is not available', 'INDEX_PROFILE': 'Index Profile', 'INDEX_WEIGHT': '% Index Weight', 'INDIA': 'India', 'INDIRECT': 'Indirect', 'INDIVIDUAL_OR_ENTITY': 'Individual or Entity', 'INDUSTRIA-ALIMENTICIA_TITLE': 'Food industry', 'INDUSTRIA-FINANCEIRA_TITLE': 'Financial Industry', 'INDUSTRIA-MANUFACTURERA_TITLE': 'Industrial Manufacturing', 'INDUSTRIA-MANUFATUREIRA_TITLE': 'Manufacturing industry', 'INDUSTRIALS_TITLE': 'Industrials', 'INDUSTRIAL_ELECTRICAL_EQUIPMENT': 'Industrial Electrical Equipment', 'INDUSTRIAL_ELECTRICAL_EQUIPMENT_DESC': 'Industrial Electrical Equipment Stocks', 'INDUSTRIAL_EQUIPMENT_COMPONENTS': 'Industrial Equipment & Components', 'INDUSTRIAL_EQUIPMENT_COMPONENTS_DESC': 'Industrial Equipment & Components Stocks', 'INDUSTRIAL_EQUIPMENT_WHOLESALE': 'Industrial Equipment Wholesale', 'INDUSTRIAL_EQUIPMENT_WHOLESALE_DESC': 'Industrial Equipment Wholesale Stocks', 'INDUSTRIAL_GOODS': 'Industrial Goods', 'INDUSTRIAL_GOODS_DESC': 'Industrial Goods Stocks', 'INDUSTRIAL_METALS_MINERALS': 'Industrial Metals & Minerals', 'INDUSTRIAL_METALS_MINERALS_DESC': 'Industrial Metals & Minerals Stocks', 'INDUSTRIAS-EM-GERAL_TITLE': 'Industries in general', 'INDUSTRIA_TITLE': 'Industrials', 'INDUSTRIE-LOURDE_TITLE': 'Industrials', 'INDUSTRY': 'Industry', 'INDUSTRY_CATEGORY': 'Industry / Category', 'INFORMATION_DELIVERY_SERVICES': 'Information & Delivery Services', 'INFORMATION_DELIVERY_SERVICES_DESC': 'Information & Delivery Services Stocks', 'INFORMATION_TECHNOLOGY_SERVICES': 'Information Technology Services', 'INFORMATION_TECHNOLOGY_SERVICES_DESC': 'Information Technology Services Stocks', 'INITIATE_FUND_TRANSFER': 'Initiate fund transfer', 'INITIATED': 'Initiated', 'INNOVATION': 'Innovation', 'INNOVATION_OUTLOOK': 'Innovation Outlook', 'INSIDER': 'Insider', 'INSIDER_OWNERSHIP': 'Insider Ownership', 'INSIDER_PURCHASES_LAST_SIX_MONTHS': 'Insider Purchases Last 6 Months', 'INSIDER_ROSTER': 'Insider Roster', 'INSIDER_SENTIMENT': 'Insider Sentiment', 'INSIDER_TRANSACTIONS': 'Insider Transactions', 'INSIGHTS': 'Insights', 'INSTITUTIONAL_OWNERSHIP': 'Institutional Ownership', 'INSTITUTIONAL_INTEREST': 'Institutional Interest', 'INSTITUTIONAL_HOLDINGS': 'Institutional Holdings', 'INSURANCE_AND_CLAIMS': 'Insurance & Claims', 'INSURANCE_BROKERS': 'Insurance Brokers', 'INSURANCE_BROKERS_DESC': 'Insurance Brokers Stocks', 'INTANGIBLE_ASSETS': 'Intangible Assets', 'INTERESTAND_COMMISSION_PAID': 'Interestand Commission Paid', 'INTEREST_BEARING_DEPOSITS_ASSETS': 'Interest Bearing Deposits Assets', 'INTEREST_BEARING_DEPOSITS_LIABILITIES': 'Interest Bearing Deposits Liabilities', 'INTEREST_CREDITED_ON_POLICYHOLDER_DEPOSITS': 'Interest Credited On Policyholder Deposits', 'INTEREST_EXPENSE': 'Interest Expense', 'INTEREST_EXPENSE_FOR_DEPOSIT': 'Interest Expense for Deposit', 'INTEREST_EXPENSE_FOR_FEDERAL_FUNDS_SOLD_AND_SECURITIES_PURCHASE_UNDER_AGREEMENTS_TO_RESELL': 'Interest Expense for Federal Funds Sold And Securities Purchase Under Agreements To Resell', 'INTEREST_EXPENSE_FOR_LONG_TERM_DEBT_AND_CAPITAL_SECURITIES': 'Interest Expense for Long Term Debt And Capital Securities', 'INTEREST_EXPENSE_FOR_SHORT_TERM_DEBT': 'Interest Expense for Short Term Debt', 'INTEREST_EXPENSE_NON_OPERATING': 'Interest Expense Non Operating', 'INTEREST_INCOME': 'Interest Income', 'INTEREST_INCOME_FROM_DEPOSITS': 'Interest Income from Deposits', 'INTEREST_INCOME_FROM_FEDERAL_FUNDS_SOLD_AND_SECURITIES_PURCHASE_UNDER_AGREEMENTS_TO_RESELL': 'Interest Income from Federal Funds Sold And Securities Purchase Under Agreements To Resell', 'INTEREST_INCOME_FROM_LEASES': 'Interest Income from Leases', 'INTEREST_INCOME_FROM_LOANS': 'Interest Income from Loans', 'INTEREST_INCOME_FROM_LOANS_AND_LEASE': 'Interest Income from Loans And Lease', 'INTEREST_INCOME_FROM_SECURITIES': 'Interest Income from Securities', 'INTEREST_INCOME_NON_OPERATING': 'Interest Income Non Operating', 'INTEREST_PAID_CFF': 'Interest Paid CFF', 'INTEREST_PAID_CFO': 'Interest Paid CFO', 'INTEREST_PAID_DIRECT': 'Interest Paid Direct', 'INTEREST_PAID_SUPPLEMENTAL_DATA': 'Interest Paid Supplemental Data', 'INTEREST_PAYABLE': 'Interest Payable', 'INTEREST_RECEIVED_CFI': 'Interest Received CFI', 'INTEREST_RECEIVED_CFO': 'Interest Received CFO', 'INTEREST_RECEIVED_DIRECT': 'Interest Received Direct', 'INTERIM_REVENUE': 'Interim Revenue', 'INTERNET_INFORMATION_PROVIDERS': 'Internet Information Providers', 'INTERNET_INFORMATION_PROVIDERS_DESC': 'Internet Information Providers Stocks', 'INTERNET_SERVICE_PROVIDERS': 'Internet Service Providers', 'INTERNET_SERVICE_PROVIDERS_DESC': 'Internet Service Providers Stocks', 'INTERNET_SOFTWARE_SERVICES': 'Internet Software & Services', 'INTERNET_SOFTWARE_SERVICES_DESC': 'Internet Software & Services Stocks', 'INTERNET_TITLE': 'Internet', 'INTERVAL': 'Interval', 'INVALID_INPUT': 'Invalid Input', 'INVENTORIES_ADJUSTMENTS_ALLOWANCES': 'Inventories Adjustments Allowances', 'INVENTORY': 'Inventory', 'INVERT': 'Invert', 'INVESTED_CAPITAL': 'Invested Capital', 'INVESTING_ACTIVITIES_CASHFLOWS_PROVIDED': 'Investing Activities, Cash Flows Provided By or Used In', 'INVESTING_CASH_FLOW': 'Investing Cash Flow', 'INVESTMENTIN_FINANCIAL_ASSETS': 'Investment in Financial Assets', 'INVESTMENTS': 'Investments', 'INVESTMENTSIN_ASSOCIATESAT_COST': 'Investments in Associatesat Cost', 'INVESTMENTSIN_JOINT_VENTURESAT_COST': 'Investments in Joint Venturesat Cost', 'INVESTMENTSIN_SUBSIDIARIESAT_COST': 'Investments in Subsidiariesat Cost', 'INVESTMENTS_AND_ADVANCES': 'Investments And Advances', 'INVESTMENTS_IN_OTHER_VENTURES_UNDER_EQUITY_METHOD': 'Investments in Other Ventures Under Equity Method', 'INVESTMENTS_PROPERTY_PLANT': 'Investments in property, plant and equipment', 'INVESTMENT_BANKING_PROFIT': 'Investment Banking Profit', 'INVESTMENT_BROKERAGE_NATIONAL': 'Investment Brokerage - National', 'INVESTMENT_BROKERAGE_NATIONAL_DESC': 'Investment Brokerage - National Stocks', 'INVESTMENT_BROKERAGE_REGIONAL': 'Investment Brokerage - Regional', 'INVESTMENT_BROKERAGE_REGIONAL_DESC': 'Investment Brokerage - Regional Stocks', 'INVESTMENT_INFORMATION': 'Investment Information', 'INVESTMENT_PROPERTIES': 'Investment Properties', 'INVOLVEMENT': 'Significant Involvement', 'IN_WATCHLIST': 'In watchlist', 'ISS': 'Institutional Shareholder Services (ISS)', 'ISSUANCE_OF_CAPITAL_STOCK': 'Issuance of Capital Stock', 'ISSUANCE_OF_DEBT': 'Issuance of Debt', 'ITALIA': 'Italia', 'JEWELRY_STORES': 'Jewelry Stores', 'JEWELRY_STORES_DESC': 'Jewelry Stores Stocks', 'JOIN_BETA': 'Join BETA', 'KEY_EXECUTIVES': 'Key Executives', 'KEY_STATISTICS': 'Key Statistics', 'KEY_STATS_DIVIDEND_AND_YIELD': '{0} ({1})', 'KEY_TECHNICALS': 'Key Technicals', 'KS_HELP_FYE_DETAIL': 'Fiscal Year Ending', 'KS_HELP_GUIDE': 'Abbreviation Guide:', 'KS_HELP_LFY_DETAIL': 'Last Fiscal Year', 'KS_HELP_LINK': 'See {link} for definitions of terms used.', 'KS_HELP_MRQ_DETAIL': 'Most Recent Quarter', 'KS_HELP_SUP_1': 'Data provided by Refinitiv.', 'KS_HELP_SUP_2': 'Data provided by EDGAR Online.', 'KS_HELP_SUP_3': 'Data derived from multiple sources or calculated by Yahoo Finance.', 'KS_HELP_SUP_4': 'Data provided by Morningstar, Inc.', 'KS_HELP_SUP_5': 'Shares outstanding is taken from the most recently filed quarterly or annual report and Market Cap is calculated using shares outstanding.', 'KS_HELP_SUP_6': 'Implied Shares Outstanding of common equity, assuming the conversion of all convertible subsidiary equity into common.', 'KS_HELP_SUP_7': 'EBITDA is calculated by S&P Global Market Intelligence using methodology that may differ from that used by a company in its reporting.', 'KS_HELP_SUP_8': \"A company's float is a measure of the number of shares available for trading by the public. It's calculated by taking the number of issued and outstanding shares minus any restricted stock, which may not be publicly traded.\", 'KS_HELP_TTM_DETAIL': 'Trailing Twelve Months', 'KS_HELP_YOY_DETAIL': 'Year Over Year', 'LAND_AND_IMPROVEMENTS': 'Land And Improvements', 'LANGUAGE': 'Language', 'LAST_BEAR_MKT': 'Last Bear Market', 'LAST_BULL_MKT': 'Last Bull Market', 'LAST_CAP_GAIN': 'Last Cap Gain', 'LAST_DIVIDEND': 'Last Dividend', 'LAST_PRICE': 'Last Price', 'LAST_SPLIT_DATE': 'Last Split Date', 'LAST_SPLIT_FACTOR': 'Last Split Factor', 'LATEST': 'Latest', 'LATEST_ANALYST_UPGRADED_STOCKS': 'Latest Analyst Upgraded Stocks', 'LATEST_SYMBOL_NEWS': 'Latest {symbol} news', 'LEAD_MANAGER_SINCE': 'Lead Manager since {date}', 'LEARN_MORE': 'Learn more', 'LEARN_MORE_STREAM': 'Learn More about Yahoo Finance Livestreaming', 'LEASES': 'Leases', 'LEGAL_TYPE': 'Legal Type', 'LEISURE_INDUSTRIES_TITLE': 'Leisure Industries', 'LEISURE_TITLE': 'Leisure Industries', 'LEVERED_FREE_CASH_FLOW': 'Levered Free Cash Flow', 'LFY': 'lfy', 'LIABILITIES': 'Liabilities', 'LIABILITIES_AND_STOCKHOLDERS_EQUITY': \"Liabilities and stockholders' equity\", 'LIABILITIES_HELDFOR_SALE_NON_CURRENT': 'Liabilities Held for Sale Non Current', 'LIABILITIES_OF_DISCONTINUED_OPERATIONS': 'Liabilities of Discontinued Operations', 'LIFESTYLE_TITLE': 'Health & Lifestyle', 'LIFE_INSURANCE': 'Life Insurance', 'LIFE_INSURANCE_DESC': 'Life Insurance Stocks', 'LIFE_MONEY_TITLE': 'Life and money', 'LIGHT': 'Light', 'LIMITED_PARTNERSHIP_CAPITAL': 'Limited Partnership Capital', 'LIMITS': 'Limits', 'LINE': 'Line', 'LINEAR': 'Linear', 'LINE_AVERAGE': 'Average Line', 'LINE_CROSS': 'Cross Line', 'LINE_OF_CREDIT': 'Line of Credit', 'LINE_QUADRANT': 'Quadrant Line', 'LINE_SIZE': 'Line Size', 'LINE_TREND': 'Trend Line', 'LINKED_ACCOUNT': 'Linked account', 'LINKED_ACCOUNTS': 'Linked Accounts', 'LINKED_ACCOUNT_LAST_UPDATED_TIME': 'Linked account data was last updated {date}', 'LINK_BROKER': 'Link Broker', 'LINK_BROKERS_TO_TRACK_PF': 'Link brokers to track portfolios', 'CONNECT_BROKERS_TO_TRACK_PF': 'Connect brokerage account', 'LINK_YOUR_BROKER': 'Link your real broker and trade', 'LINK_LIVESTREAM_TITLE': 'Please link your signal to start livestream', 'LINK_LIVESTREAM_TEXT': 'In your livestream tool, please input the URL as well as the livestream key below to connect your livestream signal. After everything’s ready, you may start your livestream.', 'LIQUIDITY_RATIOS': 'Liquidity Ratios', 'LISTS': 'Lists', 'LIVE': 'Live!', 'LIVESTREAM_IDEAS': 'Livestream your financial ideas', 'LIVESTREAM_KEY': 'Live Stream Key', 'LIVESTREAM_UPSELL_SUBTEXT': 'Learn about Yahoo Fiannce Livestream now, start livestrreaming. Certain limitations apply.', 'LIVESTREAM_STUDIO_ENTER': 'Enter Livestream Studio', 'LIVESTREAM_STUDIO_TITLE': 'Livestream Studio', 'LIVESTREAM_TAGS': 'Livestream Tags', 'LIVESTREAM_TICKERS': 'Related Tickers', 'LIVESTREAM_TITLE': 'Livestream Title', 'LIVE_NOW': 'LIVE NOW', 'LIVE_STATUS': 'LIVE', 'LIVE_VIDEO': 'Live Video', 'LOADING_FULL_CHART': 'Loading interactive chart...', 'LOADING_MORE_DATA': 'Loading more data...', 'LOAD_ADJUSTED_RETURNS': 'Load Adjusted Returns', 'LOANS_HELD_FOR_SALE': 'Loans Held for Sale', 'LOANS_RECEIVABLE': 'Loans Receivable', 'LODGING': 'Lodging', 'LODGING_DESC': 'Lodging Stocks', 'LOGARITHMIC': 'Logarithmic', 'LOGIN': 'Login', 'LONGTERM_CARE_FACILITIES': 'Long-Term Care Facilities', 'LONGTERM_CARE_FACILITIES_DESC': 'Long-Term Care Facilities Stocks', 'LONG_DISTANCE_CARRIERS': 'Long Distance Carriers', 'LONG_DISTANCE_CARRIERS_DESC': 'Long Distance Carriers Stocks', 'LONG_TERM_CAPITAL_LEASE_OBLIGATION': 'Long Term Capital Lease Obligation', 'LONG_TERM_DEBT': 'Long Term Debt', 'LONG_TERM_DEBT_AND_CAPITAL_LEASE_OBLIGATION': 'Long Term Debt And Capital Lease Obligation', 'LONG_TERM_DEBT_ISSUANCE': 'Long Term Debt Issuance', 'LONG_TERM_DEBT_PAYMENTS': 'Long Term Debt Payments', 'LONG_TERM_EQUITY_INVESTMENT': 'Long Term Equity Investment', 'LONG_TERM_INVESTMENTS': 'Long Term Investments', 'LONG_TERM_PROVISIONS': 'Long Term Provisions', 'LOOKUP_FOOTER_TIP': 'Tip: Use comma to separate multiple quotes and then press enter', 'LOOKUP_NO_RSULT': \"No results for '{searchPhrase}'\", 'LOOKUP_OPTION': 'Option Lookup', 'LOOKUP_TAB_all': 'All ({count})', 'LOOKUP_TAB_currency': 'Currencies ({count})', 'LOOKUP_TAB_equity': 'Stocks ({count})', 'LOOKUP_TAB_etf': 'ETFs ({count})', 'LOOKUP_TAB_future': 'Futures ({count})', 'LOOKUP_TAB_index': 'Indices ({count})', 'LOOKUP_TAB_mutualfund': 'Mutual Funds ({count})', 'LOSSON_EXTINGUISHMENTOF_DEBT': 'Loss on Extinguishment of Debt', 'LOSS_ADJUSTMENT_EXPENSE': 'Loss Adjustment Expense', 'LOW': 'Low', 'LOW_ESTIMATE': 'Low Estimate', 'LUMBER_WOOD_PRODUCTION': 'Lumber, Wood Production', 'LUMBER_WOOD_PRODUCTION_DESC': 'Lumber, Wood Production Stocks', 'MACHINERY_FURNITURE_EQUIPMENT': 'Machinery Furniture Equipment', 'MACHINE_TOOLS_ACCESSORIES': 'Machine Tools & Accessories', 'MACHINE_TOOLS_ACCESSORIES_DESC': 'Machine Tools & Accessories Stocks', 'MAINTAINS': 'Maintains', 'MAINTENANCE_AND_REPAIRS': 'Maintenance & Repairs', 'MAJOR_AIRLINES': 'Major Airlines', 'MAJOR_AIRLINES_DESC': 'Major Airlines Stocks', 'MAJOR_INTEGRATED_OIL_GAS': 'Major Integrated Oil & Gas', 'MAJOR_INTEGRATED_OIL_GAS_DESC': 'Major Integrated Oil & Gas Stocks', 'MANAGEMENT_EFFECTIVENESS': 'Management Effectiveness', 'MANAGEMENT_INFORMATION': 'Management Information', 'MANAGEMENT_SERVICES': 'Management Services', 'MANAGEMENT_SERVICES_DESC': 'Management Services Stocks', 'MANAGE_SETTINGS': 'Manage Settings', 'MANAGE_SUBSCRIPTION': 'Manage Subscription', 'MANUFACTURED_HOUSING': 'Manufactured Housing', 'MANUFACTURED_HOUSING_DESC': 'Manufactured Housing Stocks', 'MANUFACTURING_MATERIALS_TITLE': 'Manufacturing & Materials', 'MANUF_EMPLOYMENT': 'Manufacturing \\nEmployment', 'MARKETING_SERVICES': 'Marketing Services', 'MARKETING_SERVICES_DESC': 'Marketing Services Stocks', 'MARKETS_CLOSED': 'Market closed.', 'MARKETS_OPEN': 'Market open.', 'MARKETS_TITLE': 'Markets', 'MARKET_BLOGS_TITLE': 'Market Blogs', 'MARKET_CAP': 'Market Cap', 'MARKET_CAP_INTRADAY': 'Market Cap (intraday)', 'MARKET_DIGEST': 'Market digest', 'MARKET_MOVERS_TITLE': 'Market Movers', 'MARKET_REVIEW': 'Market Review', 'MARKET_SUMMARY': 'Market Summary', 'MARKET_TIME_NOTICE_CLOSED': 'As of {date} {time}. {marketState}', 'MARKET_TIME_NOTICE_CLOSED_SHORT': 'At close: {date} {time}', 'MARKET_TIME_NOTICE_OPEN': 'As of {date} {time}. {exchange} {marketSource}. {marketState}', 'MARKET_TIME_RELATED_COMPANIES': 'As of {time}', 'MARKET_TITLE': 'Market', 'MARKET_VALUE': 'Market Value', 'MATCHES': 'Matches', 'MATCHING_STOCKS': 'Matching stocks', 'MATCH_RESULTS': '{start}-{end} of {total} results', 'MATCH_RESULTS_INDUSTRY': '{total} results', 'MATERIALES-BASICOS_TITLE': 'Basic materials', 'MATERIALS_AND_SUPPLIES': 'Materials & Supplies', 'MATIERES-PREMIERES_TITLE': 'Raw materials', 'MATURITY': 'Maturity', 'MAX': 'Max', 'MAX_12B1_FEE': 'Max 12b1 Fee', 'MAX_DEFERRED_SALES_LOAD': 'Max Deferred Sales Load', 'MAX_FRONT_END_SALES_LOAD': 'Max Front End Sales Load', 'MAX_SUPPLY': 'Max Supply', 'MEAN_ANNUAL_RETURN': 'Mean Annual Return', 'MEAT_PRODUCTS': 'Meat Products', 'MEAT_PRODUCTS_DESC': 'Meat Products Stocks', 'MEDIAN': 'Median', 'MEDIAN_MARKET_CAP': 'Median Market Cap', 'MEDICAL_APPLIANCES_EQUIPMENT': 'Medical Appliances & Equipment', 'MEDICAL_APPLIANCES_EQUIPMENT_DESC': 'Medical Appliances & Equipment Stocks', 'MEDICAL_EQUIPMENT_WHOLESALE': 'Medical Equipment Wholesale', 'MEDICAL_EQUIPMENT_WHOLESALE_DESC': 'Medical Equipment Wholesale Stocks', 'MEDICAL_INSTRUMENTS_SUPPLIES': 'Medical Instruments & Supplies', 'MEDICAL_INSTRUMENTS_SUPPLIES_DESC': 'Medical Instruments & Supplies Stocks', 'MEDICAL_LABORATORIES_RESEARCH': 'Medical Laboratories & Research', 'MEDICAL_LABORATORIES_RESEARCH_DESC': 'Medical Laboratories & Research Stocks', 'MEDICAL_PRACTITIONERS': 'Medical Practitioners', 'MEDICAL_PRACTITIONERS_DESC': 'Medical Practitioners Stocks', 'MET': 'Met', 'METAL_FABRICATION': 'Metal Fabrication', 'METAL_FABRICATION_DESC': 'Metal Fabrication Stocks', 'META_DESCRIPTION': 'At Yahoo Finance, you get free stock quotes, up-to-date news, portfolio management resources, international market data, social interaction and mortgage rates that help you manage your financial life.', 'META_DESCRIPTION_CURRENCY_CONVERTER': 'Get fast and easy calculator for converting one currency to another using the latest live exchange rates. Also, get the latest news that could affect currency exchange rates.', 'META_DESCRIPTION_INDUSTRY': 'Search quotes and news for all sectors, industries and sub-industries.', 'META_DESCRIPTION_LOOKUP': 'Search for ticker symbols for Stocks, Mutual Funds, ETFs, Indices and Futures on Yahoo! Finance.', 'META_DESCRIPTION_MINIHOME_NEWS': 'Today’s business and financial news, plus the latest updates that may affect your money, investments, savings, and financial health', 'META_DESC_CALENDAR_ALL': 'Find earnings, economic, stock splits and IPO calendars to track upcoming financial events from Yahoo Finance.', 'META_DESC_CALENDAR_EARNINGS': 'Learn when companies announce their quarterly and annual earnings, along with the latest EPS estimates and conference call times from Yahoo Finance.', 'META_DESC_CALENDAR_EARNINGS_SYMBOL': 'Learn when {symbol} announce their quarterly, annual earnings. See the latest EPS estimates. Listen to the conference call and remind yourself by adding it to your calendar.', 'META_DESC_CALENDAR_ECONOMIC': 'Track economic announcements with forecast and actuals to help your trading and investment decisions.', 'META_DESC_CALENDAR_IPO': 'Learn which companies are planning to go public soon, and when they are scheduling their IPOs.', 'META_DESC_CALENDAR_SPLITS': 'Learn which company shares are splitting and when in this stocks splits calendar from Yahoo Finance.', 'META_DESC_CRYPTO_ABOUT': \"Get started with trading and investing in crypto with these helpful FAQ's and how to sign up for an account.\", 'META_DESC_CRYPTO_ACCOUNT': 'Manage your crypto trading account with notification settings, account statements, option to deactivate account.', 'META_DESC_CRYPTO_DEACTIVATE': 'Deactivate your crypto trading account.', 'META_DESC_CRYPTO_DEPOSIT': 'Deposit fund to your crypto trading account.', 'META_DESC_CRYPTO_HELP': \"Help page for crypto trading, including TOS, FAQ's and customer service contact info.\", 'META_DESC_CRYPTO_KYC': 'Find forms requesting crypto trading user info and/or identity verifcation documents.', 'META_DESC_CRYPTO_LINKED_ACCOUNTS': 'Link your ACH accounts, with option to deposit/withdraw and refresh/link/unlink accounts.', 'META_DESC_CRYPTO_TRADING': 'Buy, sell, trade and store crypto the safe and easy way. Customer service will always be there to help.', 'META_DESC_CRYPTO_WITHDRAW': 'Withdraw fund from your crypto trading account.', 'META_DESC_CRYPTOCURRENCY_LANDING': 'Find a list of top cryptocurrencies and their prices in real time, including percentage change, charts, history, volume and more.', 'META_DESC_EARNINGS': 'Yahoo {quarter} {year} Earnings', 'META_DESC_HUB': 'Find the latest tax news, tips, dates and info that you need to file taxes in 2023. ', 'META_DESC_INDUS': '{listId} Services - Industry Center - Financial data, performance information for the {listId} Services.', 'META_DESC_LIST_BONDS': 'Bonds Center - Learn the basics of bond investing, get current quotes, news, commentary and more.', 'META_DESC_LIST_COMMODITIES': 'See the list of commodity futures with price and percentage change for the day, trading volume, open interest, and day chart', 'META_DESC_LIST_CURRENCIES': 'See the complete list of latest currency exchange rates with price and percentage changes, 52 week range and day charts.', 'META_DESC_LIST_ETFS': \"Learn about Exchange-Traded Funds, read ETF news, and see which ETFs are performing the best with Yahoo Finance's ETF Center.\", 'META_DESC_LIST_GAINERS': 'View performance of stock gainers on Yahoo Finance', 'META_DESC_LIST_LOSERS': 'View performance of stock losers on Yahoo Finance', 'META_DESC_LIST_MOST_ACTIVE': 'View performance of most active stocks on Yahoo Finance', 'META_DESC_LIST_MUTUALFUNDS': 'Mutual Funds Center - Get investing strategies, data, and mutual fund news in the Yahoo Finance Mutual Fund Center. The Fund Screener surfaces low-cost and top-performing funds for each asset category and provides detailed fund profiles, fund charts, and news on fund manage', 'META_DESC_LIST_OPTIONS': 'Options Tools, Education and News on Yahoo Finance', 'META_DESC_LIST_TRENDING_TICKERS': 'See the list of trending stocks today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_LIST_WORLD_INDICES': 'See the complete list of world stock indexes with points and percentage change, volume, intraday highs and lows, 52 week range, and day charts.', 'META_DESC_MULTIQUOTE': 'View and compare {quotes} on Yahoo Finance.', 'META_DESC_MULTIQUOTE_EMPTY': 'View and compare quotes on Yahoo Finance.', 'META_DESC_PERSONAL_FINANCE': 'Read latest personal finance articles about loans, saving & spending, lifestyle, insurance, taxes, career & education, retirement, and real estate. Try our calculators for setting your savings goals for a car, down payment for a home, education and other needs as well as mortgage calculator to determine monthly payments for a home. Search glossary to better understand financial terms and their meanings.', 'META_DESC_PORTFOLIO': 'Track your personal stock portfolios and watch lists, and automatically determine your day gain and total gain at Yahoo Finance', 'META_DESC_QUOTE': 'Find the latest {shortName} ({symbol}) stock quote, history, news and other vital information to help you with your stock trading and investing.', 'META_DESC_QUOTE_ANALYSIS': 'See {shortName} ({symbol}) stock analyst estimates, including earnings and revenue, EPS, upgrades and downgrades.', 'META_DESC_QUOTE_BALANCE-SHEET': \"Get the annual and quarterly balance sheet of {shortName} ({symbol}) including details of assets, liabilities and shareholders' equity.\", 'META_DESC_QUOTE_CASH-FLOW': 'Understand the cash flow statement for {shortName} ({symbol}), learn where the money comes from and how the company spends it.', 'META_DESC_QUOTE_CHART': 'Interactive Chart for {shortName} ({symbol}), analyze all the data with a huge range of indicators.', 'META_DESC_QUOTE_COMMUNITY': \"Find the latest {shortName} ({symbol}) stock discussion in Yahoo Finance's forum. Share your opinion and gain insight from other stock traders and investors.\", 'META_DESC_QUOTE_COMPANY360': 'Get {shortName} ({symbol}) exclusive data and insights at your fingertips with intuitive visualizations.', 'META_DESC_QUOTE_COMPANY_INSIGHTS': 'Find essential company insights and stock analysis for {companyName} ({symbol}), including the Yahoo Finance company insight score, to help you with your stock trading and investing', 'META_DESC_QUOTE_COMPONENTS': 'View the basic {symbol} stock chart on Yahoo Finance and learn which stocks are present under {shortName} ({symbol}).', 'META_DESC_QUOTE_CORPORATE_EVENTS': 'Find earnings dates, report releases and other corporate events for {companyName} ({symbol}) to help you with your stock trading and investing', 'META_DESC_QUOTE_CRYPTOCURRENCY': 'Find the latest {shortName} ({symbol}) price quote, history, news and other vital information to help you with your cryptocurrency trading and investing.', 'META_DESC_QUOTE_CRYPTOCURRENCY_CHART': 'Interactive Chart for {shortName} ({symbol}), analyze all the data with a huge range of indicators.', 'META_DESC_QUOTE_CRYPTOCURRENCY_COMMUNITY': \"Find the latest {shortName} ({symbol}) cryptocurrency discussion in Yahoo Finance's forum. Share your opinions and get diverse opinions from other crypto traders and investors.\", 'META_DESC_QUOTE_CRYPTOCURRENCY_HISTORY': 'Discover historical prices of {shortName} ({symbol}) on Yahoo Finance. View daily, weekly or monthly formats.', 'META_DESC_QUOTE_CRYPTOCURRENCY_PROFILE': 'Find key facts about {shortName} ({symbol}) to help you with your cryptocurrency trading and investing.', 'META_DESC_QUOTE_CURRENCY': 'Find the latest {shortName} ({symbol}) currency exchange rate, plus historical data, charts, relevant news and more', 'META_DESC_QUOTE_CURRENCY_COMMUNITY': \"Find the latest {shortName} ({symbol}) forex discussions in Yahoo Finance's forum. Share your opinion and gain insight from other traders and investors.\", 'META_DESC_QUOTE_FAIR_VALUE': \"See the fair value of {companyName} ({symbol}) stock to learn if it is overvalued or undervalued with it's current price, and see the outlook for the stock.\", 'META_DESC_QUOTE_FINANCIALS': 'Get the detailed quarterly/annual income statement for {shortName} ({symbol}). Find out the revenue, expenses and profit or loss over the last fiscal year.', 'META_DESC_QUOTE_FUTURES': \"Yahoo Finance is a leading financial destination, providing consumers with a broad range of comprehensive online financial services and information essential to managing one's financial life. By providing access to up-to-date, international market data, real-time stock quotes, portfolio management resources, and community tools such as message boards and clubs, Yahoo Finance empowers consumers to make well-informed investment decisions.\", 'META_DESC_QUOTE_HISTORY': 'Discover historical prices for {symbol} stock on Yahoo Finance. View daily, weekly or monthly format back to when {shortName} stock was issued.', 'META_DESC_QUOTE_HOLDERS': 'Find out the direct holders, institutional holders and mutual fund holders for {shortName} ({symbol}).', 'META_DESC_QUOTE_HOLDINGS': 'View Top Holdings and Key Holding Information for {shortName} ({symbol}).', 'META_DESC_QUOTE_INDEX': 'Find the latest information on {shortName} ({symbol}) including data, charts, related news and more from Yahoo Finance', 'META_DESC_QUOTE_INDEX_COMMUNITY': \"Find the latest {shortName} ({symbol}) discussion in Yahoo Finance's forum. Share your opinion and gain insight from other traders and investors.\", 'META_DESC_QUOTE_INDEX_COMPONENTS': 'Get the components of the {shortName} ({symbol}) to help your investment decision from Yahoo Finance', 'META_DESC_QUOTE_INDEX_HISTORY': 'Get historical data for the {shortName} ({symbol}) on Yahoo Finance. View and download daily, weekly or monthly data to help your investment decisions.', 'META_DESC_QUOTE_INDEX_OPTIONS': 'Get the basic {shortName} ({symbol}) option chain and pricing options for different maturity periods from Yahoo Finance.', 'META_DESC_QUOTE_INSIDER-ROSTER': 'Get the latest updated list of insiders for {shortName} ({symbol}). Find out the total of insider shares held, purchased and sold.', 'META_DESC_QUOTE_INSIDER-TRANSACTIONS': 'Get the latest insider transactions for {shortName} ({symbol}). Find out the total of insider shares held, purchased and sold.', 'META_DESC_QUOTE_KEY-STATISTICS': 'Find out all the key statistics for {shortName} ({symbol}), including valuation measures, fiscal year financial statistics, trading record, share statistics and more.', 'META_DESC_QUOTE_NEWS': 'Get the latest {shortName} ({symbol}) stock news and headlines to help you in your trading and investing decisions.', 'META_DESC_QUOTE_OPTIONS': 'View the basic {symbol} option chain and compare options of {shortName} on Yahoo Finance.', 'META_DESC_QUOTE_PERFORMANCE': 'Current and Historical Performance Performance for {shortName} on Yahoo Finance.', 'META_DESC_QUOTE_PRESS-RELEASES': 'Get the latest {shortName} ({symbol}) stock news and headlines to help you in your trading and investing decisions.', 'META_DESC_QUOTE_PROFILE': 'See the company profile for {shortName} ({symbol}) including business summary, industry/sector information, number of employees, business summary, corporate governance, key executives and their compensation.', 'META_DESC_QUOTE_PURCHASE-INFO': 'View Minimum Investment Information and Available Brokerage for {shortName} ({symbol})', 'META_DESC_QUOTE_RESEARCH_REPORTS': 'See the latest analyst reports for {companyName} ({symbol}), including analyst ratings and price targets to help you with your stock trading and investing.', 'META_DESC_QUOTE_RISK': 'View Historical Risk Statistics for {shortName} ({symbol}).', 'META_DESC_QUOTE_SUSTAINABILITY': 'See {shortName} ({symbol}) Environment, Social and Governance Ratings to help you in your stock buying decisions.', 'META_DESC_QUOTE_UNKNOWN': 'The requested symbol was not found in our database. Try searching for some other symbol on Yahoo Finance', 'META_DESC_SCREENERS': 'Find Yahoo Finance predefined, ready-to-use stock screeners to search stocks by industry, index membership, and more. Create your own screens with over 150 different screening criteria.', 'META_DESC_SCREENERS_CRYPTOCURRENCY': 'Create your own cryptocurrency screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_EQUITY': 'Create your own stock screener with over 150 different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_EQUITY_DAY_GAINERS': 'See the list of the top gaining stocks today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_SCREENERS_EQUITY_DAY_LOSERS': 'See the list of the top losing stocks today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_SCREENERS_EQUITY_MOST_ACTIVES': 'See the list of the most active stocks today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_SCREENERS_ETF': 'Create your own ETF screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_ETF_TOP_ETFS_US': 'See the list of the top ETFs today, including share price change and percentage, trading volume, intraday highs and lows, and day charts.', 'META_DESC_SCREENERS_FUTURE': 'Create your own futures screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_INDEX': 'Create your own stock index screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_MUTUALFUND': 'Create your own mutual fund screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_ANALYST_RATINGS': 'Create your own analyst rating screener with a number of different screening criteria from Yahoo Finance.', 'META_DESC_SCREENERS_MUTUALFUND_TOP_MUTUAL_FUNDS': 'See the complete list of mutual funds with price percent changes, 50 and 200 day averages, 3 month returns and YTD returns.', 'META_DESC_SCREENERS_OPTION': 'Option Screener: Option Research Center - Use the Option screener to search options by industry, index membership, share data such as price, market cap, beta, sales and profitability, valuation ratios, analyst estimates. Create your own screens with over 150 different screening criteria', 'META_DESC_SCREENERS_PREDEFINED': 'See a list of {title} using the Yahoo Finance screener. Create your own screens with over 150 different screening criteria.', 'META_DESC_WATCHLISTS': 'Explore curated stock watchlists to track and discover assets in a variety of categories', 'META_DESC_WATCHLISTS_CATEGORY': 'See a list of {metaTitle} from Yahoo Finance, with latest stock price and other details.', 'META_DESC_WATCHLISTS_THE_FIGHT_AGAINST_COVID19': 'Follow this list to discover and track the stocks of publicly traded companies with COVID-19 related treatments and healthcare plans.', 'META_KEYWORDS': '401k, Business, Financial Information, Investing, Investor, Market News, Stock Research, Stock Valuation, business news, economy, finance, investment tools, mortgage, mutual funds, personal finance, quote, real estate, retirement, stock, stocks, Suze Orman, tax, track portfolio', 'META_KEYWORDS_INDUSTRY': 'Industry, Sector, Energy, Materials, Industrials, Consumer Discretionary, Consumer Staples, Health Care, Financials, Information Technology, Telecommunication Services, Utilities, Real Estate', 'META_KEYWORDS_LOOKUP': 'symbol lookup, ticker lookup, stock symbol lookup', 'META_KWORDS_CALENDAR_EARNINGS': 'Earnings Announcements, Company Earnings, EPS Estimates, Earnings Per Share, Conference Calls, Before Market Open, After Market Close', 'META_KWORDS_CALENDAR_ECONOMIC': 'Economic Calendar, Forecast, Actual, Market Experts, Revised Forecast, FOMC, Unemployment Rate, GDP, Consumer Confidence, Durable Orders, Existing Home Sales, Nonfarm Payrolls, Initial Claims, Factory Orders, Construction Spending, ISM Index, Personal Income, Personal Spending', 'META_KWORDS_CALENDAR_IPO': 'Earnings Announcements, Company Earnings, EPS Estimates, IPO, IPOs, new companies', 'META_KWORDS_CALENDAR_SPLITS': 'Earnings Announcements, Company Earnings, EPS Estimates, Splits, Stock Split, Ratios', 'META_KWORDS_CRYPTOCURRENCY_LANDING': 'Cryptocurrency, cryptocurrencies, crypto, currencies, currency, bitcoin, etherium, litecoin, share data, option price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value', 'META_KWORDS_HUB': 'hub, news, tips, dates, taxes', 'META_KWORDS_INDUS': '{listId}, services, industries, Industry Center, Financial data, performance information, {listId} Services, utilities', 'META_KWORDS_LIST_BONDS': 'Bond, treasury, zero coupon, rate, interest rate, corporate bond, junk bond, municipal bond, muni bond, yield curve, coupon rate, maturity, rating, AAA, BBB, CCC, par value, callable bond, credit ratings', 'META_KWORDS_LIST_COMMODITIES': 'Commodities, Futures, futures headlines, futures chain', 'META_KWORDS_LIST_CURRENCIES': 'currency trading, forex currency trading, forex trading, yahoo finance', 'META_KWORDS_LIST_ETFS': 'index fund indexing ishares spdr qubes streettracks diamonds vipers', 'META_KWORDS_LIST_GAINERS': 'most active actives volumes leaders price percent percentage gainers losers nyse nasdaq amex', 'META_KWORDS_LIST_LOSERS': 'most active actives volumes leaders price percent percentage gainers losers nyse nasdaq amex', 'META_KWORDS_LIST_MOST_ACTIVE': 'most active actives volumes leaders price percent percentage gainers losers nyse nasdaq amex', 'META_KWORDS_LIST_MUTUALFUNDS': 'mutual fund, mutual, fund, funds, portfolio, fund family, fund manager, vanguard, fidelity, Morningstar, no-load, front-load, back-load, expense ratio, 12b-1, fund analysts, fund performance, index fund, actively managed fund', 'META_KWORDS_LIST_TRENDING_TICKERS': 'trending tickers, popular tickers, trending, popular, now, most popular, people', 'META_KWORDS_LIST_WORLD_INDICES': 'major world indices, indexes, index americas europe asia pacific africa middle east composite', 'META_KWORDS_QUOTE': '{symbol}, {shortName}, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_ANALYSIS': 'recommendation,analyst,analyst rating,strong buy,strong sell,hold,buy,sell,overweight,underweight,upgrade,downgrade,price target,EPS estimate,revenue estimate,growth estimate,p/e estimate,recommendation,analyst,analyst rating,strong buy,strong sell,hold,buy,sell,overweight,underweight,upgrade,downgrade,price target,EPS estimate,revenue estimate,growth estimate,p/e estimate', 'META_KWORDS_QUOTE_BALANCE-SHEET': 'balance sheet,asset,liabilities,shareholders equity,return on equity,cash equivalents,retained earning', 'META_KWORDS_QUOTE_CASH-FLOW': 'cash flow statement,operating activities,cash flows,investing,financing,cash,net cash', 'META_KWORDS_QUOTE_CHART': 'chart, interactive chart, graph, data graph, data points, analyze, analysis, data analysis', 'META_KWORDS_QUOTE_COMMUNITY': 'finance message boards, financial message boards, financial forum, financial chat, finance chat, finance forum, stock forum, stock message boards, investment forum, investing ideas, investing suggestions, investing tips, investment suggestion, investing ideas, messages, message board, Business Opportunity Board', 'META_KWORDS_QUOTE_COMPONENTS': '{symbol}, {shortName}, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_FINANCIALS': 'income statement,gross profit,revenue,operating expenses,operating income,net income,earning,earning per share', 'META_KWORDS_QUOTE_FUTURES': '{symbol}, {shortName}, {symbol} futures, {shortName} futures, finance, stocks, Investing, Investor, Business, Stock Research, Stock Valuation, Market News, Financial Information, stock market, charts, stock charts', 'META_KWORDS_QUOTE_HISTORY': '{symbol}, {shortName}, {symbol} historical prices, {shortName} historical prices, historical prices, stocks, quotes, finance', 'META_KWORDS_QUOTE_HOLDERS': 'direct holders,institutional holders,mutual fund holders,holding,holding shares,floating shares,major holders,form 144 holders', 'META_KWORDS_QUOTE_HOLDINGS': 'Top holdings, Holdings, Portfolio Composition, Equity Holdings, Sector Weightings, Bond holdings, Bond Ratings', 'META_KWORDS_QUOTE_INSIDER-ROSTER': 'insider selling,insider buying,shareholder,insider purchase,insider sale,earning per share,form 144 holders', 'META_KWORDS_QUOTE_INSIDER-TRANSACTIONS': 'insider selling,insider buying,shareholder,insider purchase,insider sale,form 144 holders', 'META_KWORDS_QUOTE_KEY-STATISTICS': 'key statistics,financial statistics,valuation,measurement,market cap,EPS,P/E,PEG,Price/book. EBITDA,Profit margin,operating Margin,Return on Equity,Beta,short ratio', 'META_KWORDS_QUOTE_NEWS': 'company headlines,news,latest happenings,latest news,recent news,{symbol}, {shortName}, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_OPTIONS': '{symbol}, {shortName}, {symbol} options, {shortName} options, {symbol} option chain, {shortName} option chain, option, option chain, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_PERFORMANCE': 'Performance , Trailing Returns vs. Benchmarks, Annual Total Return History, Past Quarterly Returns, Load Adjusted Returns', 'META_KWORDS_QUOTE_PRESS-RELEASES': 'press releases, company headlines,news,latest happenings,latest news,recent news,{symbol}, {shortName}, {symbol} stock chart, {shortName} stock chart, stock chart, stocks, quotes, finance', 'META_KWORDS_QUOTE_PROFILE': 'company profile,business summary,company management,company introduction,key statistics,officers', 'META_KWORDS_QUOTE_PURCHASE-INFO': 'Minimum Investment, Brokerage , Min Subsequent Investment, Purchase Info', 'META_KWORDS_QUOTE_RISK': 'Risk Statistics, Risk Overview, Risk Rating', 'META_KWORDS_SCREENERS': 'Stock Screener, industry, index membership, share data, stock price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_CRYPTOCURRENCY': 'Cryptocurrency screener, cryptocurrency, cryptocurrencies, crypto, currencies, currency, bitcoin, etherium, litecoin, share data, option price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value', 'META_KWORDS_SCREENERS_EQUITY': 'Stock Screener, industry, index membership, share data, stock price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_ETF': 'ETF Screener, industry, index membership, share data, etf price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_FUTURE': 'Future screener, share data, future price, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_INDEX': 'Index screener, exchange, share data, index price, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_MUTUALFUND': 'Mutual Fund Screener, industry, index membership, share data, mutual fund price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_OPTION': 'Option Screener, industry, index membership, share data, option price, market cap, beta, sales, profitability, valuation ratios, analyst estimates, large cap value, bargain growth, preset stock screens', 'META_KWORDS_SCREENERS_ANALYST_RATINGS': 'Analyst rating', 'META_KWORDS_WATCHLISTS': 'Curated watchlists, watchlists, watched, added, cryptocurrency, cryptocurrencies, crypto, cryptos, currencies, currency, bitcoin, etherium, litecoin, tokens, share data, option price, market cap, beta, sales, profitability, volatility, volatile, bets, volume, valuation ratios, analyst estimates, large cap value, sustainable, ethical', 'META_LOOKUP_DESCRIPTION': 'Search for ticker symbols for Stocks, Mutual Funds, ETFs, Indices and Futures on Yahoo! Finance.', 'META_LOOKUP_KEYWORDS': 'symbol lookup, ticker lookup, stock symbol lookup', 'META_LOOKUP_TITLE': 'Symbol Lookup from Yahoo Finance', 'META_TITLE': 'Yahoo Finance - Stock Market Live, Quotes, Business & Finance News', 'META_TITLE_CALENDAR_ALL': 'Financial Calendars - Yahoo Finance', 'META_TITLE_CALENDAR_EARNINGS': 'Company Earnings Calendar - Yahoo Finance', 'META_TITLE_CALENDAR_EARNINGS_SYMBOL': 'Earnings {symbol}: Company Earnings Calendar for {symbol} - Yahoo Finance', 'META_TITLE_CALENDAR_ECONOMIC': 'Economic Calendar - Yahoo Finance', 'META_TITLE_CALENDAR_IPO': \"Upcoming & Recent IPO's - IPOs Calendar - Yahoo Finance\", 'META_TITLE_CALENDAR_SPLITS': 'Stock Splits Calendar - Yahoo Finance', 'META_TITLE_CHART': '{symbol} Interactive Stock Chart | {shortName} Stock - Yahoo Finance', 'META_TITLE_CRYPTO_ABOUT': \"Crypto Trading & Investing: FAQ's & Other Info - Yahoo Finance\", 'META_TITLE_CRYPTO_ACCOUNT': 'Crypto Account Management - Yahoo Finance', 'META_TITLE_CRYPTO_DEACTIVATE': 'Crypto Deactivate Account - Yahoo Finance', 'META_TITLE_CRYPTO_DEPOSIT': 'Crypto Fund Deposit - Yahoo Finance', 'META_TITLE_CRYPTO_HELP': 'Crypto Trading Help - Contact Us - Yahoo Finance', 'META_TITLE_CRYPTO_KYC': 'Crypto Trading User Info - Yahoo Finance', 'META_TITLE_CRYPTO_LINKED_ACCOUNTS': 'Crypto Linked Accounts - Yahoo Finance', 'META_TITLE_CRYPTO_TRADING': 'Crypto Exchange - Buy, Sell And Trade Bitcoin & Other Crypto - Yahoo Finance', 'META_TITLE_CRYPTO_WITHDRAW': 'Crypto Fund Withdrawal - Yahoo Finance', 'META_TITLE_CRYPTOCURRENCY_LANDING': 'Crypto Real Time Prices & Latest News - Yahoo Finance', 'META_TITLE_CURRENCY_CONVERTER': 'Currency Converter | Currency Exchange Calculator - Yahoo Finance', 'META_TITLE_DEFAULT_LISTS': '{listId} - Yahoo Finance', 'META_TITLE_HUB': 'Taxes 2023: News, Tips, Dates & Latest Info - Yahoo Finance', 'META_TITLE_INDUS': 'Top {listId} - Yahoo Finance', 'META_TITLE_INDUSTRY': 'Industry Center - Yahoo Finance', 'META_TITLE_LIST_BONDS': 'Bonds Center - Bonds quotes, news, screeners and educational information - Yahoo Finance', 'META_TITLE_LIST_COMMODITIES': 'Commodities Futures Prices & Day Charts - Yahoo Finance', 'META_TITLE_LIST_CURRENCIES': 'Live Forex Rates & Currencies - Yahoo Finance', 'META_TITLE_LIST_ETFS': 'Exchange-Traded Funds (ETF) Center - Yahoo Finance', 'META_TITLE_LIST_GAINERS': 'Stocks Gainers - Yahoo Finance', 'META_TITLE_LIST_LOSERS': 'Stocks Losers - Yahoo Finance', 'META_TITLE_LIST_MOST_ACTIVE': 'Stocks Most Actives - Yahoo Finance', 'META_TITLE_LIST_MUTUALFUNDS': 'Mutual Funds Center - Yahoo Finance', 'META_TITLE_LIST_OPTIONS': 'Options Center - Yahoo Finance', 'META_TITLE_LIST_TRENDING_TICKERS': 'Trending Stocks Today - Yahoo Finance', 'META_TITLE_LIST_WORLD_INDICES': 'Major World Indices - Yahoo Finance', 'META_TITLE_LOOKUP': 'Symbol Lookup from Yahoo Finance', 'META_TITLE_MINIHOME_NEWS': 'Latest Financial and Business News - Yahoo Finance', 'META_TITLE_MULTIQUOTE': '{quotes} | Stock Prices | Quote Comparison - Yahoo Finance', 'META_TITLE_MULTIQUOTE_EMPTY': 'Stock Prices | Quote Comparison - Yahoo Finance', 'META_TITLE_PERSONAL_FINANCE': 'Personal Finance - Yahoo Finance', 'META_TITLE_PORTFOLIO': 'Stock Portfolio & Tracker - Yahoo Finance', 'META_TITLE_PLUS_PORTAL': 'Yahoo Finance Plus - Stock Research & Analysis, Portfolio Analysis', 'META_TITLE_QUOTE': '{shortName} ({symbol}) Stock Price, News, Quote & History - Yahoo Finance', 'META_TITLE_QUOTE_ANALYSIS': '{shortName} ({symbol}) Analyst Ratings, Estimates & Forecasts - Yahoo Finance', 'META_TITLE_QUOTE_BALANCE-SHEET': '{shortName} ({symbol}) Balance Sheet - Yahoo Finance', 'META_TITLE_QUOTE_CASH-FLOW': '{shortName} ({symbol}) Cash Flow - Yahoo Finance - Yahoo Finance', 'META_TITLE_QUOTE_CHART': '{shortName} ({symbol}) Interactive Stock Chart - Yahoo Finance', 'META_TITLE_QUOTE_COMMUNITY': '{shortName} ({symbol}) Stock Forum & Discussion - Yahoo Finance', 'META_TITLE_QUOTE_COMPANY360': '{shortName} ({symbol}) Exclusive Data & Insights - Yahoo Finance', 'META_TITLE_QUOTE_COMPANY_INSIGHTS': '{companyName} ({symbol}) Company Insights & Stock Analysis', 'META_TITLE_QUOTE_COMPONENTS': '{symbol} Components | {shortName} Stock - Yahoo Finance', 'META_TITLE_QUOTE_CORPORATE_EVENTS': '{companyName} ({symbol}) Earnings Date & Other Corporate Events', 'META_TITLE_QUOTE_CRYPTOCURRENCY': '{shortName} ({symbol}) Price, Value, News & History - Yahoo Finance', 'META_TITLE_QUOTE_CRYPTOCURRENCY_CHART': '{shortName} ({symbol}) Interactive Price Chart - Yahoo Finance', 'META_TITLE_QUOTE_CRYPTOCURRENCY_COMMUNITY': '{shortName} ({symbol}) Cryptocurrency Forum & Discussion - Yahoo Finance', 'META_TITLE_QUOTE_CRYPTOCURRENCY_HISTORY': '{shortName} ({symbol}) Price History & Historical Data - Yahoo Finance', 'META_TITLE_QUOTE_CRYPTOCURRENCY_PROFILE': '{shortName} ({symbol}) Cryptocurrency Profile & Facts - Yahoo Finance', 'META_TITLE_QUOTE_CURRENCY': '{shortName} ({symbol}) Live Rate, Chart & News - Yahoo Finance', 'META_TITLE_QUOTE_CURRENCY_CHART': '{shortName} ({symbol}) Interactive Chart - Yahoo Finance', 'META_TITLE_QUOTE_CURRENCY_COMMUNITY': '{shortName} ({symbol}) Forex Forum & Discussion - Yahoo Finance', 'META_TITLE_QUOTE_FAIR_VALUE': '{companyName} ({symbol}) Fair Value & Stock Outlook', 'META_TITLE_QUOTE_FINANCIALS': '{shortName} ({symbol}) Income Statement - Yahoo Finance', 'META_TITLE_QUOTE_FUTURES': '{shortName} ({symbol}) Futures Chain - Yahoo Finance', 'META_TITLE_QUOTE_HISTORY': '{shortName} ({symbol}) Stock Historical Prices & Data - Yahoo Finance', 'META_TITLE_QUOTE_HOLDERS': '{shortName} ({symbol}) Stock Major Holders - Yahoo Finance', 'META_TITLE_QUOTE_HOLDINGS': '{shortName} ({symbol}) Holdings - Yahoo Finance', 'META_TITLE_QUOTE_INDEX': '{shortName} ({symbol}) Charts, Data & News - Yahoo Finance', 'META_TITLE_QUOTE_INDEX_COMMUNITY': '{shortName} ({symbol}) Forum & Discussion - Yahoo Finance', 'META_TITLE_QUOTE_INDEX_COMPONENTS': '{shortName} ({symbol}) Components - Yahoo Finance', 'META_TITLE_QUOTE_INDEX_HISTORY': '{shortName} ({symbol}) Historical Data - Yahoo Finance', 'META_TITLE_QUOTE_INSIDER-ROSTER': '{shortName} ({symbol}) Insider Ownership & Holdings - Yahoo Finance', 'META_TITLE_QUOTE_INSIDER-TRANSACTIONS': '{shortName} ({symbol}) Recent Insider Transactions - Yahoo Finance', 'META_TITLE_QUOTE_KEY-STATISTICS': '{shortName} ({symbol}) Valuation Measures & Financial Statistics', 'META_TITLE_QUOTE_NEWS': '{shortName} ({symbol}) Latest Stock News & Headlines - Yahoo Finance', 'META_TITLE_QUOTE_OPTIONS': '{shortName} ({symbol}) Options Chain - Yahoo Finance', 'META_TITLE_QUOTE_OPTIONS_INDIVIDUAL': '{symbol} Quote | {shortName} Stock - Yahoo Finance', 'META_TITLE_QUOTE_PERFORMANCE': '{shortName} ({symbol}) Performance History - Yahoo Finance', 'META_TITLE_QUOTE_PRESS-RELEASES': '{shortName} ({symbol}) Latest Press Releases & Corporate News - Yahoo Finance', 'META_TITLE_QUOTE_PRICE': '{symbol} {price} {change} {changePercent} : {shortName} - Yahoo Finance', 'META_TITLE_QUOTE_PROFILE': '{shortName} ({symbol}) Company Profile & Facts - Yahoo Finance', 'META_TITLE_QUOTE_PURCHASE-INFO': '{symbol} Purchase Info | Investment Information for {shortName} Stock - Yahoo Finance', 'META_TITLE_QUOTE_REPORTS': '{shortName} ({symbol}) Stock Research & Reports - Yahoo Finance', 'META_TITLE_QUOTE_RESEARCH_REPORTS': '{companyName} ({symbol}) Analyst Reports, Price Targets & Ratings', 'META_TITLE_QUOTE_RISK': '{shortName} ({symbol}) Risk - Yahoo Finance', 'META_TITLE_QUOTE_SUSTAINABILITY': '{shortName} ({symbol}) Environment, Social and Governance (ESG) Ratings - Yahoo Finance', 'META_TITLE_QUOTE_UNKNOWN': \"Requested symbol wasn't found\", 'META_TITLE_RECENT_QUOTES': 'My Recent Quotes | Stock Prices | Yahoo Finance', 'META_TITLE_SCREENERS': 'Stock Screeners - Yahoo Finance', 'META_TITLE_SCREENERS_ANALYST_RATINGS': 'Analyst Ratings Screener - Yahoo Finance', 'META_TITLE_SCREENERS_CRYPTOCURRENCY': 'Free Cryptocurrency Screener - Yahoo Finance', 'META_TITLE_SCREENERS_EQUITY': 'Free Stock Screener - Yahoo Finance', 'META_TITLE_SCREENERS_EQUITY_DAY_GAINERS': 'Top Stock Gainers Today - Yahoo Finance', 'META_TITLE_SCREENERS_EQUITY_DAY_LOSERS': 'Top Stock Losers Today - Yahoo Finance', 'META_TITLE_SCREENERS_EQUITY_MOST_ACTIVES': 'Most Active Stocks Today - Yahoo Finance', 'META_TITLE_SCREENERS_ETF': 'Free ETF Screener - Yahoo Finance', 'META_TITLE_SCREENERS_ETF_TOP_ETFS_US': 'Top ETFs Today - Yahoo Finance', 'META_TITLE_SCREENERS_FUTURE': 'Free Futures Screener - Yahoo Finance', 'META_TITLE_SCREENERS_INDEX': 'Free Stock Index Screener - Yahoo Finance', 'META_TITLE_SCREENERS_MUTUALFUND': 'Free Mutual Fund Screener - Yahoo Finance', 'META_TITLE_SCREENERS_MUTUALFUND_TOP_MUTUAL_FUNDS': 'Top Mutual Funds Today - Yahoo Finance', 'META_TITLE_SCREENERS_OPTION': 'Free Option Screener - Yahoo Finance', 'META_TITLE_SCREENERS_PREDEFINED': 'Top {title} List | Screener - Yahoo Finance', 'META_TITLE_SCREENERS_PREDEFINED_PLUS': '{title} List | Screener - Yahoo Finance', 'META_TITLE_TOPIC_autos': 'Autos - Yahoo Finance', 'META_TITLE_TOPIC_brexit': 'Brexit - Yahoo Finance', 'META_TITLE_TOPIC_careers': 'Careers - Yahoo Finance', 'META_TITLE_TOPIC_finalround': 'The Final Round - Yahoo Finance', 'META_TITLE_TOPIC_finance-viral': 'Finance Viral - Yahoo Finance', 'META_TITLE_TOPIC_goodlife': 'The Good Life - Yahoo Finance', 'META_TITLE_TOPIC_leisure-industries': 'Leisure Industries - Yahoo Finance', 'META_TITLE_TOPIC_lifestyle': 'Lifestyle - Yahoo Finance', 'META_TITLE_TOPIC_market-blogs': 'Market Blogs - Yahoo Finance', 'META_TITLE_TOPIC_marketmovers': 'Market Movers - Yahoo Finance', 'META_TITLE_TOPIC_middaymovers': 'Midday Movers - Yahoo Finance', 'META_TITLE_TOPIC_personal-finance-news': 'Personal Finance News - Yahoo Finance', 'META_TITLE_TOPIC_property': 'Property - Yahoo Finance', 'META_TITLE_TOPIC_real-estate': 'Real Estate - Yahoo Finance', 'META_TITLE_TOPIC_retirement': 'Retirement - Yahoo Finance', 'META_TITLE_TOPIC_save-money': 'Save Money - Yahoo Finance', 'META_TITLE_TOPIC_saving-spending': 'Saving & Spending - Yahoo Finance', 'META_TITLE_TOPIC_shoppen': 'Shoppen - Yahoo Finance', 'META_TITLE_TOPIC_small-business': 'Small Business - Yahoo Finance', 'META_TITLE_TOPIC_sportsbook': 'Sportsbook - Yahoo Finance', 'META_TITLE_TOPIC_technology': 'Technology - Yahoo Finance', 'META_TITLE_TOPIC_travel': 'Travel - Yahoo Finance', 'META_TITLE_TOPIC_trendingtickers': 'Trending Tickers - Yahoo Finance', 'META_TITLE_TOPIC_videos': 'Video - Yahoo Finance', 'META_TITLE_TOPIC_yahoo-originals': 'Yahoo Originals - Yahoo Finance', 'META_TITLE_VIDEOS': 'Business and Finance News Videos - Yahoo Finance', 'META_TITLE_WATCHLISTS': 'Curated Stock Watch Lists & Categories - Yahoo Finance', 'META_TITLE_WATCHLISTSTITLE': '{title} - Yahoo Finance', 'META_TITLE_WATCHLISTS_ACTIVIST_HEDGE_FUND_POSITIONS': 'Stocks with the Most Activist Hedge Fund Positions', 'META_TITLE_WATCHLISTS_AGING_BABY_BOOMERS': 'Stocks for Aging Baby Boomers', 'META_TITLE_WATCHLISTS_BIGGEST_EARNINGS_BEATS': 'Stocks with Biggest Earnings Beats', 'META_TITLE_WATCHLISTS_BIGGEST_EARNINGS_MISSES': 'Stocks with Biggest Earnings Misses', 'META_TITLE_WATCHLISTS_BRANDS_CONSUMERS_LOVE': 'Stocks of Well-Known Consumer Brands', 'META_TITLE_WATCHLISTS_CANNABIS_STOCKS': 'Cannabis, Marijuana, 420 Stocks', 'META_TITLE_WATCHLISTS_CROWDED_HEDGE_FUND_POSITIONS': 'Stocks with Highest Percentage of Hedge Fund Ownership', 'META_TITLE_WATCHLISTS_CROWDED_TECH_HEDGE_FUND_POSITIONS': 'Tech Stocks with Highest Percentage of Hedge Fund Ownership', 'META_TITLE_WATCHLISTS_DIVIDEND_GROWTH_MARKET_LEADERS': 'Stocks with Highest Dividend Growth', 'META_TITLE_WATCHLISTS_HEALTHY_LIVING': 'Health, Wellness & Fitness Stocks', 'META_TITLE_WATCHLISTS_LARGEST_52-WEEK_GAINS': 'Stocks with Largest 52-Week Gains', 'META_TITLE_WATCHLISTS_LARGEST_52-WEEK_LOSSES': 'Stocks with Largest 52-Week Losses', 'META_TITLE_WATCHLISTS_LEAST_VOLATILE_CRYPTOS': 'Cryptocurrencies with Lowest Volatility', 'META_TITLE_WATCHLISTS_LONG_HAUL_BUFFETT_BUYS': \"Stocks in Warren Buffett's Berkshire Hathaway\", 'META_TITLE_WATCHLISTS_MOST_ADDED_TO_WATCHLISTS': 'Stocks Most Added to Watchlists by Yahoo Finance Users', 'META_TITLE_WATCHLISTS_MOST_BOUGHT_BY_ACTIVIST_HEDGE_FUNDS': 'Stocks Most Bought by Activist Hedge Funds', 'META_TITLE_WATCHLISTS_MOST_BOUGHT_BY_HEDGE_FUNDS': 'Stocks Most Bought by Hedge Funds', 'META_TITLE_WATCHLISTS_MOST_FOLLOWED': 'Most Followed Stocks Watchlists', 'META_TITLE_WATCHLISTS_MOST_REMOVED_FROM_WATCHLISTS': 'Stocks Most Removed in Watchlists by Yahoo Finance Users', 'META_TITLE_WATCHLISTS_MOST_SOLD_BY_ACTIVIST_HEDGE_FUNDS': 'Stocks Most Sold by Activist Hedge Funds', 'META_TITLE_WATCHLISTS_MOST_SOLD_BY_HEDGE_FUNDS': 'Stocks Most Sold by Hedge Funds', 'META_TITLE_WATCHLISTS_MOST_VOLATILE_CRYPTOS': 'Cryptocurrencies with Highest Volatility', 'META_TITLE_WATCHLISTS_MOST_WATCHED_BY_YAHOO_FINANCE_USERS': 'Stocks Most Watched by Yahoo Finance Users', 'META_TITLE_WATCHLISTS_NEW_FAMILY_ECONOMY': 'New Family, Family Needs & Household Stocks', 'META_TITLE_WATCHLISTS_NEW_HEDGE_FUND_HOLDERS': 'Hedge Fund Newly Held Stocks', 'META_TITLE_WATCHLISTS_RECENTLY_ADDED': 'Recently Added Stocks Watchlists', 'META_TITLE_WATCHLISTS_RECENTLY_UPDATED': 'Recently Updated Stocks Watchlists', 'META_TITLE_WATCHLISTS_RECENT_52-WEEK_HIGHS': 'Stocks with Recent 52-Week Highs', 'META_TITLE_WATCHLISTS_RECENT_52-WEEK_LOWS': 'Stocks with Recent 52-Week Lows', 'META_TITLE_WATCHLISTS_SINFUL_STOCKS': 'Sin Stocks - Casinos, Tobacco, Alcohol & More', 'META_TITLE_WATCHLISTS_SMART_MONEY_STOCKS': 'Stocks Widely Held By Hedge Funds', 'META_TITLE_WATCHLISTS_STOCKS_FUELING_THE_INTERNET_OF_THINGS': 'Internet of Things Stocks', 'META_TITLE_WATCHLISTS_TECH_STOCKS_THAT_MOVE_THE_MARKET': 'Tech Stocks That Move The Market', 'META_TITLE_WATCHLISTS_THE_AUTONOMOUS_CAR': 'Stocks Involved in Self-Driving Cars', 'META_TITLE_WATCHLISTS_THE_BERKSHIRE_HATHAWAY_PORTFOLIO': 'Stocks in the Berkshire Hathaway Portfolio', 'META_TITLE_WATCHLISTS_THE_BIG_SHORTS': 'Stocks with Big Short Positions', 'META_TITLE_WATCHLISTS_THE_FIGHT_AGAINST_COVID19': 'Fight against Covid-19 (Coronavirus) Stocks', 'META_TITLE_WATCHLISTS_TODAYS_TOP_PERFORMERS': \"Today's Stocks Best Performing Sectors\", 'META_TITLE_WATCHLISTS_TODAYS_WORST_PERFORMERS': \"Today's Stocks Worst Performing Sectors\", 'META_TITLE_WATCHLISTS_TOP_CRYPTOS_BY_MARKET_CAP': 'Cryptocurrencies with Highest Market Cap', 'META_TITLE_WATCHLISTS_TOP_CRYPTOS_BY_TOKENS_OUTSTANDING': 'Cryptocurrencies With Highest Circulating Supply', 'META_TITLE_WATCHLISTS_TOP_CRYPTOS_BY_VOLUME_(ALL_CURRENCIES_24HR)': 'Cryptocurrencies with Highest Trading Volume', 'META_TITLE_WATCHLISTS_TOP_CRYPTO_BETS': 'Stocks of Companies Involved in Cryptocurrencies', 'META_TITLE_WATCHLISTS_WOMEN_AT_THE_HELM': 'Stocks of Companies Led by Women', 'MIDDAY_MOVERS_TITLE': 'Midday Movers', 'MILLION_SHORT': '{num}M', 'MINIMUM_PENSION_LIABILITIES': 'Minimum Pension Liabilities', 'MINORITY_INTEREST': 'Minority Interest', 'MINORITY_INTERESTS': 'Minority Interests', 'MIN_INIT_AIP_INVESTMENT': 'Min Initial Investment, AIP', 'MIN_INIT_INVESTMENT': 'Min Initial Investment', 'MIN_INIT_IRA_INVESTMENT': 'Min Initial Investment, IRA', 'MIN_SUBSEQ_AIP_INVESTMENT': 'Min Subsequent Investment, AIP', 'MIN_SUBSEQ_INVESTMENT': 'Min Subsequent Investment', 'MIN_SUBSEQ_IRA_INVESTMENT': 'Min Subsequent Investment, IRA', 'MISC_STOCKS_OPTIONS_WARRANTS': 'Misc. Stocks Options Warrants', 'MISSED': 'Missed', 'MISSING_REQUIRED_DATA': 'Missing required data', 'MOBILE_NOT_SUPPORT': 'Embedded webinar is not supported in mobile devices', 'MODERATE': 'Moderate', 'MODULE_UNDER_CONSTRUCTION': '{type} module is under construction', 'MONEY_CENTER_BANKS': 'Money Center Banks', 'MONEY_CENTER_BANKS_DESC': 'Money Center Banks Stocks', 'MONEY_MARKET_INVESTMENTS': 'Money Market Investments', 'MONTHLY': 'Monthly', 'MONTHLY_TOTAL_RETURNS': 'Monthly Total Returns', 'MOODYS_ANALYTICS': \"Moody's Analytics\", 'MORE_ABOUT': 'More about', 'MORE_DETAILS': 'More details', 'MORE_SYMBOLS': 'More Symbols', 'MORE_UPGRADES_AND_DOWNGRADES': 'More Upgrades & Downgrades', 'MORNINGSTAR_CATEGORY': 'Morningstar Category', 'MORNINGSTAR_CATEGORY_DESC': \"While the investment objective stated in a fund's prospectus may or may not reflect how the fund actually invests, the Morningstar category is assigned based on the underlying securities in each portfolio. Morningstar categories help investors and investment professionals make meaningful comparisons between funds. The categories make it easier to build well-diversified portfolios, assess potential risk, and identify top-performing funds. We place funds in a given category based on their portfolio statistics and compositions over the past three years. If the fund is new and has no portfolio history, we estimate where it will fall before giving it a more permanent category assignment. When necessary, we may change a category assignment based on recent changes to the portfolio.\", 'MORNINGSTAR_STYLE_BOX': 'Morningstar Style Box', 'MORNINGSTAR_STYLE_BOX_DESC': \"Yahoo partners with Morningstar a leading market research and investment data group to help investors rate and compare funds on Yahoo Finance. The Morningstar Category is shown next to the Morningstar Style Box which identifies a fund's investment focus, based on the underlying securities in the fund.\", 'MORNING_BRIEF': 'Morning Brief', 'MORNING_STAR_RATING': 'Morningstar Rating', 'MORNINGSTAR_RATING': 'Morningstar Rating', 'MORNING_STAR_RETURN_RATING': 'Morningstar Return Rating', 'MORNING_STAR_RISK_RATING': 'Morningstar Risk Rating', 'MORNINGSTAR_FIVE_STAR_STOCKS': 'Morningstar 5-Star Stocks', 'MORNINGSTAR_FIVE_STAR_STOCKS_DESC': 'A 5-star rating indicates that the stock is trading meaningfully below fair value with an exciting discount.', 'MORTGAGE_AND_CONSUMERLOANS': 'Mortgage & Consumer Loans', 'MORTGAGE_INVESTMENT': 'Mortgage Investment', 'MORTGAGE_INVESTMENT_DESC': 'Mortgage Investment Stocks', 'MORTGAGE_LOAN': 'Mortgage Loan', 'MOST_ACTIVES': 'Most Actives', 'MOST_ACTIVES_DESC': 'Stocks ordered in descending order by intraday trade volume.', 'MOST_INSTITUTIONALLY_BOUGHT_LARGE_CAP_STOCKS': 'Most Institutionally Bought Large Cap Stocks', 'MOST_INSTITUTIONALLY_HELD_LARGE_CAP_STOCKS': 'Most Institutionally Held Large Cap Stocks', 'MOST_INSTITUTIONALLY_SOLD_LARGE_CAP_STOCKS': 'Most Institutionally Sold Large Cap Stocks', 'MOST_RECENT_QUARTER': 'Most Recent Quarter', 'MOST_RECENT_TRANSACTION': 'Most Recent Transaction', 'MOST_SHORTED_STOCKS': 'Most Shorted Stocks', 'MOST_SHORTED_STOCKS_DESC': 'Stocks with the highest short interest positions ordered by short % of shares outstanding from Nasdaq and NYSE reports released every two weeks.', 'MOST_VISITED': 'Most Visited', 'MOTOR-Y-AUTOMOCION_TITLE': 'Motor and Automotive', 'MOVIE_PRODUCTION_THEATERS': 'Movie Production, Theaters', 'MOVIE_PRODUCTION_THEATERS_DESC': 'Movie Production, Theaters Stocks', 'MRQ': 'mrq', 'MS_BASIC_MATERIALS': 'Basic Materials', 'MS_CONSUMER_CYCLICAL': 'Consumer Cyclical', 'MS_FINANCIAL_SERVICES': 'Financial Services', 'MS_REAL_ESTATE': 'Real Estate', 'MS_CONSUMER_DEFENSIVE': 'Consumer Defensive', 'MS_HEALTHCARE': 'Healthcare', 'MS_UTILITIES': 'Utilities', 'MS_COMMUNICATION_SERVICES': 'Communication Services', 'MS_ENERGY': 'Energy', 'MS_INDUSTRIALS': 'Industrials', 'MS_TECHNOLOGY': 'Technology', 'MSG_ADD_TO_A_WATCHLIST': 'Add {company} to one or more watchlists:', 'MSG_ADD_TO_A_WATCHLIST_DONE': 'You have added {company} to \"{watchlist}\".', 'MSG_ADD_TO_A_WATCHLIST_ERROR': 'Could not add {company} to \"{watchlist}\". Please try again.', 'MSG_BACK_TO_FINANCE': 'Back to Yahoo Finance', 'MSG_BACK_TO_HOMEPAGE': 'Back to Yahoo Homepage', 'MSG_BROKER_CRED': 'Yahoo does not store your broker credentials.', 'MSG_BROKER_NOT_SUPPORT': \"Unfortunately we don't support this broker yet\", 'MSG_BROKER_NOT_SUPPORT_DES': 'We will let you know when this broker becomes available to link again', 'MSG_BROWSE_REPORTS': 'Browse available reports for other tickers via the Research tab', 'MSG_EMPTY_LIST': 'Your list is empty.', 'MSG_FB_TICKER_CHANGE': 'Meta Platforms, Inc. has changed its ticker symbol from FB to META. If you were following FB, that change is now reflected in your portfolio', 'MSG_EMPTY_PF': 'Your list is empty. Add symbols to get relevant news', 'MSG_HAS_BEEN_ADDED': '{symbol} has been added!', 'MSG_INSUFFICIENT_FILTER': 'Select at least one filter to find matching {type}', 'MSG_INVALID_DATE': 'Please enter a valid date.', 'MSG_INVALID_LIST': \"We're sorry, but we were unable to retrieve your list. Redirecting to Yahoo Finance Home in a few seconds.\", 'MSG_LINK_PF_FAILURE': \"We're unable to gather your latest holdings data\", 'MSG_LINK_PF_GATHERING': \"We're still gathering your holdings. Please check back in a few minutes\", 'MSG_LINK_PF_REFRESH': 'Account refresh required', 'MSG_LINK_PF_SUCCESS': 'Broker successfully linked', 'MSG_NO_ACTION_SENTIMENT_RESULTS': 'No portfolio changes data found.', 'MSG_NO_CAL_DATE_SEL': 'Please select a date to see results.', 'MSG_NO_COMMUNITY_SENTIMENT_RESULTS': 'No community conversion data found.', 'MSG_NO_DATA': 'We’re sorry, we weren’t able to find any data.', 'MSG_NO_DATA_HEATMAP': 'Heatmap View for this screener is temporarily unavailable.', 'MSG_NO_DATA_IN_PERIOD': 'No data available for selected period.', 'MSG_NO_LOOKUP_RESULTS': 'Please check your spelling. Try our suggested matches or see results in other tabs.', 'MSG_NO_PORTFOLIOS': 'Unable to load your portfolios', 'MSG_NO_REPORTS': 'No reports available for {symbol}', 'MSG_NO_RESULTS': \"We couldn't find any results.\", 'MSG_NO_SCREENER_CRITERIA': 'No filters selected. Add a few filters to get results', 'MSG_NO_SCREENER_DETAIL': 'Unable to load Screener', 'MSG_NO_SCREENER_FILTER': 'Unable to load Filtering Criteria', 'MSG_NO_SCREENER_IDEA_RESULTS': 'No investment ideas found with the selected filters', 'MSG_NO_SCREENER_REPORT_RESULTS': 'No reports found with the selected filters', 'MSG_NO_SCREENER_RESULTS': 'Unable to fetch Results', 'MSG_NO_SEARCH_RESULTS': \"No matching results for '{query}'\", 'MSG_NO_SEC_FILINGS': 'No SEC Filings found', 'MSG_NO_SYMBOLS': 'No symbols found', 'MSG_ONLY_US': 'Premium filters are only applicable to US Equities', 'MSG_REAUTHENTICATE_PF': 'You need to refresh/relogin using the button above.', 'MSG_REAUTHENTICATE_PF_WEBVIEW': 'Your holdings are out of date. Please refresh using the button on the Home tab', 'MSG_RELAX_FILTER': 'Get more matching stocks by relaxing your criteria', 'MSG_RELAX_RESEARCH_FILTER': 'Please update your filters to find matching research', 'MSG_RELOAD_PAGE': 'Please try reloading the page.', 'MSG_REPORTS_ERROR': 'Unable to load research reports', 'MSG_SELECT_A_WATCHLIST': 'Select a watchlist', 'MSG_SELECT_DATE': 'Select a Date', 'MSG_STRICT_FILTER': 'Your screening filters are too strict', 'MULTIMEDIA_GRAPHICS_SOFTWARE': 'Multimedia & Graphics Software', 'MULTIMEDIA_GRAPHICS_SOFTWARE_DESC': 'Multimedia & Graphics Software Stocks', 'MUSIC_VIDEO_STORES': 'Music & Video Stores', 'MUSIC_VIDEO_STORES_DESC': 'Music & Video Stores Stocks', 'MUTUAL': 'Mutual Fund', 'MUTUALFUND': 'Mutual Fund', 'MUTUALFUND_SCREENER': 'Mutual Fund Screener', 'MUTUALFUND_SCREENER_DES': 'Search for funds using historical performance, performance rating, and more', 'MUTUAL_FUNDS': 'Mutual Funds', 'MY_HOLDINGS': 'My Holdings', 'MY_PORTFOLIOS': 'My Portfolios', 'MY_WATCHLIST': 'My Watchlists', 'FOLLOWED_WATCHLIST': 'Followed Watchlists', 'MY_SAVED_SCREENERS': 'My Saved Screeners', 'N_DAYS_AGO': '{number}d ago', 'NAME': 'Name', 'NATURAL_GAS_FUEL_AND_OTHER': 'Natural Gas, Fuel & Other', 'NAV': 'NAV', 'NEAR_FAIR_VALUE': 'Near Fair Value', 'NEGATIVE_GOODWILL': 'Negative Goodwill', 'NETWORKING_COMMUNICATION_DEVICES': 'Networking & Communication Devices', 'NETWORKING_COMMUNICATION_DEVICES_DESC': 'Networking & Communication Devices Stocks', 'NETWORK_HS': 'Network H/S', 'NET_ASSETS': 'Net Assets', 'NET_BORROWINGS': 'Net Borrowings', 'NET_BUSINESS_PURCHASE_AND_SALE': 'Net Business Purchase And Sale', 'NET_CASH_FINANCING_ACTIVITIES': 'Net cash used privided by (used for) financing activities', 'NET_CASH_INVESTING_ACTIVITIES': 'Net cash used for investing activites', 'NET_CASH_OPERATING_ACTIVITIES': 'Net cash provided by operating activites', 'NET_CHANGE_IN_CASH': 'Net change in cash', 'NET_COMMON_STOCK_ISSUANCE': 'Net Common Stock Issuance', 'NET_DEBT': 'Net Debt', 'NET_FOREIGN_CURRENCY_EXCHANGE_GAIN_LOSS': 'Net Foreign Currency Exchange Gain Loss', 'NET_FOREIGN_EXCHANGE_GAIN_LOSS': 'Net Foreign Exchange Gain Loss', 'NET_INCOME': 'Net Income', 'NET_INCOME_APPLICABLE_TO_COMMON_SHARES': 'Net Income Applicable To Common Shares', 'NET_INCOME_AVAILABLE_TO_COMMON_SHAREHOLDERS': 'Net Income available to common shareholders', 'NET_INCOME_AVI_TO_COMMON': 'Net Income Avi to Common', 'NET_INCOME_COMMON_STOCKHOLDERS': 'Net Income Common Stockholders', 'NET_INCOME_CONTINUOUS_OPERATIONS': 'Net Income Continuous Operations', 'NET_INCOME_DISCONTINUOUS_OPERATIONS': 'Net Income Discontinuous Operations', 'NET_INCOME_EXTRAORDINARY': 'Net Income Extraordinary', 'NET_INCOME_FROM_CONTINUING_AND_DISCONTINUED_OPERATION': 'Net Income from Continuing & Discontinued Operation', 'NET_INCOME_FROM_CONTINUING_OPERATIONS': 'Net Income from Continuing Operations', 'NET_INCOME_FROM_CONTINUING_OPERATION_NET_MINORITY_INTEREST': 'Net Income from Continuing Operation Net Minority Interest', 'NET_INCOME_FROM_CONTINUING_OPS': 'Net Income From Continuing Ops', 'NET_INCOME_FROM_TAX_LOSS_CARRYFORWARD': 'Net Income from Tax Loss Carryforward', 'NET_INCOME_INCLUDING_NONCONTROLLING_INTERESTS': 'Net Income Including Non-Controlling Interests', 'NET_INCOME_TITLE': 'Net Income', 'NET_INSTITUTIONAL_PURCHASES_PRIOR_LATEST_QUARTER': 'Net Institutional Purchases Prior Quarter to Latest Quarter', 'NET_INTANGIBLES_PURCHASE_AND_SALE': 'Net Intangibles Purchase And Sale', 'NET_INTEREST_INCOME': 'Net Interest Income', 'NET_INVESTMENT_INCOME': 'Net Investment Income', 'NET_INVESTMENT_PROPERTIES_PURCHASE_AND_SALE': 'Net Investment Properties Purchase And Sale', 'NET_INVESTMENT_PURCHASE_AND_SALE': 'Net Investment Purchase And Sale', 'NET_ISSUANCE_PAYMENTS_OF_DEBT': 'Net Issuance Payments of Debt', 'NET_LOAN': 'Net Loan', 'NET_LONG_TERM_DEBT_ISSUANCE': 'Net Long Term Debt Issuance', 'NET_MARGIN': 'Net Margin', 'NET_NON_OPERATING_INTEREST_INCOME_EXPENSE': 'Net Non Operating Interest Income Expense', 'NET_OCCUPANCY_EXPENSE': 'Net Occupancy Expense', 'NET_OTHER_FINANCING_CHARGES': 'Net Other Financing Charges', 'NET_OTHER_INVESTING_CHANGES': 'Net Other Investing Changes', 'NET_POLICYHOLDER_BENEFITS_AND_CLAIMS': 'Net Policyholder Benefits And Claims', 'NET_PPE': 'Net PPE', 'NET_PPE_PURCHASE_AND_SALE': 'Net PPE Purchase And Sale', 'NET_PREFERRED_STOCK_ISSUANCE': 'Net Preferred Stock Issuance', 'NET_PREMIUMS_WRITTEN': 'Net Premiums Written', 'NET_PROCEEDS_PAYMENT_FOR_LOAN': 'Net Proceeds Payment for Loan', 'NET_PROPERTY_PLANT_AND_EQUIPMENT': 'Net property, plant and equipment', 'NET_REALIZED_GAIN_LOSS_ON_INVESTMENTS': 'Net Realized Gain Loss on Investments', 'NET_RECEIVABLES': 'Net Receivables', 'NET_SHARES_PURCHASED_SOLD': 'Net Shares Purchased (Sold)', 'NET_SHORT_TERM_DEBT_ISSUANCE': 'Net Short Term Debt Issuance', 'NET_TANGIBLE_ASSETS': 'Net Tangible Assets', 'NET_UTILITY_PLANT': 'Net Utility Plant', 'NEUTRAL': 'Neutral', 'NEW': 'NEW', 'NEW_PORTFOLIO_NAME': 'New Portfolio Name', 'NEWS': 'News', 'NEWS_TITLE': 'Latest Financial and Business News', 'NEW_HIGH': 'Price Alert', 'NEW_LOW': 'Price Alert', 'NEW_PORTFOLIO': 'New Portfolio', 'NEW_SCREENER': 'Create New Screener', 'NEW_VIEW': 'New View', 'NEW_WATCHLIST': 'New Watchlist', 'NEW_ZEALAND': 'New Zealand', 'NEXT': 'Next', 'NEXT_5_YEARS': 'Next 5 Years (per annum)', 'NEXT_QTR': 'Next Qtr.', 'NEXT_YEAR': 'Next Year', 'NO': 'No', 'NO_SHARES': 'No shares', 'NONE': 'None', 'NONMETALLIC_MINERAL_MINING': 'Nonmetallic Mineral Mining', 'NONMETALLIC_MINERAL_MINING_DESC': 'Nonmetallic Mineral Mining Stocks', 'NON_CURRENT_ACCOUNTS_RECEIVABLE': 'Non Current Accounts Receivable', 'NON_CURRENT_ACCRUED_EXPENSES': 'Non Current Accrued Expenses', 'NON_CURRENT_ASSETS': 'Non-current assets', 'NON_CURRENT_DEFERRED_ASSETS': 'Non Current Deferred Assets', 'NON_CURRENT_DEFERRED_LIABILITIES': 'Non Current Deferred Liabilities', 'NON_CURRENT_DEFERRED_REVENUE': 'Non Current Deferred Revenue', 'NON_CURRENT_DEFERRED_TAXES_ASSETS': 'Non Current Deferred Taxes Assets', 'NON_CURRENT_DEFERRED_TAXES_LIABILITIES': 'Non Current Deferred Taxes Liabilities', 'NON_CURRENT_LIABILITIES': 'Non-current liabilities', 'NON_CURRENT_NOTE_RECEIVABLES': 'Non Current Note Receivables', 'NON_CURRENT_PENSION_AND_OTHER_POSTRETIREMENT_BENEFIT_PLANS': 'Non Current Pension And Other Post-Retirement Benefit Plans', 'NON_CURRENT_PREPAID_ASSETS': 'Non Current Prepaid Assets', 'NON_INTEREST_BEARING_DEPOSITS': 'Non Interest Bearing Deposits', 'NON_INTEREST_EXPENSE': 'Non Interest Expense', 'NON_INTEREST_INCOME': 'Non Interest Income', 'NON_RECURRING': 'Non Recurring', 'NON_RECURRING_EVENTS': 'Non-recurring Events', 'NORMALIZED_BASIC_EPS': 'Normalized Basic EPS', 'NORMALIZED_DILUTED_EPS': 'Normalized Diluted EPS', 'NORMALIZED_EBITDA': 'Normalized EBITDA', 'NORMALIZED_INCOME': 'Normalized Income', 'NOTES_RECEIVABLE': 'Notes Receivable', 'NOTICE_INSIDER_ROSTER': '*Insider roster data is derived solely from the last 24 months of Form 3 & Form 4 SEC filings.', 'NOTICE_VICKER_INDEX': \"Vicker's Insider Sentiment index provides insights into company officers and directors trading in their own stock.\", 'NOTIFICATIONS': 'Notifications', 'NOTIFY_ME': 'Notify me', 'NOT_FOUND': 'Not Found', 'NO_ABOUT_COMPANY': 'We have no additional information for this company', 'NO_CAPITAL_GAIN': 'No Capital Gains', 'NO_DATA': '{type} data is not available', 'NO_DIVIDENDS': 'No Dividends', 'NO_GRADE': 'No grade available at this time.', 'NO_NOTIFICATION_DATA': 'Notification data is not available', 'NO_OF_ANALYSTS': 'No. of Analysts', 'NO_SPLITS': 'No Split', 'NO_THANKS': 'No thanks', 'NO_THANKS_COMMA': 'No, thanks', 'NUMBER_RANGE': '{0} - {1}', 'NUM_EVENTS': '{num} events', 'NUM_M': '{num}M', 'NUM_SELECTED': '{num} selected', 'NUM_W': '{num}W', 'NUM_YEARS_DOWN': 'Number of Years Down', 'NUM_YEARS_UP': 'Number of Years Up', 'OCCUPANCY_AND_EQUIPMENT': 'Occupancy And Equipment', 'OFF': 'Off', 'OFFICE_SUPPLIES': 'Office Supplies', 'OFFICE_SUPPLIES_DESC': 'Office Supplies Stocks', 'OFFICIAL_SITE': 'Official Site', 'OIL_GAS_DRILLING_EXPLORATION': 'Oil & Gas Drilling & Exploration', 'OIL_GAS_DRILLING_EXPLORATION_DESC': 'Oil & Gas Drilling & Exploration Stocks', 'OIL_GAS_EQUIPMENT_SERVICES': 'Oil & Gas Equipment & Services', 'OIL_GAS_EQUIPMENT_SERVICES_DESC': 'Oil & Gas Equipment & Services Stocks', 'OIL_GAS_PIPELINES': 'Oil & Gas Pipelines', 'OIL_GAS_PIPELINES_DESC': 'Oil & Gas Pipelines Stocks', 'OIL_GAS_REFINING_MARKETING': 'Oil & Gas Refining & Marketing', 'OIL_GAS_REFINING_MARKETING_DESC': 'Oil & Gas Refining & Marketing Stocks', 'OKAY': 'Okay', 'OLDER': 'Older', 'ON': 'On', 'ONE_DAY_PERCENT_CHANGE': '1 Day % Change', 'ONE_MONTH': '1-Month', 'ONE_TIME': 'One time', 'ONE_YEAR': '1-Year', 'ONE_YEAR_DTR': '1-Year Daily Total Return', 'ONE_YEAR_EPS_GROWTH': 'EPS Growth(1Y)', 'ONE_YEAR_TARGET_PRICE': '1y Target Est', 'OPEN': 'Open', 'OPEN_INTERACTIVE_CHART': 'Interactive chart', 'OPEN_INTEREST': 'Open Interest', 'OPERATING_ACTIVITIES_CASHFLOWS_PROVIDED': 'Operating Activities, Cash Flows Provided By or Used In', 'OPERATING_CASH_FLOW': 'Operating Cash Flow', 'OPERATING_EXPENSE': 'Operating Expense', 'OPERATING_EXPENSES': 'Operating Expenses', 'OPERATING_GAINS_LOSSES': 'Operating Gains Losses', 'OPERATING_INCOME': 'Operating Income', 'OPERATING_INCOME_LOSS': 'Operating Income or Loss', 'OPERATING_MARGIN': 'Operating Margin', 'OPERATING_REVENUE': 'Operating Revenue', 'OPERATIONS': 'Operations', 'OPERATION_AND_MAINTENANCE': 'Operation & Maintenance', 'OPTIONS': 'Options', 'OPTIONS_HIGHEST_IMPLIED_VOLATALITY_TITLE': 'Options: Highest Implied Volatility', 'OPTIONS_HIGHEST_OPEN_INTEREST_TITLE': 'Options: Highest OI', 'OPTIONS_TITLE': 'Most Traded Options', 'OPTION_CONTRACT_CALL': 'Calls', 'OPTION_CONTRACT_IN_THE_MONEY': 'In The Money', 'OPTION_CONTRACT_LIST_DISPLAY': 'List', 'OPTION_CONTRACT_MINI_DISPLAY': 'Mini', 'OPTION_CONTRACT_PUT': 'Puts', 'OPTION_CONTRACT_REGULAR_DISPLAY': 'Regular', 'OPTION_CONTRACT_STRADDLE_DISPLAY': 'Straddle', 'OR': 'or', 'ORDER_HISTORY': 'Order History', 'ORDINARY_SHARES_NUMBER': 'Ordinary Shares Number', 'OTD_IMPLIED_VOLATILITY': 'Implied Volatility', 'OTHERS': 'Others', 'OTHERUNDER_PREFERRED_STOCK_DIVIDEND': 'Otherunder Preferred Stock Dividend', 'OTHER_ASSETS': 'Other Assets', 'OTHER_CAPITAL_STOCK': 'Other Capital Stock', 'OTHER_CASHFLOWS_FROM_FINANCING_ACT': 'Other Cash Flows from Financing Activities', 'OTHER_CASHFLOWS_FROM_INVESTING_ACT': 'Other Cash flows from Investing Activities', 'OTHER_CASH_ADJUSTMENT_INSIDE_CHANGEIN_CASH': 'Other Cash Adjustment Inside Change in Cash', 'OTHER_CASH_ADJUSTMENT_OUTSIDE_CHANGEIN_CASH': 'Other Cash Adjustment Outside Change in Cash', 'OTHER_CASH_PAYMENTSFROM_OPERATING_ACTIVITIES': 'Other Cash Payments from Operating Activities', 'OTHER_CASH_RECEIPTSFROM_OPERATING_ACTIVITIES': 'Other Cash Receipts from Operating Activities', 'OTHER_COSTOF_REVENUE': 'Other Cost of Revenue', 'OTHER_CURRENT_ASSETS': 'Other Current Assets', 'OTHER_CURRENT_BORROWINGS': 'Other Current Borrowings', 'OTHER_CURRENT_LIABILITIES': 'Other Current Liabilities', 'OTHER_CUSTOMER_SERVICES': 'Other Customer Services', 'OTHER_EQUITY_ADJUSTMENTS': 'Other Equity Adjustments', 'OTHER_EQUITY_INTEREST': 'Other Equity Interest', 'OTHER_FINANCING_ACTIVITIES': 'Other financing activites', 'OTHER_GAND_A': 'Other G and A', 'OTHER_INCOME_EXPENSE': 'Other Income Expense', 'OTHER_INTANGIBLE_ASSETS': 'Other Intangible Assets', 'OTHER_INTEREST_EXPENSE': 'Other Interest Expense', 'OTHER_INTEREST_INCOME': 'Other Interest Income', 'OTHER_INVENTORIES': 'Other Inventories', 'OTHER_INVESTED_ASSETS': 'Other Invested Assets', 'OTHER_INVESTING_ACTIVITIES': 'Other investing activites', 'OTHER_INVESTMENTS': 'Other Investments', 'OTHER_ITEMS': 'Other Items', 'OTHER_LIABILITIES': 'Other Liabilities', 'OTHER_LOAN_ASSETS': 'Other Loan Assets', 'OTHER_LONG_TERM_ASSETS': 'Other long-term assets', 'OTHER_LONG_TERM_LIABILITIES': 'Other long-term liabilities', 'OTHER_NON_CASH_ITEMS': 'Other non-cash items', 'OTHER_NON_CURRENT_ASSETS': 'Other Non Current Assets', 'OTHER_NON_CURRENT_LIABILITIES': 'Other Non Current Liabilities', 'OTHER_NON_INTEREST_EXPENSE': 'Other Non Interest Expense', 'OTHER_NON_INTEREST_INCOME': 'Other Non Interest Income', 'OTHER_NON_OPERATING_INCOME_EXPENSES': 'Other Non Operating Income Expenses', 'OTHER_OPERATING_EXPENSES': 'Other Operating Expenses', 'OTHER_PAYABLE': 'Other Payable', 'OTHER_PROPERTIES': 'Other Properties', 'OTHER_REAL_ESTATE_OWNED': 'Other Real Estate Owned', 'OTHER_RECEIVABLES': 'Other Receivables', 'OTHER_SHORT_TERM_INVESTMENTS': 'Other Short Term Investments', 'OTHER_SPECIAL_CHARGES': 'Other Special Charges', 'OTHER_STOCKHOLDER_EQUITY': 'Other Stockholder Equity', 'OTHER_TAXES': 'Other Taxes', 'OTHER_TRENDING_TICKERS': 'Other Trending Tickers', 'OTHER_UNDERWRITING_EXPENSES_PAID': 'Other Underwriting Expenses Paid', 'OTHER_WORKING_CAPITAL': 'Other working capital', 'OUTLOOK': 'Outlook', 'OUTPERFORM': 'Outperform', 'OVERVALUED': 'Overvalued', 'OVERALL_GRADE': 'Overall grade', 'OVERALL_INNOVATION_SCORE': 'Overall Innovation Score', 'OVERALL_PORTFOLIO_COMPOSITION': 'Overall Portfolio Composition (%)', 'OVERVIEW': 'Overview', 'OWNERSHIP_BREAKDOWN': 'Breakdown', 'OWNERSHIP_DIRECT_HOLDERS': 'Direct Holders (Forms 3 and 4)', 'OWNERSHIP_INSIDERS_TRANSACTIONS': 'Insider Transactions Reported - Last Two Years', 'OWNERSHIP_MAJOR_HOLDERS': 'Major Holders', 'OWNERSHIP_NUMBER_INSTITUION_SHARES': 'Number of Institutions Holding Shares', 'OWNERSHIP_PERCENT_FLOAT_INSTITUTIONS': '% of Float Held by Institutions', 'OWNERSHIP_PERCENT_SHARES_INSIDERS': '% of Shares Held by All Insider', 'OWNERSHIP_PERCENT_SHARES_INSTITUTIONS': '% of Shares Held by Institutions', 'OWNERSHIP_TOP_INSTITUTION_TITLE': 'Top Institutional Holders', 'OWNERSHIP_TOP_MUTUALFUND_TITLE': 'Top Mutual Fund Holders', 'PACKAGING_CONTAINERS': 'Packaging & Containers', 'PACKAGING_CONTAINERS_DESC': 'Packaging & Containers Stocks', 'PAGE_OF': 'Page {first} of {last}', 'PAPER_PAPER_PRODUCTS': 'Paper & Paper Products', 'PAPER_PAPER_PRODUCTS_DESC': 'Paper & Paper Products Stocks', 'PARAMETERS': 'Parameters', 'PAST_5_YEARS': 'Past 5 Years (per annum)', 'PAST_QUARTERLY_RETURNS': 'Past Quarterly Returns (%)', 'PATTERN_BULLISH': 'Bullish pattern', 'PATTERN_BEARISH': 'Bearish pattern', 'PATTERN_SENTIMENT_MSG_N': 'Neutral pattern', 'PAY': 'Pay', 'PAYABLES': 'Payables', 'PAYABLES_AND_ACCRUED_EXPENSES': 'Payables And Accrued Expenses', 'PAYMENTSON_BEHALFOF_EMPLOYEES': 'Payments on Behalf of Employees', 'PAYMENTSTO_SUPPLIERSFOR_GOODSAND_SERVICES': 'Payments to Suppliers for Goods & Services', 'PAYMENT_FOR_LOANS': 'Payment for Loans', 'PAYOUT_RATIO': 'Payout Ratio', 'PEERS': 'Peers', 'PENSIONAND_OTHER_POST_RETIREMENT_BENEFIT_PLANS_CURRENT': 'Pension & Other Post Retirement Benefit Plans Current', 'PENSION_AND_EMPLOYEE_BENEFIT_EXPENSE': 'Pension And Employee Benefit Expense', 'PEOPLE_ALSO_WATCH': 'People Also Watch', 'PERCENTAGE': 'Percentage', 'PERCENTILE_ND': '{value}nd percentile', 'PERCENTILE_RD': '{value}rd percentile', 'PERCENTILE_ST': '{value}st percentile', 'PERCENTILE_TH': '{value}th percentile', 'PERCENT_ASSETS': '% Assets', 'PERCENT_CHANGE': '% Change', 'PERCENT_CHANGE_IN_INSTITUTIONAL_SHARES_HELD': '% Change in Institutional Shares Held', 'PERCENT_HELD_BY_INSIDERS': '% Held by Insiders', 'PERCENT_HELD_BY_INSTITUTIONS': '% Held by Institutions', 'PERCENT_NET_SHARES_PURCHASED_SOLD': '% Net Shares Purchased (Sold)', 'PERCENT_OUT': '% Out', 'PERFORM': 'perform', 'PERFORMANCE': 'Performance', 'PERFORMANCE_AND_RISK': 'Performance & Risk', 'PERFORMANCE_OVERVIEW': 'Performance Overview', 'PERIOD': 'Period', 'PERIOD_ENDING': 'Period Ending', 'PERIOD_NOTICE': 'Data generated based on selected period from today', 'PERSONAL_COMPUTERS': 'Personal Computers', 'PERSONAL_COMPUTERS_DESC': 'Personal Computers Stocks', 'PERSONAL_FINANCE_NEWS_TITLE': 'Personal Finance News', 'PERSONAL_PRODUCTS': 'Personal Products', 'PERSONAL_PRODUCTS_DESC': 'Personal Products Stocks', 'PERSONAL_SERVICES': 'Personal Services', 'PERSONAL_SERVICES_DESC': 'Personal Services Stocks', 'PETROLIO-E-GAS-NATURALE_TITLE': 'Oil and Natural Gas', 'PE_RATIO': 'PE Ratio (TTM)', 'PHONE': 'Phone', 'PHOTOGRAPHIC_EQUIPMENT_SUPPLIES': 'Photographic Equipment & Supplies', 'PHOTOGRAPHIC_EQUIPMENT_SUPPLIES_DESC': 'Photographic Equipment & Supplies Stocks', 'PILLAR_SCORES': 'The pillar scores are Audit: {audit}; Board: {board}; Shareholder Rights: {shareRight}; Compensation: {comp}.', 'PINTEREST': 'Pinterest', 'PINTEREST_SHARE': 'Pin it', 'PLEASE_CLICK_HERE_TO': 'Please click here to do so.', 'PLUS': 'Plus', 'POLICYHOLDER_BENEFITS_CEDED': 'Policyholder Benefits Ceded', 'POLICYHOLDER_BENEFITS_GROSS': 'Policyholder Benefits Gross', 'POLICYHOLDER_DEPOSIT_INVESTMENT_RECEIVED': 'Policyholder Deposit Investment Received', 'POLICYHOLDER_DIVIDENDS': 'Policyholder Dividends', 'POLICYHOLDER_FUNDS': 'Policyholder Funds', 'POLICYHOLDER_INTEREST': 'Policyholder Interest', 'POLICY_ACQUISITION_EXPENSE': 'Policy Acquisition Expense', 'POLICY_HOLDERS_LIABILITIES': 'Policy Holders Liabilities', 'POLICY_LOANS': 'Policy Loans', 'POLLUTION_TREATMENT_CONTROLS': 'Pollution & Treatment Controls', 'POLLUTION_TREATMENT_CONTROLS_DESC': 'Pollution & Treatment Controls Stocks', 'POLL_QA': 'Poll and Q&A', 'POPULAR_FILTERS': 'Popular Filters', 'POPULAR_WATCHLISTS': 'Popular Watchlists', 'PORTFOLIO_ACTION_DESC': 'Look at what users are adding, deleting, and moving around in their portfolios.', 'PORTFOLIO_ACTION_TITLE': 'Portfolio Changes', 'PORTFOLIO_ANCHORS': 'Portfolio Anchors', 'PORTFOLIO_ANCHORS_DESC': \"Funds with Performance Rating of 4 & 5 and top-half returns that could serve as a rock-solid core of an investor's portfolio\", 'PORTFOLIO_CASH_SETTINGS': 'Portfolio Cash Settings', 'PORTFOLIO_CURRENCY': 'Portfolio Currency', 'PORTFOLIO_DAILY_SUMMARY': 'Portfolio Summary', 'PORTFOLIO_DETAILS': 'Portfolio Details', 'PORTFOLIO_HOLDINGS_BASIC_DESCRIPTION': 'Existing portfolio experience, with only support to input Buy.', 'PORTFOLIO_HOLDINGS_BETA_DESCRIPTION': 'Our new and enhanced portfolio version with support for Buy, Sell, Short, Buy to Cover Transactions and much more.', 'PORTFOLIO_HOLDINGS_BETA_TITLE_CREATE': 'Portfolio 2.0 with Transactions', 'PORTFOLIO_HOLDINGS_BETA_TITLE_PAGE0': 'Introducing Portfolio 2.0', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE0': 'All new features to help you better manage your portfolio holdings', 'PORTFOLIO_HOLDINGS_BETA_TITLE_PAGE1': \"What's new?\", 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1': 'All the tools you need to take your portfolio management to the next level.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1_CASH': 'Manage cash like any other asset.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1_DIVIDENDS': 'Automated dividend tracking and management.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1_LOTS': 'Automatic lot management using FIFO (First in First Out) methodology.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE1_TRANSACTIONS': 'Buy, Sell, Sell Short, and Buy to Cover transactions supported.', 'PORTFOLIO_HOLDINGS_BETA_TITLE_PAGE2': 'Setup your portfolio', 'PORTFOLIO_HOLDINGS_BETA_EDUCATION_PAGE2': 'Your portfolio {pfName} will be cloned as part of this Beta trial. This allows you to try the new transactions features without disrupting your primary portfolio.', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE2_CASH': 'Toggle on to enable automatic cash management - you can continue to manage your cash holdings manually if you prefer', 'PORTFOLIO_HOLDINGS_BETA_SUBTEXT_PAGE2_HOLDINGS': \"Enabling will add this portfolio's value to the total holdings amount\", 'PORTFOLIO_HOLDINGS_BETA_WARNING_PAGE2': 'Please note that changes made to this cloned portfolio will not have any impact on your exisiting portfolio.', 'PORTFOLIO_NAME': 'Portfolio Name', 'PORTFOLIO_NEWS': 'Portfolio News', 'PORTFOLIO_SHARING_TEXT': 'We will only share the company tickers. Holdings information will not be included.', 'PORTFOLIO_STATISTICS': 'Portfolio Statistics', 'PORTFOLIO_TOTAL_HOLDINGS_SETTINGS': 'Portfolio Total Holdings Settings', 'PORTFOLIO_WELCOME_MESSAGE': 'Welcome to My Portfolio - Link your brokers or add lots', 'PORTFOLIO_WELCOME_MESSAGE_NONTRADE': 'Welcome to Yahoo Finance Portfolios', 'PORTFOLIO_WELCOME_SUBMSG': 'Track your overall performance in one place. Add portfolio holdings manually by entering lots or by linking your online brokerage account.', 'PORTFOLIO_WELCOME_SUBMSG_NONTRADE': 'Track your performance with real-time data and news related to your symbols.', 'PORTFOLIO_WELCOME_SUBSUBMSG': 'Manage your holdings efficiently and create custom views using over 60 data points.', 'POST': 'Post', 'POSTINGS': 'Postings', 'POST_MARKET_NOTICE': 'After hours:', 'PRE': 'Pre', 'PREDEFINED_SCREENER': 'Screener', 'PREFERRED': 'Preferred', 'PREFERRED_SECURITIES_OUTSIDE_STOCK_EQUITY': 'Preferred Securities Outside Stock Equity', 'PREFERRED_SHARES_NUMBER': 'Preferred Shares Number', 'PREFERRED_STOCK': 'Preferred Stock', 'PREFERRED_STOCK_DIVIDENDS': 'Preferred Stock Dividends', 'PREFERRED_STOCK_DIVIDEND_PAID': 'Preferred Stock Dividend Paid', 'PREFERRED_STOCK_EQUITY': 'Preferred Stock Equity', 'PREFERRED_STOCK_ISSUANCE': 'Preferred Stock Issuance', 'PREFERRED_STOCK_OTHER_ADJ': 'Preferred Stock And Other Adjustments', 'PREFERRED_STOCK_PAYMENTS': 'Preferred Stock Payments', 'PREMIUM': 'Premium', 'PREMIUM_CLOSE_PRICE': 'Close price', 'PREMIUM_DAILY': 'DAILY', 'PREMIUM_LONG_TERM': 'Long Term', 'PREMIUM_MID_TERM': 'Mid Term', 'PREMIUM_RECEIVED': 'Premium Received', 'PREMIUM_SHORT_TERM': 'Short Term', 'PREMIUM_TECH_EVENTS_FOR': '{num} Active Technical Events in {term}', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST': 'ADDED TO WATCHLIST', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_1': 'You will now see', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_2': ' more {ticker} news ', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_3': 'in your Yahoo feed', 'PREMIUM_UPSELL_CHART_PATTERN': 'Pattern', 'PREMIUM_UPSELL_CTA': 'Start your free trial today. >>', 'PREMIUM_UPSELL_DIFF_D': '{days}d', 'PREMIUM_UPSELL_DIFF_DAYS_AGO': '{days} days ago', 'PREMIUM_UPSELL_DIFF_ONE_DAY_AGO': '1 day ago', 'PREMIUM_UPSELL_DIFF_ONE_MONTH_AGO': '1 month ago', 'PREMIUM_UPSELL_NEW_FEATURE': 'NEW FEATURE', 'PREMIUM_UPSELL_NEW_FEATURE_LOGGED_IN': 'Stay up-to-date with news and stock price for {ticker}', 'PREMIUM_UPSELL_NEW_FEATURE_LOGGED_OUT': 'Sign in to keep track of {ticker} news and performance', 'PREMIUM_UPSELL_PATTERN_DETAIL': 'View bullish/bearish technical chart patterns with one click.', 'PREMIUM_UPSELL_PATTERN_TITLE': '{type} Pattern Detected', 'PREMIUM_UPSELL_PERFORMANCE_DETAIL': 'Conduct technical analysis for the short, mid, or long term.', 'PREMIUM_UPSELL_PERFORMANCE_TITLE': 'Performance Outlook', 'PREMIUM_UPSELL_RECOMMENDATION_TITLE': 'Recommendation rating', 'PREMIUM_UPSELL_REPORTS_DETAIL': 'Analyst reports and guidance from Morningstar and Argus.', 'PREMIUM_UPSELL_REPORTS_TITLE': 'Recent Research', 'PREMIUM_UPSELL_SIG_DEVS_DETAIL': 'Plot company events on charts to view impact on performance.', 'PREMIUM_UPSELL_SIG_DEVS_TITLE': 'Significant Event Occurred', 'PREMIUM_UPSELL_SIG_DEVS_TITLE_SHORT': 'Significant Event', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_CTA': 'Research report available', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_1': 'You’ve read ', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_2': '{usedCount} of your {maxCount} ', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_3': 'free research reports this quarter', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_HEADER': 'Unlock premium independent research on this stock.', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_CTA': 'Upgrade to read report', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_TOOLTIP_DETAIL': 'You’ve read all your free reports this quarter.', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_TOOLTIP_HEADER': 'Get unlimited reports with Yahoo Finance Plus.', 'PREMIUM_UPSELL_VALUATION_DETAIL': 'Determine the fair value of any stock with Premium.', 'PREMIUM_UPSELL_VALUATION_TITLE': 'Fair Value Estimate', 'PREMIUM_UPSELL_FEATURED_IN_TITLE': 'Featured in', 'PREMIUM_UPSELL_FEATURED_IN_PUBLISHER': 'Publisher', 'PREMIUM_UPSELL_FEATURED_IN_DAYCHNG': 'Day Change', 'PREMIUM_UPSELL_FEATURED_IN_FOLLOWERS': 'Followers', 'PREMIUM_WEEKLY': 'WEEKLY', 'PREMIUM_WHAT_IT_MEANS': 'What It Means', 'PREPAID_ASSETS': 'Prepaid Assets', 'PRESENTED_BY': 'Presented By', 'PRETAX_INCOME': 'Pretax Income', 'PREV': 'Prev', 'PREVIEW': 'Preview', 'PREV_CLOSE': 'Previous Close', 'PREV_PRESIDENTS': 'Compared to previous presidents...', 'PREV_SETTLEMENT_DATE': 'Pre. Settlement', 'PRE_MARKET_NOTICE': 'Pre-Market:', 'PRICE': 'Price', 'PRICE_ALERT_DOWN': 'Price Alert', 'PRICE_ALERT_UP': 'Price Alert', 'PRICE_CHANGE': 'Price Change', 'PRICE_DAY_RANGE': 'Price day range for {symbol}', 'PRICE_DETAILS': 'Price details', 'PRICE_TARGET': 'Price Target', 'PRICE_TARGET_LOWERCASE': 'Price target', 'PRICE_TO_BOOK': 'Price/Book', 'PRICE_TO_CASHFLOW': 'Price/Cashflow', 'PRICE_TO_EARNINGS': 'Price/Earnings', 'PRICE_TO_SALES': 'Price/Sales', 'PRICINGS': 'Pricings', 'PRINT': 'Print', 'PRINTED_CIRCUIT_BOARDS': 'Printed Circuit Boards', 'PRINTED_CIRCUIT_BOARDS_DESC': 'Printed Circuit Boards Stocks', 'PRIVACY_POLICY': 'Privacy Policy', 'PRIVATE_COMPANY': 'Private Company', 'PROCEEDS': 'Proceeds', 'PROCEEDS_FROM_LOANS': 'Proceeds from Loans', 'PROCEEDS_FROM_STOCK_OPTION_EXERCISED': 'Proceeds from Stock Option Exercised', 'PROCEEDS_PAYMENT_FEDERAL_FUNDS_SOLD_AND_SECURITIES_PURCHASED_UNDER_AGREEMENT_TO_RESELL': 'Proceeds Payment Federal Funds Sold And Securities Purchased Under Agreement To Resell', 'PROCEEDS_PAYMENT_IN_INTEREST_BEARING_DEPOSITS_IN_BANK': 'Proceeds Payment in Interest Bearing Deposits in Bank', 'PROCESSED_PACKAGED_GOODS': 'Processed & Packaged Goods', 'PROCESSED_PACKAGED_GOODS_DESC': 'Processed & Packaged Goods Stocks', 'PROCESSING_SYSTEMS_PRODUCTS': 'Processing Systems & Products', 'PROCESSING_SYSTEMS_PRODUCTS_DESC': 'Processing Systems & Products Stocks', 'PROFESSIONAL_EXPENSE_AND_CONTRACT_SERVICES_EXPENSE': 'Professional Expense And Contract Services Expense', 'PROFITABILITY': 'Profitability', 'PROFITABILITY_RATIOS_AND_DIVIDENDS': 'Profitability Ratios and Dividends', 'PROFIT_MARGIN': 'Profit Margin', 'PROMOTE_NEW_CHART': 'Try our new charting experience and share your thoughts', 'PROPERTIES': 'Properties', 'PROPERTY_CASUALTY_INSURANCE': 'Property & Casualty Insurance', 'PROPERTY_CASUALTY_INSURANCE_DESC': 'Property & Casualty Insurance Stocks', 'PROPERTY_MANAGEMENT': 'Property Management', 'PROPERTY_MANAGEMENT_DESC': 'Property Management Stocks', 'PROPERTY_PLANT_AND_EQUIPMENT': 'Property, plant and equipment', 'PROPERTY_TITLE': 'Property', 'PORTFOLIO_HOLDING_PROMO_TITLE': 'Get Insights', 'PORTFOLIO_WEIGHT': '{weight} of your portfolios.', 'PORTFOLIO_WEIGHT_DISCLAIMER': 'Only you can see this.', 'PROSPECTUS_GROSS_EXPENSE_RATIO': 'Prospectus Gross Expense Ratio', 'PROSPECTUS_NET_EXPENSE_RATIO': 'Prospectus Net Expense Ratio', 'PROVISIONAND_WRITE_OFFOF_ASSETS': 'Provision & Write Off of Assets', 'PROVISION_FOR_DOUBTFUL_ACCOUNTS': 'Provision for Doubtful Accounts', 'PROVISION_FOR_LOAN_LEASE_AND_OTHER_LOSSES': 'Provision for Loan Lease And Other Losses', 'PUBLISHING_BOOKS': 'Publishing - Books', 'PUBLISHING_BOOKS_DESC': 'Publishing - Books Stocks', 'PUBLISHING_NEWSPAPERS': 'Publishing - Newspapers', 'PUBLISHING_NEWSPAPERS_DESC': 'Publishing - Newspapers Stocks', 'PUBLISHING_PERIODICALS': 'Publishing - Periodicals', 'PUBLISHING_PERIODICALS_DESC': 'Publishing - Periodicals Stocks', 'PURCHASES': 'Purchases', 'PURCHASES_OF_INVESTMENTS': 'Purchases of investments', 'PURCHASE_DETAILS': 'Purchase Details', 'PURCHASE_INFO': 'Purchase info', 'PURCHASE_OF_BUSINESS': 'Purchase of Business', 'PURCHASE_OF_INTANGIBLES': 'Purchase of Intangibles', 'PURCHASE_OF_INVESTMENT': 'Purchase of Investment', 'PURCHASE_OF_INVESTMENT_PROPERTIES': 'Purchase of Investment Properties', 'PURCHASE_OF_PPE': 'Purchase of PPE', 'RELATED_TICKERS': 'RelatedTickers', 'REVIEW_ACCOUNT': 'Review account information', 'START': 'Start', 'QSP_DISCLAIMER': 'Trade prices are not sourced from all markets', 'QUANTITY': 'Quantity', 'QUARTERLY': 'Quarterly', 'QUARTERLY_EARNINGS_GROWTH': 'Quarterly Earnings Growth', 'QUARTERLY_REVENUE_GROWTH': 'Quarterly Revenue Growth', 'QUARTER_FOUR': 'Q4', 'QUARTER_ONE': 'Q1', 'QUARTER_THREE': 'Q3', 'QUARTER_TWO': 'Q2', 'QUICK_VIDEO': 'Quick Video', 'QUOTE_LOOKUP': 'Quote Lookup', 'QUOTE_LOOKUP_PLACEHOLDER': 'Search for symbols or companies: AAPL, GOOG, DIS', 'QUOTE_PRICE_NOTICE': '{exchangeName} {marketSource}. Currency in {currency}', 'RAILROADS': 'Railroads', 'RAILROADS_DESC': 'Railroads Stocks', 'RANGE_0_99': 'Range 0-99', 'RANGE_SLIDER': 'Range Slider', 'RANK': 'Rank', 'RANK_IN_CATEGORY': 'Rank In Category (By Total Return)', 'RATE': 'Rate', 'RATING': 'Rating', 'RATIOS': 'Ratios', 'RAW_MATERIALS': 'Raw Materials', 'READ_MORE': 'Read more', 'READ_RELEVANT_NEWS': 'Read Relevant Investment News', 'REALIZED_GAIN': 'Realized Gain', 'REALIZED_GAIN_LOSS_ON_SALE_OF_LOANS_AND_LEASE': 'Realized Gain Loss On Sale of Loans And Lease', 'REAL_ESTATE_DEVELOPMENT': 'Real Estate Development', 'REAL_ESTATE_DEVELOPMENT_DESC': 'Real Estate Development Stocks', 'REAL_ESTATE_TITLE': 'Real Estate', 'REAL_GDP': 'Real GDP', 'RECEIPTSFROM_CUSTOMERS': 'Receipts from Customers', 'RECEIPTSFROM_GOVERNMENT_GRANTS': 'Receipts from Government Grants', 'RECEIVABLES': 'Receivables', 'RECEIVABLES_ADJUSTMENTS_ALLOWANCES': 'Receivables Adjustments Allowances', 'RECENTLY_VIEWED_TITLE': 'Recently Viewed', 'RECENT_EVENTS': 'Recent Events', 'RECENT_UPDATES': 'Recent Updates', 'RECENT_FILINGS': 'Recent Filings', 'RECOMMENDATION': 'Recommendation', 'RECOMMENDATION_RATING': 'Recommendation Rating', 'RECOMMENDATION_RATING_SCR_RD_MSG': '{rating} on a scale of {minRating} to {maxRating}, where {minRating} is {minRatingText} and {maxRating} is {maxRatingText}', 'RECOMMENDATION_TRENDS': 'Recommendation Trends', 'RECOMMEND_STOCKS': 'Recommended Stocks', 'RECONCILED_COST_OF_REVENUE': 'Reconciled Cost of Revenue', 'RECONCILED_DEPRECIATION': 'Reconciled Depreciation', 'RECREATIONAL_GOODS_OTHER': 'Recreational Goods, Other', 'RECREATIONAL_GOODS_OTHER_DESC': 'Recreational Goods, Other Stocks', 'RECREATIONAL_VEHICLES': 'Recreational Vehicles', 'RECREATIONAL_VEHICLES_DESC': 'Recreational Vehicles Stocks', 'RECTANGLE': 'Rectangle', 'REDEEMABLE_PREFERRED_STOCK': 'Redeemable Preferred Stock', 'REFERENCE_CODE': 'Reference Code', 'REFRESH': 'Refresh', 'REGIONAL_AIRLINES': 'Regional Airlines', 'REGIONAL_AIRLINES_DESC': 'Regional Airlines Stocks', 'REGIONAL_MIDATLANTIC_BANKS': 'Regional - Mid-Atlantic Banks', 'REGIONAL_MIDATLANTIC_BANKS_DESC': 'Regional - Mid-Atlantic Banks Stocks', 'REGIONAL_MIDWEST_BANKS': 'Regional - Midwest Banks', 'REGIONAL_MIDWEST_BANKS_DESC': 'Regional - Midwest Banks Stocks', 'REGIONAL_NORTHEAST_BANKS': 'Regional - Northeast Banks', 'REGIONAL_NORTHEAST_BANKS_DESC': 'Regional - Northeast Banks Stocks', 'REGIONAL_PACIFIC_BANKS': 'Regional - Pacific Banks', 'REGIONAL_PACIFIC_BANKS_DESC': 'Regional - Pacific Banks Stocks', 'REGIONAL_SOUTHEAST_BANKS': 'Regional - Southeast Banks', 'REGIONAL_SOUTHEAST_BANKS_DESC': 'Regional - Southeast Banks Stocks', 'REGIONAL_SOUTHWEST_BANKS': 'Regional - Southwest Banks', 'REGIONAL_SOUTHWEST_BANKS_DESC': 'Regional - Southwest Banks Stocks', 'REGRESSION': 'Regression', 'REGULATORY_ASSETS': 'Regulatory Assets', 'REGULATORY_LIABILITIES': 'Regulatory Liabilities', 'REINSURANCEAND_OTHER_RECOVERIES_RECEIVED': 'Reinsurance & Other Recoveries Received', 'REINSURANCE_RECOVERABLE': 'Reinsurance Recoverable', 'REITERATES': 'Reiterates', 'REIT_DIVERSIFIED': 'REIT - Diversified', 'REIT_DIVERSIFIED_DESC': 'REIT - Diversified Stocks', 'REIT_HEALTHCARE_FACILITIES': 'REIT - Healthcare Facilities', 'REIT_HEALTHCARE_FACILITIES_DESC': 'REIT - Healthcare Facilities Stocks', 'REIT_HOTEL_MOTEL': 'REIT - Hotel/Motel', 'REIT_HOTEL_MOTEL_DESC': 'REIT - Hotel/Motel Stocks', 'REIT_INDUSTRIAL': 'REIT - Industrial', 'REIT_INDUSTRIAL_DESC': 'REIT - Industrial Stocks', 'REIT_OFFICE': 'REIT - Office', 'REIT_OFFICE_DESC': 'REIT - Office Stocks', 'REIT_RESIDENTIAL': 'REIT - Residential', 'REIT_RESIDENTIAL_DESC': 'REIT - Residential Stocks', 'REIT_RETAIL': 'REIT - Retail', 'REIT_RETAIL_DESC': 'REIT - Retail Stocks', 'RELATED_COMPANIES': 'Related Companies', 'RELATED_FILINGS_FROM_SYMBOL': 'Related Filings from {symbol}', 'RELATED_LISTS_FOR_SYMBOL': 'Related Lists for {symbol}', 'RELATED_QUOTES': 'Related Quotes', 'RELATED_REPORT': 'Related Reports', 'RELATED_VIDEO': 'Related Video', 'REMOVE': 'Remove', 'REMOVED': 'Removed', 'REMOVE_STRIKE_FILTER': 'Remove Strike Filtering', 'RENAME_MODAL_MESSAGE': 'Enter a new name for {pfName}.', 'RENAME_PORTFOLIO': 'Rename Portfolio', 'RENAME_PORTFOLIO_ERROR': 'Unable to rename portfolio. Please retry.', 'RENTAL_LEASING_SERVICES': 'Rental & Leasing Services', 'RENTAL_LEASING_SERVICES_DESC': 'Rental & Leasing Services Stocks', 'RENTAND_LANDING_FEES_COSTOF_REVENUE': 'Rentand Landing Fees Cost of Revenue', 'RENT_AND_LANDING_FEES': 'Rental & Landing Fees', 'RENT_EXPENSE_SUPPLEMENTAL': 'Rent Expense Supplemental', 'REORDER': 'Reorder', 'REORDER_COLUMNS': 'Reorder Columns', 'REORDER_LISTS': 'Reorder Lists', 'REPAYMENT_OF_DEBT': 'Repayment of Debt', 'REPORTED_NORMALIZED_BASIC_EPS': 'Reported Normalized Basic EPS', 'REPORTED_NORMALIZED_DILUTED_EPS': 'Reported Normalized Diluted EPS', 'REPORT_ID': 'Report Id', 'REPORT_NAME': 'Report Name', 'REPORT_TYPE': 'Report type', 'REPURCHASE_OF_CAPITAL_STOCK': 'Repurchase of Capital Stock', 'RESEARCH': 'Research', 'RESEARCH_AND_DEVELOPMENT': 'Research & Development', 'RESEARCH_DEVELOPMENT': 'Research Development', 'RESEARCH_INPUT_PLACEHOLDER': 'Filter reports by symbols', 'RESEARCH_REPORT': 'Premium Research Report', 'RESEARCH_REPORTS': 'Research Reports', 'RESEARCH_SERVICES': 'Research Services', 'RESEARCH_SERVICES_DESC': 'Research Services Stocks', 'RESET': 'Reset', 'RESIDENTIAL_CONSTRUCTION': 'Residential Construction', 'RESIDENTIAL_CONSTRUCTION_DESC': 'Residential Construction Stocks', 'RESISTANCE': 'Resistance', 'RESORTS_CASINOS': 'Resorts & Casinos', 'RESORTS_CASINOS_DESC': 'Resorts & Casinos Stocks', 'RESTAURANTS': 'Restaurants', 'RESTAURANTS_DESC': 'Restaurants Stocks', 'RESTRICTED_CASH': 'Restricted Cash', 'RESTRICTED_CASH_AND_CASH_EQUIVALENTS': 'Restricted Cash & Cash Equivalents', 'RESTRICTED_CASH_AND_INVESTMENTS': 'Restricted Cash And Investments', 'RESTRICTED_COMMON_STOCK': 'Restricted Common Stock', 'RESTRICTED_INVESTMENTS': 'Restricted Investments', 'RESTRUCTURING_AND_MERGERN_ACQUISITION': 'Restructuring & Mergers Acquisition', 'RESULTS': 'Results', 'RESULTS_CALENDAR_earnings': 'Earnings on {date}', 'RESULTS_CALENDAR_economic_event': 'Economic Events on {date}', 'RESULTS_CALENDAR_ipo_info': 'IPO Events on {date}', 'RESULTS_CALENDAR_splits': 'Stock Splits on {date}', 'RESULTS_LIST': 'Results List', 'RETAILING_HOSPITALITY_TITLE': 'Retail & Hospitality', 'RETAINED_EARNINGS': 'Retained Earnings', 'RETIREMENT_TITLE': 'Retirement', 'RETURN': 'Return', 'RETURN_ON_ASSETS': 'Return on Assets', 'RETURN_ON_EQUITY': 'Return on Equity', 'REVENUE': 'Revenue', 'REVENUE_ESTIMATE': 'Revenue Estimate', 'REVENUE_PER_PERIOD': '{period} revenue', 'REVENUE_PER_SHARE': 'Revenue Per Share', 'RGAREA': 'Red Green Area', 'RISK': 'Risk', 'RISK_ANALYSIS': 'Risk Analysis', 'RISK_OVERVIEW': 'Risk Overview', 'RISK_RATING': 'Morningstar Risk Rating', 'RISK_STATISTICS': 'Risk Statistics', 'ROR_PERCENT': 'RoR (%)', 'RUBBER_PLASTICS': 'Rubber & Plastics', 'RUBBER_PLASTICS_DESC': 'Rubber & Plastics Stocks', 'R_SQUARED': 'R-squared', 'SALARIES_AND_WAGES': 'Salaries and Wages', 'SALES': 'Sales', 'SALES_GROWTH_YEAR_EST': 'Sales Growth (year/est)', 'SALES_MATURITIES_OF_INVESTMENTS': 'Sales/Maturities of investments', 'SALE_OF_BUSINESS': 'Sale of Business', 'SALE_OF_INTANGIBLES': 'Sale of Intangibles', 'SALE_OF_INVESTMENT': 'Sale of Investment', 'SALE_OF_INVESTMENT_PROPERTIES': 'Sale of Investment Properties', 'SALE_OF_PPE': 'Sale of PPE', 'SALE_PURCHASE_OF_STOCK': 'Sale Purchase of Stock', 'SALUD_TITLE': 'Healthcare', 'SALUTE_TITLE': 'Healthcare', 'SAMPLE_DATA': 'Sample Data', 'SANTE-ET-CHIMIE_TITLE': 'Healthcare', 'SAUDE-FARMACEUTICA_TITLE': 'Health & Pharmaceuticals', 'SAVE': 'Save', 'SAVED': 'Saved', 'SAVE_AS': 'Save As', 'SAVE_FILTERS': 'Save Filters', 'SAVE_LOT': 'Save Lot', 'SAVE_MONEY_TITLE': 'Save Money', 'SAVE_TRANSACTION': 'Save transaction', 'SAVE_VIEW_ERROR': 'Unable to save view. Please retry.', 'SAVINGS_LOANS': 'Savings & Loans', 'SAVINGS_LOANS_DESC': 'Savings & Loans Stocks', 'SAVING_SPENDING_TITLE': 'Saving & Spending', 'SCIENTIFIC_TECHNICAL_INSTRUMENTS': 'Scientific & Technical Instruments', 'SCIENTIFIC_TECHNICAL_INSTRUMENTS_DESC': 'Scientific & Technical Instruments Stocks', 'SCREENER': 'Screener', 'SCREENERS': 'Screeners', 'SCREENER_CRITERIA_CHANGE': 'Screening Criteria has changed.', 'SCREENER_DEFAULT_CRITERIA': 'Default Criteria', 'SCREENER_DEPEND_FIELD_MSG': 'Select {field} first', 'SCREENER_DESC_PLACEHOLDER': 'Enter a description (optional)', 'SCREENER_FIELD_addtocalendar': 'Add to Calendar', 'SCREENER_FIELD_after_release_actual': 'Actual', 'SCREENER_FIELD_altmanzscoreusingtheaveragestockinformationforaperiod.lasttwelvemonths': 'Altman Z Score', 'SCREENER_FIELD_analyst_name': 'Analyst Firm', 'SCREENER_FIELD_announce_date': 'Announced', 'SCREENER_FIELD_annualreportgrossexpenseratio': 'Annual Gross Expense Ratio', 'SCREENER_FIELD_annualreportnetexpenseratio': 'Annual Net Expense Ratio', 'SCREENER_FIELD_annualreturnnavy1': '% Change in Net Asset Value (NAV - 1 yr)', 'SCREENER_FIELD_annualreturnnavy1categoryrank': 'Annual Return NAV Year 1 Category Rank', 'SCREENER_FIELD_annualreturnnavy3': '% Change in Net Asset Value (NAV - 3 yr)', 'SCREENER_FIELD_annualreturnnavy5': '% Change in Net Asset Value (NAV - 5 yr)', 'SCREENER_FIELD_average_rating': 'Average Rating', 'SCREENER_FIELD_averagedayspayableoutstanding.lasttwelvemonths': 'Average Days Payable Outstanding (LTM)', 'SCREENER_FIELD_avgdailyvol3m': 'Avg Vol (3 month)', 'SCREENER_FIELD_basicepscontinuingoperations.lasttwelvemonths': 'EPS (Basic, Continuing Operations)', 'SCREENER_FIELD_basicweightedaveragesharesoutstanding.lasttwelvemonths': 'Basic Weighted Average Shares Outstanding (LTM)', 'SCREENER_FIELD_beta': 'Beta (5Y Monthly)', 'SCREENER_FIELD_beta1year.lasttwelvemonths': 'Beta - 1 Year (LTM)', 'SCREENER_FIELD_bookvalueshare.lasttwelvemonths': 'Book Value / Share', 'SCREENER_FIELD_briefing_com_estimate': 'Briefing Forecast', 'SCREENER_FIELD_breakoutPrice': 'Breakout Price', 'SCREENER_FIELD_targetPrice': 'Target Price', 'SCREENER_FIELD_capitalexpenditure.lasttwelvemonths': 'Capital Expenditure (CapEx)', 'SCREENER_FIELD_cashandequivalents.lasttwelvemonths': 'Cash And Equivalents (LTM)', 'SCREENER_FIELD_cashfromoperations.lasttwelvemonths': 'Cash from Operations', 'SCREENER_FIELD_cashfromoperations1yrgrowth.lasttwelvemonths': '1 yr. % Change in Cash from Operations', 'SCREENER_FIELD_cashincometaxpaidrefund.lasttwelvemonths': 'Cash Income Tax Paid (Refund) (LTM)', 'SCREENER_FIELD_cashinterestpaid.lasttwelvemonths': 'Cash Interest Paid (LTM)', 'SCREENER_FIELD_categoryname': 'Funds by Category', 'SCREENER_FIELD_change_in_number_of_institutional_holders': 'Change in no. of Holders', 'SCREENER_FIELD_circulatingSupply': 'Circulating Supply', 'SCREENER_FIELD_companyshortname': 'Company', 'SCREENER_FIELD_consecutive_years_of_dividend_growth_count': 'Consecutive Years of Dividend Growth', 'SCREENER_FIELD_consensus_estimate': 'Market Expectation', 'SCREENER_FIELD_consensuseps': 'Consensus EPS', 'SCREENER_FIELD_count': 'Document Count', 'SCREENER_FIELD_country_code': 'Country', 'SCREENER_FIELD_currency': 'Currency', 'SCREENER_FIELD_currencyname': 'Currency', 'SCREENER_FIELD_current_price': 'Price (Delayed)', 'SCREENER_FIELD_currentratio.lasttwelvemonths': 'Current Ratio', 'SCREENER_FIELD_dateisestimate': 'Estimate Date', 'SCREENER_FIELD_days_to_cover_short.value': 'Short Interest Ratio', 'SCREENER_FIELD_daysoutstandinginventoryaverageinventory.lasttwelvemonths': 'Days Outstanding Inventory (Average Inventory) (LTM)', 'SCREENER_FIELD_dayssalesoutstandingaveragereceivables.lasttwelvemonths': 'Days Sales Outstanding (Average Receivables) (LTM)', 'SCREENER_FIELD_dayvolume': 'Volume', 'SCREENER_FIELD_dealtype': 'Actions', 'SCREENER_FIELD_dilutedeps1yrgrowth.lasttwelvemonths': '1 Yr. % Change in EPS (Diluted)', 'SCREENER_FIELD_dilutedepscontinuingoperations.lasttwelvemonths': 'EPS (Diluted, Continuing Operations)', 'SCREENER_FIELD_dilutedweightedaveragesharesoutstanding.lasttwelvemonths': 'Diluted Weighted Average Shares Outstanding (LTM)', 'SCREENER_FIELD_dividendDate': 'Div Payment Date', 'SCREENER_FIELD_dividendpershare.lasttwelvemonths': 'Dividend Per Share (DPS)', 'SCREENER_FIELD_dividendsPerShare': 'Div/Share', 'SCREENER_FIELD_dividendyield': 'Dividend Yield %', 'SCREENER_FIELD_earnings_consistency': 'Earnings Consistency', 'SCREENER_FIELD_earningscalltime': 'Earnings Call Time', 'SCREENER_FIELD_earningscount': 'Earnings', 'SCREENER_FIELD_earningsfromcontinuingoperations.lasttwelvemonths': 'Earnings From Continuing Operations (LTM)', 'SCREENER_FIELD_ebit.lasttwelvemonths': 'EBIT', 'SCREENER_FIELD_ebitda.lasttwelvemonths': 'EBITDA', 'SCREENER_FIELD_ebitda1yrgrowth.lasttwelvemonths': '1 Yr. % Change in EBITDA', 'SCREENER_FIELD_ebitdainterestexpense.lasttwelvemonths': 'EBITDA / Interest Expense (LTM)', 'SCREENER_FIELD_ebitdamargin.lasttwelvemonths': 'EBITDA Margin %', 'SCREENER_FIELD_ebitinterestexpense.lasttwelvemonths': 'EBIT / Interest Expense (LTM)', 'SCREENER_FIELD_ebtexclunusualitems.lasttwelvemonths': 'EBT, Excl. Unusual Items (LTM)', 'SCREENER_FIELD_econ_release': 'Event', 'SCREENER_FIELD_economiceventcount': 'Economic Events', 'SCREENER_FIELD_ecstotalcommonsharesoutstanding.lasttwelvemonths': 'ECS Total Common Shares Outstanding (LTM)', 'SCREENER_FIELD_ecstotalsharesoutstandingonfilingdate.lasttwelvemonths': 'ECS Total Shares Outstanding on Filing Date (LTM)', 'SCREENER_FIELD_enddatetime': 'Event End Date', 'SCREENER_FIELD_endDate': 'Event Date', 'SCREENER_FIELD_environmental_score': 'Environmental Score', 'SCREENER_FIELD_eodmarketcap': 'End-of-Day Market Cap', 'SCREENER_FIELD_eodprice': 'Price (End of Day)', 'SCREENER_FIELD_eodvolume': 'Volume (End of Day)', 'SCREENER_FIELD_epsForward': 'EPS Est Next Year', 'SCREENER_FIELD_epsactual': 'Reported EPS', 'SCREENER_FIELD_epsconsensus': 'EPS Consensus', 'SCREENER_FIELD_epscurrentyear': 'EPS Current Year', 'SCREENER_FIELD_epsestimate': 'EPS Estimate', 'SCREENER_FIELD_epsgrowth.annual': 'EPS Growth (ANNUAL)', 'SCREENER_FIELD_epsgrowth.lasttwelvemonths': '1 yr. % Change in EPS (Basic)', 'SCREENER_FIELD_epsgrowth.quarterly': 'EPS Growth (QUARTERLY)', 'SCREENER_FIELD_epsgrowth.yeartodate': 'EPS Growth (YTD)', 'SCREENER_FIELD_epssurprisepct': 'Surprise(%)', 'SCREENER_FIELD_esg_score': 'ESG Score', 'SCREENER_FIELD_estimated_earnings_growth': 'Est. EPS Growth (%)', 'SCREENER_FIELD_estimated_revenue_growth': 'Est. Revenue Growth (%)', 'SCREENER_FIELD_eventid': 'Event Id', 'SCREENER_FIELD_eventname': 'Event Name', 'SCREENER_FIELD_eventtype': 'Event Type', 'SCREENER_FIELD_eventTypeName': 'Pattern Name', 'SCREENER_FIELD_ex_date': 'Ex Date', 'SCREENER_FIELD_exchange': 'Exchange', 'SCREENER_FIELD_exchange_short_name': 'Exchange', 'SCREENER_FIELD_expire_date': 'Expiration Date', 'SCREENER_FIELD_fiftytwowkpercentchange': '52 Week Price % Change', 'SCREENER_FIELD_file_date': 'File Date', 'SCREENER_FIELD_filername': 'Name', 'SCREENER_FIELD_filingdate': 'Date', 'SCREENER_FIELD_fiscalyear': 'Financial Calendar Year', 'SCREENER_FIELD_form_type': 'Form Type', 'SCREENER_FIELD_forward_dividend_per_share': 'Forward Dividend Rate (DPS)', 'SCREENER_FIELD_forward_dividend_yield': 'Forward Dividend Yield %', 'SCREENER_FIELD_fulltimeemployees.lasttwelvemonths': 'Full Time Employees (LTM)', 'SCREENER_FIELD_fundfamilyname': 'Funds by Company', 'SCREENER_FIELD_fund_investment_orientation': 'Fund Investment Orientation', 'SCREENER_FIELD_fund_investment_style': 'Fund Investment Style', 'SCREENER_FIELD_fund_name.keyword': 'Fund Name', 'SCREENER_FIELD_fund_turnover_rating': 'Fund Turnover Rating', 'SCREENER_FIELD_fund_type': 'Fund Type', 'SCREENER_FIELD_fundnetassets': 'Net Assets', 'SCREENER_FIELD_governance_score': 'Governance Score', 'SCREENER_FIELD_grossprofit.lasttwelvemonths': 'Gross Profit', 'SCREENER_FIELD_grossprofitmargin.lasttwelvemonths': 'Gross Profit Margin %', 'SCREENER_FIELD_highest_controversy': 'Highest Controversy', 'SCREENER_FIELD_holders_fund_types': 'Fund Type', 'SCREENER_FIELD_number_of_institutional_holders': 'No. of Holders', 'SCREENER_FIELD_implied_volatility': 'Implied Volatility', 'SCREENER_FIELD_industry': 'Industry', 'SCREENER_FIELD_initialinvestment': 'Initial Minimum Investment', 'SCREENER_FIELD_intradaymarketcap': 'Market Cap (Intraday)', 'SCREENER_FIELD_intradayprice': 'Price (Intraday)', 'SCREENER_FIELD_intradaypricechange': 'Price Change (Intraday)', 'SCREENER_FIELD_ipoinfo': 'IPOs', 'SCREENER_FIELD_ipoinfocount': 'IPO Pricings', 'SCREENER_FIELD_lastclose52weekhigh.lasttwelvemonths': '52 Week Price High (Last Close)', 'SCREENER_FIELD_lastclose52weeklow.lasttwelvemonths': '52 Week Price Low (Last Close)', 'SCREENER_FIELD_lastclosebsshout.lasttwelvemonths': 'Last Close BS Shout (LTM)', 'SCREENER_FIELD_lastcloseindicateddividendstockprice.lasttwelvemonths': 'Last Close Indicated Dividend / Stock Price (LTM)', 'SCREENER_FIELD_lastclosemarketcap.lasttwelvemonths': 'Market Cap (Last Close)', 'SCREENER_FIELD_lastclosemarketcapebtexclunusualitems.lasttwelvemonths': 'Last Close Market Cap / EBT Excl. Unusual Items (LTM)', 'SCREENER_FIELD_lastclosemarketcaptotalrevenue.lasttwelvemonths': 'Price / Sales (P/S)', 'SCREENER_FIELD_lastcloseprice.lasttwelvemonths': 'Last Close Price (LTM)', 'SCREENER_FIELD_lastclosepricebookvalue.lasttwelvemonths': 'Price / Book Value (P/B)', 'SCREENER_FIELD_lastclosepriceearnings.lasttwelvemonths': 'Price / Earnings (P/E)', 'SCREENER_FIELD_lastclosepricetangiblebookvalue.lasttwelvemonths': 'Price / Tangible Book Value (P/TB)', 'SCREENER_FIELD_lastclosetevebit.lasttwelvemonths': 'Total Enterprise Value (TEV) / EBIT', 'SCREENER_FIELD_lastclosetevebitda.lasttwelvemonths': 'Total Enterprise Value (TEV) / EBITDA', 'SCREENER_FIELD_lastclosetevtotalrevenue.lasttwelvemonths': 'Total Enterprise Value / Total Revenue (EV/Sales)', 'SCREENER_FIELD_leveredfreecashflow.lasttwelvemonths': 'Levered (after expenses) Free Cash Flow', 'SCREENER_FIELD_leveredfreecashflow1yrgrowth.lasttwelvemonths': '1 yr. % Change in Levered Free Cash Flow', 'SCREENER_FIELD_ltdebtequity.lasttwelvemonths': 'Long Term Debt / Equity (LT D/E) %', 'SCREENER_FIELD_mapped_rating_current': 'Current Rating', 'SCREENER_FIELD_marketcapitalvaluelong': 'Market Capital Value - Long', 'SCREENER_FIELD_morningstar_economic_moat': 'Economic Moat', 'SCREENER_FIELD_morningstar_last_close_price_to_fair_value': 'Morningstar Last Close Price / Fair Value', 'SCREENER_FIELD_morningstar_moat_trend': 'Moat Trend', 'SCREENER_FIELD_morningstar_rating': 'Morningstar Rating', 'SCREENER_FIELD_morningstar_rating_change': 'Morningstar Rating Change', 'SCREENER_FIELD_morningstar_rating_updated_time': 'Morningstar Rating Updated Time', 'SCREENER_FIELD_morningstar_stewardship': 'Stewardship', 'SCREENER_FIELD_morningstar_uncertainty': 'Uncertainty Rating', 'SCREENER_FIELD_netdebtebitda.lasttwelvemonths': 'Net Debt / EBITDA', 'SCREENER_FIELD_netepsbasic.lasttwelvemonths': 'EPS (Basic)', 'SCREENER_FIELD_netepsdiluted.lasttwelvemonths': 'EPS (Diluted)', 'SCREENER_FIELD_netincome1yrgrowth.lasttwelvemonths': '1 Yr. % Change in Net Income', 'SCREENER_FIELD_netincomeis.lasttwelvemonths': 'Net Income', 'SCREENER_FIELD_netincomemargin.lasttwelvemonths': 'Net Income Margin %', 'SCREENER_FIELD_netincometocommonexclextraitems.lasttwelvemonths': 'Net Income to Common Excl. Extra Items (LTM)', 'SCREENER_FIELD_changeInSharesHeldByInstitutions': 'Change in Shares Held', 'SCREENER_FIELD_number_of_institutional_buyers': 'No. of Buyers', 'SCREENER_FIELD_number_of_institutional_sellers': 'No. of Sellers', 'SCREENER_FIELD_numOfSharesBoughtByInstitutions': 'No. of Shares Bought', 'SCREENER_FIELD_numOfSharesSoldByInstitutions': 'No. of Shares Sold', 'SCREENER_FIELD_offerprice': 'Price', 'SCREENER_FIELD_open_interest': 'Open Interest', 'SCREENER_FIELD_operatingcashflowtocurrentliabilities.lasttwelvemonths': 'Operating Cash Flow Ratio', 'SCREENER_FIELD_operatingincome.lasttwelvemonths': 'Operating Income', 'SCREENER_FIELD_optionable': 'Optionable?', 'SCREENER_FIELD_originally_reported_actual': 'Revised from', 'SCREENER_FIELD_ownership_percent': 'Ownership %', 'SCREENER_FIELD_lastReportDate': 'Last Report Date', 'SCREENER_FIELD_payable_on': 'Payable on', 'SCREENER_FIELD_pctheldinsider': '% of Shares Outstanding Held by Insiders', 'SCREENER_FIELD_pctheldinst': '% of Shares Outstanding Held by Institutions', 'SCREENER_FIELD_percent_change_in_shares_held': '% Change in Shares Held', 'SCREENER_FIELD_peer_group': 'Peer Group', 'SCREENER_FIELD_pegratio_5y': 'Price / Earnings to Growth (P/E/G)', 'SCREENER_FIELD_peratio.annual': 'Trailing P/E (ANNUAL)', 'SCREENER_FIELD_peratio.lasttwelvemonths': 'Trailing P/E', 'SCREENER_FIELD_peratio.quarterly': 'Trailing P/E (QUARTERLY)', 'SCREENER_FIELD_peratio.yeartodate': 'Trailing P/E (YTD)', 'SCREENER_FIELD_percentchange': '% Change in Price (Intraday)', 'SCREENER_FIELD_percent_change_in_number_of_institutional_holders': '% Change in no. of Holders', 'SCREENER_FIELD_percent_change_in_ownership': '% Change in Ownership', 'SCREENER_FIELD_percent_change_in_shares_held_by_funds': '% Change in Shares Held', 'SCREENER_FIELD_percent_in_funds_holding': 'No. of Holders %', 'SCREENER_FIELD_percent_in_top_ten_holdings': '% in Top 10 Holdings', 'SCREENER_FIELD_percent_of_shares_outstanding': '% of Shares Outstanding Held', 'SCREENER_FIELD_percent_of_shares_outstanding_bought_by_institutions': '% of Shares Outstanding Bought', 'SCREENER_FIELD_percent_of_shares_outstanding_sold_by_institutions': '% of Shares Outstanding Sold', 'SCREENER_FIELD_percentOfSharesOutHeldByInstitutions': '% of Shares Outstanding Held', 'SCREENER_FIELD_performanceratingoverall': 'Morningstar Performance Rating Overall', 'SCREENER_FIELD_period': 'For', 'SCREENER_FIELD_pricePeriod': 'Price Period', 'SCREENER_FIELD_priceToBook': 'Price/Book', 'SCREENER_FIELD_price_target_action': 'Price Target Action', 'SCREENER_FIELD_price_target_percent_change': 'Upside/Downside %', 'SCREENER_FIELD_pricebookratio.annual': 'Price/Book (ANNUAL)', 'SCREENER_FIELD_pricebookratio.lasttwelvemonths': 'Price/Book (LTM)', 'SCREENER_FIELD_pricebookratio.quarterly': 'P/B (most recent quarter - mrq)', 'SCREENER_FIELD_pricebookratio.yeartodate': 'Price/Book (YTD)', 'SCREENER_FIELD_priceto': 'Price Range', 'SCREENER_FIELD_prior_release_actual': 'Prior to This', 'SCREENER_FIELD_quarter': 'Quarter', 'SCREENER_FIELD_quarterendtrailingreturnytd': 'Quarter End Trailing Return YTD %', 'SCREENER_FIELD_quarterlyrevenuegrowth.annual': 'Quarterly Revenue Growth (ANNUAL)', 'SCREENER_FIELD_quarterlyrevenuegrowth.lasttwelvemonths': 'Quarterly Revenue Growth (LTM)', 'SCREENER_FIELD_quarterlyrevenuegrowth.quarterly': 'Quarterly Revenue Growth YoY %', 'SCREENER_FIELD_quarterlyrevenuegrowth.yeartodate': 'Quarterly Revenue Growth (YTD)', 'SCREENER_FIELD_quickratio.lasttwelvemonths': 'Quick Ratio', 'SCREENER_FIELD_rank_us': 'US Rank', 'SCREENER_FIELD_rating_action': 'Rating Change', 'SCREENER_FIELD_rating_date': 'Date Range', 'SCREENER_FIELD_ratingoverall': 'Morningstar Rating Overall', 'SCREENER_FIELD_region': 'Region', 'SCREENER_FIELD_regularMarketDayRange': 'Day Range', 'SCREENER_FIELD_reportedeps': 'Reported EPS', 'SCREENER_FIELD_researchanddevelopmentexpensefromfootnotes.lasttwelvemonths': 'Research And Development Expense From Footnotes (LTM)', 'SCREENER_FIELD_returnonassets.lasttwelvemonths': 'Return on Assets %', 'SCREENER_FIELD_returnonequity.annual': 'Return on Equity (ANNUAL)', 'SCREENER_FIELD_returnonequity.lasttwelvemonths': 'Return On Equity %', 'SCREENER_FIELD_returnonequity.quarterly': 'Return on Equity (QUARTERLY)', 'SCREENER_FIELD_returnonequity.yeartodate': 'Return on Equity (YTD)', 'SCREENER_FIELD_returnontotalcapital.lasttwelvemonths': 'Return on Total Capital %', 'SCREENER_FIELD_revenue.annual': 'Revenue (ANNUAL)', 'SCREENER_FIELD_revenue.lasttwelvemonths': 'Revenue (LTM)', 'SCREENER_FIELD_revenue.quarterly': 'Revenue (QUARTERLY)', 'SCREENER_FIELD_revenue.yeartodate': 'Revenue (YTD)', 'SCREENER_FIELD_revenue_consistency': 'Revenue Consistency', 'SCREENER_FIELD_revenuepershare.lasttwelvemonths': 'Revenue Per Share (LTM)', 'SCREENER_FIELD_riskratingoverall': 'Morningstar Risk Rating Overall', 'SCREENER_FIELD_ror_percent': 'Est. Rate of Return (%)', 'SCREENER_FIELD_sector': 'Sector', 'SCREENER_FIELD_sgandamargin.lasttwelvemonths': 'SG&A Margin (LTM)', 'SCREENER_FIELD_share_worth': 'Ratio', 'SCREENER_FIELD_shares': 'Shares', 'SCREENER_FIELD_sharesperdepositoryreceiptnonprimarycompanies.lasttwelvemonths': 'Shares per Depository Receipt (Non-Primary Companies) (LTM)', 'SCREENER_FIELD_sharesperdepositoryreceiptprimarycompanies.lasttwelvemonths': 'Shares per Depository Receipt (Primary Companies) (LTM)', 'SCREENER_FIELD_short_interest.value': 'Short Interest', 'SCREENER_FIELD_short_interest_percentage_change.value': 'Short Interest % Change', 'SCREENER_FIELD_short_percentage_of_float.value': 'Short % of Float', 'SCREENER_FIELD_short_percentage_of_shares_outstanding.value': 'Short % of Shares Outstanding', 'SCREENER_FIELD_sma200': '200 Day Moving Average', 'SCREENER_FIELD_sma50': '50 Day Moving Average', 'SCREENER_FIELD_social_score': 'Social Score', 'SCREENER_FIELD_sparkline': '1 Day Chart', 'SCREENER_FIELD_splitscount': 'Stock Splits', 'SCREENER_FIELD_startdatetime': 'Event Time', 'SCREENER_FIELD_startdatetimetype': 'Earnings Call Time', 'SCREENER_FIELD_surprisepercent': 'Surprise (%)', 'SCREENER_FIELD_targetPricePercentMove': 'Expected Price % Move', 'SCREENER_FIELD_ticker': 'Symbol', 'SCREENER_FIELD_tickersharesoutstanding': 'Ticker Shares Outstanding', 'SCREENER_FIELD_top_fund_holder_names': \"Fund Name (Stock in Fund's top 10 Holdings)\", 'SCREENER_FIELD_totalassets.lasttwelvemonths': 'Total Assets', 'SCREENER_FIELD_totalcapitalratio.lasttwelvemonths': 'Total Capital - (Ratio) (LTM)', 'SCREENER_FIELD_totalcashandshortterminvestments.lasttwelvemonths': 'Total Cash And Short Term Investments', 'SCREENER_FIELD_totalcommonequity.lasttwelvemonths': 'Total Common Equity', 'SCREENER_FIELD_totalcommonsharesoutstanding.lasttwelvemonths': 'Total Common Shares Outstanding', 'SCREENER_FIELD_totalcurrentassets.lasttwelvemonths': 'Total Current Assets', 'SCREENER_FIELD_totalcurrentliabilities.lasttwelvemonths': 'Total Current Liabilities', 'SCREENER_FIELD_totaldebt.lasttwelvemonths': 'Total Debt', 'SCREENER_FIELD_totaldebtebitda.lasttwelvemonths': 'Total Debt / EBITDA', 'SCREENER_FIELD_totaldebtequity.lasttwelvemonths': 'Debt / Equity (D/E) %', 'SCREENER_FIELD_total_equity_asset': 'Asset Under Management', 'SCREENER_FIELD_totalequity.lasttwelvemonths': 'Total Equity', 'SCREENER_FIELD_totalrevenues.lasttwelvemonths': 'Total Revenue', 'SCREENER_FIELD_totalrevenues1yrgrowth.lasttwelvemonths': '1 Yr. % Change in Total Revenue', 'SCREENER_FIELD_totalsharesoutstanding': 'Total Shares Outstanding', 'SCREENER_FIELD_totalsharesoutstandingonfilingdate.lasttwelvemonths': 'Total Shares Outstanding on Filing Date (LTM)', 'SCREENER_FIELD_tradeType': 'Outlook', 'SCREENER_FIELD_trading_central_last_close_price_to_fair_value': 'Last Close Price / Fair Value', 'SCREENER_FIELD_tradingHorizon': 'Time Frame', 'SCREENER_FIELD_trailing_3m_return': 'Trailing 3M Return %', 'SCREENER_FIELD_trailing_ytd_return': 'Trailing YTD Return %', 'SCREENER_FIELD_transactiondate': 'Transaction date', 'SCREENER_FIELD_trendChangeType': 'Trend Change Type', 'SCREENER_FIELD_turnoverratio': 'Turnover Ratio', 'SCREENER_FIELD_underlying_symbol': 'Underlying Symbol', 'SCREENER_FIELD_unleveredfreecashflow.lasttwelvemonths': 'Unlevered (before expenses) Free Cash Flow', 'SCREENER_FIELD_value_description': 'Valuation', 'SCREENER_FIELD_volume24Hr': 'Volume in Currency (24Hr)', 'SCREENER_FIELD_volumeAllCurrencies': 'Total Volume All Currencies (24Hr)', 'SCREENER_FIELD_years_of_consecutive_positive_eps': 'Years of Consecutive Positive EPS', 'SCREENER_FILTER_EMPTY_TEXT': \"Enter criteria and click 'Find {type}' to see the matching stocks\", 'SCREENER_INSIDER_TITLE': 'Insider Transactions', 'SCREENER_MATCH_RESULTS': 'Matching {text}', 'SCREENER_MATCH_RESULTS_INSIDER': 'Insider & Restricted Shareholder Transactions', 'SCREENER_NEW_TITLE': 'New Untitled Screener', 'SCREENER_NEW_UNSAVED_TITLE': 'New Unsaved Screener*', 'SCREENER_NOTICE_SCR_SAVE_FAIL': \"Unable to save criteria as '{name}'. Please try saving it again.\", 'SCREENER_NOTICE_SCR_SAVE_SUCCESS': \"Screener '{name}' is created successfully.\", 'SCREENER_NOTICE_STOCK_ADD_FAIL': \"Failed to add {count} selected stocks to '{list}'\", 'SCREENER_NOTICE_STOCK_ADD_SUCCESS': \"{count} selected stocks were added to '{list}'\", 'SCREENER_NOTICE_UNSAVED_SCR': 'expires in a few days, please save your screener.', 'SCREENER_NOT_SIGNEDIN': ' to view your saved screeners.', 'SCREENER_OP_BTWN': 'between', 'SCREENER_OP_EQ': 'equals', 'SCREENER_OP_GT': 'greater than', 'SCREENER_OP_GTE': 'greater than or equal', 'SCREENER_OP_IS': 'is', 'SCREENER_OP_LT': 'less than', 'SCREENER_REMOVE_FIELD': 'Remove {fieldId}', 'SCREENER_RESULTS': 'Screener Results', 'SCREENER_RESULTS_OUT_OF_SYNC': \"Please click 'Find {type}' to get updated results.\", 'SCREENER_RESULTS_TRY_AGAIN': \"Please try 'Find' again.\", 'SCREENER_RESULT_NOTICE': 'Results were generated a few mins ago. Pricing data is updated frequently. Currency in {currency}', 'SCREENER_SIGN_IN_SAVE': 'Sign in to save your screener', 'SCREENER_SORT_RESULT_TEXT': 'Sort results by {sortField} in {sortType}', 'SCREENER_TITLE_PLACEHOLDER': 'Name your screener', 'SCREENER_TOP_RESULTS': 'Top {text}', 'SCREENER_US_EXCHANGES': 'All US stock exchanges', 'SEARCH_COLUMNS': 'Search Columns', 'SEARCH_COMPARE': 'Search for symbols to compare', 'SEARCH_FEEDBACK_CURRENT_MSG': 'Give feedback on the search experience', 'SEARCH_FEEDBACK_MSG': 'Give feedback on the new search experience', 'SEARCH_INDICATORS': 'Search indicators', 'SEARCH_PRIVATE_COMPANIES_PROMOTION': 'Now you can search stock related news and private companies such as Airbnb.', 'SEARCH_RESULTS': 'Search Results', 'SEARCH_RESULTS_MULTIQUOTES': 'My List', 'SEARCH_SCREENER_LINK': 'Screener for stocks & more', 'SEARCH_SYMBOL_COMPANY': 'Search symbols or companies', 'SEARCH_TIP': 'Tip: Try a valid symbol or a specific company name for relevant results', 'SEC_FILINGS': 'SEC Filings', 'SEC_FILINGS_FOR_TICKER': 'SEC Filings for {companyName} ({symbol})', 'SECTOR': 'Sector(s)', 'SECTOR_ANALYSIS': 'Sector analysis', 'SECTOR_AVERAGE': 'Sector average', 'SEC_FILING_DATA_SOURCE': \"Data sourced from the SEC's public EDGAR database\", 'SECTOR_INDUSTRY': 'Sector & Industry', 'SECTOR_MEDIAN': 'Sector median', 'SECTOR_SUMMARY': 'Sector Summary', 'SECTOR_WEIGHTINGS': 'Sector Weightings (%)', 'SECURITIES_ACTIVITIES': 'Securities Activities', 'SECURITIES_AMORTIZATION': 'Securities Amortization', 'SECURITIES_LENDING_COLLATERAL': 'Securities Lending Collateral', 'SECURITIES_LOANED': 'Securities Loaned', 'SECURITY_AGREE_TO_BE_RESELL': 'Security Agree to be Resold', 'SECURITY_BORROWED': 'Security Borrowed', 'SECURITY_PROTECTION_SERVICES': 'Security & Protection Services', 'SECURITY_PROTECTION_SERVICES_DESC': 'Security & Protection Services Stocks', 'SECURITY_SOFTWARE_SERVICES': 'Security Software & Services', 'SECURITY_SOFTWARE_SERVICES_DESC': 'Security Software & Services Stocks', 'SECURITY_SOLD_NOT_YET_REPURCHASED': 'Security Sold Not Yet Repurchased', 'SEE_ALL': 'See All', 'SEE_FULL_PROFILE': 'See Full Profile', 'SEE_IT': 'See it', 'SEE_MORE_STATS': 'See more stats', 'SEE_WHY': 'See why', 'SELECT': 'Select', 'SELECTED': 'Selected', 'SELECTED_LISTS': 'Selected Lists', 'SELECT_ALL': 'Select All', 'SELECT_AN_ACTION_BELOW': 'Select an action below', 'SELECT_DATA_COLUMNS_TO_DISPLAY': 'Select Data Columns to Display', 'SELECT_LISTS': 'Select Lists', 'SELECT_TIME_UNIT': 'Select Time Unit', 'SELL': 'Sell', 'SELL_SHORT': 'Sell Short', 'SELLING_AND_MARKETING_EXPENSE': 'Selling & Marketing Expense', 'SELLING_GEN_ADMIN': 'Selling General and Administrative', 'SEMICONDUCTOR_BROAD_LINE': 'Semiconductor - Broad Line', 'SEMICONDUCTOR_BROAD_LINE_DESC': 'Semiconductor - Broad Line Stocks', 'SEMICONDUCTOR_EQUIPMENT_MATERIALS': 'Semiconductor Equipment & Materials', 'SEMICONDUCTOR_EQUIPMENT_MATERIALS_DESC': 'Semiconductor Equipment & Materials Stocks', 'SEMICONDUCTOR_INTEGRATED_CIRCUITS': 'Semiconductor - Integrated Circuits', 'SEMICONDUCTOR_INTEGRATED_CIRCUITS_DESC': 'Semiconductor - Integrated Circuits Stocks', 'SEMICONDUCTOR_MEMORY_CHIPS': 'Semiconductor- Memory Chips', 'SEMICONDUCTOR_MEMORY_CHIPS_DESC': 'Semiconductor- Memory Chips Stocks', 'SEMICONDUCTOR_SPECIALIZED': 'Semiconductor - Specialized', 'SEMICONDUCTOR_SPECIALIZED_DESC': 'Semiconductor - Specialized Stocks', 'SEND': 'Send', 'SENTIMENT_MSG_HELP': 'Neutral range is -14 to +5 while there is no limit on positive and negative ranges.', 'SENTIMENT_MSG_N': 'Neutral', 'SENTIMENT_MSG_NG': 'Negative', 'SENTIMENT_MSG_NG_TO_N': 'Negative to Neutral', 'SENTIMENT_MSG_NG_TO_P': 'Negative to Positive', 'SENTIMENT_MSG_N_TO_NG': 'Neutral to Negative', 'SENTIMENT_MSG_N_TO_P': 'Neutral to Positive', 'SENTIMENT_MSG_P': 'Positive', 'SENTIMENT_MSG_P_TO_N': 'Positive to Neutral', 'SENTIMENT_MSG_P_TO_NG': 'Positive to Negative', 'SEPARATE_ACCOUNT_ASSETS': 'Separate Account Assets', 'SEPARATE_ACCOUNT_BUSINESS': 'Separate Account Business', 'SERVER_URL': 'Server Url', 'SERVICES': 'Services', 'SERVICES-ET-DISTRIBUTION_TITLE': 'Retail', 'SERVICES_DESC': 'Services Stocks', 'SERVICE_CHARGE_ON_DEPOSITOR_ACCOUNTS': 'Service Charge on Depositor Accounts', 'SERVICOS-DIVERSOS_TITLE': 'Other services', 'SERVIZI-AL-CONSUMO_TITLE': 'Consumer Products & Media', 'SERVIZI-PUBBLICI_TITLE': 'Public Services', 'SETTINGS': 'Settings', 'SETTLEMENT_DATE': 'Settlement Date', 'SEVERE': 'Severe', 'SHARE': 'Share', 'SHARE_LIST': 'Share list', 'SHARES': 'Shares', 'SHARES_FLOAT': 'Float', 'SHARES_NUMBER': '{shares} shares', 'SHARES_OUTSTANDING': 'Shares Outstanding', 'SHARES_OWNED_AS_OF_TRANSACTION_DATE': 'Shares Owned as of Transaction Date', 'SHARES_PERCENT_SHARES_OUT': 'Short % of Shares Outstanding {date}', 'SHARES_SHORT': 'Shares Short {date}', 'SHARES_SHORT_PRIOR_MONTH': 'Shares Short (prior month {date})', 'SHARE_CHART': 'Share Chart', 'SHARE_ISSUED': 'Share Issued', 'SHARE_LINK': 'Or share this link', 'SHARE_LOTS': 'Share Lots', 'SHARE_MENU': 'Share Menu', 'SHARE_STATISTICS': 'Share Statistics', 'SHARPE_RATIO': 'Sharpe Ratio', 'SHIPPING': 'Shipping', 'SHIPPING_DESC': 'Shipping Stocks', 'SHOPPEN_TITLE': 'Shoppen', 'SHORT_CURRENT_LONG_TERM_DEBT': 'Short/Current Long Term Debt', 'SHORT_INTEREST': 'Short Interest', 'SHORT_PERCENT_OF_FLOAT': 'Short % of Float {date}', 'SHORT_RATIO': 'Short Ratio {date}', 'SHORT_RATIO_RAW': 'Short Ratio', 'SHORT_TERM_DEBT_ISSUANCE': 'Short Term Debt Issuance', 'SHORT_TERM_DEBT_PAYMENTS': 'Short Term Debt Payments', 'SHORT_TERM_INVESTMENTS_AVAILABLE_FOR_SALE': 'Short Term Investments Available for Sale', 'SHORT_TERM_INVESTMENTS_HELD_TO_MATURITY': 'Short Term Investments Held to Maturity', 'SHORT_TERM_INVESTMENTS_TRADING': 'Short Term Investments Trading', 'SHOW': 'Show', 'SHOW_ALL': 'Show all', 'SHOW_ALL_RECENT_EVENTS': 'Show All Events', 'SHOW_ALL_RESULTS_FOR': 'Show all results for {query}', 'SHOW_CROSSHAIR': 'Show crosshair', 'SHOW_EARNINGS_FOR': 'Showing Earnings for: {symbol}', 'SHOW_INFO': 'Show Info', 'SHOW_LESS': 'Show less', 'SHOW_LESS_LIST': 'Show less lists', 'SHOW_LESS_ADS': 'Show less ads like this', 'SHOW_LINES': 'Show lines:', 'SHOW_MORE': 'Show more', 'SHOW_MORE_LIST': 'Show more lists', 'SHOW_MORE_ADS': 'Show more ads like this', 'SHOW_N_ROWS': 'Show {count} rows', 'SHOW_OHLC': 'Show OHLC', 'SHOW_SHORTCUTS': 'Show shortcuts/hotkeys', 'SHOW_TOOLTIP': 'Show Tooltip', 'SHOWING_CASH': 'Showing {first}-{last} of {total} total cash holdings', 'SHOWING_DIVIDENDS': 'Showing {first}-{last} of {total} total dividends', 'SHOWING_LOTS': 'Showing {first}-{last} of {total} total lots', 'SHOWING_TRANSACTIONS': 'Showing {first}-{last} of {total} total transactions', 'SIGNALS': 'Signals', 'SIGNIFICANT': 'Significant', 'SIGNIFICANT_DEVELOPMENT': 'Premium Significant Development', 'SIGNIFICANT_DEVELOPMENTS': 'Significant Developments', 'SIGN_IN': 'Sign In', 'SIGN_IN_AGAIN': 'Sign in again', 'SIGN_IN_TO_VOTE': 'Sign in to cast your vote', 'SIGN_IN_TO_ADD_WATCHLIST': 'Sign in to add to watchlist', 'SIGN_IN_TO_ADD_WATCHLIST_TO_TICKER': 'Sign in to never miss news about {companyName}', 'SIGN_IN_TO_FOLLOW_WATCHLIST': 'Sign in to follow this watchlist', 'SIGN_IN_TO_SEE_LIVESTREAM': 'Sign in to watch live stream', 'SIGN_OUT_ALL': 'Sign out all', 'SIGN_UP_PREMIUM': 'Sign up for Yahoo Finance Premium to get access to this insight', 'SIGN_UP_YAHOO_FINANCE_PLUS': 'Sign up for Yahoo Finance Plus to get access to this insight', 'SIGNUP_FORM_LIVESTREAM_TITLE': 'Sign up as a Yahoo Finance Livestreamer', 'SIG_INV_AREAS': 'Product Involvement Areas', 'SILVER': 'Silver', 'SILVER_DESC': 'Silver Stocks', 'SIMILAR_STOCKS': 'Similar stocks', 'SIMILAR_SYMBOLS': \"Symbols similar to '{symbol}'\", 'SIMILAR_TO': 'Similar to {symbol}', 'SINGAPORE': 'Singapore', 'SMALL_BUSINESS_TITLE': 'Small Business', 'SMALL_CAP_GAINERS': 'Small cap gainers', 'SMALL_CAP_GAINERS_DESC': 'Small Caps with a 1 day price change of 5.0% or more.', 'SMALL_TOOLS_ACCESSORIES': 'Small Tools & Accessories', 'SMALL_TOOLS_ACCESSORIES_DESC': 'Small Tools & Accessories Stocks', 'SOCIAL': 'Social Risk Score', 'SOFTWARE_SERVICES_TITLE': 'Computer Software & Services', 'SOLID_LARGE_GROWTH_FUNDS': 'Solid Large Growth Funds', 'SOLID_LARGE_GROWTH_FUNDS_DESC': 'Large Growth Funds with Performance Rating of 4 & 5 and top-half returns', 'SOLID_MIDCAP_GROWTH_FUNDS': 'Solid Mid-Cap Growth Funds', 'SOLID_MIDCAP_GROWTH_FUNDS_DESC': 'Mid-Cap Growth Funds with Performance Rating of 4 & 5 and top-half returns', 'SORT': 'Sort', 'SP500': 'S&P 500', 'SP500_52_WEEK_CHANGE': 'S&P500 52-Week Change', 'SPAIN': 'Spain', 'SPECIALIZED_HEALTH_SERVICES': 'Specialized Health Services', 'SPECIALIZED_HEALTH_SERVICES_DESC': 'Specialized Health Services Stocks', 'SPECIALTY_CHEMICALS': 'Specialty Chemicals', 'SPECIALTY_CHEMICALS_DESC': 'Specialty Chemicals Stocks', 'SPECIALTY_EATERIES': 'Specialty Eateries', 'SPECIALTY_EATERIES_DESC': 'Specialty Eateries Stocks', 'SPECIALTY_RETAIL_OTHER': 'Specialty Retail, Other', 'SPECIALTY_RETAIL_OTHER_DESC': 'Specialty Retail, Other Stocks', 'SPECIAL_INCOME_CHARGES': 'Special Income Charges', 'SPECIAL_REPORT': 'Special report', 'SPLIT': 'Stock Split', 'SPONSORED': 'Sponsored', 'SPORTING_ACTIVITIES': 'Sporting Activities', 'SPORTING_ACTIVITIES_DESC': 'Sporting Activities Stocks', 'SPORTING_GOODS': 'Sporting Goods', 'SPORTING_GOODS_DESC': 'Sporting Goods Stocks', 'SPORTING_GOODS_STORES': 'Sporting Goods Stores', 'SPORTING_GOODS_STORES_DESC': 'Sporting Goods Stores Stocks', 'SPORTSBOOK_TITLE': 'Sportsbook', 'STAFFING_OUTSOURCING_SERVICES': 'Staffing & Outsourcing Services', 'STAFFING_OUTSOURCING_SERVICES_DESC': 'Staffing & Outsourcing Services Stocks', 'STANDARD_DEVIATION': 'Standard Deviation', 'START_DATE': 'Start Date', 'START_LIVESTREAM': 'Start Livestream', 'STATUS_DESCRIPTION': 'An Open status indicates you hold shares for this position. A Closed status indicates you no longer own any shares for this position (but previously have). A No Shares status indicates you do not currently and previously have not owned shares for this position.', 'STOP_LIVESTREAM': 'Stop Livestream', 'CRYPTO_START_TRADING_NOW': 'Start trading cryptos now', 'STATISTICS': 'Statistics', 'STATISTICS_HELP': 'Statistics Help', 'STEEL_IRON': 'Steel & Iron', 'STEEL_IRON_DESC': 'Steel & Iron Stocks', 'STICKY_CROSSHAIR': 'Sticky crosshair', 'STOCKHOLDERS_EQUITY': \"Stockholders' Equity\", 'STOCKS': 'Stocks', 'STOCK_BASED_COMPENSATION': 'Stock based compensation', 'STOCK_PRICE': 'Stock Price', 'STOCK_PRICE_HISTORY': 'Stock Price History', 'STOCK_SPLITS': 'Stock Splits', 'STOCKS_MOST_BOUGHT_BY_HEDGE_FUNDS': 'Stocks Most Bought by Hedge Funds', 'STOCKS_MOST_BOUGHT_BY_PENSION_FUND': 'Stocks Most Bought by Pension Fund', 'STOCKS_MOST_BOUGHT_BY_PRIVATE_EQUITY': 'Stocks Most Bought by Private Equity', 'STOCKS_MOST_BOUGHT_BY_SOVEREIGN_WEALTH_FUND': 'Stocks Most Bought by Sovereign Wealth Fund', 'STOCKS_WITH_MOST_INSTITUTIONAL_BUYERS': 'Stocks with Most Institutional Buyers', 'STOCKS_WITH_MOST_INSTITUTIONAL_SELLERS': 'Stocks with Most Institutional Sellers', 'STOP_LOSS': 'Stop loss', 'STREAMING_QUOTES': 'Streaming Quotes', 'STRIKE': 'Strike', 'STRONG': 'Strong', 'STRONG_BUY': 'Strong Buy', 'STRONG_UNDERVALUED_STOCKS': 'Strong Undervalued Stocks', 'STRONG_UNDERVALUED_STOCKS_DESC': 'Undervalued stocks with a robust and consistent history of earnings and revenue growth.', 'SUBMIT': 'Submit', 'SUBORDINATED_LIABILITIES': 'Subordinated Liabilities', 'SUBSCRIBERS_PER_PERIOD': '{period} subscribers', 'SUMMARY': 'Summary', 'SUMMARY_COMPANY_PROFILE': 'Company Profile', 'SUNSET_WATIF': 'This watchlist will no longer be available after Sept. 29. Please copy the ticker symbols into a new portfolio if you wish to continue tracking them.', 'SUNSET_WATIFV2': 'This watchlist is no longer available. Please unfollow this watchlist to remove it from your portfolio. Click here to see other watchlists.', 'SUNSET_WATIFV3': 'This watchlist is no longer available. Please unfollow this watchlist to remove it from your portfolio. Click here to see a similar watchlist.', 'SUPPORT': 'Support', 'SURETY_TITLE_INSURANCE': 'Surety & Title Insurance', 'SURETY_TITLE_INSURANCE_DESC': 'Surety & Title Insurance Stocks', 'SURPRISE_PERCENT': 'Surprise %', 'SUSTAINABILITY': 'Sustainability', 'SUSTAINABILITY_NO_DATA_MESSAGE': 'Sustainability data is currently not available for {ticker}.', 'SYMBOLS': 'Symbols', 'SYMBOLS_WITH_COUNT': '{count} Symbols', 'SYMBOLS_WITH_NAME_COUNT': '{name} ({count} Symbols)', 'SYMBOL_ALONE': '{symbol}', 'SYMBOL_COUNT': '{count} symbols', 'SYNTHETICS': 'Synthetics', 'SYNTHETICS_DESC': 'Synthetics Stocks', 'TABLE_VIEW': 'Table View', 'TAGS_PLACEHOLDER': 'Help people find your livestream room', 'TAKE_THE_TOUR': 'Take the tour', 'TANGIBLE_BOOK_VALUE': 'Tangible Book Value', 'TAXES_PAYABLE': 'Taxes payable', 'TAXES_RECEIVABLE': 'Taxes Receivable', 'TAXES_REFUND_PAID': 'Taxes Refund Paid', 'TAXES_REFUND_PAID_DIRECT': 'Taxes Refund Paid Direct', 'TAX_EFFECT_OF_UNUSUAL_ITEMS': 'Tax Effect of Unusual Items', 'TAX_LOSS_CARRYFORWARD_BASIC_EPS': 'Tax Loss Carryforward Basic EPS', 'TAX_LOSS_CARRYFORWARD_DILUTED_EPS': 'Tax Loss Carryforward Diluted EPS', 'TAX_PROVISION': 'Tax Provision', 'TAX_RATE_FOR_CALCS': 'Tax Rate for Calcs', 'TD_200_DAY_AVERAGE': '200 Day Average', 'TD_50_DAY_AVERAGE': '50 Day Average', 'TD_52_WK_HIGH': '52 Week High', 'TD_52_WK_LOW': '52 Week Low', 'TD_52_WK_RANGE': '52 Week Range', 'TD_ADDED_DELETED': 'Add/Remove(7D)', 'TD_AMOUNT_PER_SHARE': 'Amount per share', 'TD_ANALYST_RATING': 'Avg. Analyst Rating', 'TD_ASK': 'Ask', 'TD_ASK_SIZE': 'Ask Size', 'TD_BID': 'Bid', 'TD_BID_SIZE': 'Bid Size', 'TD_BOOK_VALUE': 'Book Val', 'TD_BULLISH_BEARISH': 'Bullish/Bearish(7D)', 'TD_CASH_AMOUNT': 'Amount', 'TD_CHANGE': 'Change', 'TD_CHANGE_1D': 'Change(1D)', 'TD_CHANGE_1M': 'Change(1M)', 'TD_CURRENCY': 'Currency', 'TD_DATE_CREATED': 'Date Created', 'TD_DAY_AMOUNT_CHANGE': 'Day Change', 'TD_DAY_HIGH': 'Day High', 'TD_DAY_LOW': 'Day Low', 'TD_DAY_RANGE': 'Intraday High/Low', 'TD_DIVIDENDS_PER_SHARE': 'Dividends / Share', 'TD_DIVIDEND_PAYMENT_DATE': 'Dividend Payment Date', 'TD_DIVIDEND_YIELD': 'Dividend Yield', 'TD_EBITDA': 'EBITDA', 'TD_EPS': 'EPS', 'TD_EPS_TRAILING': 'EPS Trailing', 'TD_EXCHANGE': 'Exchange', 'TD_FOLLOWERS': 'Followers', 'TD_HIGH_LIMIT': 'High Limit', 'TD_LAST_TRADE_DATE': 'Last Trade Date', 'TD_LAST_UPDATED': 'Last Updated', 'TD_LIFETIME_PERCENT_CHANGE': 'Total Return', 'TD_LONG_TERM_GAIN_LOSS': 'Long Term Gain/Loss', 'TD_LOT': 'Lot', 'TD_LOTS': 'Lots', 'TD_LOT_VALUE': 'Lot Value', 'TD_LOW_LIMIT': 'Low Limit', 'TD_MARKET_CAP': 'Market Cap', 'TD_MARKET_TIME': 'Market Time', 'TD_MARKET_VALUE': 'Market Value', 'TD_NOTE': 'Note', 'TD_NOTES': 'Notes', 'TD_ONE_DAY_PERCENT_CHANGE': 'Change Today', 'TD_ONE_MONTH_PERCENT_CHANGE': '1 Month Return', 'TD_ONE_YEAR_PERCENT_CHANGE': '1 Year Return', 'TD_OPEN': 'Open', 'TD_PAYMENT_DATE': 'Payment Date', 'TD_PERCENT_CHANGE': '% Change', 'TD_POST_MARKET_CHANGE': 'Post-Market Change', 'TD_POST_MARKET_CHANGE_PERCENT': 'Post-Market % Change', 'TD_POST_MARKET_PRICE': 'Post-Market Price', 'TD_POST_MARKET_TIME': 'Post-Market Time', 'TD_PREV_CLOSE': 'Prev Close', 'TD_PRE_MARKET_CHANGE': 'Pre-Market Change', 'TD_PRE_MARKET_CHANGE_PERCENT': 'Pre-Market % Change', 'TD_PRE_MARKET_PRICE': 'Pre-Market Price', 'TD_PRE_MARKET_TIME': 'Pre-Market Time', 'TD_PRICE': 'Last Price', 'TD_PRICE_PAID_PER_SHARE': 'Price Paid', 'TD_PUBLISHER': 'Publisher', 'TD_SHARES': 'Shares', 'TD_SHARES_OUTSTANDING': 'Shares Out', 'TD_SHORT_TERM_GAIN_LOSS': 'Short Term Gain/Loss', 'TD_SPARKLINE': 'Day Chart', 'TD_STATUS': 'Status', 'TD_SYMBOL': 'Symbol', 'TD_SYMBOLS': 'Symbols', 'TD_THREE_MONTH': '3-Mo Return', 'TD_TODAYS_GAIN_UNREALIZED': \"Today's Gain (Unrealized)\", 'TD_TODAYS_RETURN': \"Today's Return\", 'TD_TOTAL_AMOUNT': 'Total Amount', 'TD_TOTAL_AMOUNT_CHANGE': 'Total Change', 'TD_TOTAL_COST': 'Total Cost', 'TD_TOTAL_DIVIDEND_INCOME': 'Total Dividend Income', 'TD_TOTAL_GAIN_UNREALIZED': 'Total Gain (Unrealized)', 'TD_TOTAL_PERCENT_CHANGE': 'Total % Change', 'TD_TOTAL_RETURN': 'Total Return', 'TD_TOTAL_TRADES': 'Total Trades', 'TD_TRADE_DATE': 'Trade Date', 'TD_VOLUME': 'Volume', 'TD_VOLUME_24HR': 'Volume (24hr)', 'TD_VOLUME_24HR_ALLCURRENCY': 'Volume (24hr) All Currencies', 'TD_VOLUME_IN_CURRENCY': 'Volume in Currency (Since 0:00 UTC)', 'TD_WATCHLIST': 'Watchlist', 'TECHNICAL': 'Technical', 'TECHNICALS': 'Technicals', 'TECHNICAL_ANALYSIS': 'Technical analysis', 'TECHNICAL_EVENTS': 'Technical Events', 'TECHNICAL_OUTLOOK': 'Technical Outlook', 'TECHNICAL_PATTERNS': 'Technical Patterns', 'TECHNICAL_SERVICES': 'Technical Services', 'TECHNICAL_SERVICES_DESC': 'Technical Services Stocks', 'TECHNICAL_SYSTEM_SOFTWARE': 'Technical & System Software', 'TECHNICAL_SYSTEM_SOFTWARE_DESC': 'Technical & System Software Stocks', 'TECHNOLOGY': 'Technology', 'TECHNOLOGY_DESC': 'Technology Stocks', 'TECH_TITLE': 'Technology', 'TECNOLOGIA_TITLE': 'Technology', 'TECNOLOGICAS_TITLE': 'Technology', 'TELECOMS_TITLE': 'Telecoms', 'TELECOMUNICACIONES-Y-TECNOLOGIA_TITLE': 'Telecommunications & Technology', 'TELECOMUNICACIONES_TITLE': 'Telecommunications', 'TELECOMUNICACOES-TECNOLOGIA_TITLE': 'Telecommunications & Technology', 'TELECOMUNICAZIONI_TITLE': 'Telecommunications', 'TELECOM_SERVICES_DOMESTIC': 'Telecom Services - Domestic', 'TELECOM_SERVICES_DOMESTIC_DESC': 'Telecom Services - Domestic Stocks', 'TELECOM_SERVICES_FOREIGN': 'Telecom Services - Foreign', 'TELECOM_SERVICES_FOREIGN_DESC': 'Telecom Services - Foreign Stocks', 'TELECOM_UTILITIES_TITLE': 'Telecom & Utilities', 'TEN_YEAR': '10-Year', 'TEN_YEAR_EXPENSE_PROJECTION': '10 Yr Expense Projection', 'TERM': 'Term', 'TERM_INTERMEDIATE': 'Intermediate', 'TERM_LONG': 'Long', 'TERM_MAP': ' - {period} term', 'TERM_SHORT': 'Short', 'TERMS_CONDITIONS': 'terms and conditions(required).', 'TERMS_COPY_INTRO': 'By clicking on \"Create livestream profile\" you agree as follows:', 'TEXT': 'Text', 'TEXTILE_APPAREL_CLOTHING': 'Textile - Apparel Clothing', 'TEXTILE_APPAREL_CLOTHING_DESC': 'Textile - Apparel Clothing Stocks', 'TEXTILE_APPAREL_FOOTWEAR_ACCESSORIES': 'Textile - Apparel Footwear & Accessories', 'TEXTILE_APPAREL_FOOTWEAR_ACCESSORIES_DESC': 'Textile - Apparel Footwear & Accessories Stocks', 'TEXTILE_INDUSTRIAL': 'Textile Industrial', 'TEXTILE_INDUSTRIAL_DESC': 'Textile Industrial Stocks', 'TEXTIL_TITLE': 'Textile', 'THEMATIC_REPORT': 'Thematic report', 'THEME': 'Theme', 'THOUSAND_SHORT': '{num}k', 'THREE_MONTH': '3-Month', 'THREE_YEAR': '3-Year', 'THREE_YEAR_AVERAGE_RETURN': '3y Average Return', 'THREE_YEAR_DTR': '3-Year Daily Total Return', 'THREE_YEAR_EARNINGS_GROWTH': '3 Year Earnings Growth', 'THREE_YEAR_EXPENSE_PROJECTION': '3 Yr Expense Projection', 'TICKER_SHARE_EMAIL_TITLE': 'My shared ticker list on Yahoo Finance', 'TIME': 'Time', 'TIME_PERIOD': 'Time Period', 'TITLE': 'Title', 'TITLE_PLACEHOLDER': \"Let your audience know what you're talking about\", 'TICKERS_PLACEHOLDER': 'Provide related information when your audience watches your livestream', 'TO': 'To', 'TOBACCO_PRODUCTS_OTHER': 'Tobacco Products, Other', 'TOBACCO_PRODUCTS_OTHER_DESC': 'Tobacco Products, Other Stocks', 'TODAY': 'Today', 'TODAY_GAIN_DESCRIPTION': 'Today’s Gain is the gain on a portfolio position for the most recent trading day.', 'TOP': 'Top', 'TOP_ETFS': 'Top ETFs', 'TOP_ETFS_DESC': 'ETFs with Performance Rating of 4 & 5 ordered by Percent Change', 'TOP_HOLDINGS': 'Top Holdings', 'TOP_HOLDINGS_QUOTES': 'Get Quotes for Top Holdings', 'TOP_HOLDINGS_WITH_ASSETS': 'Top {count} Holdings ({asset}% of Total Assets)', 'TOP_MUTUAL_FUNDS': 'Top Mutual Funds', 'TOP_MUTUAL_FUNDS_DESC': 'Funds with Performance Rating of 4 & 5 ordered by Percent Change', 'TOP_STOCKS_OWNED_BY_CATHIE_WOOD': 'Top Stocks owned by Cathie Wood', 'TOP_STOCKS_OWNED_BY_GOLDMAN_SACHS': 'Top Stocks owned by Goldman Sachs', 'TOP_STOCKS_OWNED_BY_RAY_DALIO': 'Top Stocks owned by Ray Dalio', 'TOP_STOCKS_OWNED_BY_WARREN_BUFFET': 'Top Stocks owned by Warren Buffet', 'TOP_STORIES_TITLE': 'Top Stories', 'TOP_TEN_COMPONENTS': 'Top {limit} Components', 'TOTAL_ASSETS': 'Total Assets', 'TOTAL_CAPITALIZATION': 'Total Capitalization', 'TOTAL_CASH': 'Total Cash', 'TOTAL_CASH_FLOW_FROM_FIN_ACT': 'Total Cash Flows From Financing Activities', 'TOTAL_CASH_FLOW_FROM_INVEST_ACT': 'Total Cash Flows From Investing Activities', 'TOTAL_CASH_FLOW_FROM_OP_ACT': 'Total Cash Flow From Operating Activities', 'TOTAL_CASH_HOLDINGS': 'Total Cash Holdings', 'TOTAL_CASH_HOLDINGS_DESCRIPTION': 'Total Cash Holdings is your total cash on hand.', 'TOTAL_CASH_PER_SHARE': 'Total Cash Per Share', 'TOTAL_CHANGE': 'Total Chg', 'TOTAL_CHANGE_PCT': 'Total Chg %', 'TOTAL_CURRENT_ASSETS': 'Total Current Assets', 'TOTAL_CURRENT_LIABILITIES': 'Total Current Liabilities', 'TOTAL_DEBT': 'Total Debt', 'TOTAL_DEBT_TO_EQUITY': 'Total Debt/Equity', 'TOTAL_DEFERRED_CREDITS_AND_OTHER_NON_CURRENT_LIABILITIES': 'Total Deferred Credits & Other Non Current Liabilities', 'TOTAL_DEPOSITS': 'Total Deposits', 'TOTAL_EMPLOYMENT': 'Total \\nEmployment', 'TOTAL_EQUITY_GROSS_MINORITY_INTEREST': 'Total Equity Gross Minority Interest', 'TOTAL_EXPENSES': 'Total Expenses', 'TOTAL_GAIN': 'Total Gain', 'TOTAL_GAIN_DESCRIPTION': 'Total gain is the gain on a portfolio position across the entire period the stock has been held for.', 'TOTAL_HOLDINGS': 'Total Holdings', 'TOTAL_INSIDER_SHARES_HELD': 'Total Insider Shares Held', 'TOTAL_INVESTMENTS': 'Total Investments', 'TOTAL_LIABILITIES': 'Total Liabilities', 'TOTAL_LIABILITIES_AND_STOCKHOLDERS_EQUITY': \"Total liabilities and stockholders' equity\", 'TOTAL_LIABILITIES_NET_MINORITY_INTEREST': 'Total Liabilities Net Minority Interest', 'TOTAL_MARKET_VALUE': 'Total Market Value', 'TOTAL_MONEY_MARKET_INVESTMENTS': 'Total Money Market Investments', 'TOTAL_NET_ASSETS': 'Total Net Assets', 'TOTAL_NON_CURRENT_ASSETS': 'Total non-current assets', 'TOTAL_NON_CURRENT_LIABILITIES': 'Total non-current liabilities', 'TOTAL_NON_CURRENT_LIABILITIES_NET_MINORITY_INTEREST': 'Total Non Current Liabilities Net Minority Interest', 'TOTAL_OPERATING_EX': 'Total Operating Expenses', 'TOTAL_OPERATING_INCOME_AS_REPORTED': 'Total Operating Income as Reported', 'TOTAL_OTHER_FINANCE_COST': 'Total Other Finance Cost', 'TOTAL_OTHER_INCOME_EXPENSES_NET': 'Total Other Income/Expenses Net', 'TOTAL_PARTNERSHIP_CAPITAL': 'Total Partnership Capital', 'TOTAL_PERCENT_GAIN': 'Total % Gain', 'TOTAL_PREMIUMS_EARNED': 'Total Premiums Earned', 'TOTAL_RETURN_DESCRIPTION': 'Total Return indicates the total gain for a particular stock or portfolio.', 'TOTAL_REVENUE': 'Total Revenue', 'TOTAL_STOCKHOLDER_EQUITY': \"Total stockholders' equity\", 'TOTAL_TAX_PAYABLE': 'Total Tax Payable', 'TOTAL_UNUSUAL_ITEMS': 'Total Unusual Items', 'TOTAL_UNUSUAL_ITEMS_EXCLUDING_GOODWILL': 'Total Unusual Items Excluding Goodwill', 'TOYS_GAMES': 'Toys & Games', 'TOYS_GAMES_DESC': 'Toys & Games Stocks', 'TOY_HOBBY_STORES': 'Toy & Hobby Stores', 'TOY_HOBBY_STORES_DESC': 'Toy & Hobby Stores Stocks', 'TRACK_WATCHLIST_PERFORMANCE': 'Track Watchlist Performance', 'TRADE': 'Trade', 'TRADEAND_OTHER_PAYABLES_NON_CURRENT': 'Tradeand Other Payables Non Current', 'TRADE_IDEA': 'Premium Investment Idea', 'TRADE_IDEAS': 'Investment Ideas', 'TRADE_TYPE': 'Trade type', 'TRADING_ASSETS': 'Trading Assets', 'TRADING_GAIN_LOSS': 'Trading Gain Loss', 'TRADING_INFORMATION': 'Trading Information', 'TRADING_LIABILITIES': 'Trading Liabilities', 'TRADING_SECURITIES': 'Trading Securities', 'TRAILING_ANNUAL_DIVIDEND_RATE': 'Trailing Annual Dividend Rate', 'TRAILING_ANNUAL_DIVIDEND_YIELD': 'Trailing Annual Dividend Yield', 'TRAILING_PERFORMANCE': 'Trailing Performance', 'TRAILING_RETURNS': 'Trailing Returns (%) Vs. Benchmarks', 'TRANS': 'Trans', 'TRANSACTION': 'Transaction', 'TRANSACTION_TYPE': 'Transaction Type', 'TRANSACTIONS': 'Transactions', 'TRANSACTION_DATAILS': 'Transaction Details', 'TRANSACTION_UPDATED_SUCCESSFULLY': 'Transaction for {symbol} updated successfully. ', 'TRAVEL_TITLE': 'Travel', 'TREASURY_SHARES_NUMBER': 'Treasury Shares Number', 'TREASURY_STOCK': 'Treasury Stock', 'TREE_MAP_COLOR': 'Color:', 'TREE_MAP_SIZE': 'Size:', 'TRADINGCENTRAL_EVENT': 'Technical Event Screener', 'TRENDING_TICKERS_TITLE': 'Trending Tickers', 'TRENDING_TICKERS_DESC': \"See what's trending now in the markets\", 'TRENDING_TODAY': 'Trending Today', 'TREYNOR_RATIO': 'Treynor Ratio', 'TRIGGER_ALERT': 'Price Alert', 'TRILLION_SHORT': '{num}T', 'TRUCKING': 'Trucking', 'TRUCKING_DESC': 'Trucking Stocks', 'TRUCKS_OTHER_VEHICLES': 'Trucks & Other Vehicles', 'TRUCKS_OTHER_VEHICLES_DESC': 'Trucks & Other Vehicles Stocks', 'TRUMPONOMICS_ABOUT_HEADER': 'About this report card', 'TRUMPONOMICS_DESCRIPTION': 'Yahoo Finance is tracking the performance of the economy under President Donald Trump, compared with six prior presidents going back to Jimmy Carter. We’ve chosen six key economic indicators that directly affect the well-being of ordinary Americans, with data provided by {moody}. Know more about {methodology}, and click on the articles below to get the latest updates.', 'TRUMPONOMICS_HEADER': 'Yahoo Finance Trumponomics Report Card', 'TRUMPONOMICS_LAST_UPDATED': 'Last Updated: {date}', 'TRUMPONOMICS_META_DESCRIPTION': 'Yahoo Finance is tracking the performance of the economy under President Donald Trump, compared with six prior presidents going back to Jimmy Carter.', 'TRUMPONOMICS_META_KEYWORDS': 'Trump, Donald Trump, President Trump, Jobs, Economy, Manufacturing, Unemployment, Income, Incomes, Wages, Earnings, Pay, Trade, Exports, Imports, Stocks, Stock market, GDP, Economic growth, Growth, Obama, Bush, Clinton, Reagan, Carter, Trumponomics, Trumpenomics, Trumpanomics, Middle class, Wealth, Inequality, Living standards', 'TRUMPONOMICS_META_TITLE': 'Yahoo Finance - Trumponomics Report Card', 'TRUMPONOMICS_METHODOLOGY': 'our methodology', 'TRUMPONOMICS_NO_COL_DATA': '(No data yet)', 'TRUMPONOMICS_NO_DATA': 'Trumponomics data is currently not available.', 'TRUMPONOMICS_RAW_DATA': 'View raw data.', 'TRUST_FEESBY_COMMISSIONS': 'Trust Fees by Commissions', 'TRY_AGAIN': 'Try again', 'TRY_BETA_PORTFOLIOS': 'Try the new Portfolio Beta experience', 'TRY_NEW_CHART': 'Try the new and improved charts', 'TRY_IT_FREE': 'Try it free', 'TRY_LATER': 'Try later', 'TRY_NOW': 'Try now', 'TTM': 'ttm', 'TUMBLR': 'Tumblr', 'TUMBLR_SHARE': 'Reblog', 'TURISMO-Y-SERVICIOS_TITLE': 'Tourism and Services', 'TWITTER': 'Twitter', 'TWITTER_SHARE': 'Tweet', 'TYPE': 'Type', 'UH_SEARCH_FIND': 'Find a quote (e.g. VZ)', 'UH_SEARCH_MOBILE_WEB': 'Quote Lookup', 'UH_SEARCH_MOBILE_WEB_V2': 'Search for news or symbols', 'UH_SEARCH_WEB': 'Search for news, symbols or companies', 'UNADJUSTED_CLOSE': 'Close*', 'UNBILLED_RECEIVABLES': 'Unbilled Receivables', 'UNDER': 'Under', 'UNDERPERFORM': 'Underperform', 'UNDERVALUED': 'Undervalued', 'UNDERVALUED_GROWTH_STOCKS': 'Undervalued Growth Stocks', 'UNDERVALUED_GROWTH_STOCKS_DESC': 'Stocks with earnings growth rates better than 25% and relatively low PE and PEG ratios.', 'UNDERVALUED_LARGE_CAPS': 'Undervalued Large Caps', 'UNDERVALUED_LARGE_CAPS_DESC': 'Large cap stocks that are potentially undervalued.', 'UNDERVALUED_WIDE_MOAT_STOCKS': 'Undervalued Wide-Moat Stocks', 'UNDERVALUED_WIDE_MOAT_STOCKS_DESC': \"Morningstar's undervalued stocks with a sustainable competitive advantage. A company with a wide economic moat can fend off competition for at least 20 years and earn high returns on capital for years to come.\", 'UNDERWRITING_EXPENSES': 'Underwriting Expenses', 'UNDO': 'Undo', 'UNEARNED_INCOME': 'Unearned Income', 'UNEARNED_PREMIUMS': 'Unearned Premiums', 'UNIT': 'Unit', 'UNITED_KINGDOM': 'United Kingdom', 'UNKNOWN_QUOTE_TITLE': \"The symbol {symbol} doesn't exist. Try looking again!\", 'UNLINK_BROKER': 'Unlink Broker', 'UNLINK_BROKER_CONFIRM': 'Unlink Broker?', 'UNPAID_LOSS_AND_LOSS_RESERVE': 'Unpaid Loss & Loss Reserve', 'UNREALIZED_GAINS_LOSSES_ON_DERIVATIVES': 'Unrealized Gains Losses On Derivatives', 'UNREALIZED_GAIN_LOSS': 'Unrealized Gain Loss', 'UNREALIZED_GAIN_LOSS_ON_INVESTMENT_SECURITIES': 'Unrealized Gain Loss On Investment Securities', 'UNSELECT_ALL': 'Unselect All', 'UP': 'Up', 'UPDATE_YOUR_HOLDINGS_MSG': 'Please update your holdings to utilize premium portfolio features', 'UPDATE_YOUR_HOLDINGS': 'Update your holdings', 'UPCOMING_EVENTS': 'Upcoming Events', 'UPGRADE': 'Upgrade', 'UPGRADES_DOWNGRADES': 'Upgrades & Downgrades', 'UPSIDE_BREAKOUT_STOCKS_DAILY': 'Upside Breakout Stocks', 'UP_LAST_30_DAYS': 'Up Last 30 Days', 'UP_LAST_7_DAYS': 'Up Last 7 Days', 'USERNAME': 'Username', 'USERNAME_PLACEHOLDER': 'Enter your username showed to your followers', 'USER_INSIGHTS_MOST_VISITED_DESCRIPTION': 'See what users are checking out for insights and trade inspiration.', 'USER_INSIGHTS_VISITS_TREND_UP': 'User visits are up', 'USER_INSIGHTS_VISITS_TREND_DOWN': 'User visits are down', 'USER_INSIGHTS_MOST_VISITED_TITLE': 'Frequently visited sectors and companies', 'USER_INSIGHTS_VISITS_LAST_7D': 'over the last 7 days.', 'USER_VISITS_TREND_POSITIVE': 'There has been a {percent} increase in visits over the last 7 days.', 'USER_VISITS_TREND_NEGATIVE': 'There has been a {percent} decrease in visits over the last 7 days.', 'US_AND_CANADA': 'US & Canada', 'UPDATE_YOUR_SETTINGS': 'Update your settings here to see it.', 'UTILITIES': 'Utilities', 'UTILITIES_DESC': 'Utilities Stocks', 'VALUATION': 'Valuation', 'VALUATION_MEASURES': 'Valuation Measures', 'VALUATION_METRIC': 'Valuation Metric', 'VALUE': 'Value', 'VALUES_AND_PRACTICES': 'Products and Activities', 'VALUE_DESCRIPTION': 'Value Description', 'VAREJO_TITLE': 'Retail', 'VERTICAL': 'Vertical', 'VIDEOS': 'Videos', 'VIDEOS_TITLE': 'Featured Videos', 'VIDEO_UNSUPPORTED': 'Video Player is not supported by your current browser version.', 'VIEW': 'View', 'VIEW_ALL': 'View all', 'VIEW_ALL_CONVERSATIONS': 'View all conversations', 'VIEW_ALL_CONVERSATIONS_WITH_AMOUNT': 'View all {amount} conversations', 'VIEW_ALL_MATCHES': 'View all {totalCount} matches', 'VIEW_ALL_TRADE_IDEAS': 'View all investment ideas', 'VIEW_CHART': 'View Chart', 'VIEW_CONTENT_PRIVACY_MSG': 'This content is not available due to your privacy preferences.', 'VIEW_DETAILS': 'View details', 'VIEW_FEWER_CASH': 'View fewer cash holdings', 'VIEW_FEWER_DIVIDENDS': 'View fewer dividends', 'VIEW_FEWER_SHARE_LOTS': 'View fewer lots', 'VIEW_FEWER_TRANSACTIONS': 'View fewer transactions', 'VIEW_FILING': 'View Filing', 'VIEW_IN_CHART': 'View in chart', 'VIEW_LIST_PREVIEW': 'See list preview', 'VIEW_MORE': 'View more', 'VIEW_LESS': 'View less', 'VIEW_MORE_RELATED_FILINGS': 'View more related filings', 'VIEW_MORE_SUGGESTED_STOCK': 'View more suggested stocks', 'VIEW_OLDER_CASH': 'View older cash holdings', 'VIEW_OLDER_DIVIDENDS': 'View older dividends', 'VIEW_OLDER_SHARE_LOTS': 'View older lots', 'VIEW_OLDER_TRANSACTIONS': 'View older transactions', 'VIEW_ORDERS': 'View Orders', 'VIEW_QUOTE_SUMMARY': 'Go to Quote Summary Page', 'VISITORS_TREND': 'Visitors trend', 'VISITS': 'Visits', 'VOLUME_RANGE': '{0} x {1}', 'WALLET': 'Wallet', 'WAS_THIS_HELPFUL': 'Was this helpful?', 'WASTE_MANAGEMENT': 'Waste Management', 'WASTE_MANAGEMENT_DESC': 'Waste Management Stocks', 'WATCHLISTS': 'Watchlists', 'WATCHLIST_BY': 'Watchlist by {brand}', 'WATCHLIST_SIGNIN': 'Sign-in to view your list and add symbols.', 'WATCHLIST_SIGNIN_AGAIN': 'Sign-in again to view your list.', 'WATER_PRODUCTION': 'Water Production', 'WATER_UTILITIES': 'Water Utilities', 'WATER_UTILITIES_DESC': 'Water Utilities Stocks', 'WAVE_TEMPLATE': 'Wave Template:', 'WEBSITE': 'Website', 'WELCOME_BACK_USER': 'Welcome back {userid}!', 'WEEKLY': 'Weekly', 'WEEK_AHEAD': 'Earnings This Week', 'WEEK_UPDATE_MSG': '{status} by {value} points week by week', 'WEIGHTED_AVG_SHARE': 'Weighted average shares outstanding', 'WHOLESALE_OTHER': 'Wholesale, Other', 'WHOLESALE_OTHER_DESC': 'Wholesale, Other Stocks', 'WIRELESS_COMMUNICATIONS': 'Wireless Communications', 'WIRELESS_COMMUNICATIONS_DESC': 'Wireless Communications Stocks', 'WITHDRAWALS': 'Withdrawals', 'WORKING_CAPITAL': 'Working Capital', 'WORK_IN_PROCESS': 'Work in Process', 'WORLD_INDICES_TITLE': 'World Indices', 'WORLD_TITLE': 'World', 'WORST_ONE_YR_TOTAL_RETURN': 'Worst 1 Yr Total Return ({date})', 'WORST_THREE_YR_TOTAL_RETURN': 'Worst 3-Yr Total Return', 'WRITE_OFF': 'Write Off', 'YAHOO_FINANCE': 'Yahoo Finance', 'YAHOO_FINANCE_FULL': 'Yahoo Finance', 'YAHOO_FINANCE_PODCAST': 'Yahoo Finance Podcast', 'YAHOO_FINANCE_SCREENERS': 'Yahoo Finance Screeners', 'YAHOO_FINANCE_PLUS_SCREENERS': 'Yahoo Finance Plus Screeners', 'YAHOO_PLUS_SCREENERS': 'Yahoo Plus Screeners', 'YAHOO_SMALL_BUSINESS_TITLE': 'Yahoo Small Business', 'YEAR': 'Year', 'YEARS': '{n} Years', 'YEARLY': 'Yearly', 'YEAR_AGO_EPS': 'Year Ago EPS', 'YEAR_AGO_SALES': 'Year Ago Sales', 'YEAR_BORN': 'Year Born', 'YES': 'Yes', 'YO': '{age} yo.', 'YORIG_TITLE': 'Yahoo Originals', 'YOY': 'yoy', 'YTD': 'YTD', 'YTD_DTR': 'YTD Daily Total Return', 'YTD_RETURN': 'YTD Return', 'YTD_RETURN_MKT': 'Year-to-Date Return (Mkt)', 'YTD_RETURN_PCT': 'Year-to-Date Return', 'Y_AXIS_SCALE': 'Y-axis scale', 'YOU_MIGHT_ALSO_LIKE': 'You might also like', 'ZOOM_IN': 'Zoom in', 'ZOOM_OUT': 'Zoom out', '{0} - {1}': '{0} - {1}'}, 'tdv2-wafer-header': {'ABOUT': 'About', 'ABOUT_OUR_ADS': 'About Our Ads', 'ACCOUNT_LOGIN_CTA': 'Already have an account?', 'ACCOUNT_SIGN_UP_CTA': \"Don't have one?\", 'ACCOUNT_MANAGE': 'Manage Accounts', 'ADVERTISE': 'Advertise', 'ADVERTISE_CHOICES': 'Advertising Choices', 'AOL': 'Aol', 'ANSWERS': 'Answers', 'ATT': 'AT&T', 'ATT_ENVIVO': 'AT&T En Vivo', 'ATT_MY': 'myAT&T', 'ATT_MY_APP': 'myAT&T App', 'ATT_SHOP': 'Shop AT&T', 'ATT_SUPPORT': 'AT&T Customer Support', 'ATT_E1': 'En Espanol', 'ATT_E1_WEATHER': 'El Tiempo', 'ATT_SRVS': 'AT&T Services', 'ATT_DTV': 'DIRECTV', 'ATT_DTVN': 'DIRECTV STREAM', 'ATT_WIRELESS': 'AT&T Wireless', 'ATT_UPGRADE': 'Upgrade Your Device', 'ATT_ADD_LINE': 'Add a Line', 'ATT_FIBER': 'AT&T Fiber', 'ATT_INTERNET': 'AT&T Internet', 'ATT_BUSINESS': 'Phones & Devices', 'ATT_ADVERTISE_CHOICES': 'Advertising Choices', 'ATT_AUP': 'AUP', 'ATT_ADVERTISE': 'Advertise', 'ATT_FEEDBACK': 'Feedback', 'ATT_PRIVACY': 'Privacy', 'ATT_TERMS': 'Terms', 'ATT_HELP': 'Site Help', 'ATT_HOLIDAYS': 'Holidays', 'ATT_THISMONTH': 'This Month', 'AUCTION': 'Auction', 'AUP': 'AUP', 'BACK': 'Back', 'BLACKLIVESMATTER': 'Black Lives Matter', 'BLACK_HISTORY': 'Black History', 'BUILD': 'Build', 'BUY_CENTER': 'Shopping center', 'CANADA_EN': 'Canada (EN)', 'CANADA_FR': 'Canada (FR)', 'CANCEL': 'Cancel', 'CAREERS': 'Careers', 'CLEAR_SEARCH': 'Clear Search', 'COMPOSE': 'Compose', 'COMPOSE_EMAIL': 'Compose email', 'COMPOSE_RAQUO': 'Compose »', 'CORONAVIRUS': 'COVID-19', 'CELEBRITY': 'Celebrity', 'CRICKET': 'Cricket', 'DELAS': 'Group buy', 'DO_NOT_SHOW_MAIL': 'Do not show my mail', 'WEATHER': 'Weather', 'HEALTH': 'Health', 'VIDEO': 'Video', 'MOBILE': 'Mobile', 'ELECTION': '2020 Election', 'ENTERTAINMENT': 'Entertainment', 'DELETE': 'Delete', 'FEEDBACK': 'Feedback', 'FINANCE': 'Finance', 'FREE': 'FREE', 'FRONTIER': 'Frontier', 'FRONTIER_MAIL': 'Frontier Mail', 'FRONTIER_BILLPAY': 'Online Bill Pay', 'FRONTIER_COM': 'Frontier.com', 'FRONTIER_HELP': 'Frontier Help Center', 'FRONTIER_SRVS': 'Frontier Services', 'FRONTIER_BILLPAY_D': 'Bill Pay', 'FRONTIER_MAIL_D': 'FTR Mail', 'GAMES': 'Games', 'SOLITAIRE': 'Solitaire', 'CROSSWORD': 'Crossword', 'GET_ATT_MAIL': 'Get AT&T Mail', 'GO_TO_MAIL': 'Go To Mail', 'GO_TO_MAIL_RAQUO': 'Go To Mail »', 'GO_TO_YAHOO_MAIL': 'Go To Yahoo Mail »', 'GOOGLE_CUSTOM_SEARCH': 'Powered by Google search', 'HANDWRITE_TITLE': 'Input by hand write', 'HANDWRITE_SPONSOR': 'Powered by Penpower', 'HELP': 'Help', 'HOME': 'Home', 'HIDE_THIS_WIDGET': 'No thanks, hide this widget', 'INBOX': 'Inbox', 'INBOX_PREVIEW_SHOW_LESS': 'Show less', 'INBOX_PREVIEW_SHOW_MORE': 'Show more', 'INBOX_PREVIEW_SUBHEADER': 'Inbox Preview', 'IN_THE_KNOW': 'In The Know', 'INSPIRED_BY': 'Inspired By', 'LIFE': 'Life', 'LIFESTYLE': 'Lifestyle', 'LOADING': 'Loading', 'LOGIN': 'Login', 'LOGOUT': 'Logout', 'LOGO_OVERRIDE': 'Happy Lunar New Year', 'LOGO_VALENTINES_DAY': \"Happy Valentine's Day\", 'MAIL': 'Mail', 'MAIL_PREVIEW_PREF': 'mail preview preference', 'MAIL_FROM': 'Mail From: ', 'MAIL_SUBJECT': 'Subject: ', 'MAKERS': 'MAKERS', 'MALL': 'Mall', 'MARK_AS_SPAM': 'Mark as spam', 'MARKET_MOVERS': 'Market Movers', 'MORE': 'More...', 'MORE_PRODUCTS_SERVICES': 'More Products & Services', 'MOVIES': 'Movies', 'MY_CHANNEL': 'My Channel', 'MY_MAIL': 'My Mail', 'MY_VIDEO_CHANNEL': 'My Video Channel', 'MY_YAHOO_MAIL': 'My Yahoo Mail', 'MY_YAHOO_MAIL_SIGNED_OUT_INTRO': 'Check multiple mail accounts from one place', 'MY_YAHOO': 'My Yahoo', 'NEW_TEXT': 'New', 'NEWS': 'News', 'NOTIFICATIONS': 'Notifications', 'NO_MESSAGES_TO_DISPLAY': 'No messages to display', 'NO_NEW_NOTIFICATIONS': 'You have no new notifications.', 'NOTIF_ONBOARD_LABEL': 'Notify Me', 'NOTIF_ONBOARD_MSG': 'Get Notifications for Your Favorite Topics', 'OUR_BRANDS': 'Our brands', 'PLEASE_CHECK_BACK_LATER': 'Please check back later.', 'POLITICS': 'Politics', 'PROFILE': 'Profile', 'PRIVACY': 'Privacy', 'PRIVACY_ICON_ALT': 'Privacy rights icon', 'PRIVACY_UPDATED': 'Privacy (Updated)', 'PUBLISHER_MANAGEMENT': 'Manage Publishers', 'REFRESH': 'Refresh', 'REL_DAYS': '{0}d', 'REL_HOURS': '{0}h', 'REL_MINS': '{0}m', 'REL_MONTHS': '{0}mo', 'REL_SECS': '{0}s', 'REL_WEEKS': '{0}wk', 'REL_YEARS': '{0}yr', 'REPORT_BUG': 'Report a Bug', 'ROGERS': 'Rogers', 'ROGERSCA_CHATELAINE': 'Chatelaine', 'ROGERSCA_MACLEANS': 'Macleans', 'ROGERSCA_SPORTSNET': 'Sportsnet', 'ROGERS_COM': 'Rogers.com', 'ROGERSCA_SUPPORT': 'Rogers Support', 'ROGERSCA_SRVS': 'Rogers Services', 'ROGERSCA_FRENCH': 'French', 'ROGERSCA_ENGLISH': 'English', 'ROGERSCF_CHATELAINE': 'Châtelaine', 'ROGERSCF_LACTUALITE': \"L'actualité\", 'ROGERSCF_HELP': 'Soutien Rogers', 'ROGERSCF_SRVS': 'Services Rogers', 'PREMIUM_OFFERS': 'Premium Offers', 'TECH_TIPS': 'Tech Tips', 'YAHOO_PLUS': 'Yahoo Plus', 'SEARCH': 'Search', 'SELECT_MESSAGE': 'Select message', 'SETTINGS': 'Settings', 'SEND_FEEDBACK': 'Send Feedback', 'SHOPPING': 'Shopping', 'SIGNIN': 'Sign in', 'SIGNIN_TO_MAIL': 'Sign in to Yahoo Mail', 'SIGNOUT': 'Sign Out', 'SIGNUP': 'Sign Up', 'SHOW_ME_MY_MAIL': 'Yes, show me my mail', 'SKIP_TO_MAIN_CONTENT': 'Skip to Main Content', 'SKIP_TO_NAVIGATION': 'Skip to Navigation', 'SKIP_TO_RELATED_CONTENT': 'Skip to Related Content', 'SKULLDUGGERY': 'Skullduggery', 'SPORTS': 'Sports', 'STYLE': 'Style', 'STAYHOME': 'StayHome', 'STOCK': 'Stock', 'STORE': 'Store', 'SUBSCRIPTIONS': 'Premium Offers', 'SUPPLY_CHAIN': 'Supply Chain Transparency', 'SWITCH_BACK_TO_CLASSIC': 'Switch Back to Classic Yahoo', 'TERMS': 'Terms', 'TERMS_UPDATED': 'Terms (Updated)', 'THE_RUSH': 'The Rush', 'TO_VIEW_YOUR_MAIL': 'To view your Yahoo Mail, you need to sign in to your account', 'TOP_SEARCH': 'Top Search:', 'TOPICS_MANAGEMENT': 'Manage Topics', 'TV': 'TV', 'FINANCE_UH_SEARCH_WEB': 'Search for news, symbols or companies', 'SPORTS_UH_SEARCH_WEB': 'Search Players and Teams', 'UNABLE_TO_PREVIEW': 'We are unable to preview your mail.', 'VERIZON': 'Verizon', 'VIEW_INBOX': 'View inbox', 'VIEW_YOUR_MAIL_TEXT': 'To view your Yahoo Mail, you need to sign in to your account', 'VIEW_YOUR_MAIL': \"Sign in to view your mail\", 'VIEW_YOUR_MAIL_MORE': \"Sign in to view your mail, and more\", 'WOMEN': 'Women', 'WOMENS_HISTORY': \"Women's History\", 'WOULD_YOU_LIKE_TO_SEE': 'Would you like to see a preview of your Yahoo Mail inbox here?', 'YAHOO': 'Yahoo', 'YAHOO_POWERED': 'Powered by Yahoo', 'YAHOO_SPORTS': 'Yahoo Sports', 'YAHOO_FANTASY': 'Yahoo Fantasy', 'YOU_CAN_MANAGE_YOUR_FEED': 'You can manage your feed here'}, 'react-finance': {'200_DAY_MOVING_AVG': '200-Day Moving Average', 'AD': 'Ad', 'ADVERTISE_WITH_US': 'Advertise with us', 'ADFB_CLOSE': 'Close', 'ADFB_DISLIKE_AD_HIDDEN': 'This ad has been hidden', 'ADFB_DISLIKE_AD_HIDDEN_DETAIL': 'Improve your future experience.', 'ADFB_DISLIKE_AD_HIDDEN_DETAIL_LONG': 'You can give additional feedback on this ad to improve your future experience.', 'ADFB_HEADING': \"Why don't you like this ad?\", 'ADFB_REVIEW': \"We'll review and make changes needed\", 'ADFB_SEND_FEEDBACK': 'Send Feedback', 'ADFB_SOMETHING_ELSE_PLACEHOLDER': \"Why don't you like this ad\", 'ADFB_THANKYOU': 'Thanks for your feedback!', 'ADFB_UNDO': 'Undo', 'AD_DISLIKE': \"I don't like this ad\", 'AD_DISLIKE_DETAIL': 'Show fewer ads like this', 'AD_FEEDBACK': 'Ad Feedback', 'AD_FEEDBACK_ADLITE_PROMO': 'Try Yahoo Finance Plus', 'AD_GIVE_FEEDBACK': 'Give Feedback', 'AD_LIKE': 'I like this ad', 'AD_LIKE_DETAIL': 'Show more ads like this', 'AD_TERMS': 'Why this ad?', 'ADD_SYMBOL': 'Add Symbol', 'ADD_TO_WATCHLIST': 'Add to Watchlist', 'ADVERTISEMENT': 'Advertisement', 'AERONAUTICS_TITLE': 'Aeronautics', 'ALGO_WATCHLIST': 'Watchlist', 'AND': 'and', 'APP_PROMO_OPEN_APP': 'Open in App', 'AUDIOVISUAL_MEDIA_TITLE': 'Audiovisual and Media', 'AUTO_TITLE': 'Auto', 'AUTOCOMPLETE_PLACEHOLDER': 'VZ, AAPL, TSLA', 'AUTOS_TITLE': 'Autos', 'AUTOS_TRANSPORTATION_TITLE': 'Autos & Transportation', 'AVG_VOL_10_DAY': 'Avg Vol (10 day)', 'AVG_VOL_3_MONTH': 'Avg Vol (3 month)', 'BANKING_INSURANCE_TITLE': 'Banking & Insurance', 'BASIC_MATERIALS_TITLE': 'Basic Materials', 'BETA': 'Beta', 'BONDS_TITLE': 'US Treasury Bonds Rates', 'BREXIT_TITLE': 'Brexit', 'BUSINESS_SERVICES_TITLE': 'Business Services', 'CALENDARS_TITLE': 'Calendars', 'CANCEL': 'Cancel', 'CAREERS_TITLE': 'Careers', 'CHART': 'Chart', 'CHEMICAL_BASIC_MATERIALS_TITLE': 'Chemical and Basic Materials', 'CHEMIE_TITLE': 'Chemie', 'CLOSE': 'Close', 'COIN_MARKET_CAP': 'CoinMarketCap', 'COMMODITIES': 'Futures', 'COMPARE_PRODUCTS_TITLE': 'Compare Products', 'COMPONENTS': 'Components', 'CONFIRM_DELETE': 'Confirm Delete', 'CONFIRM_DELETE_MSG': 'Are you sure you want to delete {pfName} watchlist?', 'CONFIRM_DELETE_TICKER': 'Are you sure you want to remove {symbol}?', 'CONFIRM_NO': 'No', 'CONFIRM_YES': 'Yes', 'CONFIRMED_CASES': 'Confirmed Cases', 'CONSTRUCTION_TITLE': 'Construction', 'CONSUMER_DURABLES_TITLE': 'Consumer Durables', 'CONSUMER_GOODS_TITLE': 'Consumer Goods', 'CONSUMER_PRODUCTS_MEDIA_TITLE': 'Consumer Products & Media', 'CONTRIBUTORS_TITLE': 'Contributors', 'COVID_19': 'COVID-19', 'CREATE_NEW_LIST': 'Create a new list', 'CURRENCIES': 'Currencies', 'CURRENCIES_TITLE': 'Currencies', 'CURRENCY_CONVERTER_TITLE': 'Currency Converter', 'DEFAULT_MESSAGE': 'We are experiencing some temporary issues. The market data on this page are currently delayed. Please bear with us as we address this and restore your personalized lists.', 'DELAYED': 'Delayed Price', 'DELETE_BTN': 'Delete', 'DELETE_TICKER_INFO': 'Delete symbol from watchlist', 'DELETE_WATCHLIST': 'Delete Watchlist', 'DISLIKE_AD': \"I don't like this ad\", 'DIVERSIFIED_BUSINESS_TITLE': 'Diversified Business', 'DIVIDEND': 'Dividend', 'EARNINGS_REPORT': 'Earnings Report', 'EDIT': 'Edit', 'END': 'End', 'ENERGY_TITLE': 'Energy', 'ENTER_LIST_NAME': 'Enter List name', 'ETFS_TITLE': 'Top ETFs', 'EX_DIVIDEND': 'Ex-Dividend', 'EX_DIVIDEND_DATE': 'Ex-Dividend Date', 'FAILSAFE_CACHE_MESSAGE': 'We are experiencing some temporary issues. The market data on this page are currently delayed. Please bear with us as we address this and restore your personalized lists.', 'FEEDBACK_TITLE': 'Feedback', 'FINAL_ROUND_TITLE': 'The Final Round', 'FINANCIAL_TITLE': 'Financial', 'FMCG_TITLE': 'FMCG', 'FOODS_TITLE': 'Foods', 'FOOTER_ABOUT_TEXT': 'About Our Ads', 'FOOTER_COMPANY_TEXT': '{copyright}. All rights reserved.', 'FOOTER_DISCLAIMER_TEXT': 'Data Disclaimer', 'FOOTER_FB_FOLLOW_TEXT': 'Follow on Facebook', 'FOOTER_HELP_TEXT': 'Help', 'FOOTER_LI_FOLLOW_TEXT': 'Follow on LinkedIn', 'FOOTER_PRIVACY_POLICY_TEXT': 'Privacy Policy', 'FOOTER_PRIVACY_TEXT': 'Privacy', 'FOOTER_PRIVACY_TEXT_UPDATED': 'Privacy (Updated)', 'FOOTER_SITEMAP_TEXT': 'Sitemap', 'FOOTER_SUGGEST_TEXT': 'Suggestions', 'FOOTER_TERMS_TEXT': 'Terms', 'FOOTER_TW_FOLLOW_TEXT': 'Follow on Twitter', 'FORWARD_PE': 'Forward P/E', 'FREE_REALTIME': 'Real Time Price', 'FULL_SCREEN': 'Full screen', 'GAINERS_TITLE': 'Stocks: Gainers', 'GENERAL': 'Breaking News', 'GLOBAL': 'Global', 'GOOD_LIFE_NAV_TITLE': 'The Good Life', 'GOTO_TEXT': 'Go to {text}', 'HARDWARE_ELECTRONICS_TITLE': 'Computer Hardware & Electronics', 'HEALTHCARE_TITLE': 'Healthcare', 'HIGH': 'High', 'IN_WATCHLIST': 'In Watchlist', 'INDUSTRIALS_TITLE': 'Industrials', 'INDUSTRY_NAV_TITLE': 'Industry News', 'INTERNET_TITLE': 'Internet', 'JUMP_FIRST_PAGE': 'Jump to first page', 'JUMP_LAST_PAGE': 'Jump to last page', 'LAST_MONTH': 'Last Mo.', 'LEARN_MORE': 'Learn more', 'LEISURE_INDUSTRIES_TITLE': 'Leisure Industries', 'LIFESTYLE_TITLE': 'Lifestyle', 'LIKE_AD': 'I like this ad', 'LISTS': 'Lists', 'LIVE_VIDEO': 'Live Video', 'LOADING': 'Loading...', 'LOOKUP_FOOTER_TIP': 'Tip: Use comma to separate multiple quotes', 'LOSERS_TITLE': 'Stocks: Losers', 'LOW': 'Low', 'MAIL': 'Mail', 'MANAGE_SUBSCRIPTION': 'Manage Subscription', 'MANUFACTURING_MATERIALS_TITLE': 'Manufacturing & Materials', 'MARKET_BLOGS_TITLE': 'Market Blogs', 'MARKET_MOVERS_TITLE': 'Market Movers', 'MARKET_SUMMARY': 'Market Summary', 'MARKET_SUMMARY_CAROUSEL': 'Market summary containing a list of {size} items', 'MARKET_SUMMARY_CAROUSEL_ITEM_DECREASED': '{name} has decreased by {changePercent} or {change} points to {price} points', 'MARKET_SUMMARY_CAROUSEL_ITEM_INCREASED': '{name} has increased by {changePercent} or {change} points to {price} points', 'MARKET_SUMMARY_CAROUSEL_ITEM_UNCHANGED': '{name} is unchanged at {price}', 'MARKET_TIME_NOTICE_CLOSED_SHORT': 'At close: {date} {time}', 'MARKET_TIME_NOTICE_CLOSED': 'As of {date} {time}. {marketState}', 'MARKETS_OPEN': 'Market open.', 'MONEY_GUIDES_TITLE': 'Money Guides', 'MORE_SYMBOLS': 'More symbols', 'MORNING_BRIEF': 'Morning Brief', 'MOST_ACTIVE_TITLE': 'Stocks: Most Actives', 'MSG_EMPTY_LIST': 'Your list is empty.', 'MSG_EMPTY_PF': \"You don't have any symbols in this list.\", 'MSG_EMPTY_RQ': 'Your Recently Viewed list is empty.', 'MSG_EMPTY_YFINLIST': \"We're sorry, but we were unable to retrieve this data. Please try again.\", 'MSG_NO_LISTS': 'No lists found', 'MSG_NO_NEWS': 'No news found', 'MSG_NO_SEARCH_RESULTS': \"No matching results for '{query}'\", 'MSG_NO_SYMBOLS': 'No symbols found', 'MUTUALFUNDS_TITLE': 'Top Mutual Funds', 'MY_PORTFOLIO_NAV_TITLE': 'My Portfolio', 'MY_WATCHLIST': 'My Watchlist', 'NA': 'N/A', 'NAME_NEW_WATCHLIST': 'Name your new watchlist', 'NASDAQ_REALTIME_PRICE': 'Nasdaq Realtime Price', 'NEWS_NAV_TITLE': 'News', 'NEWS': 'News', 'NEW_HIGH': 'Price Alert', 'NEW_LOW': 'Price Alert', 'NOTIFICATIONS': 'Notifications', 'NO_NOTIFICATION_DATA': 'Notification data is not available', 'NO_MARKET_DATA': 'No Market Data', 'OIL_NATURAL_GAS_TITLE': 'Oil and Natural Gas', 'YAHOO_FINANCE_APP': 'Yahoo Finance App', 'OLDER': 'Older', 'OPTIONS': 'Options', 'OPTIONS_TITLE': 'Most Traded Options by Volume', 'ORIGINALS_TITLE': 'Yahoo Originals', 'PEG_RATIO_5_YR': 'PEG Ratio (5 yr expected)', 'PERSONAL_FINANCE_NAV_TITLE': 'Personal Finance', 'PHARMACEUTICAL_TITLE': 'Pharmaceutical', 'POST_MARKET_NOTICE': 'After hours:', 'POWER_TITLE': 'Power', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST': 'ADDED TO WATCHLIST', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_1': 'You will now see', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_2': ' more {ticker} news ', 'PREMIUM_UPSELL_ADDED_TO_WATCHLIST_DESC_3': 'in your Yahoo feed', 'PREMIUM_UPSELL_CHART_PATTERN': 'Pattern', 'PREMIUM_UPSELL_CTA': 'Start your free trial today. >>', 'PREMIUM_UPSELL_DIFF_ONE_DAY_AGO': '1 day ago', 'PREMIUM_UPSELL_DIFF_D': '{days}d', 'PREMIUM_UPSELL_DIFF_DAYS_AGO': '{days} days ago', 'PREMIUM_UPSELL_DIFF_ONE_MONTH_AGO': '1 month ago', 'PREMIUM_UPSELL_NEW_FEATURE': 'NEW FEATURE', 'PREMIUM_UPSELL_NEW_FEATURE_LOGGED_IN': 'Stay up-to-date with news and stock price for {ticker}', 'PREMIUM_UPSELL_NEW_FEATURE_LOGGED_OUT': 'Sign in to keep track of {ticker} news and performance', 'PREMIUM_UPSELL_PATTERN_DETAIL': 'View bullish/bearish technical chart patterns with one click.', 'PREMIUM_UPSELL_PATTERN_TITLE': '{type} Pattern Detected', 'PREMIUM_UPSELL_PERFORMANCE_DETAIL': 'Conduct technical analysis for the short, mid, or long term.', 'PREMIUM_UPSELL_PERFORMANCE_TITLE': 'Performance Outlook', 'PREMIUM_UPSELL_RECOMMENDATION_TITLE': 'Recommendation rating', 'PREMIUM_UPSELL_REPORTS_DETAIL': 'Analyst reports and guidance from Morningstar and Argus.', 'PREMIUM_UPSELL_REPORTS_TITLE': 'Recent Research', 'PREMIUM_UPSELL_SIG_DEVS_DETAIL': 'Plot company events on charts to view impact on performance.', 'PREMIUM_UPSELL_SIG_DEVS_TITLE': 'Significant Event Occurred', 'PREMIUM_UPSELL_SIG_DEVS_TITLE_SHORT': 'Significant Event', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_CTA': 'Research report available', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_HEADER': 'Unlock premium independent research on this stock.', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_1': 'You’ve read ', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_2': '{usedCount} of your {maxCount} ', 'PREMIUM_UPSELL_TASTEMAKER_NON_ZERO_TOOLTIP_DETAIL_3': 'free research reports this quarter', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_CTA': 'Upgrade to read report', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_TOOLTIP_HEADER': 'Get unlimited reports with Yahoo Finance Plus.', 'PREMIUM_UPSELL_TASTEMAKER_ZERO_TOOLTIP_DETAIL': 'You’ve read all your free reports this quarter.', 'PREMIUM_UPSELL_VALUATION_DETAIL': 'Determine the fair value of any stock with Premium.', 'PREMIUM_UPSELL_VALUATION_TITLE': 'Fair Value Estimate', 'PREMIUM_UPSELL_FEATURED_IN_TITLE': 'Featured in', 'PREMIUM_UPSELL_FEATURED_IN_PUBLISHER': 'Publisher', 'PREMIUM_UPSELL_FEATURED_IN_DAYCHNG': 'Day Change', 'PREMIUM_UPSELL_FEATURED_IN_FOLLOWERS': 'Followers', 'PRE_MARKET_NOTICE': 'Pre-Market:', 'PREDEFINED_SCREENER': 'Screener', 'PRESS_RELEASE': 'Press Releases', 'PRICE_TO_BOOK': 'Price/Book', 'PRICE_ALERT_UP': 'Price Alert', 'PRICE_ALERT_DOWN': 'Price Alert', 'PRIVATE': 'PRIVATE', 'PROFILE': 'Profile', 'PROPERTIES_TITLE': 'Properties', 'PROPERTY_TITLE': 'Property', 'PUBLIC_SERVICES_TITLE': 'Public Services', 'PORTFOLIO_DAILY_SUMMARY': 'Portfolio Summary', 'QUICK_VIDEO': 'Quick Video', 'QUOTE_LOOKUP': 'Quote Lookup', 'QUOTE_PRICE_NOTICE': '{exchangeName} {marketSource}. Currency in {currency}', 'RATES': 'Rates', 'RAW_MATERIALS_TITLE': 'Raw Materials', 'REAL_ESTATE_TITLE': 'Real Estate', 'REALTY_TITLE': 'Realty', 'RESEARCH_REPORTS': 'Research Reports', 'RESEARCH_REPORT': 'Premium Research Report', 'RECOMMEND_STOCKS': 'Recommended Stocks', 'RENAME': 'Rename', 'RENAME_MODAL_ERROR_MESSAGE': 'Please enter a valid watchlist name.', 'RENAME_MODAL_MESSAGE': 'Enter a new name for {pfName}.', 'RENAME_MODAL_TITLE': 'Rename your watchlist', 'RETAILING_HOSPITALITY_TITLE': 'Retailing & Hospitality', 'RETIREMENT_TITLE': 'Retirement', 'RQ_TITLE': 'Recently Viewed', 'RELATED_QUOTES': 'Related Quotes', 'SAVE': 'Save', 'SAVING_SPENDING_TITLE': 'Saving & Spending', 'SCREENER': 'Screener', 'SEARCH': 'Search', 'SEARCH_FEEDBACK_MSG': 'Give feedback on the new search experience', 'SEARCH_FEEDBACK_CURRENT_MSG': 'Give feedback on the search experience', 'SEARCH_PRIVATE_COMPANIES_PROMOTION': 'Now you can search stock related news and private companies such as Airbnb.', 'SEARCH_SCREENER_LINK': 'Screener for stocks & more', 'SEARCH_TIP': 'Tip: Try a valid symbol or a specific company name for relevant results', 'SEE_WHY': 'See why', 'SHARE': 'Share', 'SHARES_FLOAT': 'Float', 'SHORT_RATIO': 'Short Ratio', 'SHOW_ALL_RESULTS_FOR': 'Show all results for {query}', 'SHOW_MORE': 'Show more', 'SHOW_LESS': 'Show less', 'SIGN_IN': 'Sign In', 'SIGN_IN_TO_ADD_WATCHLIST': 'Sign in to add to watchlist', 'SIGN_IN_TO_ADD_WATCHLIST_TO_TICKER': 'Sign in to never miss news about {companyName}', 'SIGN_UP_PREMIUM': 'Sign up for Yahoo Finance Premium to get access to this insight', 'SIGN_UP_YAHOO_FINANCE_PLUS': 'Sign up for Yahoo Finance Plus to get access to this insight', 'SIGNIFICANT_DEVELOPMENT': 'Premium Significant Development', 'SIGNIFICANT_DEVELOPMENTS': 'Significant Developments', 'SMALL_BUSINESS_TITLE': 'Small Business', 'SOFTWARE_SERVICES_TITLE': 'Computer Software & Services', 'SPLIT': 'Split', 'SPORTSBOOK_TITLE': 'Sportsbook', 'START': 'Start', 'SUGGESTIONS': 'Suggestions', 'SUMMARY': 'Summary', 'SYMBOLS': 'Symbols', 'TAXES_TITLE': 'Taxes', 'TD_52_WK_HIGH': '52 Week High', 'TD_52_WK_LOW': '52 Week Low', 'TD_52_WK_RANGE': '52 Week Range', 'TD_ALERTS': 'Alerts', 'TD_ASK': 'Ask', 'TD_ASK_SIZE': 'Ask Size', 'TD_BID': 'Bid', 'TD_BID_SIZE': 'Bid Size', 'TD_BOOK_VALUE': 'Book Val', 'TD_CASH_AMOUNT': 'Amount', 'TD_CHANGE': 'Change', 'TD_COST_BASIS': 'Cost Basis', 'TD_CURRENCY': 'Currency', 'TD_DAY_GAIN': 'Day Gain $', 'TD_DAY_GAIN_PERCENT': 'Day Gain %', 'TD_DAY_HIGH': 'Day High', 'TD_DAY_LOW': 'Day Low', 'TD_DAY_RANGE': 'Intraday High/Low', 'TD_DIVIDEND_PAYMENT_DATE': 'Dividend Payment Date', 'TD_DIVIDEND_YIELD': 'Dividend Yield', 'TD_EBITDA': 'EBITDA', 'TD_EPS': 'EPS', 'TD_EXCHANGE': 'Exchange', 'TD_FIVE_YEAR': '5-Yr Return', 'TD_FUND_CATEGORY': 'Category', 'TD_HIGH_LIMIT': 'High Limit', 'TD_LAST_MONTH': 'Last Month', 'TD_LAST_NAV': 'Last NAV', 'TD_LAST_WEEK': 'Last Week', 'TD_LOT_VALUE': 'Lot Value', 'TD_LOW_LIMIT': 'Low Limit', 'TD_MARKET': 'Intraday Return', 'TD_MARKET_CAP': 'Market Cap', 'TD_MARKET_TIME': 'Market Time', 'TD_MARKET_VALUE': 'Market Value', 'TD_MATURITY': 'Maturity', 'TD_NAV_CHANGE': 'NAV $ Change', 'TD_NAV_PERCENT_CHANGE': 'NAV % Change', 'TD_NOTES': 'Notes', 'TD_OPEN': 'Open', 'TD_OPEN_INTEREST': 'Open Interest', 'TD_OPTION_NAME': 'Option', 'TD_PE_RATIO': 'PE Ratio', 'TD_PERCENT_CHANGE': '% Change', 'TD_PREV_CLOSE': 'Prev Close', 'TD_PRICE': 'Last Price', 'TD_PRICE_PAID_PER_SHARE': 'Price Paid', 'TD_SHARES': 'Shares', 'TD_SHARES_OUTSTANDING': 'Shares Out', 'TD_SPARKLINE': 'Day Chart', 'TD_SYMBOL': 'Symbol', 'TD_THREE_MONTH': '3-Mo Return', 'TD_THREE_YEAR': '3-Yr Return', 'TD_TOTAL_GAIN': 'Total Gain $', 'TD_TOTAL_GAIN_PERCENT': 'Total Gain %', 'TD_TRADE_DATE': 'Trade Date', 'TD_VOLUME': 'Volume', 'TD_YEAR_TO_DATE': 'YTD Return', 'TD_YESTERDAY': 'Yesterday', 'TD_YIELD': 'Yield', 'TDG_BASIC': 'Basic Columns', 'TDG_DETAILS': 'Details Columns', 'TDG_FUNDAMENTALS': 'Fundamentals Columns', 'TDG_MARKET': 'Share Statistics', 'TDG_MOVERS': 'Moving Averages Columns', 'TDG_PORTFOLIOS': 'Portfolios Columns', 'TDG_SHARE_STATS': 'Share Statistics', 'TECH_NAV_TITLE': 'Tech', 'TECHNOLOGY_TITLE': 'Technology', 'TELECOM_UTILITIES_TITLE': 'Telecom & Utilities', 'TEXTILES_TITLE': 'Textiles', 'TOP_STORIES_TITLE': 'Top Stories', 'TOURISM_SERVICES_TITLE': 'Tourism and Services', 'TRADE_IDEAS': 'Investment Ideas', 'TRADE_IDEA': 'Premium Investment Idea', 'TRAILING_PE': 'Trailing P/E', 'TRAVEL_TITLE': 'Travel', 'TRENDING_TICKERS_TITLE': 'Trending Tickers', 'TRENDING_TODAY': 'Trending Today', 'TRIGGER_ALERT': 'Price Alert', 'TRY_IT_FREE': 'Try it free', 'TODAY': 'Today', 'UH_SEARCH_MOBILE_WEB': 'Quote Lookup', 'UH_SEARCH_MOBILE_WEB_V2': 'Search for news or symbols', 'UH_SEARCH_WEB': 'Search for news, symbols or companies', 'UNDO': 'Undo', 'UNITED_STATES': 'United States', 'UPDATE_YOUR_SETTINGS': 'Update your settings here to see it.', 'VIDEO_TITLE': 'Video', 'VIEW_CHART': 'View Chart', 'VIEW_QUOTE_DETAILS': 'View quote details', 'WANT_FEWER_ADS': 'Go ad-free*', 'WHY_THIS_AD': 'Why this ad?', 'WATCHLISTS_NAV_TITLE': 'Watchlists', 'WEEK_AHEAD': 'Earnings This Week', 'WORLD_INDICES': 'World Indices', 'WORLD_TITLE': 'World', 'YAHOO_FINANCE': 'Yahoo Finance', 'YF_TITLE': 'Yahoo Finance Lists'}, 'tdv2-applet-swisschamp': {'BROWSER_UPGRADE': 'Some parts of this page is not supported on your current browser version. Please upgrade the browser to the latest.', 'CLOSE': 'Close'}, 'td-ads': {'AD': 'AD', 'ADVERTISEMENT': 'Advertisement', 'SCROLL_TO_CONTINUE': 'Scroll to continue with content'}, 'tdv2-applet-featurebar': {'BREAKING_NEWS': 'Breaking News', 'HIGH_LIGHT': 'Highlight'}, 'tdv2-applet-navrail': {'ABOUT': 'About', 'ACCOUNT_INFO': 'Account Info', 'APPS': 'Apps', 'APPS_ATT': 'AT&T Apps', 'BACK': 'Back', 'FOLLOW': 'Follow', 'FOLLOW_US': 'Follow Us', 'MORE': 'More', 'MORE_NAVLINKS': 'More Navlinks', 'MORE_SITES': 'More Sites', 'PROFILE': 'Profile', 'PROPERTY_HOME': '{property} Home', 'SERVICES_ATT': 'AT&T Services', 'SETTINGS': 'Settings', 'SHOW_LESS': 'Show less', 'SHOW_MORE': 'Show More', 'SHOW_X_MORE': 'Show {number} More', 'SIGNIN': 'Sign in', 'SIGNOUT': 'Sign out', 'SIGNOUT_ALL': 'Sign out all', 'STORYLINES': 'Storylines', 'TOOLS': 'Tools', 'WEATHER_FORECAST': 'Weather Forecast', 'WELCOME_BACK': 'Welcome back', 'VIEW_ON_INSTAGRAM': 'View on Instagram', 'YAHOO': 'Yahoo', 'YAHOO_SITES': 'Yahoo Sites'}, 'tdv2-applet-account-switch': {'ACCOUNT_INFO': 'Account Info', 'MANAGE_PUBLISHERS_SHORT': 'Manage Publishers', 'ACCOUNT_MANAGEMENT': 'Add or Manage accounts', 'ADD_ACCOUNT': 'Add account', 'BACKYARD': 'Backyard', 'SIGNOUT': 'Sign Out', 'SIGNOUT_ALL': 'Sign out all', 'WELCOME': 'Welcome back'}}, 'intlConfig': {'formats': {'date': {'timeStyle': {'hour': 'numeric', 'minute': 'numeric'}, 'short': {'day': 'numeric', 'month': 'short', 'year': 'numeric'}}, 'number': {'twoDecimal': {'minimumFractionDigits': 2, 'maximumFractionDigits': 2}, 'fourDecimal': {'minimumFractionDigits': 4, 'maximumFractionDigits': 4}}}}}, 'BeaconStore': {'beaconConfig': {'enableBatch': True, 'batchInterval': 1000, 'sampleSize': 1, 'pathPrefix': '/_td_api/beacon', 'beaconUncaughtJSError': True, 'sampleSizeUncaughtJSError': 1, 'context': {'prid': 'bae2cj5hu29in', 'authed': '0', 'ynet': '0', 'ssl': '1', 'spdy': '0', 'ytee': '0', 'mode': 'normal', 'site': 'finance', 'region': 'US', 'lang': 'en-US', 'dir': 'ltr', 'bucket': 'finance-US-en-US-def', 'colo': 'bf1', 'device': 'desktop', 'bot': '0', 'browser': 'chrome', 'app': 'unknown', 'ecma': 'default', 'environment': 'prod', 'intl': 'us', 'partner': 'none', 'time': 1675699799240, 'tpConsent': False, 'tz': 'America/New_York', 'usercountry': 'US', 'feature': ['adsMigration', 'canvassOffnet', 'ccOnMute', 'disableCommentsMessage', 'debouncesearch100', 'deferDarla', 'disableMegaModalSa', 'ecmaModern', 'enable3pConsent', 'enableCCPAFooter', 'enableNewCCPAFooter', 'enableCMP', 'enableCompanyInsights', 'enableConsentData', 'enableCorporateActions', 'enableEncryption', 'enableFBRedirect', 'enableFeatureTours', 'enableFinancialsTemplate', 'enableFreeFinRichSearch', 'enableGuceJs', 'enableGuceJsOverlay', 'enableNewChartBeta', 'enablePfSummaryForEveryone', 'enablePlusRedesign', 'enablePrivacyUpdate', 'enableUpgradeLeafPage', 'enableVideoURL', 'enableXrayCardsFollowButton', 'enableXrayHyperloopCards', 'enableXrayNcp', 'enableXrayTickerEntities', 'enableYahooSans', 'enableYodleeErrorMsgCriOS', 'ncpListStream', 'ncpPortfolioStream', 'ncpQspStream', 'ncpQspStreamV2', 'ncpStream', 'ncpStreamIntl', 'ncpTopicStream', 'newContentAttribution', 'newLogo', 'notificationsServiceWorker', 'oathPlayer', 'optimizeSearch', 'premium35', 'rightRailLatestReports', 'rightRailPortfolioReports', 'relatedVideoFeature', 'threeAmigos', 'threeAmigosVideoExperienceEnabled', 'waferHeader', 'useNextGenHistory', 'videoNativePlaylist', 'sunsetMotif2', 'enableMarketingModal', 'enableUserPrefAPI', 'enableCustomSymbolsTotalGain', 'livecoverage', 'darlaFirstRenderingVisible', 'enableAdlite', 'enableTradeit', 'enableFeatureBar', 'enableSearchEnhancement', 'enableUserSentiment', 'enableBankrateWidget', 'enableYodlee', 'canvassReplies', 'enablePremiumFinancials', 'enableNewResearchFilterMW', 'enableMonalixaFreqCapping', 'showExpiredIdeas', 'enableSingleRail', 'enableAmexOffer', 'enableNewCategories', 'enablePremiumScreenerNav2', 'exposePredefinedScreener', 'enableEnhanceScreener', 'enableSECFiling', 'enableFastlink4', 'enableHyperLoop', 'enableScreenerCarousel', 'enablePlusUserInsights', 'enableMegathonFollowQSP', 'enableMegathonFollowCue', 'enableHubPage', 'openWeb', 'enhanceAddToWL', 'article2_csn', 'sponsoredAds', 'enableStageAds', 'enableTradeItLinkBrokerSecondaryPromo', 'enableQspPremiumPromoSmall', 'clientDelayNone', 'threeAmigosMabEnabled', 'threeAmigosAdsEnabledAndStreamIndex0', 'enableRelatedTickers', 'enableTasteMaker', 'enableNotification', 'enableNativeBillboard', 'enableJSErrorBeacon', 'enableQuoteTypeKV', 'enableMonalixaBodySlot', 'enableLiveDynamicData', 'enablePremiumUpsell', 'enableTMD', 'enableBannerOnQuote', 'enableInsightEnhancement', 'enableMonalixaPortfolioHoldings3Day', 'enableMonalixaPortfolioHoldingsOnLoad3Day', 'enableMonalixaFreeTrialResearchReports', 'enableMonalixaFreeTrialPlusDashboard', 'enableMonalixaAdBlockerOverlay', 'enableOnboardingPhaseOne', 'enablePlusRedesignOnboarding', 'enableMegathonFollowEntryPoint'], 'adblock': '0', 'theme': 'none', 'nps': {}}}}, 'AdStore': {'appConfig': {'base': {'debug': False, 'dm': 1, 'disableDocDomain': True, 'aboveFoldPositions': 'WPS,MAST,LDRB,SPRZ,SPL,LREC,BTN,BTN-1,BTN-2,BTN-3,BTN1,BTNA,BTNB,BTNC,BTND,FB2,FB2-1,FB2-2,FB2-3,FB2A,FB2B,FB2C,FB2D,NE4,NE4-1,NE4-2,NE4-3,NE4A,NE4B,NE4C,NE4D', 'allowHostUrlAsReferrer': True, 'autoRotation': 10000, 'autoadrender': True, 'darlaJsAtTop': True, 'darlaVersion': '4-7-1', 'darlaAssetFetch': True, 'cacheDarlaAsset': True, 'darlaConfigFetch': True, 'cacheDarlaConfig': True, 'checkForModalClose': True, 'multipleRenderTargets': True, 'rotationTimingDisabled': False, 'k2': {'res': {'rate': 5, 'pos': ['BTN', 'BTN-1', 'BTN-2', 'BTN-3', 'BTN1', 'LREC', 'LREC2', 'LREC3', 'LDRB', 'MAST']}}, 'positions': {'DEFAULT': {'name': 'DEFAULT', 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False}, 'WPS': {'id': 'WPS', 'clean': 'cleanWPS', 'dest': 'destWPS', 'metaSize': True, 'w': 320, 'h': 50}, 'BTN1': {'id': 'BTN1', 'clean': 'cleanBTN1', 'dest': 'destBTN1', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN1-1': {'id': 'BTN1', 'clean': 'cleanBTN1-1', 'dest': 'destBTN1-1', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN': {'id': 'BTN', 'clean': 'cleanBTN', 'dest': 'destBTN', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-1': {'id': 'BTN-1', 'clean': 'cleanBTN-1', 'dest': 'destBTN-1', 'w': 120, 'h': 60}, 'BTN-2': {'id': 'BTN-2', 'clean': 'cleanBTN-2', 'dest': 'destBTN-2', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-3': {'id': 'BTN-3', 'clean': 'cleanBTN-3', 'dest': 'destBTN-3', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-5': {'id': 'BTN-5', 'clean': 'cleanBTN-5', 'dest': 'destBTN-5', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-6': {'id': 'BTN-6', 'clean': 'cleanBTN-6', 'dest': 'destBTN-6', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-7': {'id': 'BTN-7', 'clean': 'cleanBTN-7', 'dest': 'destBTN-7', 'metaSize': True, 'w': 120, 'h': 60}, 'BTN-8': {'id': 'BTN-8', 'clean': 'cleanBTN-8', 'dest': 'destBTN-8', 'metaSize': True, 'w': 120, 'h': 60}, 'BTNA': {'id': 'BTNA', 'clean': 'cleanBTNA', 'dest': 'destBTNA', 'metaSize': True, 'w': 120, 'h': 60}, 'BTNB': {'id': 'BTNB', 'clean': 'cleanBTNB', 'dest': 'destBTNB', 'metaSize': True, 'w': 120, 'h': 60}, 'BTNC': {'id': 'BTNC', 'clean': 'cleanBTNC', 'dest': 'destBTNC', 'metaSize': True, 'w': 120, 'h': 60}, 'BTND': {'id': 'BTND', 'clean': 'cleanBTND', 'dest': 'destBTND', 'metaSize': True, 'w': 120, 'h': 60}, 'WIDGET': {'id': 'WIDGET', 'clean': 'cleanWIDGET', 'dest': 'destWIDGET', 'metaSize': False, 'w': 650, 'h': 635, 'flex': {'w': {'min': 600, 'max': 800}}}, 'WIDGETA': {'id': 'WIDGETA', 'clean': 'cleanWIDGETA', 'dest': 'destWIDGETA', 'metaSize': False, 'w': 758, 'h': 198, 'fdb': True, 'supports': {'exp-ovr': 1, 'exp-push': 1}}, 'WIDGET-1': {'id': 'WIDGET-1', 'metaSize': False, 'w': 300, 'h': 340}, 'FOOT': {'id': 'FOOT', 'clean': 'cleanFOOT', 'dest': 'destFOOT', 'fr': 'expIfr_exp'}, 'FSRVY': {'id': 'FSRVY', 'clean': 'cleanFSRVY', 'dest': 'destFSRVY', 'fr': 'expIfr_exp'}, 'SCREC': {'id': 'SCREC', 'clean': 'cleanSCREC', 'dest': 'destSCREC', 'supports': {'exp-push': 1}, 'w': 300, 'h': 65}, 'LREC': {'id': 'LREC', 'clean': 'cleanLREC', 'dest': 'destLREC', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC-9': {'id': 'LREC-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC2': {'id': 'LREC2', 'clean': 'cleanLREC2', 'dest': 'destLREC2', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC2-4': {'id': 'LREC2-4', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-5': {'id': 'LREC2-5', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-6': {'id': 'LREC2-6', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-7': {'id': 'LREC2-7', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-8': {'id': 'LREC2-8', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC2-9': {'id': 'LREC2-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC3': {'id': 'LREC3', 'clean': 'cleanLREC3', 'dest': 'destLREC3', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC3-4': {'id': 'LREC3-4', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-5': {'id': 'LREC3-5', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-6': {'id': 'LREC3-6', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-7': {'id': 'LREC3-7', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-8': {'id': 'LREC3-8', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'LREC3-9': {'id': 'LREC3-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LREC4': {'id': 'LREC4', 'clean': 'cleanLREC4', 'dest': 'destLREC4', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'overrides': {'doubleBuffering': True}}, 'LREC4-9': {'id': 'LREC4-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB': {'id': 'LDRB', 'clean': 'cleanLDRB', 'dest': 'destLDRB', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB-9': {'id': 'LDRB-9', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2': {'id': 'LDRB2', 'clean': 'cleanLDRB2', 'dest': 'destLDRB2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2-1': {'id': 'LDRB2-1', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2-2': {'id': 'LDRB2-2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2-3': {'id': 'LDRB2-3', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'LDRB2-4': {'id': 'LDRB2-4', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'MAST': {'id': 'MAST', 'clean': 'cleanMAST', 'dest': 'destMAST', 'w': 970, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1, 'resize-to': 1}, 'fdb': False, 'closeBtn': {'mode': 2, 'useShow': 1, 'adc': 0}, 'metaSize': True}, 'MAST-9': {'id': 'MAST-9', 'w': 970, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1, 'resize-to': 1}, 'fdb': False, 'closeBtn': {'mode': 2, 'useShow': 1, 'adc': 0}, 'metaSize': True}, 'MON': {'id': 'MON', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'MON-1': {'id': 'MON-1', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'MON2': {'id': 'MON2', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'MON2-9': {'id': 'MON2-9', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'MOMENTS': {'id': 'MOMENTS', 'w': 375, 'h': 667, 'flex': {'ratio': '1x1.78', 'w': {'min': 320}, 'h': {'min': 568}}, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 1, 'exp-push': 1, 'resize-to': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3}, 'FB2': {'id': 'FB2', 'clean': 'cleanFB2', 'dest': 'destFB2', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2-1': {'id': 'FB2-1', 'clean': 'cleanFB2-1', 'dest': 'destFB2-1', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2-2': {'id': 'FB2-2', 'clean': 'cleanFB2-2', 'dest': 'destFB2-2', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2-3': {'id': 'FB2-3', 'clean': 'cleanFB2-3', 'dest': 'destFB2-3', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2A': {'id': 'FB2A', 'clean': 'cleanFB2A', 'dest': 'destFB2A', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2B': {'id': 'FB2B', 'clean': 'cleanFB2B', 'dest': 'destFB2B', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2C': {'id': 'FB2C', 'clean': 'cleanFB2C', 'dest': 'destFB2C', 'metaSize': True, 'w': 120, 'h': 60}, 'FB2D': {'id': 'FB2D', 'clean': 'cleanFB2D', 'dest': 'destFB2D', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4': {'id': 'NE4', 'clean': 'cleanNE4', 'dest': 'destNE4', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4-1': {'id': 'NE4-1', 'clean': 'cleanNE4-1', 'dest': 'destNE4-1', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4-2': {'id': 'NE4-2', 'clean': 'cleanNE4-2', 'dest': 'destNE4-2', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4-3': {'id': 'NE4-3', 'clean': 'cleanNE4-3', 'dest': 'destNE4-3', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4A': {'id': 'NE4A', 'clean': 'cleanNE4A', 'dest': 'destNE4A', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4B': {'id': 'NE4B', 'clean': 'cleanNE4B', 'dest': 'destNE4B', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4C': {'id': 'NE4C', 'clean': 'cleanNE4C', 'dest': 'destNE4C', 'metaSize': True, 'w': 120, 'h': 60}, 'NE4D': {'id': 'NE4D', 'clean': 'cleanNE4D', 'dest': 'destNE4D', 'metaSize': True, 'w': 120, 'h': 60}, 'UBALDRB': {'id': 'UBALDRB', 'w': 728, 'h': 90, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'UBALDRB-9': {'id': 'UBALDRB-9', 'w': 728, 'h': 90, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True}, 'UBALDRB2': {'id': 'UBALDRB2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALDRB2-1': {'id': 'UBALDRB2-1', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALDRB2-2': {'id': 'UBALDRB2-2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALDRB2-3': {'id': 'UBALDRB2-3', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALDRB2-4': {'id': 'UBALDRB2-4', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'UBALREC': {'id': 'UBALREC', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3}, 'UBALREC-1': {'id': 'UBALREC-1', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3}, 'UBALREC-9': {'id': 'UBALREC-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3}, 'UBALREC2-9': {'id': 'UBALREC2-9', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBALREC2': {'id': 'UBALREC2', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBALREC3': {'id': 'UBALREC3', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBALREC3-9': {'id': 'UBALREC3-9', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBAMON': {'id': 'UBAMON', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBAMON-9': {'id': 'UBAMON-9', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'UBAMON2': {'id': 'UBAMON2', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9}, 'WFPAD': {'id': 'WFPAD', 'w': 320, 'h': 50, 'autoFetch': False, 'enable': True, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1, 'lyr': 1, 'resize-to': 1}, 'metaSize': True, 'staticLayout': False, 'fdb': False}, 'WFPAD2': {'id': 'WFPAD2', 'w': 320, 'h': 50, 'autoFetch': False, 'enable': True, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1, 'lyr': 1, 'resize-to': 1}, 'metaSize': True, 'staticLayout': False, 'fdb': False}, 'SPL': {'id': 'SPL', 'flex': 'both', 'enable': True, 'autoFetch': False, 'staticLayout': False, 'fdb': False, 'supports': {'cmsg': 1}, 'uhslot': '.YDC-UH', 'meta': {'type': 'stream'}, 'css': '.Mags-FontA{font-family:\"HelveticaNeue\",Helvetica,Arial,sans-serif;font-weight:300;}.Mags-FontA.Size1{font-size:13px;}.Mags-FontA.Size2{font-size:16px;}.Mags-FontA.Size3{font-size:20px;}.Mags-FontA.Size4{font-size:22px;}.Mags-FontA.Size5{font-size:33px;}.Mags-FontA.Size6{font-size:35px;}.Mags-FontA.Size7{font-size:58px;}.Mags-FontA.Size8{font-size:70px;}.Mags-FontA.Size9{font-size:100px;}.Mags-FontB{font-family:Georgia,Times,serif;font-weight:400;}.Mags-FontB.Size1{font-size:18px;}.Mags-FontC{font-family:\"HelveticaNeue\",Helvetica,Arial,sans-serif;font-weight:400;}.Mags-FontC.Size1{font-size:11px;}.Mags-FontC.Size2{font-size:14px;}.Mags-FontC.Size3{font-size:16px;}.Mags-FontC.Size4{font-size:20px;}.Mags-FontC.Size5{font-size:30px;}.Mags-FontC.Size6{font-size:32px;}.Mags-FontC.Size7{font-size:52px;}'}, 'TRADENOW': {'id': 'TRADENOW', 'clean': 'cleanTRADENOW', 'dest': 'destTRADENOW', 'w': 280, 'h': 55, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True}, 'TRADENOW-1': {'id': 'TRADENOW', 'clean': 'cleanTRADENOW-1', 'dest': 'destTRADENOW-1', 'fr': 'expIfr_exp', 'w': 320, 'h': 114, 'supports': {'exp-ovr': 1, 'exp-push': 1, 'resize-to': 1}, 'flex': {'ratio': '3.28x1', 'h': {'min': 114, 'max': 280}}, 'staticLayout': True, 'fdb': True}, 'INARTICLE': {'id': 'INARTICLE', 'w': 375, 'h': 211, 'autoFetch': False, 'fr': 'expIfr_exp', 'flex': {'ratio': '1.78x1', 'w': {'min': 10}, 'h': {'min': 5}}, 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'z': 9}}, 'events': {'DEFAULT': {'sp': 1183300002, 'ssl': 1, 'secure': 1}, 'adFetch': {'name': 'adFetch', 'dynamic': True, 'viewportOnly': 'MAST,LDRB,LDRB2,LREC,LREC2,MON,FB2,FB2-1,FB2-2,FB2-3,BTN,BTN-1,BTN-2,BTN-3,BTN1,NE4,NE4-1,NE4-2,NE4-3'}, 'AUTO': {'ddd': 0, 'name': 'AUTO', 'autoStart': 1, 'autoMax': 25, 'autoIV': 1, 'autoRT': 10000, 'autoDDG': 1, 'npv': 1, 'ps': {'BTN': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNA': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNB': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTND': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2A': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2B': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2C': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2D': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC4-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': '35000'}, 'MAST': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'MAST-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'MON': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'MON-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4A': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4B': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4C': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4D': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'SCREC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'SPL': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'WIDGETA': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'TRADENOW': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'TRADENOW-1': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'WPS': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'MON2': {'autoRT': 10000}, 'MON2-9': {'autoRT': 10000}}, 'groups': {'LREC3': 'MON2', 'LREC4': 'MON2', 'MON2': 'LREC3,LREC4', 'LREC3-9': 'MON2-9', 'LREC4-9': 'MON2-9', 'MON2-9': 'LREC3-9,LREC4-9'}}}, 'firstRenderingVisible': True, 'viewerAdboost': True, 'timeout': 500, 'adblockPos': 1, 'detectAdblock': True, 'enableUBAMON': True, 'nukeAds': 'LREC,LREC2,LREC-9,LREC2-9,LREC3-9,LREC4-9,LDRB-9,MAST-9,MON-1,SPL', 'enableAdPlaceHolder': True, 'adBoostGroupConf': {'LREC3': {'inview': 'LREC4', 'extrapositions': ['MON2']}, 'LREC4': {'inview': 'LREC3', 'extrapositions': ['MON2']}, 'MON2': {'extrapositions': ['LREC3', 'LREC4']}, 'LREC3-9': {'inview': 'LREC4-9', 'extrapositions': ['MON2-9']}, 'LREC4-9': {'inview': 'LREC3-9', 'extrapositions': ['MON2-9']}, 'MON2-9': {'extrapositions': ['LREC3-9', 'LREC4-9']}}}}, 'pageConfig': {'base': {'events': {'adFetch': {'ps': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,LREC2,FOOT,FSRVY,TRADENOW', 'firstRender': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,TRADENOW', 'sponsoredAds': '', 'sponsoredAdsClass': ''}, 'AUTO': {'autoDDG': 0, 'groups': {'LREC3': 'LREC3', 'LREC4': None, 'MON2': 'LREC3'}, 'ps': {'MON2': {'autoRT': 10000}}}}, 'deferRender': True, 'positions': {'MAST': {'fclose': 2, 'fdb': {'on': '1', 'where': 'inside'}}, 'MAST-9': {'fclose': 2, 'fdb': {'on': '1', 'where': 'inside'}}}, 'removeFSRVY': True, 'enableAdboost': True, 'adBoostGroupConf': {'LREC3': None, 'LREC4': None, 'MON2': {'extrapositions': ['LREC3']}}}, 'header': None}, 'routeConfig': {}, 'failedPositions': {'positions': {'FB2B': {'failed': True}, 'FB2C': {'failed': True}, 'FB2D': {'failed': True}, 'MON': {'failed': True}, 'FOOT': {'failed': True}, 'TRADENOW': {'failed': True}}}, 'darlaConfig': {'debug': False, 'dm': 1, 'aboveFoldPositions': 'WPS,MAST,LDRB,SPRZ,SPL,LREC,BTN,BTN-1,BTN-2,BTN-3,BTN1,BTNA,BTNB,BTNC,BTND,FB2,FB2-1,FB2-2,FB2-3,FB2A,FB2B,FB2C,FB2D,NE4,NE4-1,NE4-2,NE4-3,NE4A,NE4B,NE4C,NE4D', 'autoRotation': 10000, 'rotationTimingDisabled': False, 'k2': {'res': {'rate': 5, 'pos': ['BTN', 'BTN-1', 'BTN-2', 'BTN-3', 'BTN1', 'LREC', 'LREC2', 'LREC3', 'LDRB', 'MAST']}}, 'positions': {'DEFAULT': {'name': 'DEFAULT', 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'clean': 'cleanDEFAULT', 'dest': 'destDEFAULT', 'id': 'DEFAULT', 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'WPS': {'id': 'WPS', 'clean': 'cleanWPS', 'dest': 'destWPS', 'metaSize': True, 'w': 320, 'h': 50, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN1': {'id': 'BTN1', 'clean': 'cleanBTN1', 'dest': 'destBTN1', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN1-1': {'id': 'BTN1', 'clean': 'cleanBTN1-1', 'dest': 'destBTN1-1', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN': {'id': 'BTN', 'clean': 'cleanBTN', 'dest': 'destBTN', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN-1': {'id': 'BTN-1', 'clean': 'cleanBTN-1', 'dest': 'destBTN-1', 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN-2': {'id': 'BTN-2', 'clean': 'cleanBTN-2', 'dest': 'destBTN-2', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN-3': {'id': 'BTN-3', 'clean': 'cleanBTN-3', 'dest': 'destBTN-3', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN-5': {'id': 'BTN-5', 'clean': 'cleanBTN-5', 'dest': 'destBTN-5', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN-6': {'id': 'BTN-6', 'clean': 'cleanBTN-6', 'dest': 'destBTN-6', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN-7': {'id': 'BTN-7', 'clean': 'cleanBTN-7', 'dest': 'destBTN-7', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTN-8': {'id': 'BTN-8', 'clean': 'cleanBTN-8', 'dest': 'destBTN-8', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTNA': {'id': 'BTNA', 'clean': 'cleanBTNA', 'dest': 'destBTNA', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTNB': {'id': 'BTNB', 'clean': 'cleanBTNB', 'dest': 'destBTNB', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTNC': {'id': 'BTNC', 'clean': 'cleanBTNC', 'dest': 'destBTNC', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'BTND': {'id': 'BTND', 'clean': 'cleanBTND', 'dest': 'destBTND', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'WIDGET': {'id': 'WIDGET', 'clean': 'cleanWIDGET', 'dest': 'destWIDGET', 'metaSize': False, 'w': 650, 'h': 635, 'flex': {'w': {'min': 600, 'max': 800}}, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'WIDGETA': {'id': 'WIDGETA', 'clean': 'cleanWIDGETA', 'dest': 'destWIDGETA', 'metaSize': False, 'w': 758, 'h': 198, 'fdb': True, 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'WIDGET-1': {'id': 'WIDGET-1', 'metaSize': False, 'w': 300, 'h': 340, 'clean': 'cleanWIDGET-1', 'dest': 'destWIDGET-1', 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FOOT': {'id': 'FOOT', 'clean': 'cleanFOOT', 'dest': 'destFOOT', 'fr': 'expIfr_exp', 'failed': True, 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FSRVY': {'id': 'FSRVY', 'clean': 'cleanFSRVY', 'dest': 'destFSRVY', 'fr': 'expIfr_exp', 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'SCREC': {'id': 'SCREC', 'clean': 'cleanSCREC', 'dest': 'destSCREC', 'supports': {'exp-push': 1}, 'w': 300, 'h': 65, 'enable': True, 'fallback': None, 'metaSize': False, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC': {'id': 'LREC', 'clean': 'cleanLREC', 'dest': 'destLREC', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'doubleBuffering': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC-9': {'id': 'LREC-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLREC-9', 'dest': 'destLREC-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC2': {'id': 'LREC2', 'clean': 'cleanLREC2', 'dest': 'destLREC2', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC2-4': {'id': 'LREC2-4', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-4', 'dest': 'destLREC2-4', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC2-5': {'id': 'LREC2-5', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-5', 'dest': 'destLREC2-5', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC2-6': {'id': 'LREC2-6', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-6', 'dest': 'destLREC2-6', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC2-7': {'id': 'LREC2-7', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-7', 'dest': 'destLREC2-7', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC2-8': {'id': 'LREC2-8', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC2-8', 'dest': 'destLREC2-8', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC2-9': {'id': 'LREC2-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLREC2-9', 'dest': 'destLREC2-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC3': {'id': 'LREC3', 'clean': 'cleanLREC3', 'dest': 'destLREC3', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC3-4': {'id': 'LREC3-4', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-4', 'dest': 'destLREC3-4', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC3-5': {'id': 'LREC3-5', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-5', 'dest': 'destLREC3-5', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC3-6': {'id': 'LREC3-6', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-6', 'dest': 'destLREC3-6', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC3-7': {'id': 'LREC3-7', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-7', 'dest': 'destLREC3-7', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC3-8': {'id': 'LREC3-8', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanLREC3-8', 'dest': 'destLREC3-8', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC3-9': {'id': 'LREC3-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLREC3-9', 'dest': 'destLREC3-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC4': {'id': 'LREC4', 'clean': 'cleanLREC4', 'dest': 'destLREC4', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'overrides': {'doubleBuffering': True}, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LREC4-9': {'id': 'LREC4-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLREC4-9', 'dest': 'destLREC4-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LDRB': {'id': 'LDRB', 'clean': 'cleanLDRB', 'dest': 'destLDRB', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LDRB-9': {'id': 'LDRB-9', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB-9', 'dest': 'destLDRB-9', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LDRB2': {'id': 'LDRB2', 'clean': 'cleanLDRB2', 'dest': 'destLDRB2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LDRB2-1': {'id': 'LDRB2-1', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB2-1', 'dest': 'destLDRB2-1', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LDRB2-2': {'id': 'LDRB2-2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB2-2', 'dest': 'destLDRB2-2', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LDRB2-3': {'id': 'LDRB2-3', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB2-3', 'dest': 'destLDRB2-3', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'LDRB2-4': {'id': 'LDRB2-4', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanLDRB2-4', 'dest': 'destLDRB2-4', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'MAST': {'id': 'MAST', 'clean': 'cleanMAST', 'dest': 'destMAST', 'w': 970, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1, 'resize-to': 1}, 'fdb': {'on': '1', 'where': 'inside'}, 'closeBtn': {'mode': 2, 'useShow': 1, 'adc': 0}, 'metaSize': True, 'fclose': 2, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'MAST-9': {'id': 'MAST-9', 'w': 970, 'h': 250, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1, 'resize-to': 1}, 'fdb': {'on': '1', 'where': 'inside'}, 'closeBtn': {'mode': 2, 'useShow': 1, 'adc': 0}, 'metaSize': True, 'fclose': 2, 'clean': 'cleanMAST-9', 'dest': 'destMAST-9', 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'MON': {'id': 'MON', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'failed': True, 'clean': 'cleanMON', 'dest': 'destMON', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'MON-1': {'id': 'MON-1', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanMON-1', 'dest': 'destMON-1', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'MON2': {'id': 'MON2', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanMON2', 'dest': 'destMON2', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'MON2-9': {'id': 'MON2-9', 'w': 300, 'h': 600, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'resize-to': 1, 'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanMON2-9', 'dest': 'destMON2-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'MOMENTS': {'id': 'MOMENTS', 'w': 375, 'h': 667, 'flex': {'ratio': '1x1.78', 'w': {'min': 320}, 'h': {'min': 568}}, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 1, 'exp-push': 1, 'resize-to': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3, 'clean': 'cleanMOMENTS', 'dest': 'destMOMENTS', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FB2': {'id': 'FB2', 'clean': 'cleanFB2', 'dest': 'destFB2', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FB2-1': {'id': 'FB2-1', 'clean': 'cleanFB2-1', 'dest': 'destFB2-1', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FB2-2': {'id': 'FB2-2', 'clean': 'cleanFB2-2', 'dest': 'destFB2-2', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FB2-3': {'id': 'FB2-3', 'clean': 'cleanFB2-3', 'dest': 'destFB2-3', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FB2A': {'id': 'FB2A', 'clean': 'cleanFB2A', 'dest': 'destFB2A', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FB2B': {'id': 'FB2B', 'clean': 'cleanFB2B', 'dest': 'destFB2B', 'metaSize': True, 'w': 120, 'h': 60, 'failed': True, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FB2C': {'id': 'FB2C', 'clean': 'cleanFB2C', 'dest': 'destFB2C', 'metaSize': True, 'w': 120, 'h': 60, 'failed': True, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'FB2D': {'id': 'FB2D', 'clean': 'cleanFB2D', 'dest': 'destFB2D', 'metaSize': True, 'w': 120, 'h': 60, 'failed': True, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'NE4': {'id': 'NE4', 'clean': 'cleanNE4', 'dest': 'destNE4', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'NE4-1': {'id': 'NE4-1', 'clean': 'cleanNE4-1', 'dest': 'destNE4-1', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'NE4-2': {'id': 'NE4-2', 'clean': 'cleanNE4-2', 'dest': 'destNE4-2', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'NE4-3': {'id': 'NE4-3', 'clean': 'cleanNE4-3', 'dest': 'destNE4-3', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'NE4A': {'id': 'NE4A', 'clean': 'cleanNE4A', 'dest': 'destNE4A', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'NE4B': {'id': 'NE4B', 'clean': 'cleanNE4B', 'dest': 'destNE4B', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'NE4C': {'id': 'NE4C', 'clean': 'cleanNE4C', 'dest': 'destNE4C', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'NE4D': {'id': 'NE4D', 'clean': 'cleanNE4D', 'dest': 'destNE4D', 'metaSize': True, 'w': 120, 'h': 60, 'enable': True, 'fallback': None, 'staticLayout': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALDRB': {'id': 'UBALDRB', 'w': 728, 'h': 90, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB', 'dest': 'destUBALDRB', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALDRB-9': {'id': 'UBALDRB-9', 'w': 728, 'h': 90, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB-9', 'dest': 'destUBALDRB-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALDRB2': {'id': 'UBALDRB2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2', 'dest': 'destUBALDRB2', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALDRB2-1': {'id': 'UBALDRB2-1', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2-1', 'dest': 'destUBALDRB2-1', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALDRB2-2': {'id': 'UBALDRB2-2', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2-2', 'dest': 'destUBALDRB2-2', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALDRB2-3': {'id': 'UBALDRB2-3', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2-3', 'dest': 'destUBALDRB2-3', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALDRB2-4': {'id': 'UBALDRB2-4', 'w': 728, 'h': 90, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'clean': 'cleanUBALDRB2-4', 'dest': 'destUBALDRB2-4', 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALREC': {'id': 'UBALREC', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3, 'clean': 'cleanUBALREC', 'dest': 'destUBALREC', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALREC-1': {'id': 'UBALREC-1', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3, 'clean': 'cleanUBALREC-1', 'dest': 'destUBALREC-1', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALREC-9': {'id': 'UBALREC-9', 'w': 300, 'h': 250, 'fr': 'expIfr_exp', 'autoFetch': False, 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 3, 'clean': 'cleanUBALREC-9', 'dest': 'destUBALREC-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALREC2-9': {'id': 'UBALREC2-9', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBALREC2-9', 'dest': 'destUBALREC2-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALREC2': {'id': 'UBALREC2', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBALREC2', 'dest': 'destUBALREC2', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALREC3': {'id': 'UBALREC3', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBALREC3', 'dest': 'destUBALREC3', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBALREC3-9': {'id': 'UBALREC3-9', 'w': 300, 'h': 250, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBALREC3-9', 'dest': 'destUBALREC3-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBAMON': {'id': 'UBAMON', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBAMON', 'dest': 'destUBAMON', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBAMON-9': {'id': 'UBAMON-9', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBAMON-9', 'dest': 'destUBAMON-9', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'UBAMON2': {'id': 'UBAMON2', 'w': 300, 'h': 600, 'autoFetch': False, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 0, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'fdb': True, 'z': 9, 'clean': 'cleanUBAMON2', 'dest': 'destUBAMON2', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'WFPAD': {'id': 'WFPAD', 'w': 320, 'h': 50, 'autoFetch': False, 'enable': True, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1, 'lyr': 1, 'resize-to': 1}, 'metaSize': True, 'staticLayout': False, 'fdb': False, 'clean': 'cleanWFPAD', 'dest': 'destWFPAD', 'fallback': None, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'WFPAD2': {'id': 'WFPAD2', 'w': 320, 'h': 50, 'autoFetch': False, 'enable': True, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1, 'lyr': 1, 'resize-to': 1}, 'metaSize': True, 'staticLayout': False, 'fdb': False, 'clean': 'cleanWFPAD2', 'dest': 'destWFPAD2', 'fallback': None, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'SPL': {'id': 'SPL', 'flex': 'both', 'enable': True, 'autoFetch': False, 'staticLayout': False, 'fdb': False, 'supports': {'cmsg': 1}, 'uhslot': '.YDC-UH', 'meta': {'type': 'stream', 'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}, 'css': '.Mags-FontA{font-family:\"HelveticaNeue\",Helvetica,Arial,sans-serif;font-weight:300;}.Mags-FontA.Size1{font-size:13px;}.Mags-FontA.Size2{font-size:16px;}.Mags-FontA.Size3{font-size:20px;}.Mags-FontA.Size4{font-size:22px;}.Mags-FontA.Size5{font-size:33px;}.Mags-FontA.Size6{font-size:35px;}.Mags-FontA.Size7{font-size:58px;}.Mags-FontA.Size8{font-size:70px;}.Mags-FontA.Size9{font-size:100px;}.Mags-FontB{font-family:Georgia,Times,serif;font-weight:400;}.Mags-FontB.Size1{font-size:18px;}.Mags-FontC{font-family:\"HelveticaNeue\",Helvetica,Arial,sans-serif;font-weight:400;}.Mags-FontC.Size1{font-size:11px;}.Mags-FontC.Size2{font-size:14px;}.Mags-FontC.Size3{font-size:16px;}.Mags-FontC.Size4{font-size:20px;}.Mags-FontC.Size5{font-size:30px;}.Mags-FontC.Size6{font-size:32px;}.Mags-FontC.Size7{font-size:52px;}', 'clean': 'cleanSPL', 'dest': 'destSPL', 'fallback': None, 'metaSize': False}, 'TRADENOW': {'id': 'TRADENOW', 'clean': 'cleanTRADENOW', 'dest': 'destTRADENOW', 'w': 280, 'h': 55, 'fr': 'expIfr_exp', 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'staticLayout': True, 'fdb': True, 'failed': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'TRADENOW-1': {'id': 'TRADENOW', 'clean': 'cleanTRADENOW-1', 'dest': 'destTRADENOW-1', 'fr': 'expIfr_exp', 'w': 320, 'h': 114, 'supports': {'exp-ovr': 1, 'exp-push': 1, 'resize-to': 1}, 'flex': {'ratio': '3.28x1', 'h': {'min': 114, 'max': 280}}, 'staticLayout': True, 'fdb': True, 'enable': True, 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}, 'INARTICLE': {'id': 'INARTICLE', 'w': 375, 'h': 211, 'autoFetch': False, 'fr': 'expIfr_exp', 'flex': {'ratio': '1.78x1', 'w': {'min': 10}, 'h': {'min': 5}}, 'supports': {'exp-ovr': 1, 'exp-push': 1}, 'enable': True, 'staticLayout': True, 'z': 9, 'clean': 'cleanINARTICLE', 'dest': 'destINARTICLE', 'fallback': None, 'metaSize': False, 'meta': {'hostURL': 'https://finance.yahoo.com/quote/AAPL/balance-sheet'}}}, 'events': {'DEFAULT': {'sp': 1183300002, 'ssl': 1, 'secure': 1}, 'adFetch': {'name': 'adFetch', 'dynamic': True, 'viewportOnly': 'MAST,LDRB,LDRB2,LREC,LREC2,MON,FB2,FB2-1,FB2-2,FB2-3,BTN,BTN-1,BTN-2,BTN-3,BTN1,NE4,NE4-1,NE4-2,NE4-3', 'ps': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,LREC2,FOOT,FSRVY,TRADENOW', 'firstRender': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,TRADENOW', 'sponsoredAds': '', 'sponsoredAdsClass': ''}, 'AUTO': {'ddd': 0, 'name': 'AUTO', 'autoStart': 1, 'autoMax': 25, 'autoIV': 1, 'autoRT': 10000, 'autoDDG': 0, 'npv': 1, 'ps': {'BTN': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTN1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNA': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNB': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTNC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'BTND': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2A': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2B': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2C': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'FB2D': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LDRB2-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC2-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-5': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-6': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-7': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-8': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC3-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'LREC4-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': '35000'}, 'MAST': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'MAST-9': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'MON': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'MON-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-1': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-2': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4-3': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4A': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4B': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4C': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'NE4D': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'SCREC': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'SPL': {'autoIV': 1, 'autoMax': 25, 'autoRT': 30000}, 'WIDGETA': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'TRADENOW': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'TRADENOW-1': {'autoIV': 1, 'autoMax': 0, 'autoRT': 3600000}, 'WPS': {'autoIV': 1, 'autoMax': 25, 'autoRT': 10000}, 'MON2': {'autoRT': 10000}, 'MON2-9': {'autoRT': 10000}}, 'groups': {'LREC3': 'LREC3', 'LREC4': None, 'MON2': 'LREC3', 'LREC3-9': 'MON2-9', 'LREC4-9': 'MON2-9', 'MON2-9': 'LREC3-9,LREC4-9'}}}, 'firstRenderingVisible': True}, 'adFetchEvent': {'ps': 'FB2A,FB2B,FB2C,FB2D,LDRB,LDRB2,MON,LREC,LREC2,FOOT,TRADENOW', 'sp': 95993639, 'sa': ' ticker=AAPL Y-BUCKET=finance-US-en-US-def LREC=300x250,1x1 rs=\"pt:utility;site:finance;ver:ydotcom;pct:qsp;lu:0\" migration=1 quote_type=EQUITY', 'optionalps': '', 'launchViewportAdSlot': [], 'site': 'finance'}, 'siteAttrs': ' ticker=AAPL Y-BUCKET=finance-US-en-US-def LREC=300x250,1x1 rs=\"pt:utility;site:finance;ver:ydotcom;pct:qsp;lu:0\" migration=1 quote_type=EQUITY', 'autoAdRender': True, 'supportMultipleRenderTargets': True, 'darlaJsAtTop': True, 'delayedRender': False, 'darlaVersion': '4-7-1', 'disableDarla': False, 'detectAdblock': True, 'inarticleTextEnable': False, 'adblockPos': True, 'disableDocDomain': True, 'removeFSRVY': True, 'enableAdboost': True, 'enableUBAMON': True, 'adBoostGroupConf': {'LREC3': None, 'LREC4': None, 'MON2': {'extrapositions': ['LREC3', 'LREC4']}, 'LREC3-9': {'inview': 'LREC4-9', 'extrapositions': ['MON2-9']}, 'LREC4-9': {'inview': 'LREC3-9', 'extrapositions': ['MON2-9']}, 'MON2-9': {'extrapositions': ['LREC3-9', 'LREC4-9']}}, 'viewerAdboost': True, 'tabswitchRotateTime': 3000, 'deferRender': True, 'keepPerfEntries': False, 'darlaAssetFetch': True, 'cacheDarlaAsset': True, 'darlaConfigFetch': True, 'cacheDarlaConfig': True, 'prefetchedPositions': {'FB2A': {'hasError': False, 'error': 'none', 'size': '120x60', 'slotData': {'trusted_custom': 'false', 'freqcapped': 'false', 'delivery': '-1', 'pacing': '-1', 'expires': '1946941', 'companion': 'false', 'exclusive': 'true', 'redirect': 'false', 'pvid': 'L5Az8Tc0LjZzdcscsMBqhQBsMTI4LgAAAABDSZf2'}, 'serveType': '6'}, 'FB2B': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}, 'FB2C': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}, 'FB2D': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}, 'LDRB': {'hasError': False, 'error': 'none', 'size': '728x90', 'slotData': {}, 'serveType': '7'}, 'LDRB2': {'hasError': False, 'error': 'none', 'size': '728x90', 'slotData': {}, 'serveType': '7'}, 'MON': {'hasError': True, 'error': 'fnad', 'size': 'unknown', 'slotData': None, 'serveType': '0'}, 'LREC': {'hasError': False, 'error': 'none', 'size': '300x250', 'slotData': {}, 'serveType': '7'}, 'LREC2': {'hasError': False, 'error': 'none', 'size': '300x250', 'slotData': {}, 'serveType': '7'}, 'FOOT': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}, 'TRADENOW': {'hasError': True, 'error': 'noad', 'size': 'unknown', 'slotData': None, 'serveType': '6'}}, '_newPageRendered': False, 'checkForModalClose': True, 'nukeAds': ['LREC', 'LREC2', 'LREC-9', 'LREC2-9', 'LREC3-9', 'LREC4-9', 'LDRB-9', 'MAST-9', 'MON-1', 'SPL'], 'adfetchTimeout': 500, 'forceSsl': False, 'customPositionEnabled': False, 'customPositionConf': {}, 'reactjsDisabled': False, 'prefetchDisabled': False, 'displayMomentsScroller': False, 'enableJac': False, 'adsMeta': None, 'nonNativeBillboardConf': {'positions': {}}, 'nativeBillboardConf': {'positions': {}}, 'allowHostUrlAsReferrer': True, 'detectExpandEvent': False, 'launchViewportFetch': False, 'checkPrefetchedAdHidden': False, 'enableAdPlaceHolder': True, 'darlaAdBlockExp': False, 'hiddenPrefetchedAds': [], '_childCompositeReady': {}}, 'VideoStore': {'videos': {}, 'microdata': {}, '_cdnBase': 'https://s.yimg.com'}, 'ComponentConfigStore': {'configs': {'Nav-0-DesktopNav': {'enablePremiumNav': True, 'navItems': [{'name': 'Personal Finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}]}], 'ui': {'navCache': True, 'remoteAdapter': True, 'makeSticky': False, 'isNavLink': True, 'relativeLinks': True, 'navFont': 'Ff($yahooSansFinanceFont)!', 'headerTitle': 'finance', 'highlightPropertyHome': False, 'dividerClasses': 'H(0)!', 'offsetHack': 'Pt(2px) Bgc(t)!', 'navMainLeftClasses': 'Mend(80px)', 'leftNavClasses': 'Pstart(10px) Mstart(-10px) nr-applet-main-nav-right_Ov(inh)!', 'navTitleClasses': 'Pstart(10px) Mstart(-10px)!', 'linkItemClasses': 'Bgc($linkColor):h W(230px)!', 'subnavLinkClasses': 'Tt(n)! C($primaryColor) C(white)!:h Maw(200px)!', 'darkTheme': False, 'selectColor': 'C($finNavBlueText)! Bdbw(0px) H(42px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'subnavClasses': 'Bgc($lv3BgColor)!', 'hoverColor': 'C($finNavBlueText):h', 'overrideColor': 'C($finNavBlueText)', 'propertyHomeSelectColor': 'Bdbc($linkColor) Bdbs(s)! Bdbw(4px) H(38px)', 'propertyHomeClasses': 'Tt(c)! Bdbc($linkColor):h Bdbs(s):h Bdbw(4px):h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkClasses': 'Tt(n)!', 'navLinkClassesOnHover': 'Bdbc($linkColor)!:h Bdbs(s)!:h Bdbw(4px)!:h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkNonHoverClasses': 'C($topNavLinkGray) Bdbs(n)', 'highlightTriangleColor': 'transparent transparent #fff', 'navMainRightClasses': 'Bdc(t) Bdrs(1.5px) Bdbs(s):h Px(10px)!'}, 'featureSwitches': {'useNavSelectLogic': True, 'disableDivider': True, 'followButtons': False, 'navLogoAlign': False, 'navrailCollapse': False, 'enableHighlightTriangle': True, 'useSubnavTitleSlk': True}, 'i13n': {'itc': 0, 'sec': 'navrail'}, 'site': 'finance', 'mrt': {'static': False}, 'renderSecondaryNav': True, 'defaultRowNum': 10, 'components': {'finance': {'linkWidth': 230, 'linksRight': ['feature_promo']}}, 'linkMeta': {'feature_promo': {'bundles': {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'isPremium': True, 'autoStart': True, 'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'checkStoreBeforeCall': True, 'placement': 'finance-eyebrow-index'}}}}}, 'Nav-1-NavHelper': {'enablePremiumNav': True, 'navItems': [{'name': 'Yahoo Finance Plus', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}, 'requiresPremiumExperience': True}, {'name': 'Screeners', 'children': [{'name': 'Saved Screeners', 'url': 'https://finance.yahoo.com/screener'}, {'name': 'Equity Screener', 'url': 'https://finance.yahoo.com/screener/new'}, {'name': 'Mutual Fund Screener', 'url': 'https://finance.yahoo.com/screener/mutualfund/new'}, {'name': 'ETF Screener', 'url': 'https://finance.yahoo.com/screener/etf/new'}, {'name': 'Futures Screener', 'url': 'https://finance.yahoo.com/screener/future/new'}, {'name': 'Index Screener', 'url': 'https://finance.yahoo.com/screener/index/new'}, {'name': 'Analyst Rating Screener', 'url': 'https://finance.yahoo.com/screener/analyst_ratings/new?ncid=dcm_320339942_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Technical Events Screener', 'url': 'https://finance.yahoo.com/screener/tradingcentral_event/new?ncid=dcm_320544712_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Smart Money Screener', 'url': 'https://finance.yahoo.com/screener/institutional_interest/new?ncid=dcm_320344326_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Top Holdings Screener', 'url': 'https://finance.yahoo.com/screener/institutional_holdings/new?ncid=dcm_320545006_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}], 'requiresPremiumExperience': True}]}, 'SecondaryNav-0-SecondaryNav': {'enablePremiumNav': True, 'ui': {'enableRelativeUrl': True, 'navCache': True, 'remoteAdapter': True, 'makeSticky': False, 'isNavLink': True, 'relativeLinks': True}, 'featureSwitches': {'useNavSelectLogic': True}, 'i13n': {'itc': 0, 'sec': 'subnav'}, 'site': 'finance', 'navItems': [{'name': 'Screeners', 'children': [{'name': 'Saved Screeners', 'url': 'https://finance.yahoo.com/screener'}, {'name': 'Equity Screener', 'url': 'https://finance.yahoo.com/screener/new'}, {'name': 'Mutual Fund Screener', 'url': 'https://finance.yahoo.com/screener/mutualfund/new'}, {'name': 'ETF Screener', 'url': 'https://finance.yahoo.com/screener/etf/new'}, {'name': 'Futures Screener', 'url': 'https://finance.yahoo.com/screener/future/new'}, {'name': 'Index Screener', 'url': 'https://finance.yahoo.com/screener/index/new'}, {'name': 'Analyst Rating Screener', 'url': 'https://finance.yahoo.com/screener/analyst_ratings/new?ncid=dcm_320339942_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Technical Events Screener', 'url': 'https://finance.yahoo.com/screener/tradingcentral_event/new?ncid=dcm_320544712_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Smart Money Screener', 'url': 'https://finance.yahoo.com/screener/institutional_interest/new?ncid=dcm_320344326_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}, {'name': 'Top holdings screener', 'url': 'https://finance.yahoo.com/screener/institutional_holdings/new?ncid=dcm_320545006_490172245_127172993', 'imageWrapperClasses': 'W(15px) D(ib) Mstart(5px)', 'image': {'url': 'https://s.yimg.com/cv/apiv2/default/20211027/logo-18-18.svg', 'imageClasses': 'Mb(2px)', 'append': True, 'height': 30, 'width': 30}}], 'requiresPremiumExperience': True}]}, 'Lead-2-FinanceHeader': {'messaging': {'enabled': False, 'textId': 'DEFAULT_MESSAGE', 'testMsg': ''}}, 'Lead-3-FeatureBar': {'contentSite': '', 'convertContentUrl': True, 'imageSize': {'width': 272, 'height': 144}, 'scoobyCompat': False, 'ui': {'container_classnames': 'W(100%) Bxz(bb) Bdrs(2px) Maw($maxModuleWidth) Mx(a) D(n)--print', 'strictViewMatch': False, 'wrapper_classnames': 'Bgc(white) Pos(r) Bxz(bb) Maw($newGridWidth) Miw($minGridWidth) Miw(a)!--tab768 Miw(a)!--tab1024 Mstart(a) Mend(a) Px(20px) Pb(10px) D(n)--print', 'prerender': {'enabled': False, 'renderTargetId': 'modal'}, 'link_component': 'WaferLink'}, 'useNCP': True, 'site': 'finance'}, 'Lead-5-QuoteHeader': {'cryptocurrency': {'title': 'CoinMarketCap', 'imgUrl': 'https://s.yimg.com/uc/fin/img/19/10/1990f37.png', 'url': 'https://coinmarketcap.com/', 'className': 'W(110px) H(19px) Va(m)!'}, 'updateQuoteDataOnCheck': False, 'enhanceAddToWL': True, 'displayPageviews': True}, 'Lead-6-QuoteNav': {'tabs': {'CHART': True, 'SUSTAINABILITY': True, 'COMPANY_INSIGHTS': True, 'COMPANY_OUTLOOK': False}, 'tickerConfig': {'^FTSE': {'tabs': {'HISTORICAL_DATA': False}}, '^FTAS': {'tabs': {'HISTORICAL_DATA': False}}, '^FTAI': {'tabs': {'HISTORICAL_DATA': False}}, '^FTMC': {'tabs': {'HISTORICAL_DATA': False}}, '^FTLC': {'tabs': {'HISTORICAL_DATA': False}}, '^STI': {'tabs': {'HISTORICAL_DATA': False}}, '^KLSE': {'tabs': {'HISTORICAL_DATA': False}}, 'FTSEMIB.MI': {'tabs': {'HISTORICAL_DATA': False}}}}, 'Lead-7-Rmp': {'headers': {}, 'useDynamicHostHeader': False, 'passBucket': False, 'usePageSpaceId': False, 'assets': {'critical': True, 'dependencies': {'css': [], 'js': []}, 'name': 'SmartAdDynamicData', 'm_id': 'smart-ad-dynamic-data', 'ctrl': 'SmartAdDynamicData'}, 'endpoint': {'query': {'ctrl': 'SmartAdDynamicData', 'm_id': 'smart-ad-dynamic-data'}, 'path': '/_rcv/remote', 'method': 'POST', 'body': {'m_id': 'smart-ad-dynamic-data', 'ctrl': 'SmartAdDynamicData', 'm_mode': 'json', 'site': 'finance', 'config': {'apiVersion': '2', 'adPositions': ['FB2A', 'FB2B', 'FB2C', 'FB2D', 'LDRB', 'LREC', 'MON', 'LREC2', 'MON2', 'LREC3']}}}, 'httpOptions': {'timeout': 1000, 'cacheTTL': 60000, 'fallbackTTL': 3600000, 'fallbackTimeout': 4000, 'fallbackPerfLabel': '', 'cacheEnabled': False, 'verboseDebug': False, 'perfLabel': 'read_smart_dynamic_data_rmp'}, 'mappedDevice': 'desktop', 'disableEndpoint': False, 'wrapperDiv': {'wrapperDivClass': '', 'wrapperDivId': ''}, 'serviceId': 'nel_ms', 'enableNonIstioFallback': False, 'pathParamsToForward': ['symbol']}, 'Col1-1-Financials': {'canvass': {'tickerTagging': True, 'enableRelatedTags': False, 'messagesPerPage': 20, 'oauthConsumerKey': 'finance.oauth.client.canvass.prod.consumerKey', 'oauthConsumerSecret': 'finance.oauth.client.canvass.prod.consumerSecret', 'uploadOptions': 'TEXT,SMARTLINKS,GIF', 'rankingProfile': 'canvassPCRDProfile', 'ui': {'userLabels': {'enable': True, 'labels': {'BULLISH': {'title': 'Bullish', 'icon': {'name': 'traffic', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle'}}}, 'NEUTRAL': {'title': 'Neutral', 'icon': {'name': 'arrow-right', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle', 'transform': 'translateY(-1px)'}}}, 'BEARISH': {'title': 'Bearish', 'icon': {'name': 'traffic', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle', 'transform': 'scaleY(-1)'}}}}}, 'enableRepliesToggle': True}}, 'videoConfig': {'videoFetchCount': 10, 'videoProps': {'expName': 'qsp', 'endscreen': {'show': False}, 'docking': {'enableOnScrollDown': False, 'enableOnScrollUp': False, 'fadeInAnimation': True, 'position': {'left': 'ref', 'right': 0, 'bottom': 55}}, 'vpaidTimeout': 10}}, 'adReTargetBeacon': {'enabled': True, 'url': 'https://sp.analytics.yahoo.com/spp.pl?a=10000&.yp=428726'}, 'chart': {'urlImagePrefix': 'https://s.yimg.com/uc', 'isChartTab': True, 'toolBarItems': ['indicators', 'comparisons', 'separator', 'ranges', 'separator', 'intervals', 'chartTypes', 'drawButton', 'events'], 'font': '500 11px Yahoo Sans Finance, Helvetica Neue, Helvetica, sans-serif', 'rightBarItems': ['settings', 'share', 'reset'], 'useNextGenHistory': True}, 'cryptocurrency': {'title': 'CoinMarketCap', 'imgUrl': 'https://s.yimg.com/uc/fin/img/19/10/1990f37.png', 'url': 'https://coinmarketcap.com/', 'className': 'W(110px) H(19px) Va(m)!'}, 'classNames': {'emptyState': 'Ta(c) D(tb) W(100%) Bgc($lv4BgColor) H($company360EmptyHeight) smartphone_H(220px)'}, 'subtabNavItems': {'CURRENCY': [], 'EQUITY': [{'category': 'summary', 'title': 'ALL', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'all news'}}, {'category': 'news', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'latest news'}}, {'category': 'press-releases', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'press releases'}}], 'ETF': [], 'FUTURE': [], 'INDEX': [], 'MUTUALFUND': [], 'OPTION': [], 'MONEYMARKET': [], 'CRYPTOCURRENCY': []}, 'bundleName': 'tdv2-applet-rmp', 'name': 'Rmp', 'compositeConfig': {'serviceId': 'nel_ms', 'assets': {'m_id': 'spotIm', 'ctrl': 'SpotImJAC'}, 'endpoint': {'method': 'POST', 'path': '/_rcv/remote', 'body': {'ctrl': 'SpotImJAC', 'm_id': 'spotIm', 'm_mode': 'json', 'site': 'finance', 'config': {'conversationEnabled': True, 'leftRailWidth': '', 'messages_cnt': 10, 'passiveReactionEnabled': True, 'showCommentCount': True, 'stageSpotId': 'sp_n93tLsKu', 'spotId': 'sp_Rba9aFpG', 'useStageToken': False, 'useCase': 'qsp', 'xhrPathPrefix': '/nel_ms/_rcv/remote'}}}, 'wrapperDiv': {'wrapperDivClass': 'wafer-rapid-module', 'wrapperDivId': 'openweb-community'}}, 'fredTickerConfig': {'A191RP1Q027SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RP1A027NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RL1Q225SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RL1A225NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDP.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDPA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDPC1.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDPCA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'CPIAUCSL.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'CUUS0000SA0.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'PAYEMS.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'NPPTTL.I': {'dataSource': 'Automatic Data Processing, Inc.'}, 'PPIFIS.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'HOUST.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MSPNHSUS.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MSPUS.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MEHOINUSA646N.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MEHOINUSA672N.I': {'dataSource': 'U.S. Bureau of the Census'}, 'UNRATE.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'A939RX0Q048SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A939RC0A052NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A939RC0Q052SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'AMTMTI.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MNFCTRMPCSMSA.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MNFCTRSMSA.I': {'dataSource': 'U.S. Bureau of the Census'}, 'BOPGSTB.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}}, 'promoConfig': {'imgUrl': 'https://s.yimg.com/cv/apiv2/default/StockPicks_-_E0E4E9_border-1@2x.png', 'enabled': True, 'hideFromHighValueUsers': True, 'liveTitle': 'Yahoo Finance Plus', 'eventUrl': 'https://ad.doubleclick.net/ddm/trackclk/N360801.1913355YAHOOADMANAGER/B23644564.298415483;dc_trk_aid=490172245;dc_trk_cid=127172993;dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;tfua=;gdpr=${GDPR};gdpr_consent=${GDPR_CONSENT_755};ltd='}, 'promoImgUrl': {'src': 'https://s.yimg.com/cv/apiv2/yahoo_finance/yf_company360.png'}}, 'Col2-1-MonalixaComponent': {'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'placement': 'finance-desktop-web-qsp-rightrail'}, 'Col2-6-Footer': {'footer': {'aboutUrl': 'https://policies.oath.com/us/en/oath/privacy/adinfo/index.html', 'companyName': 'Yahoo', 'disclaimerUrl': 'https://help.yahoo.com/kb/finance-for-web/SLN2310.html?locale=en_US', 'helpUrl': 'https://help.yahoo.com/kb/finance-for-web', 'privacyText': 'FOOTER_PRIVACY_TEXT', 'privacyUrl': 'https://policies.oath.com/us/en/oath/privacy/index.html', 'suggestUrl': 'https://yahoo.uservoice.com/forums/382977', 'termsUrl': 'https://legal.yahoo.com/us/en/yahoo/terms/otos/index.html', 'sitemapUrl': 'https://finance.yahoo.com/sitemap/'}, 'followbutton': {'twitter_follow': 'https://twitter.com/YahooFinance', 'linkedin_follow': 'https://www.linkedin.com/company/yahoo-finance', 'facebook_follow': 'https://facebook.com/yahoofinance'}, 'logoUrl': 'https://s.yimg.com/os/finance/dd-site/img/Oath_YFin_Logo_EN.svg'}, 'Nav-0-DesktopNav-0-DesktopNav': {'closeBtn': False, 'renderMobileOnServer': False, 'renderSecondaryNav': True, 'i13n': {'sec': 'navrail', 'itc': 0}, 'i13n_follow': {'sec': 'social-flw', 'elm': 'follow', 'outcm': 'follow', 'itc': 0, 'mpos': ''}, 'ui': {'bgColor': 'Bgc(#f9f9f9)', 'darkTheme': False, 'displayGroupTitle': False, 'headerTitle': 'finance', 'highlightPropertyHome': False, 'isNavLink': True, 'mailBadgeClass': 'Bgc($c-fuji-red-1-a) Bdrs(11px) Bdc(#fff) Bdw(2px) Bds(s) W(8px) H(8px) Pos(a) T(8px) Start(26px)', 'makeSticky': False, 'navCache': True, 'navSections': 'property', 'relativeLinks': True, 'remoteAdapter': True, 'renderLogoNav': False, 'renderPropertyNav': True, 'sections': ['property'], 'showMailCount': False, 'showPropertyHome': True, 'navFont': 'Ff($yahooSansFinanceFont)!', 'dividerClasses': 'H(0)!', 'offsetHack': 'Pt(2px) Bgc(t)!', 'navMainLeftClasses': 'Mend(80px)', 'leftNavClasses': 'Pstart(10px) Mstart(-10px) nr-applet-main-nav-right_Ov(inh)!', 'navTitleClasses': 'Pstart(10px) Mstart(-10px)!', 'linkItemClasses': 'Bgc($linkColor):h W(230px)!', 'subnavLinkClasses': 'Tt(n)! C($primaryColor) C(white)!:h Maw(200px)!', 'selectColor': 'C($finNavBlueText)! Bdbw(0px) H(42px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'subnavClasses': 'Bgc($lv3BgColor)!', 'hoverColor': 'C($finNavBlueText):h', 'overrideColor': 'C($finNavBlueText)', 'propertyHomeSelectColor': 'Bdbc($linkColor) Bdbs(s)! Bdbw(4px) H(38px)', 'propertyHomeClasses': 'Tt(c)! Bdbc($linkColor):h Bdbs(s):h Bdbw(4px):h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkClasses': 'Tt(n)!', 'navLinkClassesOnHover': 'Bdbc($linkColor)!:h Bdbs(s)!:h Bdbw(4px)!:h H(38px) Trstf(l) Trsde(0s) Trsdu(.18s) Trsp(border-bottom-width)', 'navLinkNonHoverClasses': 'C($topNavLinkGray) Bdbs(n)', 'highlightTriangleColor': 'transparent transparent #fff', 'navMainRightClasses': 'Bdc(t) Bdrs(1.5px) Bdbs(s):h Px(10px)!'}, 'theme': {'daaPrivacyRightsIcon': 'https://s.yimg.com/cv/apiv2/default/20200109/Privacy_Rights_icon.png', 'daaPrivacyRightsIconClasses': 'Mstart(1px) Va(m) W(20px) H(20px)', 'mobileIconHeight': 60, 'mobileIconWidth': 150, 'mobileSectionBorder': {}}, 'account_switch': {'isEnabled': True}, 'featureSwitches': {'cobrandLogo': False, 'followButtons': False, 'navLogoAlign': False, 'navrailCollapse': False, 'uhMagDesign': True, 'useNavSelectLogic': True, 'disableDivider': True, 'enableHighlightTriangle': True, 'useSubnavTitleSlk': True}, 'profile': {'mode': 'client', 'avatarSize': '36px', 'loginBaseUrl': 'https://login.yahoo.com/config/login', 'settingUrl': 'https://edit.yahoo.com/config/eval_profile', 'urls': {'signed_in': {'protocol': 'https', 'hostname': 'login.yahoo.com', 'pathname': '/config/login', 'query': {}}, 'signed_out': {'protocol': 'https', 'hostname': 'login.yahoo.com', 'pathname': '/config/login', 'query': {'.direct': 2, 'logout': 1}}, 'signed_out_as': {'protocol': 'https', 'hostname': 'login.yahoo.com', 'pathname': '/config/login', 'query': {'.direct': 1, 'logout_all': 1}}, 'account_info': {'protocol': 'https', 'hostname': 'edit.yahoo.com', 'pathname': '/config/eval_profile', 'query': {}}}}, 'mobileSectionMeta': {'property': {}, 'yahooSites': {'listMeta': {}}, 'services': {}, 'apps': {'listMeta': {}}, 'tools': {'listMeta': {}}}, 'components': {'propertyHome': {'title': 'PROPERTY_HOME', 'dragonFlyKey': 'PROPERTY_HOME'}, 'finance': {'title': 'Finance', 'link': 'https://finance.yahoo.com', 'collapse': True, 'type': 'finance', 'linkWidth': 230, 'i13n': {}, 'links': True, 'propertyColor': '#efefef', 'linksRight': ['feature_promo']}}, 'linkMeta': {'finance': {'link': 'https://finance.yahoo.com'}, 'feature_promo': {'bundles': {'bundleName': 'tdv2-applet-monalixa', 'name': 'MonalixaComponent', 'props': {'isPremium': True, 'autoStart': True, 'appid': 'e2423aea-ed6b-4493-ba57-7d159894084c', 'checkStoreBeforeCall': True, 'placement': 'finance-eyebrow-index'}}}}, 'enablePremiumNav': True, 'navItems': [{'name': 'Personal Finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}]}], 'site': 'finance', 'mrt': {'static': False}, 'defaultRowNum': 10}, 'Nav-0-DesktopNav-0-DesktopNav-acct-switch-0-AccountSwitch': {'isEnabled': True, 'clientRender': True, 'accountListLength': 3, 'enableAlphatar': True, 'host': 'login.yahoo.com', 'urlReplacements': {'CRUMB': {'.crumb': '{crumb}'}, 'DONE': {'.done': '{doneUrl}'}, 'DONE_YAHOO': {'.done': '{doneUrlYahoo}'}}, 'urls': {'accountInfo': {'protocol': 'https', 'path': '/account/personalinfo/', 'query': ['DONE', {'.intl': '{intl}'}, {'.lang': '{lang}'}, {'.partner': '{partner}'}, {'.src': '{site}'}, {'activity': 'uh-acctinfo'}]}, 'switchUrl': {'protocol': 'https', 'path': '/d', 'query': ['CRUMB', {'.intl': '{intl}'}, {'.lang': '{lang}'}, {'.partner': '{partner}'}, {'.src': '{site}'}, {'login': '{alias}'}, {'as': '1'}, 'DONE']}, 'manageUrl': {'protocol': 'https', 'path': '/manage_account', 'query': ['CRUMB', {'.intl': '{intl}'}, {'.lang': '{lang}'}, {'.partner': '{partner}'}, {'.src': '{site}'}, {'activity': 'uh-addacct'}, 'DONE']}, 'logoutUrl': {'protocol': 'https', 'path': '/account/logout', 'query': ['CRUMB', {'.src': '{site}'}, {'.intl': '{intl}'}, {'.lang': '{lang}'}, {'.partner': '{partner}'}, {'logout_all': '1'}, {'.direct': '1'}, 'DONE_YAHOO']}, 'requestUrl': {'protocol': 'https', 'path': '/w/device_users', 'query': ['CRUMB']}}, 'styles': {'account_switch_main': {'wrapper': 'Py(16px)', 'account_info': 'C($c-fuji-grey-l) C(asLinkHoverColor):h Td(n) Td(n):h D(ib) Mstart(asIconWidth) Pend(asEndPadding) Whs(nw)'}, 'signed_out': {'wrapper': 'Py(14px) Ta(c) Bdt(asMenuBorder)', 'content': 'C($c-fuji-grey-l) C(asLinkHoverColor):h Td(n) Td(n):h'}, 'add_accounts': {'icon_wrapper': 'W(asIconWidth) D(ib) Va(t) Ta(c)', 'icon_content': 'C($c-fuji-grey-l) Fz(30px) Fw(200) Lh(1.5)', 'text': 'Pt(16px) D(ib) C($c-fuji-grey-l) Zoom Fz(15px)', 'wrapper': 'Bdt(asMenuBorder) Td(n) Td(n):h D(b) Whs(nw) Bgc(asMenuHoverBgc):h H(50px) Pend(asEndPadding)'}, 'avatar': {'size': 40, 'color': '#400090', 'content': 'Bdrs(100px) Bgz(cv) D(ib)', 'panel_content': 'D(ib) Va(m) Bgz(cv) Bdrs(100px)', 'name': 'D(n) Lh(2.6) Mstart(4px)', 'wrapper': 'Zoom Va(t) Ta(c) Fl(start) W(asIconWidth)'}, 'main_account': {'alias': 'C(asLightTextColor) Ell Pt(2px)', 'alias_wrapper': 'Ell C(#000) Fz(13px)', 'content': 'C($c-fuji-grey-l) D(ib) Fz(13px) Pt(10px)', 'name': 'C($c-fuji-grey-l) Ell Fz(15px)', 'name_wrapper': 'Fz(15px) Ell', 'user_info_wrapper': 'W(2/3) D(ib) Zoom Lts(n) Tren(a) Va(t)', 'wrapper': 'Cf'}, 'secondary_accounts': {'list': 'Pos(r) M(0) P(0) List(n)', 'list_item': 'Bdt(asMenuBorder)', 'anchor': 'Td(n) Td(n):h Py(16px) D(b) Cf C(#000) Bgc(asMenuHoverBgc):h'}}}}}, 'CrumbStore': {'crumb': 'Z4T/tWHS.aU'}, 'CompositeStore': {'_instances': {'UH-0-HeaderDesktop': {'status': 'initialized'}, 'Nav-0-DesktopNav': {'status': 'initialized'}, 'SecondaryNav-0-SecondaryNav': {'status': 'initialized'}, 'Lead-2-FinanceHeader': {'status': 'initialized'}, 'Lead-3-FeatureBar': {'status': 'initialized'}, 'Lead-5-QuoteHeader': {'status': 'initialized'}, 'Lead-7-Rmp': {'status': 'initialized'}, 'Col1-1-Financials': {'status': 'initialized'}, 'Col2-1-MonalixaComponent': {'status': 'initialized'}, 'Nav-0-DesktopNav-0-DesktopNav': {'status': 'initialized'}, 'Nav-0-DesktopNav-0-DesktopNav-acct-switch-0-AccountSwitch': {'status': 'initialized'}}}, 'MonalixaStore': {'placements': {}, 'freqCappingEnabled': True}, 'StreamStore': {'articleCategory': {'term': '', 'label': ''}, 'pageCategory': 'YFINANCE:AAPL', 'fallbackCategory': 'YFINANCE:AAPL', 'pageSubsite': ''}, 'UserStore': {'guid': '', 'login': '', 'alias': '', 'firstName': '', 'comscoreParams': {'c14': -1}, 'isSignedIn': False, 'isRecognized': False, 'isLoaded': True}, 'ProfileStore': {'err': {}, 'guid': '', 'profileUrl': '', 'userProfile': {'nickName': '', 'imageUrl': ''}, '_isLoaded': False, '_isRecognized': False, '_isSignedIn': False}, 'QuotePageStore': {'error': None, 'isPageComplete': True, 'pageData': {'componentConfig': {'compositeConfig': {'serviceId': 'nel_ms', 'assets': {'m_id': 'spotIm', 'ctrl': 'SpotImJAC'}, 'endpoint': {'method': 'POST', 'path': '/_rcv/remote', 'body': {'ctrl': 'SpotImJAC', 'm_id': 'spotIm', 'm_mode': 'json', 'site': 'finance', 'config': {'useStageToken': False, 'leftRailWidth': '', 'showCommentCount': True, 'passiveReactionEnabled': True, 'messages_cnt': 10, 'useCase': 'qsp', 'xhrPathPrefix': '/nel_ms/_rcv/remote', 'stageSpotId': 'sp_n93tLsKu', 'spotId': 'sp_Rba9aFpG', 'conversationEnabled': True}}}, 'wrapperDiv': {'wrapperDivClass': 'wafer-rapid-module', 'wrapperDivId': 'openweb-community'}}, 'adReTargetBeacon': {'enabled': True, 'url': 'https://sp.analytics.yahoo.com/spp.pl?a=10000&.yp=428726'}, 'name': 'Rmp', 'bundleName': 'tdv2-applet-rmp', 'classNames': {'emptyState': 'Ta(c) D(tb) W(100%) Bgc($lv4BgColor) H($company360EmptyHeight) smartphone_H(220px)'}, 'promoConfig': {'imgUrl': 'https://s.yimg.com/cv/apiv2/default/StockPicks_-_E0E4E9_border-1@2x.png', 'enabled': True, 'hideFromHighValueUsers': True, 'liveTitle': 'Yahoo Finance Plus', 'eventUrl': 'https://ad.doubleclick.net/ddm/trackclk/N360801.1913355YAHOOADMANAGER/B23644564.298415483;dc_trk_aid=490172245;dc_trk_cid=127172993;dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;tfua=;gdpr=${GDPR};gdpr_consent=${GDPR_CONSENT_755};ltd='}, 'subtabNavItems': {'FUTURE': [], 'EQUITY': [{'category': 'summary', 'title': 'ALL', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'all news'}}, {'category': 'news', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'latest news'}}, {'category': 'press-releases', 'i13n': {'sec': 'qsp-sub-tab', 'slk': 'press releases'}}], 'CURRENCY': [], 'INDEX': [], 'CRYPTOCURRENCY': [], 'OPTION': [], 'ETF': [], 'MUTUALFUND': [], 'MONEYMARKET': []}, 'cryptocurrency': {'title': 'CoinMarketCap', 'imgUrl': 'https://s.yimg.com/uc/fin/img/19/10/1990f37.png', 'url': 'https://coinmarketcap.com/', 'className': 'W(110px) H(19px) Va(m)!'}, 'fredTickerConfig': {'PPIFIS.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'MSPUS.I': {'dataSource': 'U.S. Bureau of the Census'}, 'A939RC0Q052SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'CPIAUCSL.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'MNFCTRMPCSMSA.I': {'dataSource': 'U.S. Bureau of the Census'}, 'MSPNHSUS.I': {'dataSource': 'U.S. Bureau of the Census'}, 'GDPA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'HOUST.I': {'dataSource': 'U.S. Bureau of the Census'}, 'A191RP1A027NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'GDPCA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'CUUS0000SA0.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'GDP.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RL1A225NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'MEHOINUSA646N.I': {'dataSource': 'U.S. Bureau of the Census'}, 'UNRATE.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'AMTMTI.I': {'dataSource': 'U.S. Bureau of the Census'}, 'A939RX0Q048SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RP1Q027SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'MEHOINUSA672N.I': {'dataSource': 'U.S. Bureau of the Census'}, 'A939RC0A052NBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'BOPGSTB.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'A191RL1Q225SBEA.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'NPPTTL.I': {'dataSource': 'Automatic Data Processing, Inc.'}, 'GDPC1.I': {'dataSource': 'U.S. Bureau of Economic Analysis'}, 'PAYEMS.I': {'dataSource': 'U.S. Bureau of Labor Statistics'}, 'MNFCTRSMSA.I': {'dataSource': 'U.S. Bureau of the Census'}}, 'promoImgUrl': {'src': 'https://s.yimg.com/cv/apiv2/yahoo_finance/yf_company360.png'}, 'canvass': {'tickerTagging': True, 'enableRelatedTags': False, 'messagesPerPage': 20, 'oauthConsumerKey': 'finance.oauth.client.canvass.prod.consumerKey', 'oauthConsumerSecret': 'finance.oauth.client.canvass.prod.consumerSecret', 'uploadOptions': 'TEXT,SMARTLINKS,GIF', 'rankingProfile': 'canvassPCRDProfile', 'ui': {'userLabels': {'enable': True, 'labels': {'BULLISH': {'title': 'Bullish', 'icon': {'name': 'traffic', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle'}}}, 'NEUTRAL': {'title': 'Neutral', 'icon': {'name': 'arrow-right', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle', 'transform': 'translateY(-1px)'}}}, 'BEARISH': {'title': 'Bearish', 'icon': {'name': 'traffic', 'className': 'Mend(6px)', 'style': {'verticalAlign': 'middle', 'transform': 'scaleY(-1)'}}}}}, 'enableRepliesToggle': True}}, 'videoConfig': {'videoFetchCount': 10, 'videoProps': {'expName': 'qsp', 'endscreen': {'show': False}, 'docking': {'enableOnScrollDown': False, 'enableOnScrollUp': False, 'fadeInAnimation': True, 'position': {'left': 'ref', 'right': 0, 'bottom': 55}}, 'vpaidTimeout': 10}}, 'chart': {'urlImagePrefix': 'https://s.yimg.com/uc', 'isChartTab': True, 'toolBarItems': ['indicators', 'comparisons', 'separator', 'ranges', 'separator', 'intervals', 'chartTypes', 'drawButton', 'events'], 'font': '500 11px Yahoo Sans Finance, Helvetica Neue, Helvetica, sans-serif', 'rightBarItems': ['settings', 'share', 'reset'], 'useNextGenHistory': True}}}}, 'FinancialTemplateStore': {'template': [{'key': 'TotalAssets', 'title': 'TOTAL_ASSETS', 'children': [{'key': 'CurrentAssets', 'title': 'CURRENT_ASSETS', 'children': [{'key': 'CashCashEquivalentsAndShortTermInvestments', 'title': 'CASH_CASH_EQUIVALENTS_AND_SHORT_TERM_INVESTMENTS', 'children': [{'key': 'CashAndCashEquivalents', 'title': 'CASH_AND_CASH_EQUIVALENTS', 'children': [{'key': 'CashFinancial', 'title': 'CASH'}, {'key': 'CashEquivalents', 'title': 'CASH_EQUIVALENTS'}]}, {'key': 'OtherShortTermInvestments', 'title': 'OTHER_SHORT_TERM_INVESTMENTS'}]}, {'key': 'Receivables', 'title': 'RECEIVABLES', 'children': [{'key': 'AccountsReceivable', 'title': 'ACCOUNTS_RECEIVABLE', 'children': [{'key': 'GrossAccountsReceivable', 'title': 'GROSS_ACCOUNTS_RECEIVABLE'}, {'key': 'AllowanceForDoubtfulAccountsReceivable', 'title': 'ALLOWANCE_FOR_DOUBTFUL_ACCOUNTS_RECEIVABLE'}]}, {'key': 'LoansReceivable', 'title': 'LOANS_RECEIVABLE'}, {'key': 'NotesReceivable', 'title': 'NOTES_RECEIVABLE'}, {'key': 'AccruedInterestReceivable', 'title': 'ACCRUED_INTEREST_RECEIVABLE'}, {'key': 'TaxesReceivable', 'title': 'TAXES_RECEIVABLE'}, {'key': 'DuefromRelatedPartiesCurrent', 'title': 'DUEFROM_RELATED_PARTIES_CURRENT'}, {'key': 'OtherReceivables', 'title': 'OTHER_RECEIVABLES'}, {'key': 'ReceivablesAdjustmentsAllowances', 'title': 'RECEIVABLES_ADJUSTMENTS_ALLOWANCES'}]}, {'key': 'Inventory', 'title': 'INVENTORY', 'children': [{'key': 'RawMaterials', 'title': 'RAW_MATERIALS'}, {'key': 'WorkInProcess', 'title': 'WORK_IN_PROCESS'}, {'key': 'FinishedGoods', 'title': 'FINISHED_GOODS'}, {'key': 'OtherInventories', 'title': 'OTHER_INVENTORIES'}, {'key': 'InventoriesAdjustmentsAllowances', 'title': 'INVENTORIES_ADJUSTMENTS_ALLOWANCES'}]}, {'key': 'PrepaidAssets', 'title': 'PREPAID_ASSETS'}, {'key': 'RestrictedCash', 'title': 'RESTRICTED_CASH'}, {'key': 'CurrentDeferredAssets', 'title': 'CURRENT_DEFERRED_ASSETS', 'children': [{'key': 'CurrentDeferredTaxesAssets', 'title': 'CURRENT_DEFERRED_TAXES_ASSETS'}]}, {'key': 'AssetsHeldForSaleCurrent', 'title': 'ASSETS_HELD_FOR_SALE_CURRENT'}, {'key': 'HedgingAssetsCurrent', 'title': 'HEDGING_ASSETS_CURRENT'}, {'key': 'OtherCurrentAssets', 'title': 'OTHER_CURRENT_ASSETS'}]}, {'key': 'TotalNonCurrentAssets', 'title': 'TOTAL_NON_CURRENT_ASSETS', 'children': [{'key': 'NetPPE', 'title': 'NET_PPE', 'children': [{'key': 'GrossPPE', 'title': 'GROSS_PPE', 'children': [{'key': 'Properties', 'title': 'PROPERTIES'}, {'key': 'LandAndImprovements', 'title': 'LAND_AND_IMPROVEMENTS'}, {'key': 'BuildingsAndImprovements', 'title': 'BUILDINGS_AND_IMPROVEMENTS'}, {'key': 'MachineryFurnitureEquipment', 'title': 'MACHINERY_FURNITURE_EQUIPMENT'}, {'key': 'OtherProperties', 'title': 'OTHER_PROPERTIES'}, {'key': 'ConstructionInProgress', 'title': 'CONSTRUCTION_IN_PROGRESS'}, {'key': 'Leases', 'title': 'LEASES'}]}, {'key': 'AccumulatedDepreciation', 'title': 'ACCUMULATED_DEPRECIATION'}]}, {'key': 'GoodwillAndOtherIntangibleAssets', 'title': 'GOODWILL_AND_OTHER_INTANGIBLE_ASSETS', 'children': [{'key': 'Goodwill', 'title': 'GOODWILL'}, {'key': 'OtherIntangibleAssets', 'title': 'OTHER_INTANGIBLE_ASSETS'}]}, {'key': 'InvestmentProperties', 'title': 'INVESTMENT_PROPERTIES'}, {'key': 'InvestmentsAndAdvances', 'title': 'INVESTMENTS_AND_ADVANCES', 'children': [{'key': 'LongTermEquityInvestment', 'title': 'LONG_TERM_EQUITY_INVESTMENT', 'children': [{'key': 'InvestmentsinSubsidiariesatCost', 'title': 'INVESTMENTSIN_SUBSIDIARIESAT_COST'}, {'key': 'InvestmentsinAssociatesatCost', 'title': 'INVESTMENTSIN_ASSOCIATESAT_COST'}, {'key': 'InvestmentsInOtherVenturesUnderEquityMethod', 'title': 'INVESTMENTS_IN_OTHER_VENTURES_UNDER_EQUITY_METHOD'}, {'key': 'InvestmentsinJointVenturesatCost', 'title': 'INVESTMENTSIN_JOINT_VENTURESAT_COST'}]}, {'key': 'InvestmentinFinancialAssets', 'title': 'INVESTMENTIN_FINANCIAL_ASSETS', 'children': [{'key': 'TradingSecurities', 'title': 'TRADING_SECURITIES'}, {'key': 'FinancialAssetsDesignatedasFairValueThroughProfitorLossTotal', 'title': 'FINANCIAL_ASSETS_DESIGNATEDAS_FAIR_VALUE_THROUGH_PROFITOR_LOSS_TOTAL'}, {'key': 'AvailableForSaleSecurities', 'title': 'AVAILABLE_FOR_SALE_SECURITIES'}, {'key': 'HeldToMaturitySecurities', 'title': 'HELD_TO_MATURITY_SECURITIES'}]}, {'key': 'OtherInvestments', 'title': 'OTHER_INVESTMENTS'}]}, {'key': 'FinancialAssets', 'title': 'FINANCIAL_ASSETS'}, {'key': 'NonCurrentAccountsReceivable', 'title': 'NON_CURRENT_ACCOUNTS_RECEIVABLE'}, {'key': 'NonCurrentNoteReceivables', 'title': 'NON_CURRENT_NOTE_RECEIVABLES'}, {'key': 'DuefromRelatedPartiesNonCurrent', 'title': 'DUEFROM_RELATED_PARTIES_NON_CURRENT'}, {'key': 'NonCurrentDeferredAssets', 'title': 'NON_CURRENT_DEFERRED_ASSETS', 'children': [{'key': 'NonCurrentDeferredTaxesAssets', 'title': 'NON_CURRENT_DEFERRED_TAXES_ASSETS'}]}, {'key': 'NonCurrentPrepaidAssets', 'title': 'NON_CURRENT_PREPAID_ASSETS'}, {'key': 'DefinedPensionBenefit', 'title': 'DEFINED_PENSION_BENEFIT'}, {'key': 'OtherNonCurrentAssets', 'title': 'OTHER_NON_CURRENT_ASSETS'}]}]}, {'key': 'TotalLiabilitiesNetMinorityInterest', 'title': 'TOTAL_LIABILITIES_NET_MINORITY_INTEREST', 'children': [{'key': 'CurrentLiabilities', 'title': 'CURRENT_LIABILITIES', 'children': [{'key': 'PayablesAndAccruedExpenses', 'title': 'PAYABLES_AND_ACCRUED_EXPENSES', 'children': [{'key': 'Payables', 'title': 'PAYABLES', 'children': [{'key': 'AccountsPayable', 'title': 'ACCOUNTS_PAYABLE'}, {'key': 'TotalTaxPayable', 'title': 'TOTAL_TAX_PAYABLE', 'children': [{'key': 'IncomeTaxPayable', 'title': 'INCOME_TAX_PAYABLE'}]}, {'key': 'DividendsPayable', 'title': 'DIVIDENDS_PAYABLE'}, {'key': 'DuetoRelatedPartiesCurrent', 'title': 'DUETO_RELATED_PARTIES_CURRENT'}, {'key': 'OtherPayable', 'title': 'OTHER_PAYABLE'}]}, {'key': 'CurrentAccruedExpenses', 'title': 'CURRENT_ACCRUED_EXPENSES', 'children': [{'key': 'InterestPayable', 'title': 'INTEREST_PAYABLE'}]}]}, {'key': 'CurrentProvisions', 'title': 'CURRENT_PROVISIONS'}, {'key': 'PensionandOtherPostRetirementBenefitPlansCurrent', 'title': 'PENSIONAND_OTHER_POST_RETIREMENT_BENEFIT_PLANS_CURRENT'}, {'key': 'CurrentDebtAndCapitalLeaseObligation', 'title': 'CURRENT_DEBT_AND_CAPITAL_LEASE_OBLIGATION', 'children': [{'key': 'CurrentDebt', 'title': 'CURRENT_DEBT', 'children': [{'key': 'CurrentNotesPayable', 'title': 'CURRENT_NOTES_PAYABLE'}, {'key': 'CommercialPaper', 'title': 'COMMERCIAL_PAPER'}, {'key': 'LineOfCredit', 'title': 'LINE_OF_CREDIT'}, {'key': 'OtherCurrentBorrowings', 'title': 'OTHER_CURRENT_BORROWINGS'}]}, {'key': 'CurrentCapitalLeaseObligation', 'title': 'CURRENT_CAPITAL_LEASE_OBLIGATION'}]}, {'key': 'CurrentDeferredLiabilities', 'title': 'CURRENT_DEFERRED_LIABILITIES', 'children': [{'key': 'CurrentDeferredTaxesLiabilities', 'title': 'CURRENT_DEFERRED_TAXES_LIABILITIES'}, {'key': 'CurrentDeferredRevenue', 'title': 'CURRENT_DEFERRED_REVENUE'}]}, {'key': 'OtherCurrentLiabilities', 'title': 'OTHER_CURRENT_LIABILITIES'}]}, {'key': 'TotalNonCurrentLiabilitiesNetMinorityInterest', 'title': 'TOTAL_NON_CURRENT_LIABILITIES_NET_MINORITY_INTEREST', 'children': [{'key': 'LongTermProvisions', 'title': 'LONG_TERM_PROVISIONS'}, {'key': 'LongTermDebtAndCapitalLeaseObligation', 'title': 'LONG_TERM_DEBT_AND_CAPITAL_LEASE_OBLIGATION', 'children': [{'key': 'LongTermDebt', 'title': 'LONG_TERM_DEBT'}, {'key': 'LongTermCapitalLeaseObligation', 'title': 'LONG_TERM_CAPITAL_LEASE_OBLIGATION'}]}, {'key': 'NonCurrentDeferredLiabilities', 'title': 'NON_CURRENT_DEFERRED_LIABILITIES', 'children': [{'key': 'NonCurrentDeferredTaxesLiabilities', 'title': 'NON_CURRENT_DEFERRED_TAXES_LIABILITIES'}, {'key': 'NonCurrentDeferredRevenue', 'title': 'NON_CURRENT_DEFERRED_REVENUE'}]}, {'key': 'TradeandOtherPayablesNonCurrent', 'title': 'TRADEAND_OTHER_PAYABLES_NON_CURRENT'}, {'key': 'DuetoRelatedPartiesNonCurrent', 'title': 'DUETO_RELATED_PARTIES_NON_CURRENT'}, {'key': 'NonCurrentAccruedExpenses', 'title': 'NON_CURRENT_ACCRUED_EXPENSES'}, {'key': 'EmployeeBenefits', 'title': 'EMPLOYEE_BENEFITS', 'children': [{'key': 'NonCurrentPensionAndOtherPostretirementBenefitPlans', 'title': 'NON_CURRENT_PENSION_AND_OTHER_POSTRETIREMENT_BENEFIT_PLANS'}]}, {'key': 'DerivativeProductLiabilities', 'title': 'DERIVATIVE_PRODUCT_LIABILITIES'}, {'key': 'PreferredSecuritiesOutsideStockEquity', 'title': 'PREFERRED_SECURITIES_OUTSIDE_STOCK_EQUITY'}, {'key': 'RestrictedCommonStock', 'title': 'RESTRICTED_COMMON_STOCK'}, {'key': 'LiabilitiesHeldforSaleNonCurrent', 'title': 'LIABILITIES_HELDFOR_SALE_NON_CURRENT'}, {'key': 'OtherNonCurrentLiabilities', 'title': 'OTHER_NON_CURRENT_LIABILITIES'}]}]}, {'key': 'TotalEquityGrossMinorityInterest', 'title': 'TOTAL_EQUITY_GROSS_MINORITY_INTEREST', 'children': [{'key': 'TotalPartnershipCapital', 'title': 'TOTAL_PARTNERSHIP_CAPITAL', 'children': [{'key': 'LimitedPartnershipCapital', 'title': 'LIMITED_PARTNERSHIP_CAPITAL'}, {'key': 'GeneralPartnershipCapital', 'title': 'GENERAL_PARTNERSHIP_CAPITAL'}]}, {'key': 'StockholdersEquity', 'title': 'STOCKHOLDERS_EQUITY', 'children': [{'key': 'CapitalStock', 'title': 'CAPITAL_STOCK', 'children': [{'key': 'PreferredStock', 'title': 'PREFERRED_STOCK'}, {'key': 'CommonStock', 'title': 'COMMON_STOCK'}, {'key': 'OtherCapitalStock', 'title': 'OTHER_CAPITAL_STOCK'}]}, {'key': 'AdditionalPaidInCapital', 'title': 'ADDITIONAL_PAID_IN_CAPITAL'}, {'key': 'RetainedEarnings', 'title': 'RETAINED_EARNINGS'}, {'key': 'TreasuryStock', 'title': 'TREASURY_STOCK'}, {'key': 'GainsLossesNotAffectingRetainedEarnings', 'title': 'GAINS_LOSSES_NOT_AFFECTING_RETAINED_EARNINGS', 'children': [{'key': 'UnrealizedGainLoss', 'title': 'UNREALIZED_GAIN_LOSS'}, {'key': 'MinimumPensionLiabilities', 'title': 'MINIMUM_PENSION_LIABILITIES'}, {'key': 'ForeignCurrencyTranslationAdjustments', 'title': 'FOREIGN_CURRENCY_TRANSLATION_ADJUSTMENTS'}, {'key': 'FixedAssetsRevaluationReserve', 'title': 'FIXED_ASSETS_REVALUATION_RESERVE'}, {'key': 'OtherEquityAdjustments', 'title': 'OTHER_EQUITY_ADJUSTMENTS'}]}, {'key': 'OtherEquityInterest', 'title': 'OTHER_EQUITY_INTEREST'}]}, {'key': 'MinorityInterest', 'title': 'MINORITY_INTEREST'}]}, {'key': 'TotalCapitalization', 'title': 'TOTAL_CAPITALIZATION'}, {'key': 'PreferredStockEquity', 'title': 'PREFERRED_STOCK_EQUITY'}, {'key': 'CommonStockEquity', 'title': 'COMMON_STOCK_EQUITY'}, {'key': 'CapitalLeaseObligations', 'title': 'CAPITAL_LEASE_OBLIGATIONS'}, {'key': 'NetTangibleAssets', 'title': 'NET_TANGIBLE_ASSETS'}, {'key': 'WorkingCapital', 'title': 'WORKING_CAPITAL'}, {'key': 'InvestedCapital', 'title': 'INVESTED_CAPITAL'}, {'key': 'TangibleBookValue', 'title': 'TANGIBLE_BOOK_VALUE'}, {'key': 'TotalDebt', 'title': 'TOTAL_DEBT'}, {'key': 'NetDebt', 'title': 'NET_DEBT'}, {'key': 'ShareIssued', 'title': 'SHARE_ISSUED'}, {'key': 'OrdinarySharesNumber', 'title': 'ORDINARY_SHARES_NUMBER'}, {'key': 'PreferredSharesNumber', 'title': 'PREFERRED_SHARES_NUMBER'}, {'key': 'TreasurySharesNumber', 'title': 'TREASURY_SHARES_NUMBER'}]}, 'QuoteTimeSeriesStore': {'timeSeries': {'annualCashAndCashEquivalents': [{'dataId': 23030, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 48844000000, 'fmt': '48.84B'}}, {'dataId': 23030, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 38016000000, 'fmt': '38.02B'}}, {'dataId': 23030, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 34940000000, 'fmt': '34.94B'}}, {'dataId': 23030, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 23646000000, 'fmt': '23.65B'}}], 'annualNonCurrentDeferredLiabilities': [], 'annualPrepaidAssets': [], 'annualStockholdersEquity': [{'dataId': 23215, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 90488000000, 'fmt': '90.49B'}}, {'dataId': 23215, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 65339000000, 'fmt': '65.34B'}}, {'dataId': 23215, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 63090000000, 'fmt': '63.09B'}}, {'dataId': 23215, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 50672000000, 'fmt': '50.67B'}}], 'annualAllowanceForDoubtfulAccountsReceivable': [], 'annualMachineryFurnitureEquipment': [{'dataId': 23319, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 69797000000, 'fmt': '69.80B'}}, {'dataId': 23319, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 75291000000, 'fmt': '75.29B'}}, {'dataId': 23319, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 78659000000, 'fmt': '78.66B'}}, {'dataId': 23319, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 81060000000, 'fmt': '81.06B'}}], 'annualPensionandOtherPostRetirementBenefitPlansCurrent': [], 'annualProperties': [{'dataId': 23351, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0, 'fmt': '0.00'}}, {'dataId': 23351, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0, 'fmt': '0.00'}}, {'dataId': 23351, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0, 'fmt': '0.00'}}, {'dataId': 23351, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 0, 'fmt': '0.00'}}], 'annualGoodwillAndOtherIntangibleAssets': [], 'annualInvestmentsAndAdvances': [{'dataId': 23111, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 105341000000, 'fmt': '105.34B'}}, {'dataId': 23111, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 100887000000, 'fmt': '100.89B'}}, {'dataId': 23111, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 127877000000, 'fmt': '127.88B'}}, {'dataId': 23111, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 120805000000, 'fmt': '120.81B'}}], 'annualCommonStockEquity': [{'dataId': 23280, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 90488000000, 'fmt': '90.49B'}}, {'dataId': 23280, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 65339000000, 'fmt': '65.34B'}}, {'dataId': 23280, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 63090000000, 'fmt': '63.09B'}}, {'dataId': 23280, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 50672000000, 'fmt': '50.67B'}}], 'annualNonCurrentDeferredTaxesLiabilities': [], 'annualIncomeTaxPayable': [], 'annualAvailableForSaleSecurities': [{'dataId': 23020, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 105341000000, 'fmt': '105.34B'}}, {'dataId': 23020, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 100887000000, 'fmt': '100.89B'}}, {'dataId': 23020, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 127877000000, 'fmt': '127.88B'}}, {'dataId': 23020, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 120805000000, 'fmt': '120.81B'}}], 'annualLandAndImprovements': [{'dataId': 23312, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 17085000000, 'fmt': '17.09B'}}, {'dataId': 23312, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 17952000000, 'fmt': '17.95B'}}, {'dataId': 23312, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 20041000000, 'fmt': '20.04B'}}, {'dataId': 23312, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 22126000000, 'fmt': '22.13B'}}], 'annualAdditionalPaidInCapital': [], 'annualTotalTaxPayable': [], 'annualCurrentAccruedExpenses': [], 'annualForeignCurrencyTranslationAdjustments': [], 'annualOtherEquityInterest': [], 'annualInvestmentinFinancialAssets': [{'dataId': 23414, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 105341000000, 'fmt': '105.34B'}}, {'dataId': 23414, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 100887000000, 'fmt': '100.89B'}}, {'dataId': 23414, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 127877000000, 'fmt': '127.88B'}}, {'dataId': 23414, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 120805000000, 'fmt': '120.81B'}}], 'annualCurrentDeferredRevenue': [{'dataId': 23061, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 5522000000, 'fmt': '5.52B'}}, {'dataId': 23061, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 6643000000, 'fmt': '6.64B'}}, {'dataId': 23061, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 7612000000, 'fmt': '7.61B'}}, {'dataId': 23061, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 7912000000, 'fmt': '7.91B'}}], 'annualOtherEquityAdjustments': [], 'annualTotalCapitalization': [{'dataId': 23374, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 182295000000, 'fmt': '182.29B'}}, {'dataId': 23374, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 164006000000, 'fmt': '164.01B'}}, {'dataId': 23374, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 172196000000, 'fmt': '172.20B'}}, {'dataId': 23374, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 149631000000, 'fmt': '149.63B'}}], 'annualCapitalStock': [{'dataId': 23027, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 45174000000, 'fmt': '45.17B'}}, {'dataId': 23027, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 50779000000, 'fmt': '50.78B'}}, {'dataId': 23027, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57365000000, 'fmt': '57.37B'}}, {'dataId': 23027, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 64849000000, 'fmt': '64.85B'}}], 'annualCurrentDeferredAssets': [], 'annualOtherInvestments': [{'dataId': 23540, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 105341000000, 'fmt': '105.34B'}}, {'dataId': 23540, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 100887000000, 'fmt': '100.89B'}}, {'dataId': 23540, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 127877000000, 'fmt': '127.88B'}}, {'dataId': 23540, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 120805000000, 'fmt': '120.81B'}}], 'annualAccountsReceivable': [{'dataId': 23001, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 22926000000, 'fmt': '22.93B'}}, {'dataId': 23001, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16120000000, 'fmt': '16.12B'}}, {'dataId': 23001, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 26278000000, 'fmt': '26.28B'}}, {'dataId': 23001, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 28184000000, 'fmt': '28.18B'}}], 'annualShareIssued': [{'dataId': 23532, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 17772944000, 'fmt': '17.77B'}}, {'dataId': 23532, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16976763000, 'fmt': '16.98B'}}, {'dataId': 23532, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16426786000, 'fmt': '16.43B'}}, {'dataId': 23532, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 15943425000, 'fmt': '15.94B'}}], 'annualPayablesAndAccruedExpenses': [{'dataId': 23166, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 46236000000, 'fmt': '46.24B'}}, {'dataId': 23166, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 42296000000, 'fmt': '42.30B'}}, {'dataId': 23166, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 54763000000, 'fmt': '54.76B'}}, {'dataId': 23166, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 64115000000, 'fmt': '64.11B'}}], 'annualTotalNonCurrentLiabilitiesNetMinorityInterest': [{'dataId': 23260, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 142310000000, 'fmt': '142.31B'}}, {'dataId': 23260, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 153157000000, 'fmt': '153.16B'}}, {'dataId': 23260, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 162431000000, 'fmt': '162.43B'}}, {'dataId': 23260, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 148101000000, 'fmt': '148.10B'}}], 'annualOtherCurrentBorrowings': [{'dataId': 23332, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 10260000000, 'fmt': '10.26B'}}, {'dataId': 23332, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 8773000000, 'fmt': '8.77B'}}, {'dataId': 23332, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 9613000000, 'fmt': '9.61B'}}, {'dataId': 23332, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 11128000000, 'fmt': '11.13B'}}], 'annualCashFinancial': [{'dataId': 23028, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 12204000000, 'fmt': '12.20B'}}, {'dataId': 23028, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 17773000000, 'fmt': '17.77B'}}, {'dataId': 23028, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 17305000000, 'fmt': '17.30B'}}, {'dataId': 23028, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 18546000000, 'fmt': '18.55B'}}], 'annualNonCurrentPrepaidAssets': [], 'annualLongTermDebtAndCapitalLeaseObligation': [{'dataId': 23124, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 91807000000, 'fmt': '91.81B'}}, {'dataId': 23124, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 98667000000, 'fmt': '98.67B'}}, {'dataId': 23124, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 109106000000, 'fmt': '109.11B'}}, {'dataId': 23124, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 98959000000, 'fmt': '98.96B'}}], 'annualOtherShortTermInvestments': [{'dataId': 23163, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 51713000000, 'fmt': '51.71B'}}, {'dataId': 23163, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 52927000000, 'fmt': '52.93B'}}, {'dataId': 23163, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 27699000000, 'fmt': '27.70B'}}, {'dataId': 23163, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 24658000000, 'fmt': '24.66B'}}], 'annualCashCashEquivalentsAndShortTermInvestments': [{'dataId': 23033, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 100557000000, 'fmt': '100.56B'}}, {'dataId': 23033, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 90943000000, 'fmt': '90.94B'}}, {'dataId': 23033, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 62639000000, 'fmt': '62.64B'}}, {'dataId': 23033, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 48304000000, 'fmt': '48.30B'}}], 'annualReceivables': [{'dataId': 23189, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 45804000000, 'fmt': '45.80B'}}, {'dataId': 23189, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 37445000000, 'fmt': '37.45B'}}, {'dataId': 23189, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 51506000000, 'fmt': '51.51B'}}, {'dataId': 23189, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 60932000000, 'fmt': '60.93B'}}], 'annualRawMaterials': [], 'annualOtherIntangibleAssets': [], 'annualBuildingsAndImprovements': [], 'annualPreferredStockEquity': [], 'annualInventory': [{'dataId': 23108, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 4106000000, 'fmt': '4.11B'}}, {'dataId': 23108, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 4061000000, 'fmt': '4.06B'}}, {'dataId': 23108, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 6580000000, 'fmt': '6.58B'}}, {'dataId': 23108, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 4946000000, 'fmt': '4.95B'}}], 'annualAccumulatedDepreciation': [{'dataId': 23008, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -58579000000, 'fmt': '-58.58B'}}, {'dataId': 23008, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -66760000000, 'fmt': '-66.76B'}}, {'dataId': 23008, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -70283000000, 'fmt': '-70.28B'}}, {'dataId': 23008, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -72340000000, 'fmt': '-72.34B'}}], 'annualCurrentLiabilities': [{'dataId': 23047, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 105718000000, 'fmt': '105.72B'}}, {'dataId': 23047, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 105392000000, 'fmt': '105.39B'}}, {'dataId': 23047, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 125481000000, 'fmt': '125.48B'}}, {'dataId': 23047, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 153982000000, 'fmt': '153.98B'}}], 'annualTotalDebt': [{'dataId': 23386, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 108047000000, 'fmt': '108.05B'}}, {'dataId': 23386, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 112436000000, 'fmt': '112.44B'}}, {'dataId': 23386, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 124719000000, 'fmt': '124.72B'}}, {'dataId': 23386, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 120069000000, 'fmt': '120.07B'}}], 'annualNetPPE': [{'dataId': 23139, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 37378000000, 'fmt': '37.38B'}}, {'dataId': 23139, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 36766000000, 'fmt': '36.77B'}}, {'dataId': 23139, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 39440000000, 'fmt': '39.44B'}}, {'dataId': 23139, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 42117000000, 'fmt': '42.12B'}}], 'annualTangibleBookValue': [{'dataId': 23383, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 90488000000, 'fmt': '90.49B'}}, {'dataId': 23383, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 65339000000, 'fmt': '65.34B'}}, {'dataId': 23383, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 63090000000, 'fmt': '63.09B'}}, {'dataId': 23383, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 50672000000, 'fmt': '50.67B'}}], 'annualLeases': [{'dataId': 23313, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 9075000000, 'fmt': '9.07B'}}, {'dataId': 23313, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 10283000000, 'fmt': '10.28B'}}, {'dataId': 23313, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 11023000000, 'fmt': '11.02B'}}, {'dataId': 23313, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 11271000000, 'fmt': '11.27B'}}], 'annualWorkInProcess': [], 'annualCurrentAssets': [{'dataId': 23044, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 162819000000, 'fmt': '162.82B'}}, {'dataId': 23044, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 143713000000, 'fmt': '143.71B'}}, {'dataId': 23044, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 134836000000, 'fmt': '134.84B'}}, {'dataId': 23044, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 135405000000, 'fmt': '135.41B'}}], 'annualOtherNonCurrentAssets': [{'dataId': 23339, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 32978000000, 'fmt': '32.98B'}}, {'dataId': 23339, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 42522000000, 'fmt': '42.52B'}}, {'dataId': 23339, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 48849000000, 'fmt': '48.85B'}}, {'dataId': 23339, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 54428000000, 'fmt': '54.43B'}}], 'annualCurrentNotesPayable': [], 'annualOtherNonCurrentLiabilities': [{'dataId': 23379, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 20958000000, 'fmt': '20.96B'}}, {'dataId': 23379, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 26320000000, 'fmt': '26.32B'}}, {'dataId': 23379, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 28636000000, 'fmt': '28.64B'}}, {'dataId': 23379, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 32485000000, 'fmt': '32.48B'}}], 'annualCurrentDeferredTaxesAssets': [], 'annualOtherCurrentLiabilities': [{'dataId': 23151, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 37720000000, 'fmt': '37.72B'}}, {'dataId': 23151, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 42684000000, 'fmt': '42.68B'}}, {'dataId': 23151, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 47493000000, 'fmt': '47.49B'}}, {'dataId': 23151, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 60845000000, 'fmt': '60.84B'}}], 'annualCurrentDeferredLiabilities': [{'dataId': 23058, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 5522000000, 'fmt': '5.52B'}}, {'dataId': 23058, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 6643000000, 'fmt': '6.64B'}}, {'dataId': 23058, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 7612000000, 'fmt': '7.61B'}}, {'dataId': 23058, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 7912000000, 'fmt': '7.91B'}}], 'annualWorkingCapital': [{'dataId': 23385, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57101000000, 'fmt': '57.10B'}}, {'dataId': 23385, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 38321000000, 'fmt': '38.32B'}}, {'dataId': 23385, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 9355000000, 'fmt': '9.36B'}}, {'dataId': 23385, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -18577000000, 'fmt': '-18.58B'}}], 'annualTotalLiabilitiesNetMinorityInterest': [{'dataId': 23259, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 248028000000, 'fmt': '248.03B'}}, {'dataId': 23259, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 258549000000, 'fmt': '258.55B'}}, {'dataId': 23259, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 287912000000, 'fmt': '287.91B'}}, {'dataId': 23259, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 302083000000, 'fmt': '302.08B'}}], 'annualTradeandOtherPayablesNonCurrent': [{'dataId': 23472, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 29545000000, 'fmt': '29.55B'}}, {'dataId': 23472, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 28170000000, 'fmt': '28.17B'}}, {'dataId': 23472, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 24689000000, 'fmt': '24.69B'}}, {'dataId': 23472, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16657000000, 'fmt': '16.66B'}}], 'annualGoodwill': [], 'annualCurrentDebtAndCapitalLeaseObligation': [{'dataId': 23046, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16240000000, 'fmt': '16.24B'}}, {'dataId': 23046, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 13769000000, 'fmt': '13.77B'}}, {'dataId': 23046, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 15613000000, 'fmt': '15.61B'}}, {'dataId': 23046, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 21110000000, 'fmt': '21.11B'}}], 'annualRetainedEarnings': [{'dataId': 23204, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 45898000000, 'fmt': '45.90B'}}, {'dataId': 23204, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 14966000000, 'fmt': '14.97B'}}, {'dataId': 23204, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 5562000000, 'fmt': '5.56B'}}, {'dataId': 23204, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -3068000000, 'fmt': '-3.07B'}}], 'annualCommonStock': [{'dataId': 23038, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 45174000000, 'fmt': '45.17B'}}, {'dataId': 23038, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 50779000000, 'fmt': '50.78B'}}, {'dataId': 23038, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 57365000000, 'fmt': '57.37B'}}, {'dataId': 23038, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 64849000000, 'fmt': '64.85B'}}], 'annualNonCurrentDeferredTaxesAssets': [], 'annualNonCurrentDeferredAssets': [], 'annualOtherProperties': [], 'annualPreferredStock': [], 'annualGainsLossesNotAffectingRetainedEarnings': [{'dataId': 23009, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -584000000, 'fmt': '-584.00M'}}, {'dataId': 23009, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -406000000, 'fmt': '-406.00M'}}, {'dataId': 23009, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 163000000, 'fmt': '163.00M'}}, {'dataId': 23009, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': -11109000000, 'fmt': '-11.11B'}}], 'annualTotalEquityGrossMinorityInterest': [{'dataId': 23261, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 90488000000, 'fmt': '90.49B'}}, {'dataId': 23261, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 65339000000, 'fmt': '65.34B'}}, {'dataId': 23261, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 63090000000, 'fmt': '63.09B'}}, {'dataId': 23261, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 50672000000, 'fmt': '50.67B'}}], 'annualOtherCurrentAssets': [{'dataId': 23331, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 12352000000, 'fmt': '12.35B'}}, {'dataId': 23331, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 11264000000, 'fmt': '11.26B'}}, {'dataId': 23331, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 14111000000, 'fmt': '14.11B'}}, {'dataId': 23331, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 21223000000, 'fmt': '21.22B'}}], 'annualPayables': [{'dataId': 23165, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 46236000000, 'fmt': '46.24B'}}, {'dataId': 23165, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 42296000000, 'fmt': '42.30B'}}, {'dataId': 23165, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 54763000000, 'fmt': '54.76B'}}, {'dataId': 23165, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 64115000000, 'fmt': '64.11B'}}], 'annualOtherPayable': [], 'annualAccountsPayable': [{'dataId': 23000, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 46236000000, 'fmt': '46.24B'}}, {'dataId': 23000, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 42296000000, 'fmt': '42.30B'}}, {'dataId': 23000, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 54763000000, 'fmt': '54.76B'}}, {'dataId': 23000, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 64115000000, 'fmt': '64.11B'}}], 'annualCommercialPaper': [{'dataId': 23279, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 5980000000, 'fmt': '5.98B'}}, {'dataId': 23279, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 4996000000, 'fmt': '5.00B'}}, {'dataId': 23279, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 6000000000, 'fmt': '6.00B'}}, {'dataId': 23279, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 9982000000, 'fmt': '9.98B'}}], 'annualLongTermDebt': [{'dataId': 23123, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 91807000000, 'fmt': '91.81B'}}, {'dataId': 23123, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 98667000000, 'fmt': '98.67B'}}, {'dataId': 23123, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 109106000000, 'fmt': '109.11B'}}, {'dataId': 23123, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 98959000000, 'fmt': '98.96B'}}], 'annualInvestedCapital': [{'dataId': 23245, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 198535000000, 'fmt': '198.53B'}}, {'dataId': 23245, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 177775000000, 'fmt': '177.78B'}}, {'dataId': 23245, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 187809000000, 'fmt': '187.81B'}}, {'dataId': 23245, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 170741000000, 'fmt': '170.74B'}}], 'annualCurrentDebt': [{'dataId': 23045, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16240000000, 'fmt': '16.24B'}}, {'dataId': 23045, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 13769000000, 'fmt': '13.77B'}}, {'dataId': 23045, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 15613000000, 'fmt': '15.61B'}}, {'dataId': 23045, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 21110000000, 'fmt': '21.11B'}}], 'annualNetTangibleAssets': [{'dataId': 23403, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 90488000000, 'fmt': '90.49B'}}, {'dataId': 23403, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 65339000000, 'fmt': '65.34B'}}, {'dataId': 23403, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 63090000000, 'fmt': '63.09B'}}, {'dataId': 23403, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 50672000000, 'fmt': '50.67B'}}], 'annualTotalAssets': [{'dataId': 23220, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 338516000000, 'fmt': '338.52B'}}, {'dataId': 23220, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 323888000000, 'fmt': '323.89B'}}, {'dataId': 23220, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 351002000000, 'fmt': '351.00B'}}, {'dataId': 23220, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 352755000000, 'fmt': '352.75B'}}], 'annualOrdinarySharesNumber': [{'dataId': 23393, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 17772944000, 'fmt': '17.77B'}}, {'dataId': 23393, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16976763000, 'fmt': '16.98B'}}, {'dataId': 23393, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 16426786000, 'fmt': '16.43B'}}, {'dataId': 23393, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 15943425000, 'fmt': '15.94B'}}], 'annualOtherReceivables': [{'dataId': 23342, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 22878000000, 'fmt': '22.88B'}}, {'dataId': 23342, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 21325000000, 'fmt': '21.32B'}}, {'dataId': 23342, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 25228000000, 'fmt': '25.23B'}}, {'dataId': 23342, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 32748000000, 'fmt': '32.75B'}}], 'annualCashEquivalents': [{'dataId': 23029, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 36640000000, 'fmt': '36.64B'}}, {'dataId': 23029, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 20243000000, 'fmt': '20.24B'}}, {'dataId': 23029, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 17635000000, 'fmt': '17.64B'}}, {'dataId': 23029, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 5100000000, 'fmt': '5.10B'}}], 'annualGrossAccountsReceivable': [], 'annualNonCurrentDeferredRevenue': [], 'annualFinishedGoods': [], 'annualGrossPPE': [{'dataId': 23100, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 95957000000, 'fmt': '95.96B'}}, {'dataId': 23100, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 103526000000, 'fmt': '103.53B'}}, {'dataId': 23100, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 109723000000, 'fmt': '109.72B'}}, {'dataId': 23100, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 114457000000, 'fmt': '114.46B'}}], 'annualTotalNonCurrentAssets': [{'dataId': 23226, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 175697000000, 'fmt': '175.70B'}}, {'dataId': 23226, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 180175000000, 'fmt': '180.18B'}}, {'dataId': 23226, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 216166000000, 'fmt': '216.17B'}}, {'dataId': 23226, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 217350000000, 'fmt': '217.35B'}}], 'annualNetDebt': [{'dataId': 23531, 'asOfDate': '2019-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 59203000000, 'fmt': '59.20B'}}, {'dataId': 23531, 'asOfDate': '2020-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 74420000000, 'fmt': '74.42B'}}, {'dataId': 23531, 'asOfDate': '2021-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 89779000000, 'fmt': '89.78B'}}, {'dataId': 23531, 'asOfDate': '2022-09-30', 'periodType': '12M', 'currencyCode': 'USD', 'reportedValue': {'raw': 96423000000, 'fmt': '96.42B'}}], 'annualPreferredSharesNumber': [], 'annualLongTermCapitalLeaseObligation': [], 'annualOtherInventories': [], 'annualCurrentCapitalLeaseObligation': [], 'annualRestrictedCommonStock': [], 'annualMinimumPensionLiabilities': [], 'annualDuefromRelatedPartiesCurrent': [], 'annualCurrentDeferredTaxesLiabilities': [], 'annualHeldToMaturitySecurities': [], 'annualInvestmentsinJointVenturesatCost': [], 'annualInterestPayable': [], 'annualPreferredSecuritiesOutsideStockEquity': [], 'annualTradingSecurities': [], 'annualAccruedInterestReceivable': [], 'annualNonCurrentNoteReceivables': [], 'annualInvestmentsInOtherVenturesUnderEquityMethod': [], 'annualDuefromRelatedPartiesNonCurrent': [], 'annualDividendsPayable': [], 'annualInvestmentsinAssociatesatCost': [], 'annualNonCurrentAccruedExpenses': [], 'annualNonCurrentAccountsReceivable': [], 'annualLimitedPartnershipCapital': [], 'annualTreasurySharesNumber': [], 'annualEmployeeBenefits': [], 'annualMinorityInterest': [], 'annualRestrictedCash': [], 'annualFinancialAssetsDesignatedasFairValueThroughProfitorLossTotal': [], 'annualDerivativeProductLiabilities': [], 'annualHedgingAssetsCurrent': [], 'annualTreasuryStock': [], 'annualConstructionInProgress': [], 'annualCurrentProvisions': [], 'annualLongTermEquityInvestment': [], 'annualInvestmentsinSubsidiariesatCost': [], 'annualDuetoRelatedPartiesNonCurrent': [], 'annualFixedAssetsRevaluationReserve': [], 'annualNotesReceivable': [], 'annualInvestmentProperties': [], 'annualDefinedPensionBenefit': [], 'annualGeneralPartnershipCapital': [], 'annualCapitalLeaseObligations': [], 'annualLongTermProvisions': [], 'annualTotalPartnershipCapital': [], 'annualLineOfCredit': [], 'annualLoansReceivable': [], 'annualAssetsHeldForSaleCurrent': [], 'annualOtherCapitalStock': [], 'annualLiabilitiesHeldforSaleNonCurrent': [], 'annualReceivablesAdjustmentsAllowances': [], 'annualTaxesReceivable': [], 'annualNonCurrentPensionAndOtherPostretirementBenefitPlans': [], 'annualInventoriesAdjustmentsAllowances': [], 'annualFinancialAssets': [], 'annualUnrealizedGainLoss': [], 'annualDuetoRelatedPartiesCurrent': [], 'timestamp': [1569801600, 1601424000, 1632960000, 1664496000]}, 'meta': {'symbol': 'AAPL', 'start': 493590046, 'end': 1675699799, 'timeUnit': 'annual'}, 'loading': False, 'errorList': []}, 'MarketTimeStore': {'data': {'mins': 50, 'hrs': 4, 'message': 'U.S. markets close in 4 hours 50 minutes'}, 'metadata': {'status': 'YFT_MARKET_WILL_CLOSE', 'time': '2023-02-06T16:09:59Z'}}, 'MarketSummaryStore': {'data': [{'symbol': '^GSPC', 'name': 'S&P 500'}, {'symbol': '^DJI', 'name': 'Dow 30'}, {'symbol': '^IXIC', 'name': 'Nasdaq'}, {'symbol': '^RUT', 'name': 'Russell 2000'}, {'symbol': 'CL=F', 'name': 'Crude Oil'}, {'symbol': 'GC=F', 'name': 'Gold'}, {'symbol': 'SI=F', 'name': 'Silver'}, {'symbol': 'EURUSD=X', 'name': 'EUR/USD'}, {'symbol': '^TNX', 'name': '10-Yr Bond'}, {'symbol': 'GBPUSD=X', 'name': 'GBP/USD'}, {'symbol': 'JPY=X', 'name': 'USD/JPY'}, {'symbol': 'BTC-USD'}, {'symbol': '^CMC200', 'name': 'CMC Crypto 200'}, {'symbol': '^FTSE', 'name': 'FTSE 100'}, {'symbol': '^N225', 'name': 'Nikkei 225'}]}, 'RmpStore': {'data': {'Lead-7-Rmp': {'isStatic': False, 'css': [], 'html': '
', 'js': [], 'mode': 'json', 'assets': {'css': [{'location': 'top', 'value': '/aaq/nel/css/smart-ad-dynamic-data.SmartAdDynamicData.atomic.ltr.88115735231490dcb5680ea5084fb4e1.min.css', 'name': 'smart-ad-dynamic-data.SmartAdDynamicData.atomic'}]}, 'data': {}}}}, 'NavServiceStore': {'nav': {}, 'finance': {'sections': ['property'], 'nav': [{'statusCode': 200, 'message': 'ok', 'data': {'items': [{'name': 'Watchlists', 'url': 'https://finance.yahoo.com/watchlists/', 'children': [], 'id': 'root_1'}, {'name': 'My Portfolio', 'url': 'https://finance.yahoo.com/portfolios/', 'children': [], 'id': 'root_2'}, {'name': 'Crypto', 'url': 'https://finance.yahoo.com/crypto/', 'children': [], 'id': 'root_3'}, {'name': 'Yahoo Finance Plus', 'url': 'https://finance.yahoo.com/plus-dashboard?ncid=dcm_306158762_490172245_127172993', 'children': [{'name': 'Dashboard', 'url': 'https://finance.yahoo.com/plus-dashboard?ncid=dcm_306158759_490172245_127172993', 'id': 'root_4_1'}, {'name': 'Research Reports', 'url': 'https://finance.yahoo.com/research?ncid=dcm_306158756_490172245_127172993', 'id': 'root_4_2'}, {'name': 'Investment Ideas', 'url': 'https://finance.yahoo.com/research/trade-ideas?ncid=dcm_306158753_490172245_127172993', 'id': 'root_4_3'}, {'name': 'Community Insights', 'url': 'https://finance.yahoo.com/user-insights?ncid=dcm_306158750_490172245_127172993', 'id': 'root_4_4'}, {'name': 'Webinars', 'url': 'https://finance.yahoo.com/webinars', 'id': 'root_4_5'}, {'name': 'Blog', 'url': 'https://finance.yahoo.com/topic/plus', 'id': 'root_4_6'}], 'id': 'root_4'}, {'name': 'News', 'url': 'https://finance.yahoo.com/news/', 'children': [{'name': 'Latest News', 'url': 'https://finance.yahoo.com/news/', 'id': 'root_5_1'}, {'name': 'Yahoo Finance Originals', 'url': 'https://finance.yahoo.com/topic/yahoo-finance-originals', 'id': 'root_5_2'}, {'name': 'Stock Market News', 'url': 'https://finance.yahoo.com/topic/stock-market-news/', 'id': 'root_5_3'}, {'name': 'Earnings', 'url': 'https://finance.yahoo.com/topic/earnings', 'id': 'root_5_4'}, {'name': 'Politics', 'url': 'https://finance.yahoo.com/live/politics/', 'id': 'root_5_5'}, {'name': 'Economic News', 'url': 'https://finance.yahoo.com/topic/economic-news', 'id': 'root_5_6'}, {'name': 'Morning Brief', 'url': 'https://finance.yahoo.com/topic/morning-brief/', 'id': 'root_5_7'}, {'name': 'Personal Finance', 'url': 'https://finance.yahoo.com/topic/personal-finance', 'id': 'root_5_8'}, {'name': 'Crypto News', 'url': 'https://finance.yahoo.com/topic/crypto/', 'id': 'root_5_9'}, {'name': 'Bidenomics Report Card', 'url': 'https://finance.yahoo.com/bidenomics/', 'id': 'root_5_10'}], 'id': 'root_5'}, {'name': 'Screeners', 'url': 'https://finance.yahoo.com/screener/', 'children': [{'name': 'Saved Screeners', 'url': 'https://finance.yahoo.com/screener', 'id': 'root_6_1'}, {'name': 'Equity Screener', 'url': 'https://finance.yahoo.com/screener/new', 'id': 'root_6_2'}, {'name': 'Mutual Fund Screener', 'url': 'https://finance.yahoo.com/screener/mutualfund/new', 'id': 'root_6_3'}, {'name': 'ETF Screener', 'url': 'https://finance.yahoo.com/screener/etf/new', 'id': 'root_6_4'}, {'name': 'Futures Screener', 'url': 'https://finance.yahoo.com/screener/future/new', 'id': 'root_6_5'}, {'name': 'Index Screener', 'url': 'https://finance.yahoo.com/screener/index/new', 'id': 'root_6_6'}], 'id': 'root_6'}, {'name': 'Markets', 'url': 'https://finance.yahoo.com/calendar/', 'children': [{'name': 'Calendars', 'url': 'https://finance.yahoo.com/calendar', 'id': 'root_7_1'}, {'name': 'Trending Tickers', 'url': 'https://finance.yahoo.com/trending-tickers', 'id': 'root_7_2'}, {'name': 'Stocks: Most Actives', 'url': 'https://finance.yahoo.com/most-active', 'id': 'root_7_3'}, {'name': 'Stocks: Gainers', 'url': 'https://finance.yahoo.com/gainers', 'id': 'root_7_4'}, {'name': 'Stocks: Losers', 'url': 'https://finance.yahoo.com/losers', 'id': 'root_7_5'}, {'name': 'Top ETFs', 'url': 'https://finance.yahoo.com/etfs', 'id': 'root_7_6'}, {'name': 'Futures', 'url': 'https://finance.yahoo.com/commodities', 'id': 'root_7_7'}, {'name': 'World Indices', 'url': 'https://finance.yahoo.com/world-indices', 'id': 'root_7_8'}, {'name': 'Currencies', 'url': 'https://finance.yahoo.com/currencies', 'id': 'root_7_9'}, {'name': 'Top Mutual Funds', 'url': 'https://finance.yahoo.com/mutualfunds', 'id': 'root_7_10'}, {'name': 'Options: Highest Open Interest', 'url': 'https://finance.yahoo.com/options/highest-open-interest', 'id': 'root_7_11'}, {'name': 'Options: Highest Implied Volatility', 'url': 'https://finance.yahoo.com/options/highest-implied-volatility', 'id': 'root_7_12'}, {'name': 'US Treasury Bonds Rates', 'url': 'https://finance.yahoo.com/bonds', 'id': 'root_7_13'}, {'name': 'Currency Converter', 'url': 'https://finance.yahoo.com/currency-converter', 'id': 'root_7_14'}], 'id': 'root_7'}, {'name': 'Videos', 'url': 'https://finance.yahoo.com/videos/', 'children': [{'name': 'Company of the Year', 'url': 'https://finance.yahoo.com/live/company-of-the-year/', 'id': 'root_8_1'}, {'name': 'Yahoo Finance Live', 'url': 'https://finance.yahoo.com/videos', 'id': 'root_8_2'}, {'name': 'Yahoo Finance Presents', 'url': 'https://finance.yahoo.com/live/yahoo-finance-presents', 'id': 'root_8_3'}, {'name': 'All Markets Summit', 'url': 'https://finance.yahoo.com/live/allmarketssummit', 'id': 'root_8_4'}, {'name': 'Financing Your Future', 'url': 'https://finance.yahoo.com/topic/financing-your-future', 'id': 'root_8_5'}, {'name': 'Real Estate Report', 'url': 'https://finance.yahoo.com/topic/real-estate-report', 'id': 'root_8_6'}, {'name': 'Retirement', 'url': 'https://finance.yahoo.com/topic/retirement', 'id': 'root_8_7'}, {'name': 'ETF Report', 'url': 'https://finance.yahoo.com/topic/etf-report', 'id': 'root_8_8'}, {'name': 'FA Corner', 'url': 'https://finance.yahoo.com/topic/fa-corner', 'id': 'root_8_9'}, {'name': 'Events', 'url': 'https://finance.yahoo.com/show/events', 'id': 'root_8_10'}, {'name': 'Crypto Corner', 'url': 'https://finance.yahoo.com/topic/crypto-corner', 'id': 'root_8_11'}], 'id': 'root_8'}, {'name': 'Personal Finance', 'url': 'https://finance.yahoo.com/topic/personal-finance', 'children': [{'name': 'Home', 'url': 'https://finance.yahoo.com/topic/personal-finance/', 'id': 'root_9_1'}, {'name': 'My Money', 'url': 'https://money.yahoo.com/my-money/', 'id': 'root_9_2'}, {'name': 'Retirement', 'url': 'https://money.yahoo.com/topic/retirement/', 'id': 'root_9_3'}, {'name': 'Tax Hub', 'url': 'https://finance.yahoo.com/taxes', 'id': 'root_9_4'}, {'name': 'Rates', 'url': 'https://finance.yahoo.com/rates/'}], 'id': 'root_9'}, {'name': 'Industries', 'url': 'https://finance.yahoo.com/screener/predefined/ms_basic_materials/', 'children': [{'name': 'Basic Materials', 'url': 'https://finance.yahoo.com/screener/predefined/ms_basic_materials/', 'id': 'root_10_1'}, {'name': 'Communication Services', 'url': 'https://finance.yahoo.com/screener/predefined/ms_communication_services/', 'id': 'root_10_2'}, {'name': 'Consumer Cyclical', 'url': 'https://finance.yahoo.com/screener/predefined/ms_consumer_cyclical/', 'id': 'root_10_3'}, {'name': 'Consumer Defensive', 'url': 'https://finance.yahoo.com/screener/predefined/ms_consumer_defensive/', 'id': 'root_10_4'}, {'name': 'Energy', 'url': 'https://finance.yahoo.com/screener/predefined/ms_energy/', 'id': 'root_10_5'}, {'name': 'Financial Services', 'url': 'https://finance.yahoo.com/screener/predefined/ms_financial_services/', 'id': 'root_10_6'}, {'name': 'Healthcare', 'url': 'https://finance.yahoo.com/screener/predefined/ms_healthcare/', 'id': 'root_10_7'}, {'name': 'Industrials', 'url': 'https://finance.yahoo.com/screener/predefined/ms_industrials/', 'id': 'root_10_8'}, {'name': 'Real Estate', 'url': 'https://finance.yahoo.com/screener/predefined/ms_real_estate/', 'id': 'root_10_9'}, {'name': 'Technology', 'url': 'https://finance.yahoo.com/screener/predefined/ms_technology/', 'id': 'root_10_10'}, {'name': 'Utilities', 'url': 'https://finance.yahoo.com/screener/predefined/ms_utilities/', 'id': 'root_10_11'}], 'id': 'root_10'}, {'name': 'Contact Us', 'url': 'https://yahoo.uservoice.com/forums/382977', 'children': [], 'id': 'root_11'}]}}, None]}}, 'RecommendationStore': {'recommendedSymbols': {'AAPL': [{'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 102.925, 'fmt': '102.93'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699798, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '81.43 - 170.8315', 'fmt': '81.43 - 170.83'}, 'sharesOutstanding': {'raw': 10201700352, 'fmt': '10.202B', 'longFmt': '10,201,700,352'}, 'regularMarketDayHigh': {'raw': 103.9484, 'fmt': '103.95'}, 'shortName': 'Amazon.com, Inc.', 'longName': 'Amazon.com, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -1.8696976, 'fmt': '-1.87'}, 'regularMarketPreviousClose': {'raw': 103.39, 'fmt': '103.39'}, 'fiftyTwoWeekHighChange': {'raw': -69.311195, 'fmt': '-69.31'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 20.090302, 'fmt': '20.09'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 100.65, 'fmt': '100.65'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 101.5203, 'fmt': '101.52'}, 'regularMarketVolume': {'raw': 34788052, 'fmt': '34.788M', 'longFmt': '34,788,052'}, 'isLoading': False, 'score': 0.328489, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 863703000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1035679694848, 'fmt': '1.036T', 'longFmt': '1,035,679,694,848'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'AMZN', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.24671867, 'fmt': '24.67%'}, 'regularMarketDayRange': {'raw': '100.65 - 103.9484', 'fmt': '100.65 - 103.95'}, 'messageBoardId': 'finmb_18749', 'fiftyTwoWeekHigh': {'raw': 170.8315, 'fmt': '170.83'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.40572843, 'fmt': '-40.57%'}, 'uuid': '261fd26b-0151-3813-b0d0-97e4ed4c6505', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 81.43, 'fmt': '81.43'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -1.808393, 'fmt': '-1.81%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 193.01, 'fmt': '193.01'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699798, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '101.81 - 384.29', 'fmt': '101.81 - 384.29'}, 'sharesOutstanding': {'raw': 3164100096, 'fmt': '3.164B', 'longFmt': '3,164,100,096'}, 'regularMarketDayHigh': {'raw': 198.16, 'fmt': '198.16'}, 'shortName': 'Tesla, Inc.', 'longName': 'Tesla, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 4.720108, 'fmt': '4.72'}, 'regularMarketPreviousClose': {'raw': 189.98, 'fmt': '189.98'}, 'fiftyTwoWeekHighChange': {'raw': -189.5899, 'fmt': '-189.59'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 92.89011, 'fmt': '92.89'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 189.92, 'fmt': '189.92'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 194.7001, 'fmt': '194.70'}, 'regularMarketVolume': {'raw': 86577340, 'fmt': '86.577M', 'longFmt': '86,577,340'}, 'isLoading': False, 'score': 0.308594, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1277818200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 616050589696, 'fmt': '616.051B', 'longFmt': '616,050,589,696'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'TSLA', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.9123869, 'fmt': '91.24%'}, 'regularMarketDayRange': {'raw': '189.92 - 198.16', 'fmt': '189.92 - 198.16'}, 'messageBoardId': 'finmb_27444752', 'fiftyTwoWeekHigh': {'raw': 384.29, 'fmt': '384.29'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.4933511, 'fmt': '-49.34%'}, 'uuid': 'ec367bc4-f92c-397c-ac81-bf7b43cffaf7', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 101.81, 'fmt': '101.81'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 2.484529, 'fmt': '2.48%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 102.685, 'fmt': '102.68'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699797, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '83.45 - 144.1625', 'fmt': '83.45 - 144.16'}, 'sharesOutstanding': {'raw': 5968000000, 'fmt': '5.968B', 'longFmt': '5,968,000,000'}, 'regularMarketDayHigh': {'raw': 104.69, 'fmt': '104.69'}, 'shortName': 'Alphabet Inc.', 'longName': 'Alphabet Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.5599976, 'fmt': '-2.56'}, 'regularMarketPreviousClose': {'raw': 105.22, 'fmt': '105.22'}, 'fiftyTwoWeekHighChange': {'raw': -41.502502, 'fmt': '-41.50'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 19.210007, 'fmt': '19.21'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 102.21, 'fmt': '102.21'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 102.66, 'fmt': '102.66'}, 'regularMarketVolume': {'raw': 9848287, 'fmt': '9.848M', 'longFmt': '9,848,287'}, 'isLoading': False, 'score': 0.290421, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1092922200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1311830573056, 'fmt': '1.312T', 'longFmt': '1,311,830,573,056'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'GOOG', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.23019782, 'fmt': '23.02%'}, 'regularMarketDayRange': {'raw': '102.21 - 104.69', 'fmt': '102.21 - 104.69'}, 'messageBoardId': 'finmb_29096', 'fiftyTwoWeekHigh': {'raw': 144.1625, 'fmt': '144.16'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.28788695, 'fmt': '-28.79%'}, 'uuid': 'ee8cce8c-2475-31c0-8436-ecdf889cbfbd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 83.45, 'fmt': '83.45'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -2.432995, 'fmt': '-2.43%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 186.53, 'fmt': '186.53'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699798, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '88.09 - 238.3', 'fmt': '88.09 - 238.30'}, 'sharesOutstanding': {'raw': 2255320064, 'fmt': '2.255B', 'longFmt': '2,255,320,064'}, 'regularMarketDayHigh': {'raw': 190.7, 'fmt': '190.70'}, 'shortName': 'Meta Platforms, Inc.', 'longName': 'Meta Platforms, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 1.7200012, 'fmt': '1.72'}, 'regularMarketPreviousClose': {'raw': 186.53, 'fmt': '186.53'}, 'fiftyTwoWeekHighChange': {'raw': -50.050003, 'fmt': '-50.05'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 100.16, 'fmt': '100.16'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 185.8, 'fmt': '185.80'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 188.25, 'fmt': '188.25'}, 'regularMarketVolume': {'raw': 17715095, 'fmt': '17.715M', 'longFmt': '17,715,095'}, 'isLoading': False, 'score': 0.290181, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1337347800000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 493629177856, 'fmt': '493.629B', 'longFmt': '493,629,177,856'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'META', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 1.137019, 'fmt': '113.70%'}, 'regularMarketDayRange': {'raw': '185.8 - 190.7', 'fmt': '185.80 - 190.70'}, 'messageBoardId': 'finmb_20765463', 'fiftyTwoWeekHigh': {'raw': 238.3, 'fmt': '238.30'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.21002938, 'fmt': '-21.00%'}, 'uuid': 'e59f1c4f-b1aa-3d70-a8c3-eb59ff3e461b', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 88.09, 'fmt': '88.09'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.92210436, 'fmt': '0.92%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 363.642, 'fmt': '363.64'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699796, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '162.71 - 412.98', 'fmt': '162.71 - 412.98'}, 'sharesOutstanding': {'raw': 445347008, 'fmt': '445.347M', 'longFmt': '445,347,008'}, 'regularMarketDayHigh': {'raw': 368.45, 'fmt': '368.45'}, 'shortName': 'Netflix, Inc.', 'longName': 'Netflix, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -2.81958, 'fmt': '-2.82'}, 'regularMarketPreviousClose': {'raw': 365.9, 'fmt': '365.90'}, 'fiftyTwoWeekHighChange': {'raw': -49.899597, 'fmt': '-49.90'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 200.3704, 'fmt': '200.37'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 360.7, 'fmt': '360.70'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 363.0804, 'fmt': '363.08'}, 'regularMarketVolume': {'raw': 1894217, 'fmt': '1.894M', 'longFmt': '1,894,217'}, 'isLoading': False, 'score': 0.219644, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1022160600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 161696776192, 'fmt': '161.697B', 'longFmt': '161,696,776,192'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'NFLX', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 1.2314572, 'fmt': '123.15%'}, 'regularMarketDayRange': {'raw': '360.7 - 368.45', 'fmt': '360.70 - 368.45'}, 'messageBoardId': 'finmb_32012', 'fiftyTwoWeekHigh': {'raw': 412.98, 'fmt': '412.98'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.120828114, 'fmt': '-12.08%'}, 'uuid': '1a1cddac-4d41-374d-b202-739314177b67', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 162.71, 'fmt': '162.71'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.7705876, 'fmt': '-0.77%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}]}, 'recommendedSimilarSymbols': {'AAPL': [{'0': 'S', '1': 'O', '2': 'N', '3': 'Y', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 90.86, 'fmt': '90.86'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675699786, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '61.72 - 111.98', 'fmt': '61.72 - 111.98'}, 'sharesOutstanding': {'raw': 1234690048, 'fmt': '1.235B', 'longFmt': '1,234,690,048'}, 'regularMarketDayHigh': {'raw': 90.84, 'fmt': '90.84'}, 'shortName': 'Sony Group Corporation', 'longName': 'Sony Group Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -3.3899994, 'fmt': '-3.39'}, 'regularMarketPreviousClose': {'raw': 93.13, 'fmt': '93.13'}, 'fiftyTwoWeekHighChange': {'raw': -22.240005, 'fmt': '-22.24'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 28.019997, 'fmt': '28.02'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 89.6211, 'fmt': '89.62'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 89.74, 'fmt': '89.74'}, 'regularMarketVolume': {'raw': 236011, 'fmt': '236,011', 'longFmt': '236,011'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 99153000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 110801084416, 'fmt': '110.801B', 'longFmt': '110,801,084,416'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SONY', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.4539857, 'fmt': '45.40%'}, 'regularMarketDayRange': {'raw': '89.6211 - 90.84', 'fmt': '89.62 - 90.84'}, 'messageBoardId': 'finmb_23021', 'fiftyTwoWeekHigh': {'raw': 111.98, 'fmt': '111.98'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.19860694, 'fmt': '-19.86%'}, 'uuid': '51ec1656-6a66-39d0-8159-ed49cf2f2289', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 61.72, 'fmt': '61.72'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.6400726, 'fmt': '-3.64%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, {'0': 'G', '1': 'P', '2': 'R', '3': 'O', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.64, 'fmt': '5.64'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699789, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.5 - 9.42', 'fmt': '4.50 - 9.42'}, 'sharesOutstanding': {'raw': 129668000, 'fmt': '129.668M', 'longFmt': '129,668,000'}, 'regularMarketDayHigh': {'raw': 5.76, 'fmt': '5.76'}, 'shortName': 'GoPro, Inc.', 'longName': 'GoPro, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.19000006, 'fmt': '-0.19'}, 'regularMarketPreviousClose': {'raw': 5.69, 'fmt': '5.69'}, 'fiftyTwoWeekHighChange': {'raw': -3.92, 'fmt': '-3.92'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1, 'fmt': '1.00'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.475, 'fmt': '5.47'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.5, 'fmt': '5.50'}, 'regularMarketVolume': {'raw': 1031197, 'fmt': '1.031M', 'longFmt': '1,031,197'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1403789400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 857598528, 'fmt': '857.599M', 'longFmt': '857,598,528'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'GPRO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.22222222, 'fmt': '22.22%'}, 'regularMarketDayRange': {'raw': '5.475 - 5.76', 'fmt': '5.47 - 5.76'}, 'messageBoardId': 'finmb_113665065', 'fiftyTwoWeekHigh': {'raw': 9.42, 'fmt': '9.42'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.41613588, 'fmt': '-41.61%'}, 'uuid': 'd831d8ea-3a6d-36de-af60-081896d375cd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.5, 'fmt': '4.50'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.3391926, 'fmt': '-3.34%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'0': 'S', '1': 'O', '2': 'N', '3': 'O', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 18.66, 'fmt': '18.66'}, 'exchange': 'NMS', 'regularMarketTime': {'raw': 1675699680, 'fmt': '11:08AM EST'}, 'fiftyTwoWeekRange': {'raw': '13.65 - 31.22', 'fmt': '13.65 - 31.22'}, 'sharesOutstanding': {'raw': 127345000, 'fmt': '127.345M', 'longFmt': '127,345,000'}, 'regularMarketDayHigh': {'raw': 18.66, 'fmt': '18.66'}, 'shortName': 'Sonos, Inc.', 'longName': 'Sonos, Inc.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.7350006, 'fmt': '-0.74'}, 'regularMarketPreviousClose': {'raw': 18.91, 'fmt': '18.91'}, 'fiftyTwoWeekHighChange': {'raw': -13.045, 'fmt': '-13.05'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 4.5249996, 'fmt': '4.52'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 18.14, 'fmt': '18.14'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 18.175, 'fmt': '18.17'}, 'regularMarketVolume': {'raw': 510481, 'fmt': '510,481', 'longFmt': '510,481'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1533216600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 2314495232, 'fmt': '2.314B', 'longFmt': '2,314,495,232'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SONO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.3315018, 'fmt': '33.15%'}, 'regularMarketDayRange': {'raw': '18.14 - 18.66', 'fmt': '18.14 - 18.66'}, 'messageBoardId': 'finmb_10654809', 'fiftyTwoWeekHigh': {'raw': 31.22, 'fmt': '31.22'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.41784114, 'fmt': '-41.78%'}, 'uuid': '98c419db-3a58-3f86-8eb4-a664481f7d12', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 13.65, 'fmt': '13.65'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.8868356, 'fmt': '-3.89%'}, 'fullExchangeName': 'NasdaqGS', 'tradeable': False}, {'0': 'V', '1': 'U', '2': 'Z', '3': 'I', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.66, 'fmt': '5.66'}, 'exchange': 'NCM', 'regularMarketTime': {'raw': 1675699794, 'fmt': '11:09AM EST'}, 'fiftyTwoWeekRange': {'raw': '3.27 - 10.49', 'fmt': '3.27 - 10.49'}, 'sharesOutstanding': {'raw': 63739600, 'fmt': '63.74M', 'longFmt': '63,739,600'}, 'regularMarketDayHigh': {'raw': 5.8, 'fmt': '5.80'}, 'shortName': 'Vuzix Corporation', 'longName': 'Vuzix Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.17000008, 'fmt': '-0.17'}, 'regularMarketPreviousClose': {'raw': 5.75, 'fmt': '5.75'}, 'fiftyTwoWeekHighChange': {'raw': -4.91, 'fmt': '-4.91'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.31, 'fmt': '2.31'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.49, 'fmt': '5.49'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.58, 'fmt': '5.58'}, 'regularMarketVolume': {'raw': 367918, 'fmt': '367,918', 'longFmt': '367,918'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1270474200000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 355666976, 'fmt': '355.667M', 'longFmt': '355,666,976'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'VUZI', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.70642203, 'fmt': '70.64%'}, 'regularMarketDayRange': {'raw': '5.49 - 5.8', 'fmt': '5.49 - 5.80'}, 'messageBoardId': 'finmb_13610016', 'fiftyTwoWeekHigh': {'raw': 10.49, 'fmt': '10.49'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.4680648, 'fmt': '-46.81%'}, 'uuid': 'b42c8863-c6d0-341b-9d51-442783839350', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 3.27, 'fmt': '3.27'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -2.956523, 'fmt': '-2.96%'}, 'fullExchangeName': 'NasdaqCM', 'tradeable': False}, {'0': 'P', '1': 'C', '2': 'R', '3': 'F', '4': 'Y', 'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 8.62, 'fmt': '8.62'}, 'exchange': 'PNK', 'regularMarketTime': {'raw': 1675698716, 'fmt': '10:51AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.66 - 10.89', 'fmt': '6.66 - 10.89'}, 'sharesOutstanding': {'raw': 2334089984, 'fmt': '2.334B', 'longFmt': '2,334,089,984'}, 'regularMarketDayHigh': {'raw': 8.745, 'fmt': '8.74'}, 'shortName': 'PANASONIC HOLDINGS CORP ADR-EAC', 'longName': 'Panasonic Holdings Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.08000088, 'fmt': '-0.08'}, 'regularMarketPreviousClose': {'raw': 8.77, 'fmt': '8.77'}, 'fiftyTwoWeekHighChange': {'raw': -2.2000008, 'fmt': '-2.20'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.0299997, 'fmt': '2.03'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketDayLow': {'raw': 8.62, 'fmt': '8.62'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 8.69, 'fmt': '8.69'}, 'regularMarketVolume': {'raw': 47805, 'fmt': '47,805', 'longFmt': '47,805'}, 'isLoading': False, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 322151400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 20283240448, 'fmt': '20.283B', 'longFmt': '20,283,240,448'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'PCRFY', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.30480477, 'fmt': '30.48%'}, 'regularMarketDayRange': {'raw': '8.62 - 8.745', 'fmt': '8.62 - 8.74'}, 'messageBoardId': 'finmb_320433', 'fiftyTwoWeekHigh': {'raw': 10.89, 'fmt': '10.89'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.20202027, 'fmt': '-20.20%'}, 'uuid': '01e8db59-6c12-3ae1-a223-b71412148081', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.66, 'fmt': '6.66'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -0.91221064, 'fmt': '-0.91%'}, 'fullExchangeName': 'Other OTC', 'tradeable': False}, {'0': 'H', '1': 'E', '2': 'A', '3': 'R', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 9.29, 'fmt': '9.29'}, 'exchange': 'NGM', 'regularMarketTime': {'raw': 1675699651, 'fmt': '11:07AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.22 - 25.33', 'fmt': '6.22 - 25.33'}, 'sharesOutstanding': {'raw': 16557000, 'fmt': '16.557M', 'longFmt': '16,557,000'}, 'regularMarketDayHigh': {'raw': 9.29, 'fmt': '9.29'}, 'shortName': 'Turtle Beach Corporation', 'longName': 'Turtle Beach Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.28999996, 'fmt': '-0.29'}, 'regularMarketPreviousClose': {'raw': 9.33, 'fmt': '9.33'}, 'fiftyTwoWeekHighChange': {'raw': -16.29, 'fmt': '-16.29'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.8200002, 'fmt': '2.82'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 8.94, 'fmt': '8.94'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 9.04, 'fmt': '9.04'}, 'regularMarketVolume': {'raw': 23439, 'fmt': '23,439', 'longFmt': '23,439'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1289831400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 149675280, 'fmt': '149.675M', 'longFmt': '149,675,280'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'HEAR', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.45337626, 'fmt': '45.34%'}, 'regularMarketDayRange': {'raw': '8.94 - 9.29', 'fmt': '8.94 - 9.29'}, 'messageBoardId': 'finmb_851282', 'fiftyTwoWeekHigh': {'raw': 25.33, 'fmt': '25.33'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.643111, 'fmt': '-64.31%'}, 'uuid': '58194bdb-92f1-3b95-b21e-5b66d5d67f2f', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.22, 'fmt': '6.22'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.1082525, 'fmt': '-3.11%'}, 'fullExchangeName': 'NasdaqGM', 'tradeable': False}, {'0': 'K', '1': 'O', '2': 'S', '3': 'S', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 5.82, 'fmt': '5.82'}, 'exchange': 'NCM', 'regularMarketTime': {'raw': 1675697530, 'fmt': '10:32AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.44 - 12.86', 'fmt': '4.44 - 12.86'}, 'sharesOutstanding': {'raw': 9189800, 'fmt': '9.19M', 'longFmt': '9,189,800'}, 'regularMarketDayHigh': {'raw': 5.88, 'fmt': '5.88'}, 'shortName': 'Koss Corporation', 'longName': 'Koss Corporation', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0.01999998, 'fmt': '0.02'}, 'regularMarketPreviousClose': {'raw': 5.8, 'fmt': '5.80'}, 'fiftyTwoWeekHighChange': {'raw': -7.0399995, 'fmt': '-7.04'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1.3800001, 'fmt': '1.38'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.8, 'fmt': '5.80'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.82, 'fmt': '5.82'}, 'regularMarketVolume': {'raw': 2746, 'fmt': '2,746', 'longFmt': '2,746'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 322151400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 53484636, 'fmt': '53.485M', 'longFmt': '53,484,636'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'KOSS', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.31081083, 'fmt': '31.08%'}, 'regularMarketDayRange': {'raw': '5.8 - 5.88', 'fmt': '5.80 - 5.88'}, 'messageBoardId': 'finmb_283448', 'fiftyTwoWeekHigh': {'raw': 12.86, 'fmt': '12.86'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.54743385, 'fmt': '-54.74%'}, 'uuid': 'ad708ee0-5672-30f5-85f6-bbbcb3e0eccd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.44, 'fmt': '4.44'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0.34482723, 'fmt': '0.34%'}, 'fullExchangeName': 'NasdaqCM', 'tradeable': False}, {'0': 'S', '1': 'S', '2': 'N', '3': 'L', '4': 'F', 'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 40.5999, 'fmt': '40.60'}, 'exchange': 'PNK', 'regularMarketTime': {'raw': 1664306331, 'fmt': '3:18PM EDT'}, 'fiftyTwoWeekRange': {'raw': '40.5999 - 57.75', 'fmt': '40.60 - 57.75'}, 'sharesOutstanding': {'raw': 5969780224, 'fmt': '5.97B', 'longFmt': '5,969,780,224'}, 'regularMarketDayHigh': {'raw': 40.5999, 'fmt': '40.60'}, 'shortName': 'SAMSUNG ELECTRONICS CO', 'longName': 'Samsung Electronics Co., Ltd.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': 0, 'fmt': '0.00'}, 'regularMarketPreviousClose': {'raw': 40.5999, 'fmt': '40.60'}, 'fiftyTwoWeekHighChange': {'raw': -17.1501, 'fmt': '-17.15'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 0, 'fmt': '0.00'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'LOW', 'regularMarketDayLow': {'raw': 40.5999, 'fmt': '40.60'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 40.5999, 'fmt': '40.60'}, 'regularMarketVolume': {'raw': 200, 'fmt': '200', 'longFmt': '200'}, 'isLoading': False, 'triggerable': False, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 997104600000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 301846429696, 'fmt': '301.846B', 'longFmt': '301,846,429,696'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'SSNLF', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0, 'fmt': '0.00%'}, 'regularMarketDayRange': {'raw': '40.5999 - 40.5999', 'fmt': '40.60 - 40.60'}, 'messageBoardId': 'finmb_91868', 'fiftyTwoWeekHigh': {'raw': 57.75, 'fmt': '57.75'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.29697144, 'fmt': '-29.70%'}, 'uuid': '5f5ae02b-3a86-367d-b20b-055520cea9ae', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 40.5999, 'fmt': '40.60'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': 0, 'fmt': '0.00%'}, 'fullExchangeName': 'Other OTC', 'tradeable': False}, {'0': 'V', '1': 'Z', '2': 'I', '3': 'O', 'sourceInterval': 15, 'quoteSourceName': 'Nasdaq Real Time Price', 'regularMarketOpen': {'raw': 9.44, 'fmt': '9.44'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675699688, 'fmt': '11:08AM EST'}, 'fiftyTwoWeekRange': {'raw': '6.47 - 15.42', 'fmt': '6.47 - 15.42'}, 'sharesOutstanding': {'raw': 117636000, 'fmt': '117.636M', 'longFmt': '117,636,000'}, 'regularMarketDayHigh': {'raw': 9.505, 'fmt': '9.51'}, 'shortName': 'VIZIO Holding Corp.', 'longName': 'VIZIO Holding Corp.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.34999943, 'fmt': '-0.35'}, 'regularMarketPreviousClose': {'raw': 9.57, 'fmt': '9.57'}, 'fiftyTwoWeekHighChange': {'raw': -6.2, 'fmt': '-6.20'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 2.7500005, 'fmt': '2.75'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 9.13, 'fmt': '9.13'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 9.22, 'fmt': '9.22'}, 'regularMarketVolume': {'raw': 45393, 'fmt': '45,393', 'longFmt': '45,393'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1616765400000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 1792829056, 'fmt': '1.793B', 'longFmt': '1,792,829,056'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'VZIO', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.42503873, 'fmt': '42.50%'}, 'regularMarketDayRange': {'raw': '9.13 - 9.505', 'fmt': '9.13 - 9.51'}, 'messageBoardId': 'finmb_27650657', 'fiftyTwoWeekHigh': {'raw': 15.42, 'fmt': '15.42'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.4020752, 'fmt': '-40.21%'}, 'uuid': '98dc8f95-157e-3c62-b8f9-ea5c671822cd', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 6.47, 'fmt': '6.47'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.6572564, 'fmt': '-3.66%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}, {'0': 'L', '1': 'P', '2': 'L', 'sourceInterval': 15, 'quoteSourceName': 'Delayed Quote', 'regularMarketOpen': {'raw': 5.52, 'fmt': '5.52'}, 'exchange': 'NYQ', 'regularMarketTime': {'raw': 1675698891, 'fmt': '10:54AM EST'}, 'fiftyTwoWeekRange': {'raw': '4.08 - 8.53', 'fmt': '4.08 - 8.53'}, 'sharesOutstanding': {'raw': 715630976, 'fmt': '715.631M', 'longFmt': '715,630,976'}, 'regularMarketDayHigh': {'raw': 5.52, 'fmt': '5.52'}, 'shortName': 'LG Display Co, Ltd AMERICAN DEP', 'longName': 'LG Display Co., Ltd.', 'exchangeTimezoneName': 'America/New_York', 'regularMarketChange': {'raw': -0.1949997, 'fmt': '-0.19'}, 'regularMarketPreviousClose': {'raw': 5.68, 'fmt': '5.68'}, 'fiftyTwoWeekHighChange': {'raw': -3.0449996, 'fmt': '-3.04'}, 'exchangeTimezoneShortName': 'EST', 'fiftyTwoWeekLowChange': {'raw': 1.4050002, 'fmt': '1.41'}, 'exchangeDataDelayedBy': 0, 'customPriceAlertConfidence': 'HIGH', 'regularMarketDayLow': {'raw': 5.46, 'fmt': '5.46'}, 'priceHint': 2, 'currency': 'USD', 'regularMarketPrice': {'raw': 5.485, 'fmt': '5.49'}, 'regularMarketVolume': {'raw': 76349, 'fmt': '76,349', 'longFmt': '76,349'}, 'isLoading': False, 'triggerable': True, 'gmtOffSetMilliseconds': -18000000, 'firstTradeDateMilliseconds': 1090503000000, 'region': 'US', 'marketState': 'REGULAR', 'marketCap': {'raw': 3925235968, 'fmt': '3.925B', 'longFmt': '3,925,235,968'}, 'quoteType': 'EQUITY', 'invalid': False, 'corporateActions': [], 'symbol': 'LPL', 'language': 'en-US', 'fiftyTwoWeekLowChangePercent': {'raw': 0.3443628, 'fmt': '34.44%'}, 'regularMarketDayRange': {'raw': '5.46 - 5.52', 'fmt': '5.46 - 5.52'}, 'messageBoardId': 'finmb_5471044', 'fiftyTwoWeekHigh': {'raw': 8.53, 'fmt': '8.53'}, 'fiftyTwoWeekHighChangePercent': {'raw': -0.35697535, 'fmt': '-35.70%'}, 'uuid': '78df0a6f-207d-3a77-adfe-657f86e6d5c9', 'market': 'us_market', 'fiftyTwoWeekLow': {'raw': 4.08, 'fmt': '4.08'}, 'typeDisp': 'Equity', 'cryptoTradeable': False, 'regularMarketChangePercent': {'raw': -3.4330935, 'fmt': '-3.43%'}, 'fullExchangeName': 'NYSE', 'tradeable': False}]}, 'errorList': []}, 'UHAccountSwitchStore': {'site': 'finance', 'crumb': 'Tu0O03hobfX', 'sendRequest': False, 'isEnabled': True}, 'MobileHeaderStore': {'navTitle': 'finance', 'useNavTitle': False}}} \n", "\n", "_clean_api_data \t > \n", "\n", "_clean_data_process \t > \n", "\n", "_clean_earnings_data \t > \n", "\n", "_clean_historical_data \t > \n", "\n", "_clean_reports \t > \n", "\n", "_convert_to_utc \t \n", "\n", "_create_dict_ent \t > \n", "\n", "_determine_numeric_value \t \n", "\n", "_encode_ticker \t \n", "\n", "_financial_statement_data \t > \n", "\n", "_format_time \t > \n", "\n", "_get_api_data \t > \n", "\n", "_get_cleaned_sub_dict_ent \t > \n", "\n", "_get_proxy \t > \n", "\n", "_get_stmt_id \t > \n", "\n", "_get_sub_dict_ent \t > \n", "\n", "_get_worker_count \t > \n", "\n", "_handle_api_dividend_request \t > \n", "\n", "_recursive_api_request \t > \n", "\n", "_reformat_stmt_data_process \t > \n", "\n", "_request_handler \t > \n", "\n", "_run_financial_stmt \t > \n", "\n", "_scrape_data \t > \n", "\n", "_stock_price_data \t > \n", "\n", "_stock_summary_data \t > \n", "\n", "concurrent \t False \n", "\n", "country \t US \n", "\n", "format_date \t \n", "\n", "get_200day_moving_avg \t > \n", "\n", "get_50day_moving_avg \t > \n", "\n", "get_annual_avg_div_rate \t > \n", "\n", "get_annual_avg_div_yield \t > \n", "\n", "get_beta \t > \n", "\n", "get_book_value \t > \n", "\n", "get_clean_data \t > \n", "\n", "get_cost_of_revenue \t > \n", "\n", "get_currency \t > \n", "\n", "get_current_change \t > \n", "\n", "get_current_percent_change \t > \n", "\n", "get_current_price \t > \n", "\n", "get_current_volume \t > \n", "\n", "get_daily_dividend_data \t > \n", "\n", "get_daily_high \t > \n", "\n", "get_daily_low \t > \n", "\n", "get_dividend_rate \t > \n", "\n", "get_dividend_yield \t > \n", "\n", "get_earnings_per_share \t > \n", "\n", "get_ebit \t > \n", "\n", "get_exdividend_date \t > \n", "\n", "get_financial_data \t > \n", "\n", "get_financial_stmts \t > \n", "\n", "get_five_yr_avg_div_yield \t > \n", "\n", "get_gross_profit \t > \n", "\n", "get_historical_price_data \t > \n", "\n", "get_income_before_tax \t > \n", "\n", "get_income_tax_expense \t > \n", "\n", "get_interest_expense \t > \n", "\n", "get_key_statistics_data \t > \n", "\n", "get_market_cap \t > \n", "\n", "get_net_income \t > \n", "\n", "get_net_income_from_continuing_ops \t > \n", "\n", "get_num_shares_outstanding \t > \n", "\n", "get_open_price \t > \n", "\n", "get_operating_income \t > \n", "\n", "get_payout_ratio \t > \n", "\n", "get_pe_ratio \t > \n", "\n", "get_prev_close_price \t > \n", "\n", "get_price_to_sales \t > \n", "\n", "get_reformatted_stmt_data \t > \n", "\n", "get_report_type \t \n", "\n", "get_research_and_development \t > \n", "\n", "get_stock_data \t > \n", "\n", "get_stock_dividend_data \t > \n", "\n", "get_stock_earnings_data \t > \n", "\n", "get_stock_exchange \t > \n", "\n", "get_stock_price_data \t > \n", "\n", "get_stock_profile_data \t > \n", "\n", "get_stock_quote_type_data \t > \n", "\n", "get_stock_summary_url \t > \n", "\n", "get_stock_tech_data \t > \n", "\n", "get_summary_data \t > \n", "\n", "get_ten_day_avg_daily_volume \t > \n", "\n", "get_three_month_avg_daily_volume \t > \n", "\n", "get_time_code \t > \n", "\n", "get_total_operating_expense \t > \n", "\n", "get_total_revenue \t > \n", "\n", "get_yearly_high \t > \n", "\n", "get_yearly_low \t > \n", "\n", "max_workers \t 8 \n", "\n", "proxies \t None \n", "\n", "ticker \t AAPL \n", "\n", "timeout \t 30 \n", "\n" ] } ], "source": [ "for p in dir(yahoo_financials):\n", " print (p, '\\t', getattr(yahoo_financials, p), '\\n')" ] }, { "cell_type": "code", "execution_count": 28, "id": "fd531731", "metadata": {}, "outputs": [], "source": [ "p = yahoo_financials.get_beta" ] }, { "cell_type": "code", "execution_count": 53, "id": "8abc84b2", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "1.187468" ] }, "execution_count": 53, "metadata": {}, "output_type": "execute_result" } ], "source": [ "p()" ] }, { "cell_type": "markdown", "id": "fa9e808b", "metadata": {}, "source": [ "## YahooFinancials - Bitcoin" ] }, { "cell_type": "code", "execution_count": 45, "id": "503452af", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
highlowopenclosevolumeadjclose
formatted_date
2019-08-0112273.8212899421.62988310077.4423839630.6640625339849717349630.664062
2019-09-0110898.7617197830.7587899630.5927738293.8681644805449632308293.868164
2019-10-0110021.7441417446.9887708299.7207039199.5849615952051347489199.584961
2019-11-019505.0517586617.1669929193.9921887569.6298836769195236507569.629883
2019-12-017743.4316416540.0493167571.6162117193.5991216337903734167193.599121
\n", "
" ], "text/plain": [ " high low open close \\\n", "formatted_date \n", "2019-08-01 12273.821289 9421.629883 10077.442383 9630.664062 \n", "2019-09-01 10898.761719 7830.758789 9630.592773 8293.868164 \n", "2019-10-01 10021.744141 7446.988770 8299.720703 9199.584961 \n", "2019-11-01 9505.051758 6617.166992 9193.992188 7569.629883 \n", "2019-12-01 7743.431641 6540.049316 7571.616211 7193.599121 \n", "\n", " volume adjclose \n", "formatted_date \n", "2019-08-01 533984971734 9630.664062 \n", "2019-09-01 480544963230 8293.868164 \n", "2019-10-01 595205134748 9199.584961 \n", "2019-11-01 676919523650 7569.629883 \n", "2019-12-01 633790373416 7193.599121 " ] }, "execution_count": 45, "metadata": {}, "output_type": "execute_result" } ], "source": [ "yahoo_financials = YahooFinancials('BTC-USD')\n", "data=yahoo_financials.get_historical_price_data(\"2019-07-10\", \"2022-01-31\", \"monthly\")\n", "btc_df = pd.DataFrame(data['BTC-USD']['prices'])\n", "btc_df = btc_df.drop('date', axis=1).set_index('formatted_date')\n", "btc_df.head()" ] }, { "cell_type": "code", "execution_count": 46, "id": "a381b608", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
highlowopenclosevolumeadjclose
formatted_date
2021-09-0152853.76562539787.60937547099.77343843790.894531110213967882443790.894531
2021-10-0166930.39062543320.02343843816.74218861318.957031115307790353461318.957031
2021-11-0168789.62500053569.76562561320.44921957005.425781105327027138357005.425781
2021-12-0159041.68359442874.61718856907.96484446306.44531295704718472246306.445312
2022-01-0147881.40625033184.05859446311.74609438483.12500092397903768138483.125000
\n", "
" ], "text/plain": [ " high low open close \\\n", "formatted_date \n", "2021-09-01 52853.765625 39787.609375 47099.773438 43790.894531 \n", "2021-10-01 66930.390625 43320.023438 43816.742188 61318.957031 \n", "2021-11-01 68789.625000 53569.765625 61320.449219 57005.425781 \n", "2021-12-01 59041.683594 42874.617188 56907.964844 46306.445312 \n", "2022-01-01 47881.406250 33184.058594 46311.746094 38483.125000 \n", "\n", " volume adjclose \n", "formatted_date \n", "2021-09-01 1102139678824 43790.894531 \n", "2021-10-01 1153077903534 61318.957031 \n", "2021-11-01 1053270271383 57005.425781 \n", "2021-12-01 957047184722 46306.445312 \n", "2022-01-01 923979037681 38483.125000 " ] }, "execution_count": 46, "metadata": {}, "output_type": "execute_result" } ], "source": [ "btc_df.tail()" ] }, { "cell_type": "markdown", "id": "e29be32c", "metadata": {}, "source": [ "## The Standard and Poors 500 Index\n", "\n", "When we speak of \"The Market\" or a beta relative to the market, we are usually referring to the S and P 500. It has its own ticker: '^GSPC'" ] }, { "cell_type": "code", "execution_count": 25, "id": "da0b2949", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 25, "metadata": {}, "output_type": "execute_result" }, { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAAX0AAAEMCAYAAAAoB2Y1AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjYuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8o6BhiAAAACXBIWXMAAAsTAAALEwEAmpwYAAA/YklEQVR4nO3deXhU1fnA8e+bPQTCvoQECCLIvgiyCO6iFPdWW9ytWtSqta1t1ba2aovLT63Wum8Vl7rb4oL7goqgAgLKvu87JCSEhCzv7497ZzKTmSSTMFsy7+d58nDvuffOOXdI3jlzzrnniKpijDEmMSTFugDGGGOix4K+McYkEAv6xhiTQCzoG2NMArGgb4wxCcSCvjHGJBAL+qbZE5F8EVERSYl1WSJJRP4oIk/GuhwmvlnQN1EjIuNE5CsRKRSR3SIyU0SOiINyrRWR/SJSLCLbROTfItKylnM/E5FS99xiEVlW4/gJIrJUREpE5FMR6eFzTETkLhHZ5f78n4hIuO5DVW9X1cvD9XqmebKgb6JCRLKBt4F/Ae2AXOBWoCyW5fJxmqq2BA4HjgD+XMe516hqS/fnME+iiHQA3gBuxrnHOcDLPtdNBs4EhgCDgVOBK8JR+Ob+LcaEjwV9Ey19AFT1RVWtVNX9qvqBqi4MdrKIjBSRWSJSICJbRORBEUnzOa4icqWIrBCRPSLykKfWLCLJInKPiOwUkdXAKaEWUlU3Ae8CAxtxjz8GFqnqq6paCtwCDBGRvu7xi4F7VXWjm8+9wCXBXsinSWqyiGx234PrfY7fIiKvicjzIrIXuMRNe97nHM83qwIR2SAil7jp6e77s979ZvOoiGQ24n5NE2RB30TLcqBSRKaKyI9EpG0951cCvwE6AGOAE4Bf1jjnVJxa+RDgp8DJbvov3GPDgBHA2aEWUkS6AROB7+o47Q73A2WmiBzrkz4AWODZUdV9wCo3PeC4uz2Auh0H9AZOAm4UkRN9jp0BvAa0AV6ocR/dcT68/gV0BIYC893Dd+F8CA8FDsX51vWXesphmgkL+iYqVHUvMA5Q4Algh4i8KSKdazl/rqrOVtUKVV0LPAYcU+O0O1W1QFXXA5/iBDFwPgDuV9UNqrobuCOEIv5PRAqAL4EZwO21nHcDcAhOoHwceEtEernHWgKFNc4vBFrVcrwQaFlPu/6tqrpPVb8H/g2c63Nslqr+T1WrVHV/jevOBz5yv1mVq+ouVZ3v5vUL4DequltVi9x7nVRHGUwzYu2AJmpUdQluc4bb5PE8cD/+gQz3eB/gHzg19RY4v6tza5y21We7BCeoAnQFNvgcWxdC8c5U1Y9CuIevfXanisi5ON8M/gUUA9k1LskGitztmsezgWKte9bDmvcxqJZjNXXD+ZZRU0ec93Ouz2eNAMl1vJZpRqymb2JCVZcCz1B72/kjwFKgt6pmA3/ECU6h2IIT9Dy6N7KYoVCqy7UIp6kJABHJAnq56QHH3e1F1K3mfWyukXdtNrh517QT2A8MUNU27k9rtxPbJAAL+iYqRKSviFwvInnufjecGv7sWi5pBewFit1vBVc1ILtXgF+JSJ7bd3DjQRTdS0TaiMjJIpIhIikicj5wNPC+e8p/gYEi8hMRycBpJ1/ofsABPAv8VkRyRaQrcD3OB19dbhaRFiIyAPg5/qOB6vICcKKI/NQta3sRGaqqVTjNa/eJSCf3vnJF5OQ6X800Gxb0TbQUAaOAr0VkH06w/wEn8AXzO+A897onCD3Y4Z7/Pk5H6TycYZThkAr8HdiBU2O+FqdZaBmAqu4AfgJMAfbg3K9vW/ljwFvA9zj3/o6bVpcZwErgY+AeVf0glIK6/RwTcd7f3TiduJ5vGTe4rznbHfnzEXBYkJcxzZDYIirGxB8RyQfWAKmqWhHj4phmxGr6xhiTQCzoG2NMArHmHWOMSSBW0zfGmARiQd8YYxJI3D+R26FDB83Pz491MYwxpkmZO3fuTlXtWDM97oN+fn4+c+bMiXUxjDGmSRGRoNOPWPOOMcYkEAv6xhiTQCzoG2NMArGgb4wxCcSCvjHGJBAL+sYY46OotJyV24vqP7GJivshm8YYEy2l5ZUMusWZvXrBX06idYvUGJco/Kymb4wxri2Fpd7tvaXlMSxJ5FjQN8YY187iMu92WUVlDEsSORb0jTHGtaOoOujPWrUrhiWJHAv6xpiEtrlgP+8v2srs1bv45QvzvOk3T6tvzfqmyTpyjTEJ64NFW5n83NxYFyOqrKZvjElY89YXxLoIUWdB3xiTsA5UVMW6CFFnQd8Yk7D2lVUETT+yV3sAai4nu/9AJV+s2BHxckWSBX1jTMLaU3KAFmnJAenH9HHWHik54D9s8+ZpP3DhU9+wcntxVMoXCRb0jTEJSVWZt77AW6v31SrDeRJ3Z3EZVVXVtf01O/cBzodFU2VB3xiTkMoqqthZXMaw7m0DjmVnOgMbj7n7Mw7543QK3CAv7vGPFm+LVjHDzoK+MSYhPfXlGgA+X76DK44+xO+Yp6bvsX53CVDd3PPY56ujUMLICDnoi0iyiHwnIm+7+7eIyCYRme/+TPQ59yYRWSkiy0TkZJ/04SLyvXvsARGRYHkZY0y4bSrYz/pdJd79u99fBkC/nGzKfEbxvDx5NK0y/B9hSk5yQtXiLXujUNLIakhN/zpgSY20+1R1qPszHUBE+gOTgAHABOBhEfH0lDwCTAZ6uz8TDqbwxhgTiqoqZeydn3D03Z962+g9Vc4/ndKPbDfIi8CoQ9p79z08Qb85CCnoi0gecArwZAinnwG8pKplqroGWAmMFJEcIFtVZ6kzDupZ4MzGFdsYY0K3akf1aJv5GwsAGJzbmqP7dCQ1OYnu7bMAuPmU/gCkpwSO6PGV2yYzMgWNglBr+vcDfwBqPslwjYgsFJGnRcTTG5ILbPA5Z6Oblutu10wPICKTRWSOiMzZsaNpj4k1xsTeFT5TLSzcUADAnpJy2rrz5f/k8FweOu9wLj4yH4DUZP/QWFGpVPqM4tlUsD+yBY6geoO+iJwKbFfVmhNUPAL0AoYCW4B7PZcEeRmtIz0wUfVxVR2hqiM6duxYXxGNMaZWX6zYwWp3qCXALW8tpnB/OZsK9tO9XQsARIRTBud4m3FSk/3D1dX/mcf+cv8x+xt2l9AUhVLTHwucLiJrgZeA40XkeVXdpqqVqloFPAGMdM/fCHTzuT4P2Oym5wVJN8aYiPkwyPDKG19fSGWV0rdLdtBrUlP8Q+O6XSV8tXKnX9pR//dp+AoZRfUGfVW9SVXzVDUfp4P2E1W9wG2j9zgL+MHdfhOYJCLpItITp8P2G1XdAhSJyGh31M5FwLRw3owxxvgqLqvg2VnrAtLf/WErAOkpwUNgalJgeqk7wiczte72/nh3MOP0/88dfrkQOA74DYCqLgJeARYD7wFXq6rne9FVOJ3BK4FVwLsHkb8xxtSqrKKSgX993y/t+vF9/PbTagv6yYGt0RWVTtDvl9MqTCWMjQbNp6+qnwGfudsX1nHeFGBKkPQ5wMAGldAYYxph6ZYiv/3Wmam0zUrzS6utph9siOZ2d1WtnNaZQEFYyhgL9kSuMabZ2ba3lDMemund/91JfZh+3VEk1XgetLaafrDnRu98dykAvz2p+ttCzVk4mwIL+saYZucPry30bt/1k0Fcc3xvcttkUrMCX1vQ99U/x7+zt12LNG8zke8wzqbCgr4xptmZsbz6+Z5DO1W3wY8+xH9GzU6tMup9rfRU/zCZkiwku23+FRb0jTEmtmo2ufjOl5/fIcvvWMdW6bW+Tu9OLQHo2tr/6dvU5CRS3K8MVtM3xpgYK6uxBGLNRVI8D2TV58XJo3niohH0aO9/fmpyEsnukM5HZ6yqs13/Xx+v4F8frwgpv2ixoG+MaVYWuNMseGTWCPqvX3UkAM9fNqrO1+nQMp3x/TsHTLOcnCR8s2YXAP/6ZCVLtxYFuxxV5d4Pl3Pvh8sbUvyIa9CQTWOMiWeqyrQFm0lJEm97e4s0/zDXsVU6a+885aDyKa+srt3Xtrj63v3B19+NNavpG2OajTvfXcp/vl5PUpJw0ZgeQGSeoL1hQl/vdlUtzTtlFZVB02PNgr4xpkl7bMYqTrpvBnv2HfCuaHWgoopbThvAktsmRGQufM9yilDLrJEE9i3ECwv6xpgma1dxGXe8u5Tl24q598Nl3vSM1CSSkiSgPb8xTh2cE5CW7PPwVm39uL41/f0H4qfWb0HfGNMkHaio8nvq9vnZ673b4WzS6dauBQ+eN8wvLcnv20NtzTvVNf2rXqg5M33dVDViw0Et6BtjmqSpX61l457gi5lkhLkdP63Goiq+0zlUKYyc8hFTv1rrd45v0P9sWcMWg/r9awvp9cfpDS9oCCzoG2OapOKywNExb10zDoBLx/YMa16jezlP8v54mLPYn2fFLYD3ftjK9qIy/vrmIr9rHvxkZaPze23uxvpPaiQbsmmMaZL+GeShpwFds1l1+8SAOXYOVnZGqt8wT98J2Z76ck3A+VVVyidLtx90vhWVVaQkh7dubjV9Y0yT1s5nuuSkJCE5SYLOkhluHVo6+QbrP5i9epffflpyEvNrPDRWF09zUiTm9rGgb4xpcjxTH4zs2Y57zhkckzL8+xJnhVjftXODTcmQlpLEgcoqznxoJuWVoQ3jHN+/M706ZoW9bwIs6BtjmqBd+w4AMKpnOzxx9MR+naJahsy0wPDpqZmXe58GTqZlenUrerAROQ9+soL3F231S1u/u4SUIEs2hoMFfWNMkzPTXaQ8OyPV236fmRbdLspg+Xlq8uXuyJ0XLh/lN9In2Jj+ez5YzhXPVQ/pLCot5/tNhSzbFnxOn4MVctAXkWQR+U5E3nb324nIhyKywv23rc+5N4nIShFZJiIn+6QPd9fVXSkiD0g0Gt6MMc3OvjKnSeWUwTkce1gnrjymF7eePiCqZQjWlu+Zk8cT/DNSk2mVUf3hUNuUDb6KSiM7Z09DavrXAUt89m8EPlbV3sDH7j4i0h+YBAwAJgAPi4jn3XkEmAz0dn8mHFTpjTEJaeveUkScydOSk4Qbf9TXr0M3GmpO2Qw+NX23GSc1OYleHVt6j1fWCPpfrKgev790616AWp89CJeQgr6I5AGnAE/6JJ8BTHW3pwJn+qS/pKplqroGWAmMFJEcIFtVZ6nT2/GszzXGGBOy3fvKaJOZSmqYhzM2RLBF1T1Bf9GmQgBSk4V2WdVj+rVGP+6/Z671bk+4/wtUlT//7/vwF9ZHqO/Y/cAfAN8id1bVLQDuv55elFxgg895G920XHe7ZnoAEZksInNEZM6OHQ17ks0Y0/yVlFVGZPbMhgjWOu3pqPVM/JaanOQ3tbNv887d7y8NGMs/f0MBy7cVA7Dq9olhLzOE8HCWiJwKbFfVuSJybAivGaydXutID0xUfRx4HGDEiBFNbz0yY0xEqCo9b4rM9AThUFWjJp+anMTe/eXVx32C/kOfrgq4vqCk+txIzA4KoT2ROxY4XUQmAhlAtog8D2wTkRxV3eI23Xg+sjYC3XyuzwM2u+l5QdKNMSYkO4rKYl2EOtVss09LTuKN7zZVH/cZstmjfQvW7SrxO39vaTmRVm/zjqrepKp5qpqP00H7iapeALwJXOyedjEwzd1+E5gkIuki0hOnw/YbtwmoSERGu6N2LvK5xhhjavXa3I0cMeUj7v2geunBy8eFd36dcKisqqLKJ7CnJAt/ObW/d//TZdXNOacP6RpwfaRH7sDBjdO/ExgvIiuA8e4+qroIeAVYDLwHXK2qnkfWrsLpDF4JrALePYj8jTEJ4nevLmBHURkvz6nuLgw2eibafny4f7fkX99cxLz1e7z7KclC787Vo3e6uYuyqyoHKqpISRK+v+UkAFqmp8Rf0FfVz1T1VHd7l6qeoKq93X93+5w3RVV7qephqvquT/ocVR3oHrtG61pG3hhjqH0N2vIIzTffENce3xuonnVz5spdnP3oLADOHdmN9JRkRvVs7z3/xtedkTmXPvMtj32+mqQkoVVGKucMz6NVRgpPfrE64mW2J3KNMXFtw56SoOkTBwauaBVtPTtk8czPj+BvZw4MOHZY51aAM/fO61cdCTjTKwB86s6v7+mqLa2oYkthqXd6if/+8siIldmmVjbGxK1dxWWccO+MgPQVU34U0zH6vo49rFPArJoABT6jdvrlOB8A3d3mHQ/PQis/uOP6AQbntWZY97ZEigV9Y0zcunTqnKDp8RLwPYI9M/DDpr3e7RZpKfTPySa3bWbQ67PSq69fuLEw6DnhEl/vnDHGuP7z9XoW+MxBnxbkCdh4EWwK5CN7tffbT0tJ8ltC0VeP9lkRKVcw8fsuGmMS2m1v+y8/eObQwCGO8SJYTf9nR3Tz209PSaK4tDzoMo+/P+mwiJWtJgv6xpi4dGSvDn77f5rYv5YzYy8jyNz6NZug0lKSmLe+gIF/fT/g3PwO1TX9b/50QvgL6MPa9I0xcWlzgf9sky0z4jdc+Tbv/OKonvz48LyA5qj0lLqfK3jtyjF8vWY3nVplRKSMHvH7LhpjEtYPmwpZutV/EZHkJGHqpSMDRsDEA9/mncuPOoTO2YGBOz217oaVEfntGJHfLuxlq8mCvjEmrpSWV3Lqv74MeuyYPh2jXJrQ+DbltGmRGvSc9DgZcRQfpTDGGKCisoqxd34S62IclNqacVbv3BeQdtdPBkW6OAGspm+MiRsPf7bK+1QqQN8urfjXucOCz8HexBSUHPDb/9e5wzgtyKRrkWZB3xgTN3wnK/vDhMO4bFzPejtAm4qOrdJZ6zOVcijr5UaCBX1jTNzY7VPL/+Wxh8awJA13VO8OZGcGb88H6N4ui2/XVn+oDclrE4VSBbKgb4yJCzNX7vROQRCPI3Tq89xlo+o8/tMRebw+r3rFWN+x+dFkHbnGmLhw/pNfe7c//8NxMSxJZAzt3ibWRQAs6Btj4kDJgeqpCe4+e3AMSxI5qUnxEW7joxTGmIRQUHKAY+7+lCVb9vqlb9xT/fRt/67Z0S5WVCRFaKHzhrKgb4yJmhnLd7BuVwkPf7bKL/0v037wbgd7mrW5ePe6o+jQMo0/n9IvZmWoN+iLSIaIfCMiC0RkkYjc6qbfIiKbRGS++zPR55qbRGSliCwTkZN90oeLyPfusQfcBdKNMQmiotIZppji1npX7Shma2Eps1d7V1ulQ8v0mJQtGvrlZDPnz+O5/KhDYlaGUEbvlAHHq2qxiKQCX4qIZ93b+1T1Ht+TRaQ/MAkYAHQFPhKRPu7i6I8Ak4HZwHRgArY4ujEJo6LKmU/eE/Q9q2Id0jGL1Tv28f6vj45Z2RJFvTV9dRS7u6nuT11PFZwBvKSqZaq6BlgJjBSRHCBbVWe5C6I/C5x5UKU3xjQpz3y1DnAmT/O1esc+sjNSOKxLq1gUK6GE1KYvIskiMh/YDnyoqp6xVdeIyEIReVpEPIs65gIbfC7f6Kbluts104PlN1lE5ojInB07doR+N8aYuLZ+lzP/TJfWGZRXVq8i1TI9hS6tm29bfjwJKeiraqWqDgXycGrtA3GaanoBQ4EtwL3u6cHa6bWO9GD5Pa6qI1R1RMeO8TmrnjGm4frmOCNzstJSKPRZOLy4rIKBua1jVayE0qDRO6paAHwGTFDVbe6HQRXwBDDSPW0j4LtOWB6w2U3PC5JujEkQ+9ylAsurqth/oNLvWFqcTD3c3IUyeqejiLRxtzOBE4Glbhu9x1mAZ8zVm8AkEUkXkZ5Ab+AbVd0CFInIaHfUzkXAtPDdijEm3hWUOLX7ikplf7l/0K+5vKCJjFBG7+QAU0UkGedD4hVVfVtEnhORoThNNGuBKwBUdZGIvAIsBiqAq92ROwBXAc8AmTijdmzkjjEJ4kBFFduLSgFYv7uE1Tv855e3oB8d9QZ9VV0IDAuSfmEd10wBpgRJnwMMbGAZjTFxYldxGWt27mvUsn5z1u2myu3Fe23uRl6bu9HveGqKPbYTDfbRaowJyb6yCob//SPOfnQWpTWaZkJx3hNfB033LC9obfrRYe+yMSYka3dVN8f4jrwJxeaC/bUea5+VBljzTrTYu2yMqVNllfLxkm2c8kD1YuU1R97U5+Ol22s9NqZXe8CCfrTYu2yMqdO3a3dz2dQ5fmklDQz6e91vBnf8eBB9fZ66PaZPR8rKnYe0UpOtTT8aLOgbY+q0tbA0IG1/eUWQM2u3pXA/2RkpnDuyO+/5zK9z/qjuvOp26Da0ycg0jgV9Y0ydfv3y/IC0htT0V24v4uVvN3Bop5YBx1qkVQ8gzExrHgugxztbI9cYU6ttewNr+dCwoH/iPz4HoGOrwCmTfReTGtqtTYPKZhrHgr4xplajbv84aHp9QzZLyyvJSPWvub+/aJt3+4j8tny7dg9JIiy69WQ+XrqdI3t1OPgCm3pZ844xJqjZq3d5twfUWMKwrpr+tPmb6Hvze6zZuc9vqGZXn1k0TxvSFYBeHVuSlZ7C6e6+iTwL+saYoF53O1j7dmnFW9eM48LRPXjtyjEAlNVR0/c8abtmZzH//W6TN/33Ew7zbl84ugfL/j4haJOPiSxr3jHGBPXq3I3ktM7wjrb525kDKSp1RtiUV9a+jpKn6aeyChZsKADgkfMP50eDqudoFBHSU6zjNhaspm+MCVDozoaZ3z7LL93zANUBnwVQavLMr1NcVs4Hi512/P41modM7FjQN8b4+XDxNobc9gEAk4/xX8DbE/Qr6qjpV7pRf9Oe6vb8mp26JnYs6BtjvFSVXzxb/fRtXptMv+OetW3v+2i5N7jX5HnI6p4PlnvTOmfbUojxwoK+Mcbr3zPX+u337JAV/ETg4yXbgqav2ek/T/7nvz/uoMtlwseCvjEGgKoq5ba3F/ulpdQxCVpd7fq+2rVMO6hymfCy0TvGGADe+X6Ld3vcoR24bFzPOs+vrXknLTnJ7wOhhbXnxxUL+sYYAP49cw0AX914PF1rtOUHU9uwzZrfAJKSbPbMeBLKwugZIvKNiCwQkUUicqub3k5EPhSRFe6/bX2uuUlEVorIMhE52Sd9uIh87x57wF0g3RgTBaq1j7hRVeatLwAIKeCDs+ZtTSu2FTWqbCZ6QmnTLwOOV9UhwFBggoiMBm4EPlbV3sDH7j4i0h+YBAwAJgAPu4uqAzwCTAZ6uz8TwncrxpjafLVqJz1vms5R//eJN620vJJyt1a+fndJg1+zPEib/gtfr298IU1U1Bv01VHs7qa6PwqcAUx106cCZ7rbZwAvqWqZqq4BVgIjRSQHyFbVWepUOZ71ucYYEyELNxZ416fdsHu/t8bf9+b36P2nd1m1o5hj7v4MgOm/Oirk1w0W9PvltApypoknIbXpuzX1ucChwEOq+rWIdFbVLQCqukVEOrmn5wKzfS7f6KaVu9s104PlNxnnGwHdu3cP/W6MMQFOf3Cm3/6+A5V+TT0n3DvDu92nc+Cc97Xp1q5FQFpRqbO4yimDcjh9aFcG57VuaHFNhIUU9FW1EhgqIm2A/4rIwDpOD9ZOr3WkB8vvceBxgBEjRtTeEGmMqVOwtWyLSyv8ZtD0OKl/5zqHaNYU7Kncv7+zBIAHzxuGddnFpwaN01fVAuAznLb4bW6TDe6/npWPNwLdfC7LAza76XlB0o0xYVBYUk7+je/w2IxV3rTBt74PwJXH9OKunwwCYO2ufewpORBw/c2n9m9QfhVV1c07WwtLmbtut3ffAn78CmX0Tke3ho+IZAInAkuBN4GL3dMuBqa5228Ck0QkXUR64nTYfuM2BRWJyGh31M5FPtcYk7BenbOB/Bvf4a73lh7U63jmy7nj3erX8Qyr7NO5JZ1aOVMhTHp8Nre+5TyE9dB5h3vPDdZcE8wrV4zxe22A0Xd8zE8emXUQpTfREkrzTg4w1W3XTwJeUdW3RWQW8IqIXAasB84BUNVFIvIKsBioAK52m4cArgKeATKBd90fYxLS63M3cv2rC7z7j3y2iuvH92lQE4vH10Gaa6p8Hp7q0DI96Bq0jciKvLbOkM6KWp7IPSK/bdB0Ex/qDfqquhAYFiR9F3BCLddMAaYESZ8D1NUfYEzCuOPdJQFp24rKyA1xnLxHYUk5P3t8tl9aZZXy1JerAejVMYujendg6dbAMfQVtTxVW5eUZKfpZte+wCYigN+OPyxouokPNveOMQ20duc+rn3xO0oOVBzU6/g1jxzSDoC3FjS8m2vu+uq2dE8tu9cfp3P7dKeZ55+TnE7Vlun+dbwLRndnzCHtAbj6uF4h55fqrmZ+9/vLAPz6EABaZdiD/vHMgr4xDfTY56t5a8Fm3pi3qf6Ta6iorOKFr9eRf+M73imIrzq2Fy/+YjQQfLRNXb5bv4dLn3GmQn772nFcMLqH3/Gj+3RkYK4zbLJmMD6+byfat0xn7Z2n8PuT+4acZ2qKf9jw7UMAyM5IDfm1TPTZR7IxDbR9bykAu2tp3qjLozNW+c0z//pVRzK8h1M7T04SvxExoTjr4a+82wNzWwcE9hE9qtvXs2rU9I/t04nGSKlnLh2r6cc3q+kb00CetvFPlm6v58xAvgEf8AZ8cNrhv1yxk+83FnoXJa9LVZD2+NaZ/rVs30CfmpzEN388gX9OGsrKKT9q9ERoqfX0/ra0oB/X7H/HmAYoLqtgU4GzDGC7LGee+JIDFaQlJ9U66qa4rIKMlCTe+M6/OejyIFMXL9hYyGkPfgnAKYNzWL6tiMF5bQLOm7VqF+c+MTsgvVVGKslJ4p32OKvGiJ1O2RmcMTTog/AhS/b5sPCdXvniMT04vEfbej8UTGxZ0DemAW55c5F3W1V5btZabp62iNw2mcy88fiA89ft2ued18ZjZM923HvOkHrHxV/6zLd8tWoXC285ya+dvKyiMiDgv3nNWMAJyKtun8hx93zGmp37aJEe2T/x/3y9zrvdpXXmQX+gmMizoG9MA/ywqRCA9llplJZXcfM050NgU8F+KqvUrxYM8PSXawJe4+XJo0N6YvWrVc7Y+5pTGM9YtsNv/+1rx3k7az0y3YVLatb0w8132Ga3dg0bampiw76HGROi0vJKb3t+/67ZAVMZzFju38a/ekcxS7b4j40/b1T3Bk9R4NuEoqpMfm6u3/Ee7QO/MXgCcHpKZIN+h5bp3u0km3qhSbCavjEhWrfLmXP+8nE9WburJOBhp9U79nG8O/Lx9ulLePxz5+Godllp3pE+6SkNr2f5TmG8zGeRkmlXj2XG8h20CjJE8q6fDKZP5zWMiODTsfntW/h9C7EZNZsGC/rGhGh7kTNUc3z/zkydtTbg+D8+XE56ShJPz1zLmp37vOm+Qzvz2tbejv/qlWM459HA+Wt8H+JauLHQuz2kWxuGdGsT9LXatEjj+pMi+2Ts2l0llLlBf8ltE4JO82DijzXvGBOCKe8s5sKnvgEgp3Um07/fGnDOkb06cPO0RazZuY9BPm3sPTtkccrgHAAuHZtfax5H5LcLmr5mZ7F3e9V2Z/uBcwNmRomJsgrnYbK0RnyDMbFhNX1j6lFVpTzxRXWHbLAOy0M6ZvlNevb9pkJOGZTDmF7tmTgoh3ZZaTx0Xuh59u3Sytt8tK/MCazPz17HY26T0elDujbmVsKurKKK1GQJ6MA28cs+no2pQ2WV8tPHqptc3r52nF9H7OC81sy7eTyrd+yjqMx/Lp6RPdtxwege3vH8DeHbX/D715yZOP/8vx8a/DqRVlZeFfHOYhNeFvSNqcOqHcXMWbcHcNrcPUMjJx3hrBPUs0NWrUHdMxtlQ1w8pkdAWml5w6ZmiKanZ66hSm1xu6bEmneMqYOnQ7Z/TrZfm7tn+uOuQaZBPrFfZ3btK+PUwQ1vgrn1jIH8ZnwfkpOE+z5cwdMzq5uVDu3UkpXbi/nyhuMa/LqRVNLASeJMbFnQNyaIgpID/O7VhXy0ZBsAj1043O/4/nIn0NWcrhjgnnMG06ZFw5t0PDzX/uW0/mSkJvHY56tZv6uElduLOaxzqzpHABlTH2veMaaGL1fsZOhtH3oDPgQuJdiltbP0oGcVqfH9O3uPHUzAr6lNi1Qqq5TP3Ae/9paWh+21TWKymr4xPt5ZuIWr/zPPL80z172vC0b1IK9tJscd5kxP/MRFI1i5vZjszPD+SbXPcp549QzVfGlyYFmMaYhQFkbvJiKfisgSEVkkIte56beIyCYRme/+TPS55iYRWSkiy0TkZJ/04SLyvXvsAWno8+jGRJhvwP/4+mN4/9dHM6ZX+4DzkpKE4/t29hvJc2in6sXHw6VdS+dbw7dr95CVlkz3EBcvN6Y2oVRLKoDrVXWeiLQC5orIh+6x+1T1Ht+TRaQ/MAkYAHQFPhKRPu7i6I8Ak4HZwHRgArY4uokT8zcUADBhQBcerdGGHysd3Jr+4i17GZTbusHz9hhTU701fVXdoqrz3O0iYAlQ1/ypZwAvqWqZqq4BVgIjRSQHyFbVWaqqwLPAmQd7A8aEw6MzVnHmQzMB+OPEfjEuTTVPTR+cB76MOVgN6sgVkXxgGPC1m3SNiCwUkadFxDOzUy6wweeyjW5arrtdMz1YPpNFZI6IzNmxY0ewU4xptKoq5ZHPVpF/4zs88tkq1u3ax53uOq99u7SKqymCg40OMuZghBz0RaQl8Drwa1Xdi9NU0wsYCmwB7vWcGuRyrSM9MFH1cVUdoaojOnbsGGoRjalT4f5yissqeOKL1dz1nhPk73pvqXeRk8O7t+G9Xx8dV00okZ4PPxysn6FpCakaISKpOAH/BVV9A0BVt/kcfwJ4293dCHTzuTwP2Oym5wVJNyaiVJXX523id6860xl0zk4Pet55owKfho212pZgjLXu7Vqwfrcz1fQ7vxoX49KYhghl9I4ATwFLVPUfPuk5PqedBXgmBnkTmCQi6SLSE+gNfKOqW4AiERntvuZFwLQw3Ycxtfpy5U5vwAfYtreMI3u1555zhnjTHr3gcM4enhfs8rjhWRIxHqT6TDERbD5/E79CqemPBS4EvheR+W7aH4FzRWQoThPNWuAKAFVdJCKvAItxRv5c7Y7cAbgKeAbIxBm1YyN3TFiUV1aRLEKSz2yPRaXl3D59KS9+sz7g/CN7tefs4XkUlBygrKKKCQNzAs6JN8EWSI+VNJtkrcmqN+ir6pcEb4+fXsc1U4ApQdLnAAMbUkBjQtH7T0794dUrx3BEfjuKSssZdMsH3uM9O2TxyfXHsKWwlFfnbOSXxx4KwOVHHRKT8jZ1aY2YTM7Eh/hsMDSmATzj6wHOeXQWd7+/lPd+8F/k5ImLhiMidG2TyXUn9vb7RmAa7tcn9ol1EUwj2Xgw06RVVal3fL3HQ5+u8m737tSSFduLA+bOMQdnWPc2sS6CaSQL+qZJW7J1L+CsJDVxUBeufN5/3pznLhvFyu3FTXqhj/t+NoSdRQfqPzGK4nVUkamfBX3TpM1a5SxReMOP+pLbJpO3rx3Hxj0lXPn8PF6ePJourTO8M2I2VWcNi79RRanWpt9kWdA3TdZvX5nPG/M2kZWW7F3UZGBuawbmtmbtnafEuHTNW2qS1fSbKgv6psko3F/Of75ez/aiUv49c603vanX5Jsi6whvuizomyZjyK0fBE1/61p7ItSYUNl3NNNkjT6kHQv+chIt0qzuYkyo7K/FNAmrdzgrR11yZD47isq4cEwPRh8SuLiJiZ5zR3Zr0qOiEpUFfRMXqqq01nbiotJyjr93BgBd22Rwy+kDolk0U4s7fjw41kUwjWBB38RMaXkl367dzYVPfeNNO31IVy4a04MR+e28aaNv/9i7PfbQDlEtozHNjQV9ExMVlVX0vfm9gPQ3F2zmzQXOjNuPXnA4ow9pz74Dznx9L1w+igFdW0e1nMY0N9aRa2Lih817/fZfmjw64Jwrn5/H0Nuc5Zh/PCzXavnGhIEF/WaotLySisoq776qUri/nK9W7iT/xnd46ss1fL+xkIc+Xcn2vaX89uX5bHAXxIi0DbtLUFW+XOEsg/nRb4/m2z+dyOhD2nNMn9pXSbv+5MOiUj5jmjtr3mlm7vtwOf/8eAVpyUmcN6o7lxyZz7H3fOZ3zt/eXuzd/m59AR8t2cYb323i1yf25tyR3emc7f+w0/aiUu5+bxk3n9afbYWldG6dQXYIC2eoKvPWF3B49zaICC98vY4//fcH7/FDO7Xk0E6tvPs3n9qfGf+YwXUn9GZgbmt+8ewc77HOrYKvdmWMaRhRDbpMbdwYMWKEzpkzp/4TE9Cu4jLu/XA5l47N59BOrVi3a593vdeDUXMKg7F3fsKmgv1kpCZRWl4V9Jxgnpu1lpunLQLg4fMP55cvzAs4p77Xyb/xnZDzM8ZUE5G5qjqiZrrV9JsYVeWIKR+xs/gALdNTKC6rIC05iV8e14vPl++o9/qnLxnBtf/5zts5Wp8dRWVsKtgP4A344ATjDi3TmPPn8UGv++u0H5g6a513P1jA//HhufXmP6RbG3YVl4VUVmNM/SzoNzHT5m9mZ7EzzW5xWQUAz3y1lme+Wus95/cnH8bd7y/z7h+R35bHLxzB6p3FDO/Rjvd/czQbdu/n3CdmB7x+xxrNKCu2FdVaFk85anprwWa/gO/r3JHdePGbDQD88thetb62x3+vOhKxaV6MCZtQFkbvJiKfisgSEVkkIte56e1E5EMRWeH+29bnmptEZKWILBORk33Sh4vI9+6xB9wF0k2IthTu59cvz6/3PN8a9JlDu/LKFWNom5XG8B7O2Pe8ti0Y06s9fzm1PwB/PqUfa+88hZ+Pzae0xjeAF7/dUGdeng8ejwMVVVz74nfe/UM6ZPkdv/X06tUyQ1lQOylJsF8TY8InlJp+BXC9qs4TkVbAXBH5ELgE+FhV7xSRG4EbgRtEpD8wCRgAdAU+EpE+7uLojwCTgdk4a+xOwBZHD6q4rIL1u0rYW1runW5gzB2fAM6iGt+s2e2tMfu66the5LTO5IFzhzHu0A60y0qrNY9Lx/XkJ4fn0bqFE3xbpCVTUl6JqiIibN9bylvumPncNplsKtjPUxeP4LKp1X0s//tuExeM7uHd/8eHy73bA3OzefqSI+jUKoNp8zeR1zaTtJTqekYoncHGmPAKZWH0LcAWd7tIRJYAucAZwLHuaVOBz4Ab3PSXVLUMWCMiK4GRIrIWyFbVWQAi8ixwJhb0vUG2sKSc1i1SueXNRX7NNa9dOcbvoaSzhuWxYENh0Nca1q0N4DzZGgpPwAdokZZCZZWydW8pby/Ywk6ftvS3rx3Hos17GZTr/3DUt2t3e4N+yYEKHp3hLFX41Y3H09Wd4x7gjKGB7fcZqTZi2Jhoa1CbvojkA8OAr4HO7gcCqrpFRDq5p+Xi1OQ9Nrpp5e52zfRg+UzG+UZA9+7dG1LEJqeqyumY3bXPaR//08R+fgEf4OxHZ/HalWMAuH68syD1YV2coY5H9e7AFyt2es8ddRCTkLVIcybP8nyj8PjzKf1om5XGuN7Ow1Hzbh7P5oL9nPnQTO/iJQDz1hV4t30Dfk1vXzuOeev3WLONMTEQctAXkZbA68CvVXVvHX+wwQ5oHemBiaqPA4+DM2Qz1DI2NZsK9jP2Tv8AO2X6EgBuOa0/a3bu83aInv3oLKA62I9xg/vpQ7ry3GWjwlKezNTgMyZeftQhfvvtstJol5VGVnoKJT59AGt2OjNhXnGM//k1eVa3MsZEX0hBX0RScQL+C6r6hpu8TURy3Fp+DrDdTd8IdPO5PA/Y7KbnBUlPSEu37mXC/V/Uevy0IV1p3zI9YBTM0e5Tq/kdslh828m1BurGSA2y2PXko2sP4PsPVPLytxvIaZ1Bv5xs75j8y8b2DFuZjDHhFcroHQGeApao6j98Dr0JXOxuXwxM80mfJCLpItIT6A184zYFFYnIaPc1L/K5JuFM/ao6mE+7emzAw0ftWzpDJ+f++US/9AyfIN8iLSWsTSQpQRa7rqsj+EBlFfvLK7nj3aVc9HT1TJnZmdZBa0y8CqUnbSxwIXC8iMx3fyYCdwLjRWQFMN7dR1UXAa8Ai4H3gKvdkTsAVwFPAiuBVSRoJ+4Hi7by4jfrSUkSpv/qKIa4na93/WQQgF9nafuW6fTPyQYCx9CHW4rPYtcn9usMQEZKwzpbxx7a3u+DyRgTX0IZvfMlwdvjAU6o5ZopwJQg6XOAgYFXNE9bCp0nWV+fu5GFGwuZOCjHb5z985ePon/XbO/+z47ojohw3GGd/F6nU3Y6i7fApCO6EUnJ7iImfTq3JL99CwAqqmrvUmmdmUrh/nLvfpLAC5cHzpZpjIkf9kRuhOwrqwgYBfPB4m1++8GW+/vpiMDAnuWuAdu9XYswljBQqtu8k9smkzOG5vL0zDV1Lkk49dKRnPnQTO9+XtvIls8Yc/BsoHQYrNxexLUvfsfYOz/h6S/XUFmlDPjr+3Ve42nKCcV5o7qTkiT07ZJd/8kHYeyhHTipf2f+ctoABuW1ZtXtE+scZTPUbZbyWB+l6ZmNMY1ns2yGwYC/vOc3gdnEQV2Y/v3WoOeuuWNiozpfyyurgo6uibU9+w5Q4T5rADYbpjHxwmbZDLPCknKe+GI1c9btDpix0hPwn7xoBP26ZpPbJtM7RXBjR9vEY8AHaOuO7jmqdwfOCdI0ZYyJLxb0G2HPvgMM+9uHfmkzfn8sr87ZyIOfrgSch6dO7N/Ze/z+nw2lV8eWUS1nNIXrATFjTGTFZ/Uxjq3cXhQQ8AFyWmdy/ujqKSPOG+U/fcSZw3IZlGdPoRpjYstq+g1QUVnFif/43Lv/7KUjeezzVbRKTyUtJYmc1tXzzfTt0irYSxhjTExZ0A+BZxbMuz9Y5pd+dJ+O3mkRPPLbt2DtrhK6tPZfZ9YYY+KBBf0gCveXk56SREZqMqrK4X/7kPNH9WDjHudhqxm/P5bWtUw18Nxlo5i9eldIC4QYY0y0WdCv4atVOznvia8BWPDXk6isUvaUlHs7aAF6tM+q7XK6tWtBtwg/RGWMMY1lQd/H63M3cv2rC7z7v37pO7q09p8XPsmmgDfGNGEJG/S/XLGTC576mq6tM5h54/GICLe7c9mnpyRRVlHFp8t2BFx36+kDol1UY4wJm4QdsnnBU04TzubCUnreNJ1+N79HanISpw/pyrK//8jv3J+PzefJi5wH2w6L8FQIxhgTSQkZ9AtLygPS9pdXsnVvKcO6twFgylnVk4GePqQrJ/TrxOybTmBkz3bRKqYxxoRdQjbv/Oeb9QD8+PBc3pi3ye/YSQO6AHD+qB6kJidRUHKAYd3bAtgwTGNMk5dQQX/x5r388oW5rN3lzAZ57zlDOKp3B37zcnXnre9C38GmOTbGmKYsIZp3dhSV8dystUx84AtvwAdn8rOzhuVxznBn6d6fj82PUQmNMSY66q3pi8jTwKnAdlUd6KbdAvwC8Axv+aOqTneP3QRcBlQCv1LV99304cAzQCYwHbhOozCvc0VllXfaX1+zb6pe9OvvZw2kQ6t0Lh9nC3obY5q3UGr6zwATgqTfp6pD3R9PwO8PTAIGuNc8LCKeBVMfASbjLJTeu5bXDKsFGwq47qX5QY/5ts+npyRzw4S+3sXIjTGmuQpljdzPRSQ/xNc7A3hJVcuANSKyEhgpImuBbFWdBSAizwJnEsGF0e9+fykPfbrKu//9LSfRMj2FLYWlxPeyMcYYEzkH06Z/jYgsFJGnRaStm5YLbPA5Z6Oblutu10yPGN+AD9AqIxURoWubTL/OWmOMSSSNDfqPAL2AocAW4F43PdgkBVpHelAiMllE5ojInB07Ap+KDcX4/p05sV8nAK48plejXsMYY5qbRg3ZVNVtnm0ReQJ4293dCPiOc8wDNrvpeUHSa3v9x4HHwVkjtzFlfMJ9gnZTwX66ZNv4emOMgUbW9EUkx2f3LOAHd/tNYJKIpItIT5wO229UdQtQJCKjxVkk9iJg2kGUO2S5bTJJtlnSjDEGCG3I5ovAsUAHEdkI/BU4VkSG4jTRrAWuAFDVRSLyCrAYqACuVlXPquFXUT1k810i2IlrjDEmOInCUPmDMmLECJ0zZ06si2GMMU2KiMxV1RE10xPiiVxjjDEOC/rGGJNALOgbY0wCsaBvjDEJJO47ckVkB7CuAZd0AHZGqDjxmnei5RvLvO2eEyPv5nDPPVS1Y83EuA/6DSUic4L1WDfnvBMt31jmbfecGHk353u25h1jjEkgFvSNMSaBNMeg/3gC5p1o+cYyb7vnxMi72d5zs2vTN8YYU7vmWNM3xhhTCwv6xhiTQJpk0HenZzamWYnl73Ui/k3F6p5j/V43yaAPpMYiUxHp4P6bXN+5Ecg7P9p5uvmOEJFOMcr7RBEZHoN8W/tsR/MPtFGLGoVJTP6mIDZ/T65Yxb+YvdfQxIK+G4BeBe4WkXHR+GURRwt3XYFpAD5rBESciBwuIh8Bt0Xzj0NEBojIVzjrJ7SJVr5u3sNE5F3gv8ChUcx3lIhMA54UkUtFJF2jMNLBXVzoBZz/495R/n8e4/5N3SMi/aOVt5vvbRDdvyc375Ei8jxwh4gMEpGoxMFYxK9gmkTQdwPvncCjOEszbgOuAbpHOm91lLi7HUTkKrdMEX3v3Hv+E/Ai8JKqXuT544hS7fM64L+qepqqLo9GviKSLCKPA08AjwH/Afq5xyL9fg8GHgJeA14FjicKHzgiMhD4F9W/15NxVpaLxvvdCXgQmI7z2P91wKWRzltELgamAn8WkZ+6aRH/liMiSSLyV+BJnEWcUoCrgSERzjdm8SuYJhH03drWZ8B4VZ0K/Btn1a7GrZreAO5/WA7Of9RlwFUi0kZVqyIZiNx7TgW+VNUn3bIME5GUSNY+3cDbDuf9fdBNO0tE8nBWPYtYQHA/1N4DjlLV/wGvA8eJSIaqVkUiTx/DgZWq+hzwIZABrPccjGAQHA0sVdUXcT7sSoDzRSRfVTXCgX8IsFxV/w3cC7wBnCEifSKc9yacD9UJbr6oakWkP+Tc36GNwCWq+gIwBegBRLTG7f69fkEM4lcwcRv0ReQYERnl2VfV91R1j4gcBcwG8oG/i8j4SOUrIkluTX+Lm99aYAZwo4j0CncgqnnPwN1ArojcIyLfAn8DporI2ZHK1w28JcDRwPHu1+ArgL8D97vnhO1DJ8j/8xuqut8NAFXAcqBFuPKrLV/gHeAsEZkCfA/kAQ+IyA1uucJyz0Hy/Rbo5v4+7cO550LgF+HM1837TBH5o4ic4ibNB0b45P0tMIfq5U/Ddc+efE91kz4FtqnqB8A6Efmbmx722n6Qe34RWOA23e0CioCc2l/hoPM9FUBV34lG/AqJqsbVD9AKp8axG3gaaOumJ7n/DgCOc7d/jvOp2TdS+brH+gD/cLdPB/YC84B0IDXCeZ8PfAQc7e5fgfP1tE+E8/0Dzofche5+LvAV8KMI/z8L1Q8N5gGrga6eYxG+577AXcBF7v4xwFvAmAjk285Nbwn8H/A58D83v0luOTLC9F53dF/7c+BKYDtwtnvsTuB+dzsJGAc8AuREKN+z3GNp7r8DcD7kOofjXkPJ2+ecVPd3+qD/lkLNlwjFr4b8xGNN/wDwCXABsBk4B7xfzVDVRar6qXvuDJxOxuJI5evaDPQRkTdxat8zgHWqWqaq5ZHMW52voT9V1c/dpI9wfrEifc8P4zTndHTLsQn4EqcmGg61/T+rqqr7LWsj8DVwtudYpPJ1X38pTuDf4CbNxfmjLYtUvqparKp/wGnjfUZVTwNWAoNVtTQM+QL0Amaq6tGq+ihwPfAb99iLQF8ROcH9G9uF8wFfGKF8fw+gqgdEJFlVF+H0odwJICI/CkO+debtox/ON47lItJKREZGOt8Ixq+QxUXQF5GL3K+9bVS1DKcm+xHOV/sRItLHPa9mm99JOPdQFMl8cWppm3FqncPdP8xuchDDCRtyz6q62+fS8TjtgY36RQk1X1UtBq4FLhaRoeJ0YJ+IU/tvlAbcc5I6fSYpwApgX2PzbEi+rg+AW9zftUk4NbNdEch3uG++qrpQnX4McNq7Zx9MG7eb97Ei0gLnw+tZNz0ZWOz+gNOU9RLwTxE5FDgB59tWWoTy/d7dF5zfY1T1cpzfsz3AEGlkX1kD8vY0I7UDSkTkEpwa/6DGvOeh5hvEQcWvxorZ3Dvum9sFZ4RGFbAKyAKuU9Wd7jm9gYuBUlX9u5uWDhyF8/V3E/AHt4YWiXzLVPVvblprVS30eR2//Qjfs+dr9z9xOhdviOA9e/N103+G0+E3APijWzOLyj27gf8+oFhVb45gvr7/z5k4E151wung+5WqLg7MIbz366YPx+nYrAQmq+qqcN6zW7OuFJELgNNV9ac+1/4BpxmzL/ALVV0SpXx7APcB7YGrVfWHKN7zHcANwDM4TVwLI52viKTh9Jc1Kn6FRTTakGr+AMnuv32A593tFJyha6/XOPcsnKaGQ3Hb0IFBwKlRzDcTSHfTk6J8zxk4Na9eOL880co3C7e/gka2pR/kPWc1Nu9G5tsbaOFzbpdo/n65ae2BYyLwXr9R45xncZoM8b1P3Hb2KOXb0f23DTAyyvfc2f13LPCzKObbwf13MI2IX+H6ieoTgO7XqtuAZBGZDmTj1GpQZ8jWr4DNInKMqs5w0/8rIv1whvK1xOkE+Z7avzJFLF9giTZwxE6Y8j5endpmyDW/MN9zg74Oxirvg8z3XaCliBynTi13azTvV0Q8/8czQs23sXnjNA2uEefhqB+LyARV3aiqB6Kc70RVXQ98E4N7/pGqzoxRvguBkL9VhF20Pl1wRkIswBkZ8Auc3u0JOM0VI33Ouwr41Gf/HJw23SeATk0lX7vnxLjnpvZe4zRZleKsO30/bo27KeSbqPcc7p/oZeS0w1/os/+w+wZdAsx105Jw2sleAXr6XHdUU8vX7jkx7rmJvdc9cJoJ7wcOb2r5Juo9h/snehk5D9ikU93WdT5wh7s9H7jW3R4BvNjU87V7Tox7bkLv9UtNPd9Evedw/0RtyKaqlqgzrt0zudJ4qh9D/jnQT0Texhk3PK+p5xvLvO2em3++jch7LoRnOolY5RvLvGN5z2EX7U8ZnHauJJyOs0PdtENxevHHAbnNKV+758S4Z3uv7Z4jfc/h+onFw1lVOMMudwKD3U/Hm4EqVf1SnSc/m1O+sczb7rn55xvLvO2eo3vP4RGLTxqcmQWrcB7rv6y552v3nBj3bO+13XNT+InJE7niTNN7Ic4kZuGY1ySu841l3nbPzT/fWOZt9xzdew6HmE3DYIwxJvriYsI1Y4wx0WFB3xhjEogFfWOMSSAW9I0xJoFY0DfGh4hUish8EVkkIgtE5LdSz6IeIpIvIudFq4zGHAwL+sb426+qQ1V1AM6j9hOBv9ZzTT5gQd80CTZk0xgfIlKsqi199g8BvgU64Myc+BzOAjMA16jqVyIyG2e91TXAVOABnDVfj8WZpOshVX0sajdhTB0s6Bvjo2bQd9P24CwjWITzuH2pOEsevqiqI0TkWOB3qnqqe/5knDny/y7O8p4zgXNUdU0078WYYKK6cpYxTZRntsRU4EERGYqzYlKfWs4/CWdelrPd/dY4yzFa0DcxZ0HfmDq4zTuVwHactv1tOAvFJ+GsihT0Mpz51d+PSiGNaQDryDWmFiLSEXgUeFCddtDWwBZ11km+EGeaXXCafVr5XPo+cJWIpLqv00dEsjAmDlhN3xh/mSIyH6cppwKn4/Yf7rGHgddF5BzgU5w1bsFZ5LpCRBYAzwD/xBnRM89dSGMHcGZ0im9M3awj1xhjEog17xhjTAKxoG+MMQnEgr4xxiQQC/rGGJNALOgbY0wCsaBvjDEJxIK+McYkEAv6xhiTQP4feL4TFJSR5RYAAAAASUVORK5CYII=\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "ticker = yf.Ticker('^GSPC')\n", "sandp_df = ticker.history(period=\"10y\")\n", "sandp_df['Close'].plot(title=\"S and P 500 price\")" ] }, { "cell_type": "code", "execution_count": 49, "id": "908677ba", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "exchange \t SNP \n", "\n", "shortName \t S&P 500 \n", "\n", "exchangeTimezoneName \t America/New_York \n", "\n", "exchangeTimezoneShortName \t EST \n", "\n", "isEsgPopulated \t False \n", "\n", "gmtOffSetMilliseconds \t -18000000 \n", "\n", "quoteType \t INDEX \n", "\n", "symbol \t ^GSPC \n", "\n", "messageBoardId \t finmb_INDEXGSPC \n", "\n", "market \t us_market \n", "\n", "previousClose \t 4380.26 \n", "\n", "regularMarketOpen \t 4384.57 \n", "\n", "twoHundredDayAverage \t 4457.881 \n", "\n", "trailingAnnualDividendYield \t None \n", "\n", "payoutRatio \t None \n", "\n", "volume24Hr \t None \n", "\n", "regularMarketDayHigh \t 4394.6 \n", "\n", "navPrice \t None \n", "\n", "averageDailyVolume10Day \t 3689517000 \n", "\n", "totalAssets \t None \n", "\n", "regularMarketPreviousClose \t 4380.26 \n", "\n", "fiftyDayAverage \t 4588.384 \n", "\n", "trailingAnnualDividendRate \t None \n", "\n", "open \t 4384.57 \n", "\n", "toCurrency \t None \n", "\n", "averageVolume10days \t 3689517000 \n", "\n", "expireDate \t None \n", "\n", "yield \t None \n", "\n", "algorithm \t None \n", "\n", "dividendRate \t None \n", "\n", "exDividendDate \t None \n", "\n", "beta \t None \n", "\n", "circulatingSupply \t None \n", "\n", "startDate \t None \n", "\n", "regularMarketDayLow \t 4327.22 \n", "\n", "priceHint \t 2 \n", "\n", "currency \t USD \n", "\n", "regularMarketVolume \t 2583639000 \n", "\n", "lastMarket \t None \n", "\n", "maxSupply \t None \n", "\n", "openInterest \t None \n", "\n", "marketCap \t None \n", "\n", "volumeAllCurrencies \t None \n", "\n", "strikePrice \t None \n", "\n", "averageVolume \t 3450258064 \n", "\n", "priceToSalesTrailing12Months \t None \n", "\n", "dayLow \t 4327.22 \n", "\n", "ask \t 4406.55 \n", "\n", "ytdReturn \t None \n", "\n", "askSize \t 0 \n", "\n", "volume \t 2583639000 \n", "\n", "fiftyTwoWeekHigh \t 4818.62 \n", "\n", "forwardPE \t None \n", "\n", "maxAge \t 1 \n", "\n", "fromCurrency \t None \n", "\n", "fiveYearAvgDividendYield \t None \n", "\n", "fiftyTwoWeekLow \t 3723.34 \n", "\n", "bid \t 4290.14 \n", "\n", "tradeable \t False \n", "\n", "dividendYield \t None \n", "\n", "bidSize \t 0 \n", "\n", "dayHigh \t 4394.6 \n", "\n", "regularMarketPrice \t 4348.87 \n", "\n", "logo_url \t \n", "\n" ] } ], "source": [ "for k,v in ticker.info.items():\n", " print (k, '\\t', v, '\\n')" ] }, { "cell_type": "code", "execution_count": null, "id": "b97728c5", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "1fdbf163", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.1" } }, "nbformat": 4, "nbformat_minor": 5 }