> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tqx.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Financial statements

> Retrieve point-in-time quarterly financial statements for research and backtesting.

## Get quarterly financial reports

### Method name: get\_financial\_statement

### Enter parameters

| Field          | Type                         | Description                                                                                                                                                                      | Is it required                                             |
| :------------- | :--------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------- |
| symbol         | Optional\[Union\[str, list]] | Stock code; Hong Kong stock `.HK`, US stock `.NB`. `None`, empty string or empty list will query the entire market                                                               | Optional                                                   |
| start\_quarter | str                          | Starting financial period, the format is `YYYYqN`, both upper and lower case                                                                                                     | Required                                                   |
| end\_quarter   | str                          | Ending financial period, the format is `YYYYqN`, uppercase or lowercase acceptable; together with the starting financial period, it can cover up to 5 natural years              | Required                                                   |
| date           | Optional\[str]               | The upper limit of the announcement date, in the format of `YYYYMMDD` or `YYYY-MM-DD`, returns data on and before that day                                                       | Optional; required for historical research and backtesting |
| is\_latest     | Optional\[bool]              | `True`: Each `symbol` only retains the row with the largest announcement date; `False`: Returns all financial periods and disclosure records within the range. Default is `True` | Optional                                                   |
| market         | str                          | `hk` or `nb`, both upper and lower case are acceptable; the function defaults to `hk`, but the strategy code must be passed in explicitly                                        | Optional                                                   |
| fields         | Optional\[Union\[str, list]] | Return fields; it is recommended to pass the list explicitly. The interface will automatically add `symbol`, `fy_period`, `date`                                                 | Optional                                                   |
| interim\_type  | str                          | Report caliber, optional `cumulative` (cumulative, default) or `single` (single quarter)                                                                                         | Optional                                                   |

### `is_latest` selection rules (actual test in production environment)

The granularity of `is_latest` is **each stock**, not "each financial period for each stock":

* `is_latest=True`: Suitable for querying a single-period snapshot of "the latest financial report disclosed by each stock as of a certain date". Even if the quarterly range contains
  Multiple fiscal periods, often ending up with only one row per stock.
* `is_latest=False`: Suitable for year-on-year revenue, month-on-month, multi-period trends, historical sections, dynamic coupon pools and backtesting. After returning the data, still press
  `(symbol, fy_period)` selects the version with the latest announcement date, and cannot directly use all lines that may have duplicate disclosures.
* `date=<cross-section or rebalance date>` must be passed in both historical research and backtesting modes. Omitting `date` will use the latest disclosure in the current dataset,
  Financial reports after the backtest date may be brought into the strategy, causing future data leakage.

2026-07-25 Used `date="20250101"` and `2023q1~2024q4` at the production computing power node to verify the Hong Kong and US stocks:

| Markets and Targets                   |           `is_latest=False` |          `is_latest=True` | Latest financial period before deadline |
| ------------------------------------- | --------------------------: | ------------------------: | --------------------------------------- |
| US stocks `NVDA.NB`, `AVGO.NB`        | 16 lines, 8 lines per share | 2 lines, 1 line per share | `FY2024Q4`                              |
| Hong Kong stocks `1810.HK`, `3690.HK` | 14 lines, 7 lines per share | 2 lines, 1 line per share | `FY2024Q3`                              |

After omitting `date` in the same test, the US stock market returned the record with the announcement date of `20260225/20260609`, and the Hong Kong stock market returned
Records of `20260526/20260601`. If the strategy is backtested in 2025, these records will not be visible at that time and are therefore prohibited from being used for historical decision-making.

### Full parameter production testing experience

2026-07-25 All parameters were verified one by one on the production computing power node. The usage experience is as follows:

| Parameters                     | Measured results                                                                                                                                                                                   | Usage rules                                                                                                                                                                |
| ------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `start_quarter`, `end_quarter` | Required; both `2024q1` and `2024Q1` are acceptable; an error will be reported if it exceeds 5 natural years. The production version ended earlier than the start and returned an empty table      | Verify the format, span and `start <= end` by yourself before calling, and cannot rely on the backend to always report an error                                            |
| `market`                       | `hk`, `nb` and the uppercase form are successful; `us` reports an error                                                                                                                            | US stocks must use `nb`, Hong Kong stocks use `hk`, always pass in explicitly                                                                                              |
| `symbol`                       | Strings and lists are successful; `None`, `""`, and `[]` have become the whole market, and 5095 U.S. stock samples have been returned this time                                                    | It is forbidden to pass null values when the strategy queries the candidate pool; the whole market query must have clear intentions and limit fields and financial periods |
| `fields`                       | Both strings and lists are successful; the interface automatically supplements when three columns are missing; `None` or `[]` returns about 1363 columns; non-existing fields are silently ignored | A non-empty list is recommended; after returning, each requested field must be checked to actually exist, not just to check that the call is successful                    |
| `date`                         | The results of `20250101` and `2025-01-01` are consistent; `2025/01/01` reports an error; `None` does not limit the announcement date                                                              | The historical strategy must be passed in, and the maximum announcement date returned by the assertion is no later than the decision date                                  |
| `is_latest`                    | `True` returns 2 lines for two stocks; `False` returns 8 lines                                                                                                                                     | `True` for single latest announcement; `False` for year-on-year and dynamic multi-issue panels                                                                             |
| `interim_type`                 | `cumulative` returns data; `single` is a legal value, but this time the U.S. stock sample range returns an empty table; other values report an error                                               | `cumulative` is used by default and takes priority; before using `single`, you must verify that the target market, stock and financial period have data                    |

Silent ignoring of `fields` is particularly dangerous. For example, requesting `fields=["not_a_real_field"]` did not report an error, but only returned the automatically supplemented
`symbol`, `fy_period`, `date`. Therefore the Agent must perform a `required_fields <= set(df.columns)` check before calculation.

### Dynamic timing rules for one-year backtesting

Financial reports are generally disclosed on a quarterly basis, but different companies have different announcement dates. If fundamentals determine stock qualification, the one-year backtest must be repeated on each rebalancing date.
Calculate point-in-time financial factors; the qualified bond pool at the starting point of the backtest cannot be fixed for one year. Production testing results in:

| Cross-section date | `3690.HK` Latest visible financial period | Year-on-year revenue | Gross profit margin | Operating cash flow | Whether to pass the three hard conditions |
| ------------------ | ----------------------------------------- | -------------------: | ------------------: | ------------------: | ----------------------------------------- |
| `20250101`         | `FY2024Q3`                                |               22.68% |              38.67% |      40,284,393,000 | Yes                                       |
| `20250701`         | `FY2025Q1`                                |               18.12% |              37.45% |      10,131,128,000 | No                                        |
| `20251001`         | `FY2025Q2`                                |               14.71% |              35.22% |      14,348,525,000 | No                                        |
| `20260101`         | `FY2025Q3`                                |                9.95% |              32.13% |      -7,243,689,000 | No                                        |

This is not a future data problem, but a static coupon pool using expired fundamentals. The correct dynamic process is:

1. To obtain the multi-period financial reports required for the entire backtest, use `is_latest=False`, and use the end date of the backtest as the maximum interface `date`.
2. First screen `announcement date <= rebalance date` on each position rebalancing day.
3. Press `(symbol, fy_period)` to keep the version with the latest announcement date in the visible subset.
4. Select the latest financial period visible at that time according to the company's financial period, match the same financial period of the previous year and calculate the factor.
5. Form a panel containing `date`, `symbol`, `fy_period`, `source_date`, each factor, and `eligible`.
6. Only the latest section of `panel.date <= context.now` is read during transactions; if there is a new announcement, it will be updated on the next rebalancing day, if not, the old value will be used.

The order cannot be changed to "first deduplicate all the data on the end date of the backtest, and then filter by the rebalancing date", otherwise the subsequent restatement version may cover the earlier visible data at that time.
version. Each section must verify `max(source_date) <= rebalance_date`.

### Response parameters

#### Response parameters

| Field      | Type   | Description                                           |
| :--------- | :----- | :---------------------------------------------------- |
| symbol     | str    | stock code                                            |
| fields     | double | Financial fields to be returned (see database design) |
| fy\_period | str    | financial year time period                            |

The following are financial related fields

cash flow statement (cfs)

| Field                                                      | Type   | Description                                                                        |
| :--------------------------------------------------------- | :----- | :--------------------------------------------------------------------------------- |
| cfs\_cash\_receipts\_business                              | Double | Cash Receipts - Business Activities - Cash Flow                                    |
| cfs\_cash\_receipts\_sales                                 | Double | Cash Receipts - Sales of Goods and Services - Cash Flow                            |
| cfs\_cash\_receipts\_other\_customers                      | Double | Cash Receipts - Other - Customers - Cash Flow                                      |
| cfs\_premiums\_received                                    | Double | Premiums Received - Cash Flow                                                      |
| cfs\_reinsurance\_recovered                                | Double | Reinsurance Recovery - Cash Flow                                                   |
| cfs\_fees\_received                                        | Double | Fees Received - Cash Flow                                                          |
| cfs\_inv\_income\_received                                 | Double | Investment Income - Received - Cash Flow                                           |
| cfs\_cash\_receipts\_other                                 | Double | Cash Receipts - Other - Cash Flow                                                  |
| cfs\_cash\_receipts\_banking\_inv                          | Double | Cash Receipts - Banking and Investment Related Activities - CF                     |
| cfs\_cash\_payments\_business                              | Double | Cash Payments - Business Activities - Cash Flow                                    |
| cfs\_cash\_payments\_suppliers                             | Double | Cash Payments - Suppliers of Goods and Services - Cash Flow                        |
| cfs\_reinsurance\_paid                                     | Double | Paid Reinsurance - Cash Flow                                                       |
| cfs\_claims\_paid                                          | Double | Claims Paid - Cash Flow                                                            |
| cfs\_cash\_payments\_int\_banking\_liab                    | Double | Cash payments - Interest paid on bank-related liabilities - CF                     |
| cfs\_cash\_payments\_employees                             | Double | Cash Payments - Employees - Cash Flow                                              |
| cfs\_fees\_paid                                            | Double | Fees paid - cash flow                                                              |
| cfs\_cash\_payments\_other                                 | Double | Cash Payments - Other - Cash Flow                                                  |
| cfs\_income\_taxes\_paid\_reimbursed                       | Double | Income Tax - Paid/(Reimbursed) - Cash Flow                                         |
| cfs\_interest\_paid\_cash\_direct                          | Double | Interest paid - cash (cash flow - direct)                                          |
| cfs\_int\_div\_received\_cash\_direct                      | Double | Interest and Dividends - Received - Total - Cash Flow - Direct                     |
| cfs\_cash\_receipts\_payments\_net                         | Double | Cash Receipts/(Payments)-Net-Cash Flow                                             |
| cfs\_cash\_receipts\_payments\_associates                  | Double | Cash Receipts/(Payments) - Associates - Cash Flow                                  |
| cfs\_profit\_loss\_starting                                | Double | Profit/(Loss) - Starting Line - Cash Flow                                          |
| cfs\_non\_cash\_adj                                        | Double | Non-Cash Items and Reconciliating Adjustments - Cash Flow                          |
| cfs\_extraordinary\_after\_tax\_reconcile                  | Double | After-tax extraordinary items - cash flow - reconciliation                         |
| cfs\_minority\_interest\_reconcile                         | Double | Minority Interest - Cash Flow - Reconciliation                                     |
| cfs\_discontinued\_ops\_net\_tax\_reconcile                | Double | Discontinued Operations - G/(L) - Net After Tax - CF - Reconciliation              |
| cfs\_equity\_earnings\_reconcile                           | Double | Equity Company/(Loss) in Net Income - CF - Reconcile                               |
| cfs\_accounting\_change\_reconcile                         | Double | Accounting Change - Cash Flow - Reconciliation                                     |
| cfs\_income\_tax\_expense\_reconcile                       | Double | Income Tax Expense - Cash Flow - Reconciliation                                    |
| cfs\_financing\_income\_expense\_reconcile                 | Double | Financial income/(expense)-cash flow-reconciliation                                |
| cfs\_other\_non\_cash\_adj                                 | Double | Other Non-Cash Items and Adjustments - CF - Reconciliation                         |
| cfs\_depr\_depletion\_amort\_impair\_reconcile             | Double | Depreciation, depletion, and amortization, including impairment -CF to reconcile   |
| cfs\_depr\_depletion\_ppe\_reconcile                       | Double | Depreciation and Consumption - PPE - CF - Reconciliation                           |
| cfs\_accretion\_aro\_reconcile                             | Double | Increase in asset retirement obligation - CF - Reconciliation                      |
| cfs\_impairment\_ppe\_intang\_reconcile                    | Double | Impairment - PPE, including intangibles - CF - Reconciliation                      |
| cfs\_impairment\_inv\_property\_reconcile                  | Double | Impairment - Investment Properties - Cash Flow                                     |
| cfs\_amort\_intang\_deferred\_charges\_reconcile           | Double | Amortization - Intang and Deferred Chrgs - CF - Reconciliation                     |
| cfs\_amort\_deferred\_policy\_acq\_reconcile               | Double | Amortization - Deferred Policy Acquisition Cost - Reconciliation                   |
| cfs\_amort\_other\_intang\_deferred\_reconcile             | Double | Amortization - Other Intangibles and Deferred Chrgs - Reconciliation               |
| cfs\_loan\_loss\_provision\_impairment\_reconcile          | Double | Provision for loan losses including impairment - Increment/(Decrease) - CF         |
| cfs\_impairment\_fin\_fixed\_assets\_reconcile             | Double | Impairment of Financial Fixed Assets - CF - Reconciliation                         |
| cfs\_otti\_losses\_reconcile                               | Double | Investment losses - except temporary impairment - CF                               |
| cfs\_deferred\_tax\_credits\_reconcile                     | Double | Deferred Corporate Tax and Income Tax Credit - CF - Reconciliation                 |
| cfs\_asset\_sale\_gl\_reconcile                            | Double | Asset Sale - Gain/(Loss) - Cash Flow - Reconciliation                              |
| cfs\_ppe\_intang\_sale\_gl\_reconcile                      | Double | PPE, including intangibles - Gain/(Loss) - CF                                      |
| cfs\_inv\_trading\_property\_realized\_gl\_reconcile       | Double | Investing and Trading Property - Realized G/(L) CF Reconciliation                  |
| cfs\_inv\_sec\_gl\_reconcile                               | Double | Investment Securities - Gain/(Loss) - Cash Flow                                    |
| cfs\_fin\_assets\_unrealized\_gl\_reconcile                | Double | Financial Assets - Unrealized G/(L) - CF - Reconciliation                          |
| cfs\_inv\_property\_unrealized\_gl\_reconcile              | Double | Investment properties - Unrealized gains/(losses) - Cash flows                     |
| cfs\_share\_based\_payments\_reconcile                     | Double | Share-based payments - cash flow - reconciliation                                  |
| cfs\_income\_taxes\_paid\_reimbursed                       | Double | Income Tax - Paid/(Reimbursed) - Cash Flow                                         |
| cfs\_interest\_paid\_cash                                  | Double | Interest paid - cash                                                               |
| cfs\_int\_div\_received\_total                             | Double | Interest and Dividends - Received - Total - Cash Flow                              |
| cfs\_distributions\_non\_consolidated\_real\_estate        | Double | Distributions Received - Non-Con Real Estate Entity - CF                           |
| cfs\_cf\_operating\_before\_wc                             | Double | Cash flow from operating activities before operating cap change                    |
| cfs\_wc\_increase\_decrease                                | Double | Working Capital - Increase/(Decrease) - Cash Flow                                  |
| cfs\_receivables\_finance\_lease\_change                   | Double | Accounts Receivable - Finance and Lease - Decrease/(Increase) - CF                 |
| cfs\_accounts\_receivable\_change                          | Double | Accounts Receivable - Decrease/(Increase) - Cash Flow                              |
| cfs\_inventories\_change                                   | Double | Inventory - Decrease/(Increase) - Cash Flow                                        |
| cfs\_segregated\_cash\_change                              | Double | Segregated Cash - Decrease/(Increase) - Cash Flow                                  |
| cfs\_lending\_deposits\_banks\_lt\_change                  | Double | Loans and deposits - Bank receivables - LT - Decr/(Incr) - CF                      |
| cfs\_inv\_sec\_change\_operating                           | Double | Investment Securities - Decrease/(Increase) - Operating CF                         |
| cfs\_inv\_sec\_purchased\_operating                        | Double | Investment Securities - Purchasing - Operating - Cash Flow                         |
| cfs\_inv\_sec\_sold\_matured\_operating                    | Double | Investment Securities - Sold/Expired - Operating - Cash Flow                       |
| cfs\_insurance\_receivables\_change                        | Double | Insurance Receivables Decrease/(Increase) - Cash Flow                              |
| cfs\_deferred\_policy\_acq\_costs\_change                  | Double | Deferred policy acquisition costs - decrease/(increase) - CF                       |
| cfs\_loans\_customer\_change                               | Double | Loan - Customer - Decrease/(Increase) - Cash Flow                                  |
| cfs\_loans\_origination\_purchase                          | Double | Loans - Origination/Purchase - Cash Flow                                           |
| cfs\_loans\_repayments\_sales                              | Double | Loans - Repayments/Sales - Cash Flow                                               |
| cfs\_prepaid\_expenses\_change                             | Double | Prepaid expenses - decrease/(increase) - cash flow                                 |
| cfs\_other\_assets\_change                                 | Double | Other Assets - Decrease/(Increase) - Cash Flow                                     |
| cfs\_collateralized\_agreements\_assets\_change            | Double | Collateral Agreement (Asset) - Decr/(Incr) - CF                                    |
| cfs\_accounts\_payable\_change                             | Double | Accounts Payable - Increase/(Decrease) - Cash Flow                                 |
| cfs\_accrued\_expenses\_change                             | Double | Accrued Expenses - Increase/(Decrease) - Cash Flow                                 |
| cfs\_insurance\_provisions\_change                         | Double | Insurance Provisions - Increase/(Decrease) - Cash Flow                             |
| cfs\_deposits\_change\_total                               | Double | Deposits - Increase/(Decrease) - Total - Cash Flow                                 |
| cfs\_deposits\_banks\_fi\_change                           | Double | Deposits - Deposits to banks and financial institutions - Increment/(Decrement) CF |
| cfs\_deposits\_customers\_change                           | Double | Deposits - Customers - Increase/(Decrease) - Cash Flow                             |
| cfs\_insurance\_payables\_reinsurance\_change              | Double | Insurance payables (including reinsurance) - Increment/(Decrement) - CF            |
| cfs\_accounts\_payable\_accrued\_change                    | Double | Accounts Payable and Accrued - Increment/(Decrement) - CF                          |
| cfs\_trading\_liabilities\_change                          | Double | Trading Liabilities - Increase/(Decrease) - Cash Flow                              |
| cfs\_taxes\_payable\_change                                | Double | Taxes Payable - Increase/(Decrease) - Cash Flow                                    |
| cfs\_op\_lease\_liabilities\_change                        | Double | Operating lease liabilities - increase/(decrease) - CF                             |
| cfs\_other\_liabilities\_change\_total                     | Double | Other Liabilities - Increase/(Decrease) - Total - Cash Flow                        |
| cfs\_collateralized\_agreements\_liab\_change              | Double | Collateral Agreement (Liability) - Increment/(Decrement) - CF                      |
| cfs\_other\_assets\_liabilities\_change\_net               | Double | Other assets and liabilities - Increase/(Decrease) - Net - CF                      |
| cfs\_net\_cf\_operating                                    | Double | Net cash flow from operating activities                                            |
| cfs\_capex\_net                                            | Double | Capital Expenditures - Net - Cash Flow                                             |
| cfs\_ppe\_purchased\_sold\_net                             | Double | Property, Plant and Equipment - Purchase/(Sale) - Net - CF                         |
| cfs\_ppe\_purchased                                        | Double | Property Plant and Equipment - Purchases - Cash Flow                               |
| cfs\_lease\_equipment\_purchased                           | Double | Lease Equipment - Purchase - Cash Flow                                             |
| cfs\_ppe\_sold                                             | Double | Property Plant and Equipment Sold - Cash Flow                                      |
| cfs\_lease\_equipment\_sold                                | Double | Lease Equipment - Sale - Cash Flow                                                 |
| cfs\_inv\_property\_purchased\_sold\_net\_reit             | Double | Investment Property Purchases/(Sales) Net - Total - REIT - CF                      |
| cfs\_inv\_property\_purchased\_reit                        | Double | Investment Property - Purchase - REIT - Cash Flow                                  |
| cfs\_inv\_property\_capex\_improve\_maint                  | Double | Capital Expenditures - Investment Property Improvements and Maintenance CF         |
| cfs\_inv\_property\_sold\_reit                             | Double | Investment Properties - Sold - REITs - Cash Flow                                   |
| cfs\_intangible\_purchased\_sold\_net                      | Double | Intangible Assets - Purchases/(Sales) - Net - Total - CF                           |
| cfs\_intangible\_purchased\_acquired                       | Double | Intangible Assets - Purchased/Acquired - Cash Flow                                 |
| cfs\_intangible\_sold                                      | Double | Intangible Assets - Sales - Cash Flow                                              |
| cfs\_software\_development\_costs                          | Double | Software Development Costs - Cash Flow                                             |
| cfs\_intangible\_assets\_net\_cf                           | Double | Intangible Assets - Net - Cash Flow                                                |
| cfs\_capex\_total                                          | Double | Capital Expenditure - Total                                                        |
| cfs\_business\_acquisition\_disposal\_net                  | Double | Acquisitions and disposals of sold/(acquired) businesses, net - CF                 |
| cfs\_business\_acquisition                                 | Double | Acquisition of Business - Cash Flow                                                |
| cfs\_business\_sold                                        | Double | Business - Sale - Cash Flow                                                        |
| cfs\_investments\_excl\_loans\_change                      | Double | Investments excluding loans - decrease/(increase) - CF                             |
| cfs\_inv\_property\_excl\_capex\_change                    | Double | Investment properties excl. capital expenditures - Sold/(Purchased) - Net - CF     |
| cfs\_inv\_sec\_sold\_purchased\_net                        | Double | Unclassified Investment Securities - Net Sold/(Purchased) CF Total                 |
| cfs\_inv\_sec\_sold\_matured                               | Double | Investment Securities - Sold/Expired - Unclassified - CF                           |
| cfs\_inv\_sec\_purchased                                   | Double | Investment Securities - Purchased - Unclassified - Cash Flow                       |
| cfs\_fhlb\_stock\_sold\_purchased\_net                     | Double | FHLB Stock - Sold/(Purchased) - Net - Cash Flow                                    |
| cfs\_inv\_associate\_jv\_sold\_purchased                   | Double | Investments - Associates and Joint Ventures - Sale/(Purchase) - CF                 |
| cfs\_real\_estate\_jv\_payments                            | Double | Real Estate Joint Ventures - Acquisition Payments - Cash Flows                     |
| cfs\_deriv\_hedge\_sold\_purchased\_total                  | Double | Derivative financial instrument hedged sell/(buy) CF total                         |
| cfs\_inv\_loans\_change\_net                               | Double | Loan Investment - Decrease/(Increase) - Net - Cash Flow                            |
| cfs\_other\_inv\_cf\_change                                | Double | Other investment cash flows - decrease/(increase)                                  |
| cfs\_net\_cf\_investing                                    | Double | Net cash flow from investing activities                                            |
| cfs\_dividends\_paid\_cash\_total                          | Double | Dividends Paid - Cash - Total - Cash Flow                                          |
| cfs\_common\_dividends\_paid                               | Double | Dividends - Common Stock - Cash Paid                                               |
| cfs\_preferred\_dividends\_paid                            | Double | Dividends - Preferred - Cash Paid                                                  |
| cfs\_policyholder\_accounts\_deposits\_withdrawals\_net    | Double | Policyholder Accounts - Deposits/(Withdrawals) - Net - CF                          |
| cfs\_policyholder\_deposits                                | Double | Deposits - Policyholder Account - Cash Flow                                        |
| cfs\_policyholder\_withdrawals                             | Double | Policyholder Account Withdrawals - Cash Flow                                       |
| cfs\_stock\_issuance\_retirement\_net                      | Double | Stock - Total - Issues/(Exits) - Net - Cash Flow                                   |
| cfs\_stock\_issuance\_retirement\_excl\_options            | Double | Stock - Issued/(retired) net, excluding options/warrants - CF                      |
| cfs\_stock\_common\_pref\_other\_issuance\_retirement\_net | Double | Stocks - Common Preferred Stock and Other Issues/(Retirement) Net CF               |
| cfs\_stock\_common\_pref\_other\_issued                    | Double | Stocks - Common Preferred and Other - Issues/Sales - Cash Flows                    |
| cfs\_stock\_common\_pref\_other\_repurchased               | Double | Stocks - Common Preferred and Other - Repurchase/Retirement - CF                   |
| cfs\_common\_stock\_issuance\_retirement\_net              | Double | Stock - Common - Issues/(Exits) - Net - Cash Flow                                  |
| cfs\_common\_stock\_issued                                 | Double | Stocks - Common Stock - Issues/Sales - Cash Flows                                  |
| cfs\_common\_stock\_repurchased                            | Double | Stocks - Common Stock - Repurchases/Retirements - Cash Flow                        |
| cfs\_pref\_stock\_issuance\_retirement\_net                | Double | Stock - Preferred Stock - Issues/(Exits) - Net - Cash Flow                         |
| cfs\_pref\_stock\_issued                                   | Double | Stock - Preferred Stock - Issued/Sold - Cash Flow                                  |
| cfs\_pref\_stock\_repurchased                              | Double | Stock - Preferred Stock - Repurchase/Retirement - Cash Flow                        |
| cfs\_other\_equity\_issuance\_retirement\_net              | Double | Equity - Other Equity - Issues/(Exits) - Net - CF                                  |
| cfs\_other\_equity\_issued                                 | Double | Stocks - Other Equity - Issued/Sold - Cash Flow                                    |
| cfs\_other\_equity\_repurchased                            | Double | Equity - Other Equity - Repurchase/Retirement - Cash Flow                          |
| cfs\_options\_exercised                                    | Double | Options Exercised - Cash Flow                                                      |
| cfs\_warrants\_converted                                   | Double | Warrants Converted - Cash Flow                                                     |
| cfs\_minority\_interests\_jv\_net                          | Double | Minority Interests and Joint Ventures - Net - Cash Flow                            |
| cfs\_debt\_lt\_st\_issuance\_retirement\_total             | Double | Debt - LT and ST - Issue/(Recovery) - Total - CF                                   |
| cfs\_debt\_issued\_reduced\_lt\_st                         | Double | Debt - Issued/(Reduced) - Long and Short Term - Cash Flow                          |
| cfs\_debt\_issued\_lt\_st                                  | Double | Debt - Issued - Long and Short Term - Cash Flow                                    |
| cfs\_debt\_reduced\_lt\_st                                 | Double | Debt - Reduced - Long Term and Short Term - Cash Flow                              |
| cfs\_debt\_issued\_reduced\_st\_total                      | Double | Debt - Issued/(Reduced) - Short Term - Total - Cash Flow                           |
| cfs\_debt\_issued\_st                                      | Double | Debt - Issued - Short Term - Cash Flow                                             |
| cfs\_debt\_reduced\_st                                     | Double | Debt - Reduced - Short Term - Cash Flow                                            |
| cfs\_debt\_issued\_reduced\_lt                             | Double | Debt - Issued/(Reduced) - Long Term - Cash Flow                                    |
| cfs\_debt\_issued\_lt                                      | Double | Debt - Issued - Long Term - Cash Flow                                              |
| cfs\_debt\_reduced\_lt                                     | Double | Debt - Reduced - Long Term - Cash Flow                                             |
| cfs\_lease\_liabilities\_issued\_reduced                   | Double | Lease Liabilities - Issued/(Reduced) - Cash Flow                                   |
| cfs\_lease\_liabilities\_issued                            | Double | Lease Liabilities - Issued - Cash Flow                                             |
| cfs\_lease\_liabilities\_reduced                           | Double | Lease Liabilities - Reduced - Cash Flow                                            |
| cfs\_collateralized\_agreements\_liab\_change              | Double | Collateral Agreement (Liability) - Increment/(Decrement) - CF                      |
| cfs\_repo\_liabilities\_change                             | Double | REPO Liabilities - Increase/(Decrease) - Cash Flow                                 |
| cfs\_hybrid\_financial\_liab\_change                       | Double | Hybrid Financial Instrument (Liability) - Increment/(Decrease) CF                  |
| cfs\_other\_financing\_cf\_change                          | Double | Other Financing Cash Flow - Increase/(Decrease)                                    |
| cfs\_net\_cf\_financing                                    | Double | Net cash flow from financing activities                                            |
| cfs\_discontinued\_ops\_cf\_operating                      | Double | Net cash flows from discontinued operations - Operating Activities                 |
| cfs\_discontinued\_ops\_cf\_investing                      | Double | Net cash flows from discontinued operations - Investing Activities                 |
| cfs\_discontinued\_ops\_cf\_financing                      | Double | Net cash flows from discontinued operations - Financing Activities                 |
| cfs\_discontinued\_ops\_cf\_other                          | Double | Net cash flow from discontinued operations - Other                                 |
| cfs\_discontinued\_ops\_cf\_total                          | Double | Net cash flow from discontinued operations - Total                                 |
| cfs\_non\_classified\_cf                                   | Double | Non-classified cash flow                                                           |
| cfs\_fx\_effects\_cf                                       | Double | FX Effects - Cash Flow                                                             |
| cfs\_net\_change\_cash                                     | Double | Net change in cash - Total                                                         |
| cfs\_net\_cf\_continuing\_ops                              | Double | Net cash from continuing operations                                                |
| cfs\_net\_cf\_discontinued\_ops                            | Double | Net cash from discontinued operations                                              |
| cfs\_cash\_beginning\_balance                              | Double | Net Cash - Beginning Balance                                                       |
| cfs\_cash\_ending\_balance                                 | Double | Net Cash - Ending Balance                                                          |
| cfs\_income\_taxes\_paid\_reimbursed\_supp                 | Double | Income Tax - Paid/(Reimbursed) - Cash Flow - Supplementary                         |
| cfs\_interest\_paid\_cf\_supp                              | Double | Interest Paid - Cash Flow - Supplementary                                          |
| cfs\_interest\_fin\_leases\_paid\_supp                     | Double | Interest paid on finance leases - Cash flow - Supplementary                        |
| cfs\_int\_div\_received\_supp                              | Double | Interest and Dividends - Received - Cash Flow - Supplementary                      |
| cfs\_wc\_cf\_direct\_supp                                  | Double | Working Capital - Cash Flow - Direct - Supplementary                               |
| cfs\_cf\_operating\_before\_wc\_int                        | Double | Cash flow from operating activities before working caps and international changes  |
| cfs\_non\_gaap\_free\_cf                                   | Double | Non-GAAP Free Cash Flow - Company Report                                           |
| cfs\_contract\_assets\_change                              | Double | Contract Assets - Decrease/(Increase) - Cash Flow                                  |
| cfs\_contract\_liabilities\_change                         | Double | Contract Liabilities - Increase/(Decrease) - Cash Flow                             |
| cfs\_contract\_assets\_liabilities\_net\_cf                | Double | Contract Assets/Liabilities – Net – Cash Flow                                      |
| cfs\_cash\_dividends\_common\_buyback\_net                 | Double | Cash dividends paid and common stock repurchases - net                             |
| cfs\_common\_stock\_buyback\_net                           | Double | Common Stock Buybacks - Net                                                        |
| cfs\_depr\_depletion\_amort\_cf                            | Double | Depreciation Consumption and Amortization - Cash Flow                              |
| cfs\_free\_cf\_to\_equity                                  | Double | Free cash flow to equity                                                           |
| cfs\_free\_operating\_cf                                   | Double | Free operating cash flow                                                           |
| cfs\_levered\_free\_operating\_cf                          | Double | Leveraged free operating cash flow                                                 |
| cfs\_dividends\_provided\_paid\_common                     | Double | Dividends provided/paid - Common                                                   |
| cfs\_reported\_cf\_operating                               | Double | Report - Cash from Operating Activities                                            |
| cfs\_reported\_cf\_investing                               | Double | Report - Cash from Investing Activities                                            |
| cfs\_reported\_cf\_financing                               | Double | Report - Cash from Financing Activities                                            |

balance sheet(bs)

| Field                                                        | Type   | Description                                                                                 |
| :----------------------------------------------------------- | :----- | :------------------------------------------------------------------------------------------ |
| bs\_cash\_and\_short\_term\_investments                      | Double | Cash and short-term investments                                                             |
| bs\_cash\_and\_cash\_equivalents                             | Double | Cash and cash equivalents                                                                   |
| bs\_short\_term\_investments                                 | Double | Short-term investments - Total                                                              |
| bs\_financial\_assets\_st                                    | Double | Financial Assets - Short Term                                                               |
| bs\_cash\_and\_short\_term\_deposits\_banks\_total           | Double | Cash and short-term bank deposits - total                                                   |
| bs\_cash\_and\_short\_term\_deposits\_banks                  | Double | Cash and short-term bank deposits                                                           |
| bs\_funds\_central\_banks                                    | Double | Central bank funds                                                                          |
| bs\_lending\_long\_term\_deposits\_banks                     | Double | Bank loans and long-term deposits                                                           |
| bs\_interbank\_loans\_deposits                               | Double | Interbank lending and interbank long-term deposits                                          |
| bs\_money\_market\_placements                                | Double | Money market placements                                                                     |
| bs\_collateralized\_agreements\_rev\_repos                   | Double | Collateralized Agreements Rev REPO and Sec Borrow - Assets                                  |
| bs\_securities\_collateral                                   | Double | Securities held under collateral                                                            |
| bs\_securities\_purchased\_repos\_fed\_funds                 | Double | Securities purchased and fed funds sold under repurchase agreements                         |
| bs\_securities\_purchased\_repos                             | Double | Securities purchased under a repurchase agreement                                           |
| bs\_fed\_funds\_sold\_assets                                 | Double | Fed Funds Sold - Assets                                                                     |
| bs\_securities\_purchased\_repos\_fed\_funds\_total          | Double | Total securities purchased and federal funds sold under repurchase agreements               |
| bs\_securities\_borrowed                                     | Double | Borrowed securities                                                                         |
| bs\_deriv\_hedge\_st                                         | Double | Derivatives - Hedging - Short Term                                                          |
| bs\_deriv\_hedge\_total                                      | Double | Derivatives - Hedge - Total                                                                 |
| bs\_loans\_receivables\_net\_st                              | Double | Loans and Receivables - Net - Short Term                                                    |
| bs\_trade\_receivables\_net                                  | Double | Trade Accounts and Trade Notes Receivable - Net                                             |
| bs\_trade\_receivables\_gross                                | Double | Trade Accounts and Trade Notes Receivable - Gross                                           |
| bs\_provision\_trade\_receivables                            | Double | Provisions - Trade Accounts and Trade Notes Receivables                                     |
| bs\_unbilled\_utility\_revenue\_st                           | Double | Unbilled utility revenue - short term                                                       |
| bs\_loans\_st                                                | Double | Loans - Short Term                                                                          |
| bs\_finance\_lease\_receivables\_st                          | Double | Finance Lease Receivables - Short Term                                                      |
| bs\_income\_tax\_receivables\_st                             | Double | Income Tax - Accounts Receivable - Short Term                                               |
| bs\_other\_receivables                                       | Double | Accounts Receivable - Other - Total                                                         |
| bs\_provision\_doubtful                                      | Double | Provision - Doubtful Debt                                                                   |
| bs\_receivables\_over\_one\_year\_st                         | Double | Receivables over one year are included in short-term receivables                            |
| bs\_loans\_receivables\_total                                | Double | Loans and Receivables - Total                                                               |
| bs\_banking\_loans\_net                                      | Double | Bank-related loans - net                                                                    |
| bs\_loans\_gross                                             | Double | Loans - Gross                                                                               |
| bs\_consumer\_installment\_loans                             | Double | Loans - Consumer and Installment                                                            |
| bs\_finance\_lease\_hp\_loans                                | Double | Loans - Finance Lease and HP                                                                |
| bs\_commercial\_industrial\_loans                            | Double | Loans - Commercial and Industrial                                                           |
| bs\_broker\_fi\_loans                                        | Double | Loans - Brokers and Financial Institutions                                                  |
| bs\_other\_customer\_loans\_gross                            | Double | Loan - Customer - Other - Gross                                                             |
| bs\_foreign\_loans                                           | Double | Loans - Foreign                                                                             |
| bs\_mortgage\_real\_estate\_loans                            | Double | Loans - Mortgage/Real Estate                                                                |
| bs\_loans\_held\_for\_sale                                   | Double | Loans - Held for Sale                                                                       |
| bs\_unearned\_customer\_income                               | Double | Unearned income - Customer                                                                  |
| bs\_loan\_loss\_reserves                                     | Double | Loan loss reserves                                                                          |
| bs\_trade\_receivables\_total                                | Double | Trade Accounts and Trade Notes Receivable - Total                                           |
| bs\_trade\_receivables\_gross\_total                         | Double | Accounts and Notes Receivable - Trade - Total - Total                                       |
| bs\_provision\_doubtful\_trade\_payable                      | Double | Provides total doubtful trade accounts and commercial paper payable                         |
| bs\_receivables\_brokers\_clearing                           | Double | Receivables from client brokers and clearing organizations                                  |
| bs\_finance\_lease\_receivables\_net\_lt\_st                 | Double | Finance Lease Receivables - Net - Long and Short Term                                       |
| bs\_finance\_lease\_receivables\_gross\_lt\_st               | Double | Finance Lease Receivables - Long Term and Short Term - Total                                |
| bs\_provision\_finance\_lease\_receivables                   | Double | Provisions - Finance lease receivables - Long and short term                                |
| bs\_unearned\_income\_finance\_lease                         | Double | Unearned income - Finance lease - Long and short term                                       |
| bs\_interest\_receivables\_bank                              | Double | Interest Receivable - Bank                                                                  |
| bs\_receivables\_total                                       | Double | Accounts Receivable - Total                                                                 |
| bs\_insurance\_premium\_receivables                          | Double | Insurance premiums receivable                                                               |
| bs\_income\_tax\_receivables                                 | Double | Income Tax - Accounts Receivable                                                            |
| bs\_other\_receivables                                       | Double | Accounts Receivable - Other                                                                 |
| bs\_provision\_doubtful\_total                               | Double | Provision - Doubtful Debt - Total                                                           |
| bs\_inventories\_total                                       | Double | Inventories - Total                                                                         |
| bs\_raw\_materials                                           | Double | Inventory - Raw Materials                                                                   |
| bs\_work\_in\_progress                                       | Double | Inventory - Work in Progress                                                                |
| bs\_finished\_goods                                          | Double | Inventory - Finished Goods                                                                  |
| bs\_inventories\_other                                       | Double | Inventories - Other - Total                                                                 |
| bs\_cost\_in\_excess\_billings                               | Double | Inventory - Cost in Excess Billings                                                         |
| bs\_gas\_in\_storage                                         | Double | Inventory - Gas in storage                                                                  |
| bs\_lifo\_reserve                                            | Double | Stock - LIFO Reserve                                                                        |
| bs\_biological\_assets\_st                                   | Double | Biological Assets - Short Term                                                              |
| bs\_prepaid\_expenses\_st                                    | Double | Prepaid Expenses - Short Term                                                               |
| bs\_assets\_held\_for\_sale\_st                              | Double | Assets held for sale/discontinued operations - short term                                   |
| bs\_other\_current\_assets\_total                            | Double | Other Current Assets - Total                                                                |
| bs\_deferred\_tax\_asset\_st                                 | Double | Deferred Tax - Asset - Short Term                                                           |
| bs\_deferred\_costs\_st                                      | Double | Deferred costs - short term                                                                 |
| bs\_restricted\_accounts\_st                                 | Double | Restricted Accounts - Short Term                                                            |
| bs\_regulatory\_assets\_st                                   | Double | Regulatory Assets - Short Term                                                              |
| bs\_other\_current\_assets                                   | Double | Other current assets                                                                        |
| bs\_total\_current\_assets                                   | Double | Total current assets                                                                        |
| bs\_investments\_lt                                          | Double | Investments - Long Term                                                                     |
| bs\_segregated\_cash\_deposits\_inv                          | Double | Segregated - Cash Deposits and Investments                                                  |
| bs\_investments\_including\_loans                            | Double | Investments including loans - Total                                                         |
| bs\_investments\_total                                       | Double | Investments - Total                                                                         |
| bs\_inv\_sec\_afs\_htm\_hft\_total                           | Double | Investment Securities - Available for Sale, HTM and HFT - Total                             |
| bs\_inv\_sec\_trading                                        | Double | Investment securities - held for trading                                                    |
| bs\_inv\_sec\_afs\_htm                                       | Double | Investment securities available for sale and held to maturity                               |
| bs\_inv\_sec\_afs\_total                                     | Double | Investment Securities - Available for Sale - Total                                          |
| bs\_mbs\_afs\_htm                                            | Double | Available-for-sale/Hold-to-Maturity Mortgage-Backed Securities                              |
| bs\_govt\_sec\_afs\_htm                                      | Double | Government Securities - Available for Sale/Hold to Maturity                                 |
| bs\_inv\_sec\_fair\_value\_other                             | Double | Investment Securities - Designated at Fair Value - Other                                    |
| bs\_inv\_sec\_fixed\_income                                  | Double | Investment Securities - Fixed Income                                                        |
| bs\_inv\_sec\_equity                                         | Double | Investment Securities - Stocks                                                              |
| bs\_affiliated\_non\_controlled                              | Double | Affiliated - non-controlled                                                                 |
| bs\_non\_affiliated\_non\_controlled                         | Double | Non-affiliated - non-controlled                                                             |
| bs\_inv\_sec\_other                                          | Double | Investment Securities - Other                                                               |
| bs\_commodities                                              | Double | Commodities                                                                                 |
| bs\_fhlb\_stock                                              | Double | FHLB Stock - Asset                                                                          |
| bs\_investment\_property                                     | Double | Investment Property                                                                         |
| bs\_investment\_property\_net                                | Double | Investment Properties - Net                                                                 |
| bs\_investment\_property\_gross                              | Double | Investment Property - Gross                                                                 |
| bs\_inv\_property\_acc\_depr\_impair                         | Double | Investment Properties - Accumulated Depreciation and Impairment                             |
| bs\_private\_equity\_other\_inv                              | Double | Investments - Private Equity & Other - Total                                                |
| bs\_other\_inv\_total                                        | Double | Investment - Other - Total                                                                  |
| bs\_mortgage\_policy\_loans\_other                           | Double | Loans - Mortgage Policies and Others                                                        |
| bs\_policy\_loans                                            | Double | Policy Loans                                                                                |
| bs\_other\_loans                                             | Double | Loans - Other                                                                               |
| bs\_inv\_afs\_htm\_lt                                        | Double | Investment - Available for Sale/Hold to Maturity - Long Term                                |
| bs\_marketable\_sec\_lt                                      | Double | Marketable Securities - Long Term                                                           |
| bs\_financial\_assets\_lt                                    | Double | Financial Assets - Long Term                                                                |
| bs\_inv\_associate\_jv\_unconsolidated                       | Double | Investments in associates, joint ventures and Unconsol subsidiaries                         |
| bs\_receivables\_loans\_lt                                   | Double | Accounts Receivable and Loans - Long Term                                                   |
| bs\_trade\_receivables\_net\_lt                              | Double | Accounts and Notes Receivable - Trade - Net - Long Term                                     |
| bs\_trade\_receivables\_gross\_lt                            | Double | Accounts and Notes Receivable - Trade - Total - Long Term                                   |
| bs\_loans\_lt                                                | Double | Loans - Long Term                                                                           |
| bs\_finance\_lease\_receivables\_lt                          | Double | Finance Lease Receivables - Long Term                                                       |
| bs\_other\_receivables\_net\_lt                              | Double | Accounts Receivable - Other - Net - Long Term                                               |
| bs\_provision\_doubtful\_lt                                  | Double | Provision - Bad Debts - Long Term                                                           |
| bs\_deriv\_hedge\_lt                                         | Double | Derivative Financial Instruments - Hedging - Long Term                                      |
| bs\_ppe\_net\_total                                          | Double | Real Estate Plant and Equipment - Net - Total                                               |
| bs\_assets\_leased\_out\_operating\_lease\_net               | Double | Assets leased under operating leases - Net                                                  |
| bs\_ppe\_excl\_leased\_out\_net                              | Double | PPE - excluding leased assets - Net - Total                                                 |
| bs\_land\_buildings\_net                                     | Double | Land and Buildings - Network                                                                |
| bs\_land\_improvements\_net                                  | Double | Land/Improvements - Net                                                                     |
| bs\_buildings\_net                                           | Double | Buildings - Network                                                                         |
| bs\_leasehold\_improvements\_net                             | Double | Leasehold Improvements - Net                                                                |
| bs\_plant\_machinery\_equipment\_net                         | Double | Factory Machinery and Equipment - Net                                                       |
| bs\_transport\_equipment\_net                                | Double | Transportation Equipment - Net                                                              |
| bs\_computer\_software\_equipment\_net                       | Double | Computer Software and Equipment - Network                                                   |
| bs\_construction\_in\_progress\_net                          | Double | Construction in Progress - Network                                                          |
| bs\_ppe\_capital\_lease\_net                                 | Double | Property Plant and Equipment - Capital Lease - Net                                          |
| bs\_rou\_tangible\_total\_net                                | Double | Right of Use Tangible Assets - Total - Net                                                  |
| bs\_rou\_operating\_lease\_net                               | Double | Rights to use tangible assets - Operating leases - Net                                      |
| bs\_rou\_cap\_fin\_lease\_net                                | Double | Rights to Use Tangible Assets - Capital/Finance Lease - Net                                 |
| bs\_ppe\_other\_net                                          | Double | Property, plant and equipment - Other - Net                                                 |
| bs\_natural\_resources\_biological\_net                      | Double | Natural Resources/Biological Assets - Net                                                   |
| bs\_mining\_exploration\_net                                 | Double | Mining/Exploration Specific Assets - Net                                                    |
| bs\_utility\_plant\_net                                      | Double | Utility Plant - Network                                                                     |
| bs\_ppe\_gross\_total                                        | Double | Real Estate Plant and Equipment - Total - Total                                             |
| bs\_assets\_leased\_out\_operating\_lease\_gross             | Double | Assets leased under operating leases - Gross                                                |
| bs\_ppe\_excl\_leased\_out\_gross                            | Double | PPE - Excluding Leased Assets - Total                                                       |
| bs\_land\_buildings\_gross                                   | Double | Land and buildings - gross                                                                  |
| bs\_land\_improvements\_gross                                | Double | Land/Improvements - Gross                                                                   |
| bs\_buildings\_gross                                         | Double | Buildings - Gross                                                                           |
| bs\_leasehold\_improvements\_gross                           | Double | Leasehold Improvements - Gross                                                              |
| bs\_plant\_machinery\_equipment\_gross                       | Double | Plant Machinery and Equipment - Gross                                                       |
| bs\_transport\_equipment\_gross                              | Double | Transportation Equipment - Total                                                            |
| bs\_computer\_software\_equipment\_gross                     | Double | Computer Software and Equipment - Gross                                                     |
| bs\_construction\_in\_progress\_gross                        | Double | Construction in Progress - Total                                                            |
| bs\_ppe\_capital\_lease\_gross                               | Double | Real Estate Plant and Equipment - Capital Lease - Gross                                     |
| bs\_rou\_tangible\_total\_gross                              | Double | Right of Use Tangible Assets - Total - Total                                                |
| bs\_rou\_operating\_lease\_gross                             | Double | Right-of-use tangible assets - Operating leases - Gross                                     |
| bs\_rou\_cap\_fin\_lease\_gross                              | Double | Right of Use Tangible Assets - Capital/Finance Lease - Gross                                |
| bs\_ppe\_other\_gross                                        | Double | Real Estate Plant and Equipment - Other - Gross                                             |
| bs\_natural\_resources\_biological\_gross                    | Double | Natural Resources/Biological Assets - Total                                                 |
| bs\_mining\_exploration\_gross                               | Double | Mining/Exploration Specific Assets - Gross                                                  |
| bs\_utility\_plant\_gross                                    | Double | Utilities - Gross                                                                           |
| bs\_ppe\_acc\_depr\_impair\_total                            | Double | PPE - Accumulated Depreciation and Impairment - Total                                       |
| bs\_assets\_leased\_out\_operating\_lease\_acc\_depr\_impair | Double | Assets leased under operating leases - accumulated depreciation and impairment              |
| bs\_ppe\_excl\_leased\_out\_acc\_depr\_impair                | Double | PPE - excluding leased assets - Accumulated depreciation and impairment - Total             |
| bs\_land\_buildings\_acc\_depr\_impair                       | Double | Land and Buildings - Accumulated Depreciation and Impairment                                |
| bs\_land\_improvements\_acc\_depr\_impair                    | Double | Land/Improvements - Accumulated Depreciation and Impairment                                 |
| bs\_buildings\_acc\_depr\_impair                             | Double | Buildings - Accumulated Depreciation and Impairment                                         |
| bs\_leasehold\_improvements\_acc\_depr\_impair               | Double | Leasehold Improvements - Accumulated Depreciation and Impairment                            |
| bs\_plant\_machinery\_equipment\_acc\_depr\_impair           | Double | Plant, Machinery and Equipment - Accumulated Depreciation and Impairment                    |
| bs\_transport\_equipment\_acc\_depr\_impair                  | Double | Transportation Equipment - Accumulated Depreciation and Impairment                          |
| bs\_computer\_software\_equipment\_acc\_depr\_impair         | Double | Computer Software and Equipment - Accumulated Depreciation and Impairment                   |
| bs\_construction\_in\_progress\_acc\_depr\_impair            | Double | Construction in progress - accumulated depreciation and impairment                          |
| bs\_ppe\_capital\_lease\_acc\_depr\_impair                   | Double | Personal Protective Equipment under Capital Lease - Accumulated Depreciation and Impairment |
| bs\_rou\_tangible\_total\_acc\_depr                          | Double | Total right-of-use tangible assets - accumulated depreciation                               |
| bs\_rou\_operating\_lease\_acc\_depr                         | Double | Right to Use Tangible Assets - Operating Lease - Accum Depr                                 |
| bs\_rou\_cap\_fin\_lease\_acc\_depr                          | Double | Right to Use Tangible Assets - Cap/Financial Lease - Accum Depr                             |
| bs\_ppe\_other\_acc\_depr\_impair                            | Double | Property, Plant and Equipment - Other - Accum Depr & Impair                                 |
| bs\_utility\_plant\_acc\_depr\_impair                        | Double | Utility Plant - Accumulated Depreciation and Impairment                                     |
| bs\_mining\_exploration\_acc\_depr\_impair                   | Double | Mining/Exploration Specific Assets - Accumulated Depreciation and Impairment                |
| bs\_natural\_resources\_biological\_acc\_depr\_impair        | Double | Natural Resources/Biological Assets - Accumulated Impairment and Impairment                 |
| bs\_deferred\_policy\_acq\_costs                             | Double | Deferred policy acquisition costs                                                           |
| bs\_reinsurance\_assets                                      | Double | Reinsurance assets                                                                          |
| bs\_deposits\_held\_reinsurance                              | Double | Deposits - Held under Reinsurance                                                           |
| bs\_reinsurance\_recoverable\_insurance\_provisions          | Double | Reinsurance recoverable - in insurance terms                                                |
| bs\_reinsurance\_recoverable\_unearned\_premiums             | Double | Reinsurance Recoverable - Unearned Premiums                                                 |
| bs\_reinsurance\_recoverable\_outstanding\_claims            | Double | Reinsurance Recoverable - Outstanding Claims                                                |
| bs\_reinsurance\_recoverable\_benefit\_loss\_reserve         | Double | Reinsurance Recoverable - Benefit and Loss Reserves                                         |
| bs\_reinsurers\_share\_separate\_variable\_acct              | Double | Reinsurers' share of separate and variable accounts/associated liabilities                  |
| bs\_reinsurance\_recoverable\_other                          | Double | Reinsurance Recoverable - Other                                                             |
| bs\_separate\_variable\_account\_assets                      | Double | Separate and Variable Accounts - Assets                                                     |
| bs\_assets\_held\_for\_sale\_lt                              | Double | Assets held for sale/discontinued operations - long term                                    |
| bs\_assets\_held\_for\_sale\_lt\_st                          | Double | Assets held for sale/discontinued operations - LT & ST                                      |
| bs\_insurance\_related\_assets\_bank                         | Double | Insurance Related Assets - Bank                                                             |
| bs\_other\_non\_current\_assets\_total                       | Double | Other non-current assets - total                                                            |
| bs\_restricted\_accounts\_lt                                 | Double | Restricted Accounts - Long Term                                                             |
| bs\_deferred\_tax\_asset\_lt                                 | Double | Deferred Tax - Asset - Long Term                                                            |
| bs\_deferred\_charges\_lt                                    | Double | Deferred Charges - Long Term                                                                |
| bs\_prepaid\_expenses\_lt                                    | Double | Prepaid Expenses - Long Term                                                                |
| bs\_inventories\_lt                                          | Double | Inventories - Long Term                                                                     |
| bs\_regulatory\_assets\_lt                                   | Double | Regulatory Assets - Long Term                                                               |
| bs\_pension\_assets\_lt                                      | Double | Pension Assets - Long Term                                                                  |
| bs\_other\_non\_current\_assets                              | Double | Other non-current assets                                                                    |
| bs\_other\_assets\_total                                     | Double | Other Assets - Total                                                                        |
| bs\_accrued\_investment\_income                              | Double | Accrued investment income                                                                   |

| Field                                                   | Type   | Description                                                                            |
| :------------------------------------------------------ | :----- | :------------------------------------------------------------------------------------- |
| bs\_restricted\_accounts\_cash                          | Double | Restricted Accounts - Cash                                                             |
| bs\_pension\_benefits\_overfunded                       | Double | Pension Benefits - Overfunded - Total                                                  |
| bs\_deferred\_charges                                   | Double | Deferred charges                                                                       |
| bs\_deferred\_tax\_asset\_lt\_st                        | Double | Deferred Tax - Asset - Long and Short Term                                             |
| bs\_prepaid\_expenses\_total                            | Double | Prepaid expenses - total                                                               |
| bs\_decommissioning\_funds                              | Double | Decommissioning Funds                                                                  |
| bs\_regulatory\_assets\_total                           | Double | Regulatory Assets - Total                                                              |
| bs\_other\_assets                                       | Double | Other assets                                                                           |
| bs\_intangible\_assets\_net                             | Double | Intangible Assets - Total - Net                                                        |
| bs\_goodwill\_net                                       | Double | Goodwill/cost over purchased assets - Net                                              |
| bs\_intangibles\_excl\_gw\_net                          | Double | Intangibles - excluding goodwill - Net - Total                                         |
| bs\_core\_deposits\_net                                 | Double | Core Deposits - Net                                                                    |
| bs\_mortgage\_servicing\_rights\_net                    | Double | Mortgage Servicing Rights - Network                                                    |
| bs\_asset\_mgmt\_contracts\_net                         | Double | Asset Management Contracts - Net                                                       |
| bs\_customer\_relations\_net                            | Double | Customer Group/Relationships - Network                                                 |
| bs\_tenant\_relationships\_leases\_net                  | Double | Tenant Relationships and Leases in Place - Network                                     |
| bs\_above\_market\_rent\_leases\_net                    | Double | Above Market Rent/Leases - Net                                                         |
| bs\_leasing\_rights\_net                                | Double | Leasing Rights - Net                                                                   |
| bs\_computer\_software\_intang\_net                     | Double | Computer Software - Intangible Assets - Net                                            |
| bs\_r\_and\_d\_costs\_net                               | Double | Research and Development Costs - Net                                                   |
| bs\_brands\_patents\_trademarks\_net                    | Double | Brands, Patents, Trademarks, Marketing and Art - Net                                   |
| bs\_licenses\_franchises\_contracts\_net                | Double | Licenses, franchises, copyrights, contracts-based - Net                                |
| bs\_rou\_intangibles\_net                               | Double | Right-of-use intangibles - net                                                         |
| bs\_other\_intangibles\_net                             | Double | Intangible assets - Other - Net                                                        |
| bs\_intangible\_assets\_gross                           | Double | Intangible Assets - Total - Total                                                      |
| bs\_goodwill\_gross                                     | Double | Goodwill/cost in excess of purchased assets - Total                                    |
| bs\_intangibles\_excl\_gw\_gross                        | Double | Intangible assets - excluding goodwill - Total                                         |
| bs\_core\_deposits\_gross                               | Double | Core Deposits - Total                                                                  |
| bs\_mortgage\_servicing\_rights\_gross                  | Double | Mortgage Servicing Rights - Gross                                                      |
| bs\_asset\_mgmt\_contracts\_gross                       | Double | Asset Management Contract - Total                                                      |
| bs\_customer\_relations\_gross                          | Double | Customer Group/Relationships - Gross                                                   |
| bs\_tenant\_relationships\_leases\_gross                | Double | Tenant Relationships and Leases in Place - Gross                                       |
| bs\_above\_market\_rent\_leases\_gross                  | Double | Above Market Rent/Leases - Gross                                                       |
| bs\_leasing\_rights\_gross                              | Double | Leasing Rights - Gross                                                                 |
| bs\_computer\_software\_intang\_gross                   | Double | Computer Software - Intangible Assets - Total                                          |
| bs\_r\_and\_d\_costs\_gross                             | Double | Research and development costs - total                                                 |
| bs\_brands\_patents\_trademarks\_gross                  | Double | Brands, Patents, Trademarks, Marketing and Art - Total                                 |
| bs\_licenses\_franchises\_contracts\_gross              | Double | Licenses, Franchises, Copyrights, Contract-Based - Gross                               |
| bs\_rou\_intangibles\_gross                             | Double | Right-of-use intangibles - total                                                       |
| bs\_other\_intangibles\_gross                           | Double | Intangible assets - Other - Total - Total                                              |
| bs\_intangible\_assets\_acc\_amort\_impair              | Double | Intangible Assets - Accumulated Amortization and Impairment - Total                    |
| bs\_goodwill\_acc\_amort\_impair                        | Double | Goodwill - Accumulated Amortization and Impairment                                     |
| bs\_intangibles\_excl\_gw\_acc\_amort\_impair           | Double | Intangible assets (excluding goodwill) - Total accumulated amortization and impairment |
| bs\_core\_deposits\_acc\_amort\_impair                  | Double | Core Deposits - Accumulated Amortization and Impairment                                |
| bs\_mortgage\_servicing\_rights\_acc\_amort\_impair     | Double | Mortgage Servicing Rights - Accumulated Amortization and Impairment                    |
| bs\_asset\_mgmt\_contracts\_acc\_amort\_impair          | Double | Asset Management Contracts - Accumulated Amortization and Impairment                   |
| bs\_customer\_relations\_acc\_amort\_impair             | Double | Customer Segment/Relationships - Accumulated Amortization and Impairment               |
| bs\_tenant\_relationships\_leases\_acc\_amort\_impair   | Double | Tenant Relations and Tenancy in Place -Accum Amort & Imp                               |
| bs\_above\_market\_rent\_leases\_acc\_amort\_impair     | Double | Above Market Rent/Leases - Accumulated Amortization and Impairment                     |
| bs\_leasing\_rights\_acc\_amort\_impair                 | Double | Leasehold Rights - Accumulated Amortization and Impairment                             |
| bs\_computer\_software\_intang\_acc\_amort\_impair      | Double | Computer Software - Intangible Assets - Accumulated Amortization and Impairment        |
| bs\_r\_and\_d\_costs\_acc\_amort\_impair                | Double | Research and development costs - accumulated amortization and impairment               |
| bs\_brands\_patents\_trademarks\_acc\_amort             | Double | Brands, Patents, Trademarks, Marketing and the Arts - Accum Amort                      |
| bs\_licenses\_franchises\_contracts\_acc\_amort\_impair | Double | Licenses, Franchises, Copyrights - Accum Amort & Impair                                |
| bs\_rou\_intangibles\_acc\_amort                        | Double | Right-of-use intangible assets - accumulated amortization                              |
| bs\_other\_intangibles\_acc\_amort\_impair              | Double | Other intangibles - accumulated amortization and impairment                            |
| bs\_total\_non\_current\_assets                         | Double | Total non-current assets                                                               |
| bs\_total\_assets                                       | Double | Total assets                                                                           |
| bs\_trade\_payable\_accruals\_st                        | Double | Trade Payables and Accruals - Short Term                                               |
| bs\_trade\_payable\_st                                  | Double | Trade Accounts and Trade Notes Payable - Short Term                                    |
| bs\_accrued\_expenses\_st                               | Double | Accrued Expenses - Short Term                                                          |
| bs\_insurance\_reserves\_total                          | Double | Insurance Reserves - Total                                                             |
| bs\_benefit\_loss\_reserves\_gross                      | Double | Profit and loss reserves - total                                                       |
| bs\_benefit\_loss\_reserves\_life\_gross                | Double | Profit and loss reserves - life - total                                                |
| bs\_benefit\_loss\_reserves\_non\_life\_gross           | Double | Profit and loss reserves - non-life - gross                                            |
| bs\_unearned\_premiums\_gross                           | Double | Unearned premiums - total                                                              |
| bs\_policy\_contract\_claims\_gross                     | Double | Policy and Contract Claims - Gross                                                     |
| bs\_policyholders\_funds                                | Double | Policyholder funds                                                                     |
| bs\_insurance\_reserves\_other\_gross                   | Double | Insurance reserves - Other - Total - Total                                             |
| bs\_separate\_variable\_account\_liabilities            | Double | Separate and Variable Accounts - Liabilities                                           |
| bs\_deposits\_total                                     | Double | Deposits - Total                                                                       |
| bs\_deposits\_non\_int\_bearing                         | Double | Deposits - No Interest                                                                 |
| bs\_deposits\_int\_bearing                              | Double | Deposits - Interest-bearing deposits                                                   |
| bs\_customer\_deposits\_total                           | Double | Deposits - Customers - Total                                                           |
| bs\_demand\_deposits\_customer                          | Double | Deposit-current-customer                                                               |
| bs\_savings\_deposits\_customer                         | Double | Deposits - Savings - Customer                                                          |
| bs\_other\_deposits\_customer                           | Double | Deposits - Other - Customer                                                            |
| bs\_deposits\_banks\_fi                                 | Double | Deposits - Banks and Financial Institutions Deposits                                   |
| bs\_demand\_deposits\_banks\_fi                         | Double | Deposits - demand deposits - deposits with banks and financial institutions            |
| bs\_savings\_deposits\_banks\_fi                        | Double | Deposits - Savings - Deposits with banks and financial institutions                    |
| bs\_other\_deposits\_banks\_fi                          | Double | Deposits - Other - Deposits with banks and financial institutions                      |
| bs\_trading\_liabilities                                | Double | Trading Liabilities                                                                    |
| bs\_debt\_total                                         | Double | Debt - Total                                                                           |
| bs\_st\_debt\_current\_portion\_lt\_debt                | Double | Current portion of short-term debt and long-term debt                                  |
| bs\_st\_debt\_notes\_payable                            | Double | Short-term debt and notes payable                                                      |
| bs\_st\_bank\_borrowings\_excl\_collateral              | Double | Short-term bank borrowings excl. mortgage financing                                    |
| bs\_collateralized\_financing\_repo\_liab               | Double | Mortgage Financing Agreement REPO Financing Loan - Liab                                |
| bs\_securities\_loaned                                  | Double | Securities - Loaned                                                                    |
| bs\_securities\_sold\_repo\_fed\_funds\_purchased       | Double | Securities sold and fed funds purchased under repurchase agreements                    |
| bs\_securities\_sold\_repo                              | Double | Securities sold under a repurchase agreement                                           |
| bs\_fed\_funds\_purchased                               | Double | Federal funds purchased                                                                |
| bs\_securities\_received\_collateral\_obligation        | Double | Securities received as collateral - return obligation                                  |
| bs\_current\_portion\_lt\_debt\_incl\_cap\_leases       | Double | The current portion of long-term debt includes capitalized leases                      |
| bs\_current\_portion\_lt\_debt\_excl\_cap\_leases       | Double | The current portion of long-term debt (excluding capitalized leases)                   |
| bs\_cap\_leases\_current\_portion                       | Double | Capitalized Leases - Current Portion                                                   |
| bs\_hybrid\_financial\_liability\_current               | Double | Hybrid Financial Instruments - Liabilities - Current Section                           |
| bs\_fhlb\_advances\_current                             | Double | FHLB Advances - Current Section                                                        |
| bs\_deriv\_liab\_hedge\_st                              | Double | Derivative Liability - Hedge - Short Term                                              |
| bs\_liabilities\_held\_for\_sale\_st                    | Double | Liabilities held for sale/discontinued operations - ST                                 |
| bs\_income\_tax\_payable\_st                            | Double | Income Tax - Payable - Short Term                                                      |
| bs\_dividends\_distributions\_payable                   | Double | Dividends/distributions payable                                                        |
| bs\_operating\_lease\_liab\_current                     | Double | Operating Lease Liability - Current Part/Short Term                                    |
| bs\_intangible\_liability                               | Double | Intangible liability                                                                   |
| bs\_below\_market\_rent\_leases\_gross                  | Double | Below Market Rent/Leases - Gross                                                       |
| bs\_below\_market\_rent\_leases\_acc\_amort\_impair     | Double | Below Market Rent/Leases - Accumulated Amortization and Impairment                     |
| bs\_below\_market\_rent\_leases\_net                    | Double | Below Market Rent/Leases - Net                                                         |
| bs\_other\_current\_liabilities\_total                  | Double | Other current liabilities - total                                                      |
| bs\_deferred\_income\_st                                | Double | Deferred income - short term                                                           |
| bs\_security\_deposits                                  | Double | Deposit                                                                                |
| bs\_billings\_excess\_cost\_st                          | Double | Bills exceeding cost - short term                                                      |
| bs\_customer\_advances\_st                              | Double | Customer Advances - Short Term                                                         |
| bs\_deferred\_tax\_liab\_st                             | Double | Deferred Tax - Liability - Short Term                                                  |
| bs\_provisions\_st                                      | Double | Provisions - Short term                                                                |
| bs\_regulatory\_liab\_st                                | Double | Regulatory Responsibility - Short Term                                                 |
| bs\_other\_current\_liabilities                         | Double | Other current liabilities                                                              |
| bs\_total\_current\_liabilities                         | Double | Total current liabilities                                                              |
| bs\_accounts\_payable\_accruals\_lt                     | Double | Accounts payable including accruals - Long term                                        |
| bs\_trade\_payable\_lt                                  | Double | Trade Payables - Long Term                                                             |
| bs\_accrued\_expenses\_lt                               | Double | Accrued Expenses - Long Term                                                           |
| bs\_debt\_lt\_total                                     | Double | Debt - Long Term - Total                                                               |
| bs\_lt\_debt\_excl\_cap\_leases                         | Double | Long-term debt (excluding capitalized leases)                                          |
| bs\_non\_convertible\_debt\_lt                          | Double | Debt - Non-Convertible - Long Term                                                     |
| bs\_convertible\_debt\_lt                               | Double | Convertible Debt - Long Term                                                           |
| bs\_hybrid\_financial\_liability\_lt                    | Double | Hybrid Financial Instruments - Liabilities - Long Term                                 |
| bs\_mandatorily\_redeemable\_trust\_certificates\_lt    | Double | Mandatory Redeemable Trust Certificates - Long Term                                    |
| bs\_other\_mandatorily\_redeemable\_equity\_lt          | Double | Other Mandatorily Redeemable Equity Instruments - Long Term                            |
| bs\_preferred\_stock\_liability\_portion\_lt            | Double | Preferred Stock - Liability Portion - Long Term                                        |
| bs\_fhlb\_advances\_lt                                  | Double | FHLB Advances - Long Term                                                              |
| bs\_cap\_lease\_obligations\_lt                         | Double | Capitalized Lease Obligations - Long Term                                              |
| bs\_deriv\_liab\_hedge\_lt                              | Double | Derivative Liabilities - Hedge - Long Term                                             |
| bs\_liabilities\_held\_for\_sale\_lt                    | Double | Liabilities held for sale/discontinued operations - Long Term                          |
| bs\_income\_tax\_payable\_lt\_st                        | Double | Income Tax - Payable - Long and Short Term                                             |
| bs\_dividends\_payable                                  | Double | Dividends payable                                                                      |
| bs\_deferred\_tax\_investment\_tax\_credits\_lt         | Double | Deferred Tax and Investment Tax Credits - Long Term                                    |
| bs\_deferred\_tax\_liab\_lt                             | Double | Deferred Tax - Liability - Long Term                                                   |
| bs\_deferred\_tax\_liab\_untaxed\_reserves              | Double | Deferred Tax - Liabilities - Untaxed Reserves                                          |
| bs\_payables\_trust\_account                            | Double | Accounts Payable - Trust Account                                                       |
| bs\_payables\_accrued\_expenses                         | Double | Accounts payable and accrued expenses                                                  |
| bs\_trade\_payables\_total                              | Double | Trade Payables - Total                                                                 |
| bs\_payable\_reinsurance\_brokers\_agents               | Double | Accounts Payable - Reinsurance and Brokers/Agents                                      |
| bs\_interest\_payable                                   | Double | Interest payable                                                                       |
| bs\_other\_payables\_total                              | Double | Other payables - total                                                                 |
| bs\_payables\_customers\_brokers\_dealers               | Double | Accounts Payable - Customer Brokers, Dealers and Clearing Organizations                |
| bs\_accrued\_expenses                                   | Double | Accrued expenses                                                                       |
| bs\_deriv\_liab\_hedge                                  | Double | Derivative Liability - Hedge                                                           |
| bs\_operating\_lease\_liab\_lt\_st                      | Double | Operating lease liabilities - long and short term                                      |
| bs\_segregated\_liabilities\_total                      | Double | Segregated Liabilities - Total                                                         |
| bs\_operating\_lease\_liab\_lt                          | Double | Operating lease liability - long term                                                  |
| bs\_other\_non\_current\_liabilities\_total             | Double | Other non-current liabilities - total                                                  |
| bs\_provisions\_lt                                      | Double | Provisions - Long                                                                      |
| bs\_post\_employment\_benefits\_pension\_other\_lt      | Double | Post-employment benefits - Pension and other - Long term                               |
| bs\_asset\_retirement\_obligation\_lt                   | Double | Asset Retirement Obligation - Long Term                                                |
| bs\_provisions\_litigation\_lt                          | Double | Terms - Litigation - Long Term                                                         |
| bs\_provisions\_restructuring\_lt                       | Double | Provisions - Restructuring - Long                                                      |
| bs\_provisions\_environmental\_lt                       | Double | Provisions - Environmental Obligations - Long Term                                     |
| bs\_provisions\_other\_lt                               | Double | Provisions - Other - Long                                                              |
| bs\_customer\_advances\_lt                              | Double | Customer Advances - Long Term                                                          |
| bs\_deferred\_revenue\_lt                               | Double | Deferred Revenue - Long Term                                                           |
| bs\_regulatory\_liabilities\_lt                         | Double | Regulatory Liabilities - Long Term                                                     |
| bs\_other\_non\_current\_liabilities                    | Double | Other non-current liabilities                                                          |
| bs\_other\_liabilities\_total                           | Double | Other liabilities - total                                                              |
| bs\_provisions                                          | Double | Provisions                                                                             |
| bs\_post\_employment\_benefits\_pension\_other          | Double | Post-employment benefits - pensions and other                                          |
| bs\_provisions\_other\_than\_pension                    | Double | Provisions - except pension and post-retirement                                        |
| bs\_regulatory\_liabilities\_total                      | Double | Regulatory Liabilities - Total                                                         |
| bs\_billings\_excess\_costs\_total                      | Double | Bills exceeding costs - total                                                          |
| bs\_customer\_advances\_total                           | Double | Customer Advances - Total                                                              |
| bs\_deferred\_revenue\_income                           | Double | Deferred income/income                                                                 |
| bs\_other\_liabilities                                  | Double | Other liabilities                                                                      |
| bs\_liabilities\_held\_for\_sale\_lt\_st                | Double | Liabilities held for sale/discontinued operations - LT & ST                            |
| bs\_insurance\_liabilities                              | Double | Insurance liability                                                                    |
| bs\_minority\_interest\_non\_equity                     | Double | Minority Interest - Non-Equity                                                         |
| bs\_total\_non\_current\_liabilities                    | Double | Total non-current liabilities                                                          |
| bs\_total\_liabilities                                  | Double | Total liabilities                                                                      |
| bs\_shareholders\_equity\_parent                        | Double | Shareholders' equity - Attributable to parent company holdings - Total                 |
| bs\_preferred\_equity                                   | Double | Preferred stockholders' equity                                                         |
| bs\_preferred\_stock\_redeemable\_total                 | Double | Preferred Stock - Redeemable - Total                                                   |
| bs\_preferred\_stock\_redeemable\_convertible           | Double | Preferred Stock - Redeemable - Convertible                                             |
| bs\_preferred\_stock\_non\_redeemable                   | Double | Preferred stock - non-redeemable                                                       |
| bs\_preferred\_stock\_convertible\_non\_redeemable      | Double | Preferred stock - convertible - non-redeemable                                         |
| bs\_preferred\_equity\_contributed                      | Double | Preferred Stock - Contribution                                                         |
| bs\_preferred\_stock\_esop                              | Double | Preferred stock - issued for employee stock ownership plans                            |
| bs\_preferred\_stock\_treasury                          | Double | Preferred Stock - Stock/Repurchase                                                     |
| bs\_esop\_guarantees\_preferred\_deferred\_comp         | Double | ESOP Guarantees - Preferred Compensation and Deferred Compensation                     |
| bs\_preferred\_stock\_redeemable\_temporary             | Double | Preferred Stock - Redeemable - Temporary Equity                                        |
| bs\_common\_equity\_parent                              | Double | Common shares attributable to shareholders of the parent company                       |
| bs\_common\_stock\_treasury                             | Double | Common Stock - Stock/Repurchase                                                        |
| bs\_common\_stock\_esop                                 | Double | Common stock - held in ESOP or trust/deferred compensation                             |
| bs\_common\_equity\_contributed                         | Double | Common Stock - Contribution                                                            |
| bs\_common\_stock\_issued\_paid                         | Double | Common stock - issued and paid                                                         |
| bs\_limited\_partner                                    | Double | Limited Partner                                                                        |
| bs\_common\_stock\_additional\_paid\_in\_capital        | Double | Common stock - additional capital payments, including option reserves                  |
| bs\_common\_share\_capital\_incl\_apic                  | Double | Common share capital, including additional paid-in capital - Total                     |
| bs\_distributions\_excess\_earnings                     | Double | Distributions in excess of earnings                                                    |
| bs\_equity\_non\_contributed\_reserves\_retained        | Double | Equity - Non-Contributory - Reserves and Retained Earnings                             |
| bs\_retained\_earnings\_total                           | Double | Retained Earnings - Total                                                              |
| bs\_accumulated\_oci\_total                             | Double | Comprehensive income - cumulative - total                                              |
| bs\_inv\_unrealized\_gl                                 | Double | Investments - Unrealized Gains and Losses                                              |
| bs\_hedging\_reserves                                   | Double | Hedging reserves                                                                       |
| bs\_fx\_translation\_adj                                | Double | Foreign currency translation adjustment - cumulative                                   |
| bs\_oci\_pension\_liabilities                           | Double | Comprehensive Income - Pension Liabilities                                             |
| bs\_oci\_unearned\_compensation                         | Double | Comprehensive income - unearned compensation                                           |
| bs\_revaluation\_reserves                               | Double | Revaluation reserves                                                                   |
| bs\_oci\_other\_total                                   | Double | Comprehensive income - other - total                                                   |
| bs\_other\_reserves\_equity\_total                      | Double | Other Reserves/Equity - Total                                                          |
| bs\_goodwill\_written\_off                              | Double | Goodwill - Accumulated Write-offs                                                      |
| bs\_untaxed\_special\_reserves                          | Double | Tax-free/special reserves                                                              |
| bs\_negative\_consol\_goodwill\_written\_off            | Double | Negative Consol Diff goodwill written off against Rsrv                                 |
| bs\_equity\_other                                       | Double | Equity - Other                                                                         |
| bs\_general\_partner                                    | Double | General Partner                                                                        |
| bs\_deferred\_shares                                    | Double | Deferred shares                                                                        |
| bs\_social\_capital                                     | Double | Social capital                                                                         |
| bs\_policy\_holder\_equity                              | Double | Policy holder equity                                                                   |
| bs\_common\_equity\_total                               | Double | Common Equity - Total                                                                  |
| bs\_minority\_interest\_equity                          | Double | Minority Interest - Equity                                                             |
| bs\_hybrid\_financial\_instrument\_equity               | Double | Hybrid Financial Instruments - Equity Component                                        |
| bs\_total\_equity\_incl\_minority\_hybrid               | Double | Total shareholder equity, including minority equity and hybrid debt                    |
| bs\_total\_liabilities\_equity                          | Double | Total liabilities and equity                                                           |
| bs\_common\_shares\_issued\_total                       | Double | Common shares - issued - total                                                         |
| bs\_common\_shares\_outstanding\_total                  | Double | Common shares - outstanding - total                                                    |
| bs\_common\_shares\_treasury\_total                     | Double | Common shares - inventory - total                                                      |
| bs\_common\_shares\_authorized                          | Double | Common Shares - Authorized - Certain Issues                                            |
| bs\_common\_shares\_issued                              | Double | Common shares - issued - specific issues                                               |
| bs\_common\_shares\_outstanding                         | Double | Common shares - issued - specific issues                                               |
| bs\_common\_shares\_treasury                            | Double | Common Shares - Treasury - Certain Issues                                              |
| bs\_common\_shares\_issued\_current                     | Double | Common shares - issued - specific issue - current                                      |
| bs\_common\_shares\_outstanding\_current                | Double | Common shares - issued - specific issues - current                                     |
| bs\_common\_shares\_treasury\_current                   | Double | Common Shares - Inventory - Specific Issues - Current                                  |
| bs\_common\_shares\_issued\_dr                          | Double | Common Shares - Issued - Specific Issues - DR                                          |
| bs\_common\_shares\_outstanding\_dr                     | Double | Common Shares - Issued - Specific Issues - DR                                          |
| bs\_common\_shares\_treasury\_dr                        | Double | Common Shares - Inventory - Certain Issues - DR                                        |
| bs\_common\_shares\_issued\_cpo                         | Double | Common Shares - Issued - Specific Issues - CPO                                         |

| Field                                                         | Type   | Description                                                                                          |
| :------------------------------------------------------------ | :----- | :--------------------------------------------------------------------------------------------------- |
| bs\_common\_shares\_outstanding\_cpo                          | Double | Common Shares - Issued - Certain Issues - CPO                                                        |
| bs\_common\_shares\_treasury\_cpo                             | Double | Common Shares - Treasury - Certain Offerings - CPO                                                   |
| bs\_preferred\_shares\_authorized                             | Double | Preferred Shares - Authorized - Certain Issues                                                       |
| bs\_preferred\_shares\_issued                                 | Double | Preferred Shares - Issued - Specific Issues                                                          |
| bs\_preferred\_shares\_outstanding                            | Double | Preferred Shares - Issued - Specific Issues                                                          |
| bs\_preferred\_shares\_treasury                               | Double | Preferred Stock - Treasury - Certain Issues                                                          |
| bs\_preferred\_shares\_issued\_current                        | Double | Preferred Shares - Issued - Specific Issues - Current                                                |
| bs\_preferred\_shares\_outstanding\_current                   | Double | Preferred Shares - Issued - Specific Issues - Current                                                |
| bs\_preferred\_shares\_treasury\_current                      | Double | Preferred Stock - Inventory - Certain Issues - Current                                               |
| bs\_asset\_allocation\_factor                                 | Double | Asset Allocation Factor - Specific Issue                                                             |
| bs\_asset\_participation\_factor                              | Double | Asset participation factor - specific question                                                       |
| bs\_epra\_nav\_per\_share                                     | Double | EPRA NAV per share                                                                                   |
| bs\_epra\_triple\_nav\_per\_share                             | Double | EPRA Triple Net Asset Value per Share (NNNAV)                                                        |
| bs\_rou\_tangible\_total\_net\_supp                           | Double | Right of Use Tangible Assets - Total - Net - Supplementary                                           |
| bs\_rou\_operating\_lease\_net\_supp                          | Double | Right to use tangible assets - Operating Lease Network - Supplement                                  |
| bs\_rou\_cap\_fin\_lease\_net\_supp                           | Double | Tangible Rights - Cap/Finance Lease - Net - Suppl                                                    |
| bs\_rou\_tangible\_total\_gross\_supp                         | Double | Right of Use Tangible Assets - Total - Total - Supplementary                                         |
| bs\_rou\_operating\_lease\_gross\_supp                        | Double | Right to use tangible assets - Gross operating lease - Suppl                                         |
| bs\_rou\_cap\_fin\_lease\_gross\_supp                         | Double | Right to Use Tangible Assets - Cap/Financial Lease - Total - Suppl                                   |
| bs\_rou\_tangible\_total\_acc\_depr\_supp                     | Double | Right of Use Tangible Assets - Total - Accum Depr - Suppl                                            |
| bs\_rou\_operating\_lease\_acc\_depr\_supp                    | Double | Right to Use Tangible Assets - Optg Lease Accum Depr Suppl                                           |
| bs\_rou\_cap\_fin\_lease\_acc\_depr\_supp                     | Double | Right to Use Tangible Assets - Cap/Finance Lease Accum Depr Suppl                                    |
| bs\_ppe\_excl\_rou\_cap\_leases\_net                          | Double | PPE - excluding tangible rights of use and capped leases - Net                                       |
| bs\_ppe\_excl\_rou\_cap\_leases\_gross                        | Double | PPE - excluding tangible rights of use and capped leases - Gross                                     |
| bs\_ppe\_excl\_rou\_cap\_leases\_acc\_depr                    | Double | PPE - excluding tangible rights of use and capped leases - Accum Depr                                |
| bs\_rou\_intangibles\_net\_supp                               | Double | Right-of-use intangible assets - Net - Supplementary                                                 |
| bs\_rou\_intangibles\_gross\_supp                             | Double | Right-of-use intangible assets - Total - Supplementary                                               |
| bs\_rou\_intangibles\_acc\_amort\_supp                        | Double | Right-of-use intangible assets - Accumulated amortization - Suppl                                    |
| bs\_total\_operating\_lease\_liabilities                      | Double | Total operating lease liabilities                                                                    |
| bs\_operating\_lease\_liab\_lt\_st\_supp                      | Double | Operating Lease Liability - Long Term and Short Term - Supplement                                    |
| bs\_operating\_lease\_liab\_current\_supp                     | Double | Operating Lease Liability - Current Part/ST - Supplement                                             |
| bs\_operating\_lease\_liab\_lt\_supp                          | Double | Operating Lease Liability - Long Term - Supplementary                                                |
| bs\_finance\_operating\_lease\_liab\_total                    | Double | Financing and operating lease liabilities - total                                                    |
| bs\_debt\_incl\_fin\_op\_lease\_liab                          | Double | Debt includes financing and operating lease liabilities                                              |
| bs\_net\_debt                                                 | Double | Net debt                                                                                             |
| bs\_weighted\_cost\_debt\_pct                                 | Double | Weighted cost of debt - %                                                                            |
| bs\_revolver\_outstanding\_supp                               | Double | Revolving Credit Facility - Outstanding - Supplementary                                              |
| bs\_revolver\_unutilized\_supp                                | Double | Revolving Credit Line - Unused/Unutilized Amount - Supplementary                                     |
| bs\_revolver\_total\_principal\_supp                          | Double | Revolving Credit Facility - Total Principal - Supplementary                                          |
| bs\_islamic\_investments\_deposits                            | Double | Islamic investments and deposits                                                                     |
| bs\_islamic\_receivables\_st                                  | Double | Islamic Receivables - Short Term                                                                     |
| bs\_islamic\_receivables\_lt                                  | Double | Islamic Receivables - Long Term                                                                      |
| bs\_islamic\_financing\_assets\_total                         | Double | Islamic Financing Assets - Total                                                                     |
| bs\_islamic\_investments\_total                               | Double | Islamic Investments - Total                                                                          |
| bs\_unrestricted\_investment\_accounts                        | Double | Unrestricted Investment Accounts                                                                     |
| bs\_other\_islamic\_deposits                                  | Double | Other Islamic Deposits                                                                               |
| bs\_islamic\_debt\_lt\_st                                     | Double | Islamic debt - long and short term                                                                   |
| bs\_islamic\_debt\_deposits\_total                            | Double | Islamic Debt and Deposits - Total                                                                    |
| bs\_debt\_lt\_maturities\_total                               | Double | Debt - Long Term - Maturity - Total                                                                  |
| bs\_debt\_lt\_maturities\_year1                               | Double | Debt - Long Term - Maturity - Within 1 Year                                                          |
| bs\_debt\_lt\_maturities\_year2                               | Double | Debt - Long Term - Maturity - Year 2                                                                 |
| bs\_debt\_lt\_maturities\_year3                               | Double | Debt - Long Term - Maturity - Year 3                                                                 |
| bs\_debt\_lt\_maturities\_year4                               | Double | Debt - Long Term - Maturity - Year 4                                                                 |
| bs\_debt\_lt\_maturities\_year5                               | Double | Debt - Long Term - Maturity - Year 5                                                                 |
| bs\_debt\_lt\_maturities\_year6                               | Double | Debt - Long Term - Maturity - Year 6                                                                 |
| bs\_debt\_lt\_maturities\_year7                               | Double | Debt - Long Term - Maturity - Year 7                                                                 |
| bs\_debt\_lt\_maturities\_year8                               | Double | Debt - Long Term - Maturity - Year 8                                                                 |
| bs\_debt\_lt\_maturities\_year9                               | Double | Debt - Long Term - Maturity - Year 9                                                                 |
| bs\_debt\_lt\_maturities\_year10                              | Double | Debt - Long Term - Maturity - 10 years                                                               |
| bs\_debt\_lt\_maturities\_remaining                           | Double | Debt - Long Term - Maturity - Remaining                                                              |
| bs\_debt\_lt\_maturities\_2\_3\_years                         | Double | Debt - Long Term - Maturity - 2-3 years                                                              |
| bs\_debt\_lt\_maturities\_4\_5\_years                         | Double | Debt - Long Term - Maturity - 4-5 years                                                              |
| bs\_debt\_lt\_maturities\_year6\_beyond                       | Double | Debt - Long Term - Maturity - Year 6 and Beyond                                                      |
| bs\_cap\_lease\_maturities\_total                             | Double | Capital Lease Maturities - Total                                                                     |
| bs\_cap\_lease\_maturities\_year1                             | Double | Capital lease maturity date - due in one year                                                        |
| bs\_cap\_lease\_maturities\_year2                             | Double | Capital Lease Maturity Date - Expiration Year 2                                                      |
| bs\_cap\_lease\_maturities\_year3                             | Double | Capital Lease Expiration - Expiration Year 3                                                         |
| bs\_cap\_lease\_maturities\_year4                             | Double | Capital Lease Expiration - Expiration Year 4                                                         |
| bs\_cap\_lease\_maturities\_year5                             | Double | Capital Lease Expiration - Expiration Year 5                                                         |
| bs\_cap\_lease\_maturities\_year6                             | Double | Capital Lease Expiration - Expiration Year 6                                                         |
| bs\_cap\_lease\_maturities\_year7                             | Double | Capital Lease Expiration - Expiration Year 7                                                         |
| bs\_cap\_lease\_maturities\_year8                             | Double | Capital Lease Expiration - Expiration Year 8                                                         |
| bs\_cap\_lease\_maturities\_year9                             | Double | Capital Lease Expiration - Expiration Year 9                                                         |
| bs\_cap\_lease\_maturities\_year10                            | Double | Capital Lease Expiration - Expiration Year 10                                                        |
| bs\_cap\_lease\_maturities\_remaining                         | Double | Capital Lease Maturity - Remaining Maturity                                                          |
| bs\_cap\_lease\_maturities\_interest                          | Double | Capital Lease Maturity - Interest Cost                                                               |
| bs\_cap\_lease\_maturities\_executory                         | Double | Capital Lease Maturity - Execution Cost                                                              |
| bs\_cap\_lease\_maturities\_2\_3\_years                       | Double | Capital lease maturity - due in 2-3 years                                                            |
| bs\_cap\_lease\_maturities\_4\_5\_years                       | Double | Capital lease maturity date - due in 4-5 years                                                       |
| bs\_cap\_lease\_maturities\_year6\_beyond                     | Double | Capital Lease Maturities - Due in Year 6 and Beyond                                                  |
| bs\_contract\_assets\_unearned\_revenue\_billings\_total      | Double | Total Contract Assets - Unearned Revenue and Progress Bills                                          |
| bs\_contract\_assets\_unearned\_revenue\_billings\_st         | Double | Contract Assets - ST Unearned Revenue and Progress Billings                                          |
| bs\_contract\_assets\_unearned\_revenue\_billings\_lt         | Double | Contract Assets - LT Unearned Revenue and Progress Billings                                          |
| bs\_inv\_property\_fair\_value                                | Double | Investment Properties - Fair Value                                                                   |
| bs\_contract\_liabilities\_unearned\_revenue\_billings\_total | Double | Total Contract Liabilities - Unearned Revenue and Progress Bills                                     |
| bs\_contract\_liabilities\_unearned\_revenue\_billings\_st    | Double | Contract Liabilities - ST Unearned Revenue and Progress Billings                                     |
| bs\_contract\_liabilities\_unearned\_revenue\_billings\_lt    | Double | Contractual Liabilities - LT Unearned Revenue and Progress Billings                                  |
| bs\_investment\_contracts\_technical\_liabilities             | Double | Investment Contracts - Technical Liabilities                                                         |
| bs\_insurance\_contracts\_technical\_liabilities              | Double | Insurance Contracts - Technical Liabilities                                                          |
| bs\_minority\_interest\_total                                 | Double | Minority Interest - Total                                                                            |
| bs\_accruals\_st                                              | Double | Accruals - Short Term                                                                                |
| bs\_asset\_accruals                                           | Double | Accruals                                                                                             |
| bs\_cash\_cash\_equiv\_total                                  | Double | Cash and cash equivalents - Total                                                                    |
| bs\_cash\_securities                                          | Double | Cash and securities                                                                                  |
| bs\_cash\_short\_term\_inv\_total                             | Double | Cash and Short-Term Investments - Total                                                              |
| bs\_debt\_incl\_pref\_equity\_minority                        | Double | Debt, including preferred stock and minority interests - Total                                       |
| bs\_demand\_deposits\_total                                   | Double | Demand Deposits - Total                                                                              |
| bs\_earning\_assets                                           | Double | Earning assets                                                                                       |
| bs\_equity\_sec\_real\_estate                                 | Double | Equity Securities and Real Estate                                                                    |
| bs\_invested\_assets\_total                                   | Double | Invested assets - total                                                                              |
| bs\_investment\_securities                                    | Double | Investment securities                                                                                |
| bs\_investments\_permanent                                    | Double | Investments - Permanent                                                                              |
| bs\_net\_book\_capital                                        | Double | Net book capital                                                                                     |
| bs\_net\_operating\_assets                                    | Double | Net operating assets                                                                                 |
| bs\_non\_reserve\_liabilities                                 | Double | Non-reserve liabilities                                                                              |
| bs\_provisions\_total                                         | Double | Reserves - Total                                                                                     |
| bs\_savings\_deposits\_total                                  | Double | Savings Deposits - Total                                                                             |
| bs\_shareholders\_equity\_common                              | Double | Shareholders' Equity - Common Stock                                                                  |
| bs\_tangible\_total\_equity                                   | Double | Total tangible equity                                                                                |
| bs\_tangible\_book\_value                                     | Double | Tangible book value                                                                                  |
| bs\_total\_book\_capital                                      | Double | Total book capital                                                                                   |
| bs\_total\_capital                                            | Double | Total capital                                                                                        |
| bs\_total\_lt\_capital                                        | Double | Total long-term capital                                                                              |
| bs\_total\_fixed\_assets\_net                                 | Double | Total fixed assets - net                                                                             |
| bs\_trading\_account                                          | Double | Trading account                                                                                      |
| bs\_unearned\_revenue\_total                                  | Double | Unearned revenue - total                                                                             |
| bs\_working\_capital                                          | Double | working capital                                                                                      |
| bs\_working\_capital\_non\_cash                               | Double | Working Capital - Non-Cash                                                                           |
| bs\_working\_capital\_excl\_other\_current                    | Double | Working capital, excluding other current assets and liabilities                                      |
| bs\_book\_value\_excl\_other\_equity                          | Double | Book value excl. other equity                                                                        |
| bs\_common\_shareholders\_number                              | Double | Common shareholders - number                                                                         |
| bs\_reinsurance\_liabilities                                  | Double | Reinsurance Liabilities                                                                              |
| bs\_cash\_banks\_total                                        | Double | Cash on hand and bank deposits - total                                                               |
| bs\_cash\_st\_inv\_receivables\_total                         | Double | Cash, short-term investments, and accounts receivable - Total                                        |
| bs\_current\_assets\_excl\_cash\_st\_inv                      | Double | Current assets (excluding cash and short-term investments) - Total                                   |
| bs\_current\_liabilities\_excl\_current\_debt                 | Double | Current liabilities (excluding current debt) - Total                                                 |
| bs\_int\_bearing\_liabilities\_total                          | Double | Interest-bearing liabilities - total                                                                 |
| bs\_loans\_gross\_total                                       | Double | Loans - Total - Total                                                                                |
| bs\_loans\_net\_total                                         | Double | Loans - Net - Total                                                                                  |
| bs\_other\_assets\_lt\_st\_total                              | Double | Other short-term and long-term assets - total                                                        |
| bs\_other\_liabilities\_lt\_st\_total                         | Double | Other short-term and long-term liabilities - total                                                   |
| bs\_provision\_doubtful\_receivables\_total                   | Double | Allowance for doubtful debts and notes receivable - Total                                            |
| bs\_loan\_loss\_reserves\_total                               | Double | Loan loss reserves - total                                                                           |
| bs\_tangible\_book\_value\_loan\_loss\_reserves               | Double | Tangible Book Value and Loan Loss Reserves - Total                                                   |
| bs\_trade\_receivables\_net\_total                            | Double | Trade accounts and trade notes receivable - Net - Total                                              |
| bs\_total\_available\_funds                                   | Double | Total available funds                                                                                |
| bs\_current\_assets\_excl\_inventories                        | Double | Total current assets (excluding total inventory)                                                     |
| bs\_total\_debt\_excl\_islamic                                | Double | Total debt excludes Islamic debt                                                                     |
| bs\_benefit\_claims\_reserves\_gross                          | Double | Benefits and Claims Reserves - Gross                                                                 |
| bs\_book\_value\_excl\_aci                                    | Double | Book value excluding accumulated comprehensive income                                                |
| bs\_cash\_st\_inv\_net\_debt                                  | Double | Cash and short-term investments - net of debt                                                        |
| bs\_current\_portion\_lt\_debt\_incl\_cap\_leases\_hybrid     | Double | The current portion of long-term debt, including capitalized leases and hybrid financial instruments |
| bs\_deposits\_net                                             | Double | Deposits - Net                                                                                       |
| bs\_inv\_equity\_real\_estate\_mortgages                      | Double | Equity, real estate and mortgage investing                                                           |
| bs\_net\_debt\_incl\_pref\_equity\_minority                   | Double | Net debt includes preferred stock and minority interests                                             |
| bs\_ppe\_excl\_utility\_plant\_net                            | Double | Property, plant and equipment, excluding utilities - Net                                             |
| bs\_tangible\_book\_value\_excl\_other\_equity                | Double | Tangible book value (excluding other equity)                                                         |
| bs\_operating\_lease\_payments\_total                         | Double | Operating Lease Payments - Total                                                                     |
| bs\_op\_lease\_payments\_year1                                | Double | Operating lease payments - due in year 1                                                             |
| bs\_op\_lease\_payments\_year2                                | Double | Operating Lease Payments - Due Year 2                                                                |
| bs\_op\_lease\_payments\_year3                                | Double | Operating Lease Payments - Due Year 3                                                                |
| bs\_op\_lease\_payments\_year4                                | Double | Operating Lease Payments - Due Year 4                                                                |
| bs\_op\_lease\_payments\_year5                                | Double | Operating lease payments - due in year 5                                                             |
| bs\_op\_lease\_payments\_year6                                | Double | Operating Lease Payments - Due Year 6                                                                |
| bs\_op\_lease\_payments\_year7                                | Double | Operating Lease Payments - Due Year 7                                                                |
| bs\_op\_lease\_payments\_year8                                | Double | Operating Lease Payments - Due Year 8                                                                |
| bs\_op\_lease\_payments\_year9                                | Double | Operating Lease Payments - Due Year 9                                                                |
| bs\_op\_lease\_payments\_year10                               | Double | Operating lease payments - due in year 10                                                            |
| bs\_op\_lease\_payments\_remaining                            | Double | Operating Lease Payments - Remaining Term                                                            |
| bs\_op\_lease\_payments\_interest                             | Double | Operating lease payments - interest cost/estimated interest                                          |
| bs\_op\_lease\_payments\_2\_3\_years                          | Double | Operating lease payments - due in 2-3 years                                                          |
| bs\_op\_lease\_payments\_4\_5\_years                          | Double | Operating lease payments - due in 4-5 years                                                          |
| bs\_op\_lease\_payments\_year6\_beyond                        | Double | Operating lease payments - due in year 6 and beyond                                                  |
| bs\_credit\_exposure                                          | Double | Credit exposure                                                                                      |
| bs\_assets\_under\_management                                 | Double | Assets under management (AUM)                                                                        |
| bs\_capital\_adequacy\_total\_value                           | Double | Capital adequacy ratio - total (value)                                                               |
| bs\_capital\_adequacy\_tier1\_value                           | Double | Capital Adequacy Ratio - Tier 1 (Value)                                                              |
| bs\_capital\_adequacy\_core\_tier1\_value                     | Double | Capital Adequacy Ratio - Core Tier 1 (Value)                                                         |
| bs\_capital\_adequacy\_hybrid\_tier1\_value                   | Double | Capital adequacy ratio - Hybrid Tier 1 capital (included in Tier 1 capital)                          |
| bs\_capital\_adequacy\_tier2\_value                           | Double | Capital Adequacy Ratio - Tier 2 (Value)                                                              |
| bs\_capital\_adequacy\_tier3\_value                           | Double | Capital Adequacy Ratio - Tier 3 (Value)                                                              |
| bs\_capital\_adequacy\_total\_pct                             | Double | Capital Adequacy Ratio - Total (%)                                                                   |
| bs\_capital\_adequacy\_tier1\_pct                             | Double | Capital Adequacy Ratio - Tier 1 (%)                                                                  |
| bs\_capital\_adequacy\_core\_tier1\_pct                       | Double | Capital Adequacy Ratio - Core Tier 1 (%)                                                             |
| bs\_capital\_adequacy\_tier2\_pct                             | Double | Capital Adequacy Ratio - Tier 2 Capital (%)                                                          |
| bs\_capital\_adequacy\_tier3\_pct                             | Double | Capital Adequacy Ratio - Tier 3 (%)                                                                  |
| bs\_risk\_weighted\_assets                                    | Double | Risk weighted assets                                                                                 |
| bs\_liquidity\_coverage\_ratio\_pct                           | Double | Liquidity coverage ratio - Basel 3 - %                                                               |
| bs\_solvency\_margin\_ratio\_insurance                        | Double | Solvency adequacy ratio - insurance                                                                  |
| bs\_leverage\_ratio\_pct                                      | Double | Leverage Ratio - Basel 3 - %                                                                         |
| bs\_net\_stable\_funding\_ratio\_pct                          | Double | Net Stable Funding Ratio - Basel 3 - %                                                               |
| bs\_solvency\_ratio\_insurance                                | Double | Solvency Ratio – Insurance                                                                           |
| bs\_non\_performing\_assets\_loans\_other                     | Double | Nonperforming Assets - Loans and Others                                                              |
| bs\_non\_performing\_assets\_other                            | Double | Nonperforming assets - except loans                                                                  |
| bs\_loans\_non\_performing\_impaired                          | Double | Loans - Nonperforming and Impaired Loans                                                             |
| bs\_loans\_impaired\_total                                    | Double | Loans - Impaired - Total                                                                             |
| bs\_loans\_impaired\_non\_performing                          | Double | Loans - Impaired - Nonperforming                                                                     |
| bs\_loans\_impaired\_sub\_performing                          | Double | Loans - Impaired - Underperforming and Performing But Impaired                                       |
| bs\_loans\_performing\_non\_performing\_not\_impaired         | Double | Loans - Performing and Poor - Not Impaired                                                           |
| bs\_loans\_non\_performing\_past\_due                         | Double | Loans - Non-Performing - Not Impaired but Past Due                                                   |
| bs\_loans\_non\_performing\_past\_due\_0\_90                  | Double | Loans - Non-Performing - Not Impaired But Past Due - 0 to 90 Days                                    |
| bs\_loans\_non\_performing\_past\_due\_90                     | Double | Loans - Nonperforming - Not Impaired But Past Due - 90 Days                                          |
| bs\_loans\_performing\_not\_past\_due                         | Double | Loans - Performing - Not Impaired and Not Past Due                                                   |
| bs\_impaired\_assets\_total                                   | Double | Impaired assets - total                                                                              |
| bs\_impaired\_assets\_loans\_other                            | Double | Impaired assets - Impaired loans and others                                                          |
| bs\_impaired\_assets\_excl\_loans                             | Double | Impaired assets - excl. impaired loans                                                               |
| bs\_loans\_stage1\_gross                                      | Double | Loans - Stage 1 - Gross, Total                                                                       |
| bs\_loans\_stage2\_gross                                      | Double | Loan - Stage 2 - Gross, Total                                                                        |
| bs\_loans\_stage3\_gross                                      | Double | Loans - Stage 3 - Gross, Total                                                                       |
| bs\_loans\_not\_past\_due                                     | Double | Loans - not past due                                                                                 |
| bs\_loans\_total\_past\_due                                   | Double | Loans - Total past due                                                                               |
| bs\_loans\_past\_due\_lt\_90                                  | Double | Loan - Past Due \< 90 days                                                                           |
| bs\_loans\_past\_due\_remaining                               | Double | Loan - Past Due - Remaining Part                                                                     |
| bs\_loans\_poci\_gross                                        | Double | Total credit impairment on loans purchased or originated, total                                      |
| bs\_other\_assets\_stage1\_gross                              | Double | Other Assets - Stage 1, Gross                                                                        |
| bs\_other\_assets\_stage2\_gross                              | Double | Other Assets - Stage 2, Gross                                                                        |
| bs\_other\_assets\_stage3\_gross                              | Double | Other Assets - Stage 3, Gross                                                                        |
| bs\_int\_earning\_assets\_avg                                 | Double | Interest-earning assets - average                                                                    |
| bs\_int\_bearing\_liabilities\_avg                            | Double | Interest-bearing liabilities - average                                                               |
| bs\_employees\_ft\_period\_end                                | Double | Employees - Full Time/Full Time Equivalent - Period End                                              |
| bs\_employees\_ft\_current                                    | Double | Employees - Full Time/Full Time Equivalent - Current Date                                            |
| bs\_employees\_pt\_period\_end                                | Double | Employees - Part-Time - End of Period                                                                |
| bs\_order\_backlog                                            | Double | Order backlog                                                                                        |
| bs\_customer\_acceptances\_assets                             | Double | Customer Acceptance Liabilities - Assets                                                             |
| bs\_customer\_acceptances\_liabilities                        | Double | Customer Acceptance Liabilities - Liabilities                                                        |
| bs\_reported\_total\_assets                                   | Double | Report-Total Assets                                                                                  |
| bs\_reported\_total\_liabilities                              | Double | Report - Total Liabilities                                                                           |
| bs\_reported\_equity\_excl\_new\_stock                        | Double | Reported stockholders' equity, excluding new share subscriptions                                     |
| bs\_reported\_equity                                          | Double | Report - Stockholders Equity                                                                         |
| bs\_reported\_net\_assets                                     | Double | Report-Net Assets                                                                                    |
| bs\_reported\_net\_assets\_to\_assets                         | Double | Report - Net Assets to Total Assets                                                                  |
| bs\_reported\_roa                                             | Double | Report - Return on Assets                                                                            |
| bs\_reported\_roe                                             | Double | Report - Return on Equity                                                                            |
| bs\_wavg\_discount\_rate\_finance\_lease                      | Double | Weighted average discount rate - finance lease                                                       |
| bs\_wavg\_discount\_rate\_op\_lease                           | Double | Weighted average discount rate - operating leases - US GAAP                                          |
| bs\_wavg\_lease\_term\_yrs\_finance\_lease                    | Double | Wgt Average remaining lease term (years) - Finance Lease                                             |
| bs\_wavg\_lease\_term\_yrs\_op\_lease                         | Double | Wgt Average Remaining Lease Term (Years) - Op Lease - US GAAP                                        |
| bs\_loans\_net\_non\_performing\_reported                     | Double | Loans - Net Nonperforming Loans - Company Reports                                                    |
| bs\_loans\_net\_non\_performing\_pct                          | Double | Loans - Net NPL - %                                                                                  |
| bs\_provision\_coverage\_ratio\_pct                           | Double | Provision coverage ratio - %                                                                         |
| bs\_short\_term\_lending                                      | Double | Short-term - Loan                                                                                    |
| bs\_long\_term\_lending                                       | Double | Long term - loan                                                                                     |
| bs\_casa\_ratio\_pct                                          | Double | CASA ratio - %                                                                                       |
| bs\_collection\_efficiency\_pct                               | Double | Collection efficiency - %                                                                            |
| bs\_st\_lending\_to\_total\_pct                               | Double | Short-term loans as a percentage of total loans                                                      |
| bs\_lt\_lending\_to\_total\_pct                               | Double | Long term - Loans to total loans - %                                                                 |
| bs\_level1\_assets\_fair\_value                               | Double | Level 1 Assets - Fair Value                                                                          |
| bs\_level1\_liabilities\_fair\_value                          | Double | Level 1 Liabilities - Fair Value                                                                     |
| bs\_level2\_assets\_fair\_value                               | Double | Level 2 Assets - Fair Value                                                                          |
| bs\_level2\_liabilities\_fair\_value                          | Double | Level 2 Liabilities - Fair Value                                                                     |
| bs\_level3\_assets\_fair\_value                               | Double | Level 3 assets - fair value                                                                          |
| bs\_level3\_liabilities\_fair\_value                          | Double | Level 3 liabilities - fair value                                                                     |

Income statement(is)

| Field                                                | Type   | Description                                                                               |
| :--------------------------------------------------- | :----- | :---------------------------------------------------------------------------------------- |
| is\_revenue\_goods\_services                         | Double | Goods and services revenue                                                                |
| is\_sales\_goods\_services\_net                      | Double | Sales of Goods and Services - Net - Uncategorized                                         |
| is\_rental\_property\_revenue                        | Double | Rental and property-related operating income                                              |
| is\_rental\_income\_gross                            | Double | Rental and related income - gross                                                         |
| is\_tenant\_service\_charges                         | Double | Tenant service charge reimbursement                                                       |
| is\_rental\_income\_gross                            | Double | Rental income - gross                                                                     |
| is\_property\_dev\_revenue                           | Double | Real estate development revenue                                                           |
| is\_property\_mgmt\_revenue                          | Double | Property management service revenue                                                       |
| is\_property\_revenue\_other                         | Double | Real estate related operating income - other                                              |
| is\_hotel\_revenue                                   | Double | Hotel revenue                                                                             |
| is\_hotel\_rooms\_revenue                            | Double | Hotel revenue - number of rooms                                                           |
| is\_hotel\_lease\_income                             | Double | Hotel income - Hotel lease income                                                         |
| is\_hotel\_food\_beverage\_revenue                   | Double | Hotel Revenue - Food and Beverage                                                         |
| is\_hotel\_other\_revenue                            | Double | Hotel Revenue - Other                                                                     |
| is\_utility\_revenue                                 | Double | Utility Revenue - Total                                                                   |
| is\_utility\_other\_revenue                          | Double | Utility Revenue - Other Utility Business                                                  |
| is\_utility\_steam\_revenue                          | Double | Utility Revenue - Steam Operations                                                        |
| is\_utility\_water\_revenue                          | Double | Utility Revenue - Water Operations                                                        |
| is\_utility\_gas\_revenue                            | Double | Utility Revenue - Gas Operations                                                          |
| is\_utility\_electric\_revenue                       | Double | Utility Revenue - Electricity Operations                                                  |
| is\_utility\_non\_utility\_revenue                   | Double | Utility Revenue - Non-Utility Operations                                                  |
| is\_sales\_returns\_allowances\_adj                  | Double | Sales Returns Allowances and Other Revenue Adjustments                                    |
| is\_revenue\_taxes                                   | Double | Income taxes                                                                              |
| is\_gross\_business\_revenue                         | Double | Gross revenue from business activities - Total                                            |
| is\_int\_div\_income\_net                            | Double | Interest and Dividend Income/(Expenses) - Net - Financials                                |
| is\_int\_div\_income\_total                          | Double | Interest and Dividend Income - Financials - Total                                         |
| is\_int\_income\_loans\_deposits                     | Double | Interest Income - Loans/Deposits                                                          |
| is\_int\_fees\_loans\_receivables                    | Double | Interest and fees on loans and receivables                                                |
| is\_int\_income\_deposits\_banks                     | Double | Interest income - money deposited with other financial institutions                       |
| is\_int\_income\_collateral\_fin                     | Double | Interest Income - Mortgage Financing                                                      |
| is\_int\_div\_income\_inv\_sec                       | Double | Interest and Dividend Income - Investment Securities - Finance                            |
| is\_int\_div\_income\_afs\_htm                       | Double | Interest and Dividend Income - Invst Sec AFS/HTM - Finance                                |
| is\_int\_div\_income\_trading                        | Double | Interest and Dividend Income - Trading Account Asset Financing                            |
| is\_int\_div\_income\_other                          | Double | Interest and dividend income - Other - Finance                                            |
| is\_int\_expense\_total                              | Double | Interest Expense - Financials - Total                                                     |
| is\_int\_expense\_oper\_fin                          | Double | Interest Expense - Operating Finance - Business                                           |
| is\_int\_expense\_deposits                           | Double | Interest Expense - Deposits                                                               |
| is\_int\_expense\_collateral                         | Double | Interest Expense - Mortgage Financing                                                     |
| is\_int\_expense\_other                              | Double | Interest Expense - Other - Total                                                          |
| is\_int\_expense\_external\_fin                      | Double | Interest expense-external financing business                                              |
| is\_return\_unrestricted\_inv                        | Double | Return for unrestricted investment accounts                                               |
| is\_net\_premiums\_earned                            | Double | Net premiums earned                                                                       |
| is\_premiums\_written\_gross                         | Double | Premium Premium - Total                                                                   |
| is\_premiums\_written\_life                          | Double | Total Premiums - Life/Long Term Insurance                                                 |
| is\_premiums\_written\_non\_life                     | Double | Premiums Written - Total - Non-Life/General Insurance                                     |
| is\_premiums\_ceded\_unearned                        | Double | Ceded and Unearned Premiums - Reinsurance                                                 |
| is\_premiums\_ceded\_written                         | Double | Premium ceded reinsurance - written                                                       |
| is\_premiums\_ceded\_unearned\_premiums              | Double | Premiums assigned to reinsurance – something for nothing                                  |
| is\_unearned\_premiums                               | Double | Unearned premiums                                                                         |
| is\_non\_int\_business\_rev\_net                     | Double | Non-interest business income/(expense) - Net - Total                                      |
| is\_net\_comm\_fees\_income                          | Double | Net Commission and Fee Income/(Expenses) - Business Income                                |
| is\_fees\_comm\_income                               | Double | Fee and commission income                                                                 |
| is\_fees\_comm\_expense                              | Double | Fees and commission expenses                                                              |
| is\_inv\_income\_gross                               | Double | Investment Income - Total - Investment                                                    |
| is\_dividend\_income                                 | Double | Dividend Income - Investment                                                              |
| is\_int\_income\_inv                                 | Double | Interest Income - Investment                                                              |
| is\_inv\_income\_other                               | Double | Investment Income - Other - Total (Investments)                                           |
| is\_trust\_fiduciary\_income                         | Double | Trusts and Fiduciary Income/Commissions and Fees                                          |
| is\_trust\_income                                    | Double | Trust income                                                                              |
| is\_net\_fx\_income                                  | Double | Net foreign exchange income/(expense)-operating income                                    |
| is\_inv\_income\_net\_insurance                      | Double | Investment Income/(Expenses)-Net-Insurance                                                |
| is\_inv\_income\_gross\_insurance                    | Double | Investment Income - Total - Insurance - Total                                             |
| is\_inv\_expense\_insurance                          | Double | Investment Expenses - Insurance - Total                                                   |
| is\_inv\_loans\_gain\_loss                           | Double | Investments and Loans - Business - Gain/(Loss)                                            |
| is\_realized\_gain\_loss                             | Double | Realized Capital Gain/(Loss)-Total                                                        |
| is\_inv\_sec\_realized\_gl                           | Double | Investment Securities - Realized Gain/(Loss)                                              |
| is\_commodities\_realized\_gl                        | Double | Commodity - Realized Gain/(Loss)                                                          |
| is\_fx\_realized\_gl                                 | Double | Forex - Realized Gain/(Loss) - Capital                                                    |
| is\_deriv\_hedge\_realized\_gl                       | Double | Derivatives - Hedging - Business - Realized Gains/(Loss)                                  |
| is\_other\_realized\_gl                              | Double | No difference/other realized gains/(losses)                                               |
| is\_unrealized\_gl                                   | Double | Capital Gain/(Loss) - Unrealized - Total                                                  |
| is\_inv\_sec\_unrealized\_gl                         | Double | Investment Securities - Unrealized Gains/(Loss)                                           |
| is\_commodities\_unrealized\_gl                      | Double | Commodities - Unrealized Gain/(Loss)                                                      |
| is\_fx\_unrealized\_gl                               | Double | FX Gain/(Loss)-Unrealized-Capital                                                         |
| is\_deriv\_hedge\_fair\_value\_gl                    | Double | Derivative Hedge at Fair Value - Gain/(Loss)                                              |
| is\_other\_unrealized\_gl                            | Double | Undifferentiated/other unrealized gains/(losses)                                          |
| is\_net\_inv\_loans\_gl                              | Double | Net investment and loan gains/(losses) - operating income                                 |
| is\_inv\_sec\_business\_gl                           | Double | Investment Securities - Business - Gain/(Loss)                                            |
| is\_inv\_sec\_afs\_htm\_realized\_gl                 | Double | Investment Securities - AFS/HTM - Realized Gain/(Loss)                                    |
| is\_trading\_inv\_gl                                 | Double | Trading Investment/Trading Account Income - Gain/(Loss)                                   |
| is\_trading\_inv\_realized\_gl                       | Double | Trading Investment - Realized Gain/(Loss)                                                 |
| is\_trading\_inv\_unrealized\_gl                     | Double | Trading Investments - Unrealized Gain/(Loss)                                              |
| is\_inv\_sec\_unclassified\_gl                       | Double | Investment Securities - Unclassified Business - Gain/(Loss)                               |
| is\_inv\_gl\_other                                   | Double | Investment income/(loss)-other                                                            |
| is\_loans\_settlement\_gl                            | Double | Loan Settlement - Gain/(Loss)                                                             |
| is\_deriv\_hedge\_unclassified\_gl                   | Double | Derivatives Hedging - Business - Gain/(Loss) - Unclassified                               |
| is\_deriv\_hedge\_gl                                 | Double | Derivatives - Hedging - Business - Gain/(Loss)                                            |
| is\_sale\_fin\_instr\_gl\_other                      | Double | Gain/(loss) on sale of financial instrument - Other                                       |
| is\_net\_income\_insurance\_bank                     | Double | Net Insurance Income/(Expenses) - Bank                                                    |
| is\_premiums\_earned\_other\_income\_insurance\_bank | Double | Insurance premiums and other income - Bank - Total                                        |
| is\_claims\_benefits\_other\_exp\_insurance\_bank    | Double | Insurance Claims, Benefits, and Other Expenses - Bank - Total                             |
| is\_net\_income\_lease\_revenue                      | Double | Net income/(expense) from Optg and finance leases - revenue                               |
| is\_financing\_revenue                               | Double | Financing-related business income                                                         |
| is\_business\_financing\_revenue\_other              | Double | Business-related financing income - other                                                 |
| is\_business\_related\_revenue\_other                | Double | Business-related activity revenue - Other - Total                                         |
| is\_royalty\_income                                  | Double | Royalty Income - Business                                                                 |
| is\_net\_revenue\_banking\_insurance                 | Double | Net income/(expenses) - Banking - Insurance                                               |
| is\_revenue\_banking\_insurance                      | Double | Banking Revenue - Insurance                                                               |
| is\_expenses\_banking\_insurance                     | Double | Banking Expenses (Income) - Insurance                                                     |
| is\_op\_revenue\_capital\_account                    | Double | Operating Income - Capital Account (Investment Trust)                                     |
| is\_op\_revenue\_revenue\_account                    | Double | Operating Income - Revenue Account (Investment Trust)                                     |
| is\_revenue\_business\_total                         | Double | Business Activity Revenue - Total                                                         |
| is\_cost\_operating\_revenue                         | Double | Operating revenue cost                                                                    |
| is\_cost\_financing                                  | Double | Financing-related operating costs                                                         |
| is\_loan\_loss\_provision                            | Double | Loan loss provision and impairment                                                        |
| is\_cost\_revenues\_total                            | Double | Revenue cost - total                                                                      |
| is\_cost\_revenues                                   | Double | Cost of Revenue - Uncategorized                                                           |
| is\_production\_taxes\_royalty                       | Double | Production taxes and royalties                                                            |
| is\_amortization\_cogs                               | Double | Revenue cost amortization                                                                 |
| is\_depreciation\_cogs                               | Double | Revenue cost depreciation                                                                 |
| is\_labor\_expenses\_cogs                            | Double | Labor expenses, including stock-based compensation at cost of goods sold                  |
| is\_material\_expenses                               | Double | Material expenses                                                                         |
| is\_material\_expenses\_inventory\_utility           | Double | Material Expenses - Inventory Own Work and Utilities Uncategorized                        |
| is\_utility\_fuel\_expense                           | Double | Utility revenue cost - fuel expense                                                       |
| is\_utility\_fuel\_purchased                         | Double | Utility Revenue Cost - Purchased Fuel for Resale                                          |
| is\_utility\_purchased\_power                        | Double | Utility Revenue Cost - Purchased Power                                                    |
| is\_own\_work\_capitalized                           | Double | Own work capitalized                                                                      |
| is\_inventory\_change                                | Double | Inventory change                                                                          |
| is\_materials\_purchased                             | Double | Purchase materials                                                                        |
| is\_ground\_lease\_rental\_expense                   | Double | Ground lease/rental expense in cost of revenue                                            |
| is\_property\_op\_exp\_rental                        | Double | Property Operating Expenses - Real Estate Rental                                          |
| is\_property\_op\_exp\_hotel                         | Double | Property Operating Expenses - Hotel                                                       |
| is\_property\_direct\_exp\_other                     | Double | Property Direct Expenses - By Type - Other                                                |
| is\_real\_estate\_taxes                              | Double | Real estate taxes                                                                         |
| is\_property\_maintenance\_charges                   | Double | Property maintenance and service charges                                                  |
| is\_property\_rental\_expense                        | Double | Property-related expenses - Rental business/investment properties                         |
| is\_cost\_revenues\_other                            | Double | Revenue Cost - Other - Total                                                              |
| is\_operating\_interest\_expense                     | Double | Operating interest expense is not included in net interest income                         |
| is\_gross\_profit                                    | Double | Gross Profit - Industrial/Real Estate - Total                                             |
| is\_insurance\_claims\_reserves                      | Double | Insurance Claims/Reserves - Total                                                         |
| is\_insurance\_benefits\_paid                        | Double | Benefits paid - current                                                                   |
| is\_life\_insurance\_benefits                        | Double | Life insurance benefits paid                                                              |
| is\_non\_life\_insurance\_benefits                   | Double | Non-life insurance benefits paid                                                          |
| is\_lt\_insurance\_reserves                          | Double | Long-term insurance reserves - Total                                                      |
| is\_loss\_adjustment\_expense                        | Double | Loss adjustment expense                                                                   |
| is\_insurance\_benefits\_ceded                       | Double | Transfer of insurance benefits                                                            |
| is\_current\_claims\_benefits\_ceded                 | Double | Current insurance claims and benefits transfers                                           |
| is\_lt\_insurance\_reserves\_ceded                   | Double | Give up long-term insurance reserves                                                      |
| is\_dividends\_policyholders                         | Double | policyholder dividends                                                                    |
| is\_underwriting\_expenses                           | Double | Underwriting expenses                                                                     |
| is\_policy\_acq\_costs                               | Double | Policy Acquisition Costs - Total                                                          |
| is\_policy\_acq\_costs                               | Double | Policy Acquisition Costs - Uncategorized                                                  |
| is\_amort\_deferred\_policy\_acq                     | Double | Amortization of deferred policy acquisition costs                                         |
| is\_policy\_acq\_costs\_other                        | Double | Policy Acquisition Costs - Other                                                          |
| is\_underwriting\_commissions                        | Double | Underwriting commissions to agents                                                        |
| is\_fee\_comm\_exp\_insurance                        | Double | Fees and Commission Expenses - Insurance                                                  |
| is\_underwriting\_expense\_other                     | Double | Uncategorized underwriting expense - other                                                |
| is\_expenses\_banking\_insurance                     | Double | Banking Expenses - Insurance                                                              |
| is\_sga\_expenses                                    | Double | Selling, general and administrative expenses - Total                                      |
| is\_sga\_expenses                                    | Double | Selling, general and administrative expenses - Uncategorized                              |
| is\_labor\_expenses\_sga                             | Double | SGA expenses include labor expenses for stock-based compensation                          |
| is\_r\_and\_d\_expense                               | Double | Research and development expenses                                                         |
| is\_exploration\_expense                             | Double | Exploration/dry hole expenses (including write-offs)                                      |
| is\_depreciation\_sga                                | Double | Depreciation of selling, general and administrative expenses                              |
| is\_amort\_intangibles\_sga                          | Double | Amortization of intangible assets in SGA expense                                          |
| is\_o\_and\_m\_utility                               | Double | Operations and Maintenance (Utility)                                                      |
| is\_inv\_mgmt\_fees                                  | Double | Investment management fees                                                                |
| is\_inv\_mgmt\_base\_fees                            | Double | Investment Management - Base Fees                                                         |
| is\_incentive\_fees                                  | Double | Performance/Incentive Investment Fees                                                     |
| is\_sga\_other                                       | Double | Selling, general and administrative expenses - Other - Total                              |
| is\_advertising\_expense                             | Double | Advertising expense                                                                       |
| is\_property\_other\_taxes                           | Double | Property taxes and other taxes                                                            |
| is\_rental\_expense                                  | Double | Rental expense                                                                            |
| is\_occupancy\_expense                               | Double | Occupancy Expense - Other                                                                 |
| is\_pre\_opening\_expenses                           | Double | Pre-opening expenses                                                                      |
| is\_doubtful\_accounts\_provision                    | Double | Doubtful debt provisions and write-offs                                                   |
| is\_equipment\_occupancy\_expense                    | Double | Equipment/Occupancy Expenses - Banking/Finance - Other                                    |
| is\_other\_operating\_expense\_net                   | Double | Other operating expenses/(revenue) - net                                                  |
| is\_other\_operating\_income                         | Double | Other operating income - total                                                            |
| is\_other\_operating\_expense                        | Double | Other operating expenses                                                                  |
| is\_decommissioning\_provision                       | Double | Provisions for decommissioning funds and environmental obligations                        |
| is\_operating\_provisions\_change                    | Double | Operating reserves - increase/(decrease)                                                  |
| is\_bank\_guarantee\_contributions                   | Double | Contributions and transfers to bank guarantee funds                                       |
| is\_non\_recurring\_op\_adj                          | Double | Non-Recurring Adjustments - Operations - Decrease/(Increase)                              |
| is\_supplementary\_op\_adj                           | Double | Supplementary Adjustment - Operational - Decrease/(Increase)                              |
| is\_op\_expenses\_revenue\_acct                      | Double | Operating Expenses - Revenue Account                                                      |
| is\_op\_expenses\_capital\_acct                      | Double | Operating Expenses - Capital Account                                                      |
| is\_op\_expenses\_total                              | Double | Operating Expenses - Total                                                                |
| is\_total\_op\_exp\_before\_int\_loan\_loss          | Double | Total operating expenses before interest expense and loan loss certification              |
| is\_op\_profit\_before\_non\_recurring               | Double | Operating profit before non-recurring income/(expenses)                                   |
| is\_financing\_income\_net                           | Double | Financing income/(expense) - Net - Total                                                  |
| is\_int\_expense\_net                                | Double | Interest expense - deduction (interest income)                                            |
| is\_int\_income\_non\_bank                           | Double | Interest income - non-bank                                                                |
| is\_int\_expense\_net\_cap                           | Double | Interest expense - net of capitalized interest                                            |
| is\_int\_expense\_capital\_fin                       | Double | Capital Financing Interest Expense - Total                                                |
| is\_hybrid\_div\_liability                           | Double | Dividends from Hybrid Financial Instruments - Liabilities                                 |
| is\_int\_capitalized                                 | Double | Interest capitalization                                                                   |
| is\_allowance\_construction\_funds                   | Double | Subsidy of funds used during construction - debt component                                |
| is\_non\_int\_financial\_income                      | Double | Non-interest financial income/(expense) - Total                                           |
| is\_dividend\_inv\_income                            | Double | Dividends and investment income                                                           |
| is\_fx\_gl\_non\_business                            | Double | FX Gain/(Loss) - Non-Business                                                             |
| is\_amort\_deferred\_financing                       | Double | Amortization of deferred financing costs                                                  |
| is\_sale\_inv\_gl                                    | Double | Investment Sale AFS, HTM and Trading - Gain/(Loss)                                        |
| is\_accretion\_closure\_expense                      | Double | Accretion - Site Closure and Reclamation Expenses                                         |
| is\_non\_int\_fin\_income\_other                     | Double | Non-interest financial income/(expense) - Other - Net                                     |
| is\_sale\_fixed\_assets\_gl                          | Double | Sale of tangible and intangible fixed assets - Gain/(Loss)                                |
| is\_sale\_leased\_assets\_gl                         | Double | Sale of leased fixed assets - (gain/loss)                                                 |
| is\_equity\_earnings\_bt                             | Double | Equity earnings/(losses) before tax, including non-recurring gains                        |
| is\_non\_recurring\_equity\_earnings                 | Double | Pre-tax non-recurring equity earnings part                                                |
| is\_other\_non\_op\_income                           | Double | Other non-operating income/(expense)-Total                                                |
| is\_non\_op\_rental\_income                          | Double | Non-operating rental income                                                               |
| is\_transfer\_untaxed\_reserves                      | Double | Transfer from/(to) tax-free reserves                                                      |
| is\_trading\_deriv\_gl                               | Double | Derivatives Trading - Gain/(Loss)                                                         |
| is\_deriv\_hedge\_effective\_gl                      | Double | Derivatives - Hedge - Effective Gain/(Loss)                                               |
| is\_deriv\_hedge\_realized\_gl                       | Double | Derivatives - Hedge - Realized Gain/(Loss)                                                |
| is\_non\_recurring\_non\_op\_adj                     | Double | Non-Recurring Adjustments - Non-Operations - Decr/(Incr)                                  |
| is\_supplementary\_non\_op\_adj                      | Double | Supplementary Adjustment - Non-Operation - Decr/(Incr)                                    |
| is\_normalized\_pretax\_profit                       | Double | Normalized pretax profit                                                                  |
| is\_non\_recurring\_income                           | Double | Non-recurring income/(expense) - Total                                                    |
| is\_impairment\_tangible\_intangible                 | Double | Impairment - Tangible and Intangible Fixed Assets                                         |
| is\_impairment\_fixed\_assets                        | Double | Impairment - Fixed Assets                                                                 |
| is\_impairment\_goodwill                             | Double | Impairment - Goodwill                                                                     |
| is\_impairment\_intangibles\_excl\_gw                | Double | Impairment - Intangibles (excluding goodwill)                                             |
| is\_impairment\_oil\_gas                             | Double | Impairment - Oil and Gas Assets                                                           |
| is\_impairment\_inv\_property                        | Double | Impairment - Investment Properties                                                        |
| is\_impairment\_fin\_inv                             | Double | Impairment - Financial Investments                                                        |
| is\_impairment\_deferred\_costs                      | Double | Impairment - Deferred Costs                                                               |
| is\_otti\_losses                                     | Double | Except for temporary investment impairment losses                                         |
| is\_restructuring\_charges                           | Double | Restructuring charges                                                                     |
| is\_r\_and\_d\_in\_process                           | Double | Research and Development - In Progress                                                    |
| is\_property\_acquisition\_exp                       | Double | Acquisition expenses associated with the property                                         |
| is\_write\_off\_real\_estate                         | Double | Write-off of real estate for sale                                                         |
| is\_litigation\_expenses                             | Double | Litigation Expenses/Settlement                                                            |
| is\_exceptional\_claims                              | Double | Exceptional claims and benefits paid (disaster)                                           |
| is\_ipo\_merger\_costs                               | Double | Costs associated with initial public offerings and mergers                                |
| is\_deriv\_hedge\_gl                                 | Double | Derivatives - Hedge - Gain/(Loss)                                                         |
| is\_early\_term\_deriv\_hedge\_gl                    | Double | Derivative Early Termination - Hedge - Gain/(Loss)                                        |
| is\_deriv\_hedge\_ineffective\_gl                    | Double | Derivatives - Hedging - Ineffective Gain/(Loss)                                           |
| is\_unrealized\_deriv\_adj                           | Double | Unrealized derivative hedging adjustment                                                  |
| is\_early\_extinguish\_lease\_debt\_gl               | Double | Early settlement of lease-related debt - gain/(loss)                                      |
| is\_negative\_goodwill                               | Double | Confirmation of negative goodwill                                                         |
| is\_fv\_adj\_inv\_property                           | Double | Fair Value Adjustment - Investment Properties                                             |
| is\_fv\_adj\_biological\_assets                      | Double | Fair Value Adjustment - Biological Assets                                                 |
| is\_fv\_adj\_fin\_inv                                | Double | Fair Value Adjustment - Financial Investments                                             |
| is\_fv\_adj\_other\_assets                           | Double | Fair Value Adjustment - Other Assets                                                      |
| is\_disaster\_compensation                           | Double | Disaster Compensation - Pre-tax                                                           |
| is\_debt\_restructuring\_gl                          | Double | Debt Restructuring - Gain/(Loss)                                                          |
| is\_sale\_acquisition\_group\_gl                     | Double | Sales and Acquisitions of Group Companies - Gains/(Loss)                                  |
| is\_inventory\_valuation\_gl                         | Double | Inventory Valuation - Gain/(Loss)                                                         |
| is\_covid\_19\_income\_expense                       | Double | COVID-19 non-recurring income/(expense) - Total                                           |
| is\_covid\_19\_other                                 | Double | COVID-19 non-recurring income/(expense) - other                                           |
| is\_covid\_19\_provisions                            | Double | COVID-19 one-time provisions                                                              |
| is\_covid\_19\_restructuring                         | Double | COVID-19 Restructuring Charges and Regulations                                            |
| is\_covid\_19\_impairment                            | Double | COVID-19 Impairment of Long-term Assets                                                   |
| is\_covid\_19\_grants                                | Double | COVID-19 one-off government grants                                                        |
| is\_other\_non\_recurring                            | Double | Non-recurring income/(expense)-other-total                                                |
| is\_income\_bt                                       | Double | Pre-tax income                                                                            |
| is\_income\_taxes                                    | Double | Income tax                                                                                |
| is\_taxes\_capital                                   | Double | Capital account taxes                                                                     |
| is\_taxes\_revenue                                   | Double | Revenue account taxes                                                                     |
| is\_income\_tax\_provision                           | Double | Income Tax Provision - Unclassified                                                       |
| is\_income\_tax\_provision                           | Double | Income Tax Provision – Unclassified                                                       |
| is\_income\_taxes\_domestic                          | Double | Income Tax - Domestic                                                                     |
| is\_income\_taxes\_foreign                           | Double | Income Tax - Foreign                                                                      |
| is\_income\_taxes\_other\_region                     | Double | Income Tax - Other by Region                                                              |
| is\_income\_taxes\_current                           | Double | Income taxes for the current year - current                                               |
| is\_income\_taxes\_domestic\_current                 | Double | Income Tax - Domestic - Current                                                           |
| is\_income\_taxes\_foreign\_current                  | Double | Income Taxes - Foreign - Current                                                          |
| is\_income\_taxes\_other\_current                    | Double | Income Taxes - Other (KFAS/NLST) - Current                                                |
| is\_income\_taxes\_deferred                          | Double | Income Tax - Deferred                                                                     |
| is\_income\_taxes\_domestic\_deferred                | Double | Income Taxes - Domestic - Deferred                                                        |
| is\_income\_taxes\_foreign\_deferred                 | Double | Income Taxes - Foreign - Deferred                                                         |
| is\_income\_taxes\_other\_deferred                   | Double | Income Taxes - Other - Deferred                                                           |
| is\_income\_taxes\_other\_type                       | Double | Income Tax - Other by Type                                                                |
| is\_net\_income\_after\_tax                          | Double | Net profit after tax                                                                      |
| is\_equity\_earnings\_affiliates                     | Double | Earnings/(loss) equity in affiliates (after tax)                                          |
| is\_non\_recurring\_equity\_earnings                 | Double | Non-recurring equity earnings component                                                   |
| is\_after\_tax\_adj\_other                           | Double | After-tax adjustment - Other - Revenue/(Expenses) - Total                                 |
| is\_tax\_impact\_discontinued\_ops                   | Double | Estimated tax impact on pre-tax discontinued operations                                   |
| is\_zakat                                            | Double | Zakat                                                                                     |
| is\_after\_tax\_special\_reserves                    | Double | After-tax adjustment - special reserves                                                   |
| is\_income\_before\_discontinued                     | Double | Income before discontinued operations and non-recurring items                             |
| is\_extraordinary\_after\_tax                        | Double | Special Events - After Tax - Gain/(Loss)                                                  |
| is\_discontinued\_ops\_net                           | Double | Discontinued Operations, Net - Total - Revenue/(Expenses)                                 |
| is\_discontinued\_ops\_income                        | Double | Discontinued Operations - Net - Income/(Expenses)                                         |
| is\_sale\_discontinued\_ops\_gl                      | Double | Sale of Discontinued Operations - Net - Gain/(Loss)                                       |
| is\_discontinued\_ops\_bt                            | Double | Total pre-tax discontinued operations - revenue/(expenses)                                |
| is\_discontinued\_ops\_bt\_income                    | Double | Discontinued operations before tax - income/(expense)                                     |
| is\_sale\_discontinued\_ops\_bt\_gl                  | Double | Pre-tax sale of discontinued operations - gain/(loss)                                     |
| is\_discontinued\_ops\_tax                           | Double | Discontinued operations - tax implications                                                |
| is\_accounting\_changes                              | Double | Impact of changes in accounting standards                                                 |
| is\_extraordinary\_items                             | Double | Extraordinary items                                                                       |
| is\_covid\_19\_tax\_charge                           | Double | COVID-19 Income Tax - One-time Charge/(Credit)                                            |
| is\_extraordinary\_tax\_impact                       | Double | Special Projects - Tax Impact                                                             |
| is\_net\_income\_before\_minority                    | Double | Net income before minority interests                                                      |
| is\_minority\_interest                               | Double | Minority interest                                                                         |
| is\_net\_income                                      | Double | Net profit after deducting minority interests                                             |
| is\_hybrid\_debt\_interest                           | Double | Interest expense - Hybrid debt instruments - Equity                                       |
| is\_general\_partner\_dist                           | Double | General partner distribution                                                              |
| is\_preferred\_shares\_dist                          | Double | Preferred stock distribution                                                              |
| is\_policyholders\_surplus                           | Double | Policyholders Surplus                                                                     |
| is\_earnings\_adj                                    | Double | Earnings adjustment to net profit - other expenses/(income)                               |
| is\_income\_available\_common                        | Double | Common stock available income                                                             |
| is\_oci\_start                                       | Double | Other comprehensive income - starting line                                                |
| is\_oci\_fx                                          | Double | Other comprehensive income - foreign currency                                             |
| is\_oci\_unrealized\_inv\_gl                         | Double | Other comprehensive income - unrealized investment gains/(losses)                         |
| is\_oci\_hedging\_gl                                 | Double | Other comprehensive income - Hedging gain/(loss)                                          |
| is\_oci\_revaluation                                 | Double | Other Consolidated Companies - Revaluation of Tangible and Intangible Assets              |
| is\_oci\_other                                       | Double | Other comprehensive income - other                                                        |
| is\_oci\_unearned                                    | Double | Other comprehensive income - unearned income                                              |
| is\_oci\_discontinued                                | Double | Other comprehensive income - discontinued operations                                      |
| is\_oci\_associated                                  | Double | Other comprehensive income - associated companies                                         |
| is\_oci\_pension                                     | Double | Other comprehensive income - pension related                                              |
| is\_oci\_tax                                         | Double | Other comprehensive income - income tax                                                   |
| is\_oci\_net                                         | Double | Other comprehensive income - after tax - total                                            |
| is\_comprehensive\_income\_before\_minority          | Double | Comprehensive income before minority interests - Total                                    |
| is\_comprehensive\_income\_minority                  | Double | Comprehensive income - minority interests - total                                         |
| is\_comprehensive\_income\_pref\_div                 | Double | Comprehensive income - preferred stock dividends                                          |
| is\_comprehensive\_income\_parent                    | Double | Comprehensive income - Parent shareholders - Total                                        |
| is\_basic\_eps\_inc\_exord                           | Double | Net income basic including special items, ordinary - total                                |
| is\_income\_common\_excl\_exord                      | Double | Income available to ordinary people (excluding special items)                             |
| is\_basic\_eps\_shares                               | Double | Shares used to calculate basic earnings per share - Total                                 |
| is\_eps\_basic\_inc\_exord                           | Double | EPS - Basic - Includes special items, Normal - Total                                      |
| is\_eps\_basic\_excl\_exord                          | Double | EPS - Basic - excluding special items, Normal - Total                                     |
| is\_eps\_basic\_normalized                           | Double | EPS - Basic - Excludes special items - Normalized - Total                                 |
| is\_eps\_basic\_non\_gaap                            | Double | Earnings per share - Basic - Non-GAAP - Total                                             |
| is\_allocated\_net\_income\_inc\_exord               | Double | Net income allocated, including exord, normal - specific issue                            |
| is\_earnings\_alloc\_factor\_basic                   | Double | Earnings Allocation Factors - Basic - Specific Issues                                     |
| is\_basic\_eps\_shares\_issue                        | Double | Shares used to calculate basic earnings per share - specific issue                        |
| is\_eps\_basic\_inc\_exord\_issue                    | Double | EPS - basic - including special, common - specific issues                                 |
| is\_eps\_basic\_excl\_exord\_issue                   | Double | EPS - Basic - Exclude Exord items, Common - Specific issues                               |
| is\_eps\_basic\_normalized\_issue                    | Double | EPS - Basic - Exclude Exord Project - Normalized - Specific Issue                         |
| is\_eps\_basic\_non\_gaap\_issue                     | Double | EPS - Basic - Non-GAAP - Specific Issue                                                   |
| is\_basic\_eps\_shares\_dr                           | Double | Stocks used to calculate basic earnings per share - Specific Issue - DR                   |
| is\_eps\_basic\_inc\_exord\_dr                       | Double | EPS - Basic - Includes Exord items, Common - Specific issues - DR                         |
| is\_eps\_basic\_excl\_exord\_dr                      | Double | EPS - Basic - Exclude Exord, Universal - Specific Issue - DR                              |
| is\_eps\_basic\_normalized\_dr                       | Double | EPS - Basic Exord Exord Project Normalization Specific Issues - DR                        |
| is\_eps\_basic\_non\_gaap\_dr                        | Double | EPS - Basic - Non-GAAP - Specific Issue - DR                                              |
| is\_basic\_eps\_shares\_cpo                          | Double | Stocks used to calculate basic earnings per share - Certain Issues - CPO                  |
| is\_eps\_basic\_inc\_exord\_cpo                      | Double | EPS - Basic - Includes Exord items, Common - Specific issues - CPO                        |
| is\_eps\_basic\_excl\_exord\_cpo                     | Double | EPS - Basic - Excludes Exord, Generic - Specific Issues - CPO                             |
| is\_eps\_basic\_normalized\_cpo                      | Double | EPS - Basic exclusion of Exord project normalization specific issues - CPO                |
| is\_eps\_basic\_non\_gaap\_cpo                       | Double | EPS - Basic - Non-GAAP - Specific Issues - CPO                                            |
| is\_eps\_basic\_discontinued                         | Double | EPS - Basic from discontinued actions and special items                                   |
| is\_participation\_weight\_primary                   | Double | Primary participation weight for EPS Calc - Specific Issue                                |
| is\_earnings\_participation\_factor                  | Double | Earnings participation factor - specific question                                         |
| is\_priority\_dividends                              | Double | Preferred Dividends - Specific Issues                                                     |
| is\_comp\_eps\_basic\_issue                          | Double | Comprehensive earnings per share - Basic - Specific Issue                                 |
| is\_comp\_eps\_basic\_dr                             | Double | Comprehensive Earnings Per Share - Basic Issue Specific Depository Receipts               |
| is\_comp\_eps\_basic\_cpo                            | Double | Comprehensive EPS - Basic Issue Specific CPO                                              |
| is\_dilution\_adj                                    | Double | Dilution adjustment                                                                       |
| is\_diluted\_eps\_inc\_exord                         | Double | Diluted net income, including extraordinary items, ordinary - total                       |
| is\_diluted\_income\_excl\_exord                     | Double | Diluted income, excluding extraordinary items, ordinary                                   |
| is\_diluted\_shares                                  | Double | Shares used to calculate diluted earnings per share - Total                               |
| is\_eps\_diluted\_inc\_exord                         | Double | EPS - diluted - including special items, ordinary - total                                 |
| is\_eps\_diluted\_excl\_exord                        | Double | EPS - Diluted - excludes Exord items applicable to common totals                          |
| is\_eps\_diluted\_normalized                         | Double | EPS - Diluted - Excluding Special Items - Normalized - Total                              |
| is\_eps\_diluted\_non\_gaap                          | Double | Earnings per share - diluted - non-GAAP - total                                           |
| is\_allocated\_diluted\_inc\_exord                   | Double | Allocated Net Diluted Inc\_exord, General Issue Specific Issue                            |
| is\_earnings\_alloc\_factor\_diluted                 | Double | Earnings Allocation Factor - Dilution - Specific Issues                                   |
| is\_diluted\_shares\_issue                           | Double | Shares used in calculating earnings per share - diluted - issue specific                  |
| is\_eps\_diluted\_inc\_exord\_issue                  | Double | EPS - Diluted - includes Exord items, common - specific issues                            |
| is\_eps\_diluted\_excl\_exord\_issue                 | Double | EPS - Diluted - Excludes Exord items, Common - Specific Issues                            |
| is\_eps\_diluted\_normalized\_issue                  | Double | EPS - Diluted - Excludes Exord Items - Normalized - Issue Specification                   |
| is\_eps\_diluted\_non\_gaap\_issue                   | Double | Earnings per share - Diluted - Non-GAAP - Specific Issues                                 |
| is\_diluted\_shares\_dr                              | Double | Stocks used to calculate diluted earnings per share - Specific Issue - DR                 |
| is\_eps\_diluted\_inc\_exord\_dr                     | Double | EPS - Diluted - Includes Exord, Normal - Specific Issue - DR                              |
| is\_eps\_diluted\_excl\_exord\_dr                    | Double | EPS - Diluted - excl Exord, Normal - Specific Issue - DR                                  |
| is\_eps\_diluted\_normalized\_dr                     | Double | EPS - Dil - Excluded Exord Project - Normalized - Issue Specification - DR                |
| is\_eps\_diluted\_non\_gaap\_dr                      | Double | EPS - Diluted - Non-GAAP - Specific Issues - DR                                           |
| is\_diluted\_shares\_cpo                             | Double | Shares used to calculate diluted earnings per share - Certain Issues - CPO                |
| is\_eps\_diluted\_inc\_exord\_cpo                    | Double | EPS - Diluted - Exord included, Normal - Specific Issue - CPO                             |
| is\_eps\_diluted\_excl\_exord\_cpo                   | Double | EPS - Dil - Excluded Exord Projects, Common - Specific Issues - CPO                       |
| is\_eps\_diluted\_normalized\_cpo                    | Double | EPS Dil - Exclude Exord Project - Normalization - Issue Specification - CPO               |
| is\_eps\_diluted\_non\_gaap\_cpo                     | Double | EPS - Diluted - Non-GAAP - Specific Issues - CPO                                          |
| is\_eps\_diluted\_discontinued                       | Double | EPS - diluted due to discontinued operations and special items                            |
| is\_comp\_eps\_diluted\_issue                        | Double | Comprehensive earnings per share - dilution - specific issues                             |
| is\_comp\_eps\_diluted\_dr                           | Double | Comprehensive earnings per share - diluted issue of specific depositary receipts          |
| is\_comp\_eps\_diluted\_cpo                          | Double | Comprehensive Earnings Per Share - Dilution - Specific Issues - CPO                       |
| is\_dps\_common\_gross                               | Double | Dividends per share - Common shares - Total - Certain shares issued                       |
| is\_dps\_common\_net                                 | Double | Dividends per share - Common - Net - Certain Issues                                       |
| is\_dps\_special                                     | Double | Dividend per share - special - specific issue                                             |
| is\_dps\_special\_net                                | Double | Dividend per share - Special - Net - Special Issue                                        |
| is\_dps\_common\_gross\_dr                           | Double | Dividends per share - Common dividend - Total - Certain issues - DR                       |
| is\_dps\_common\_net\_dr                             | Double | Dividends per Share - Common Dividends - Net - Certain Issues - DR                        |
| is\_dps\_special\_gross\_dr                          | Double | Dividend per share - Special - Total - Special Issue - DR                                 |
| is\_dps\_special\_net\_dr                            | Double | Dividend per share - Special - Net - Special Issue - DR                                   |
| is\_dps\_common\_gross\_cpo                          | Double | Dividends per share - Common shares - Total - Certain shares outstanding - CPO            |
| is\_dps\_common\_net\_cpo                            | Double | Dividends per share - Common dividends - Net - Certain offerings - CPO                    |
| is\_dps\_special\_gross\_cpo                         | Double | Dividend per share - Special - Total - Special Issue - CPO                                |
| is\_dps\_special\_net\_cpo                           | Double | Dividend per share - Special - Net - Special Offering - CPO                               |
| is\_ebit                                             | Double | Earnings before interest and tax (EBIT)                                                   |
| is\_ebitda                                           | Double | Earnings before interest, taxes, depreciation and amortization                            |
| is\_ebitda\_exploration                              | Double | Earnings before interest and tax Depr Amortization and exploration expenses               |
| is\_ebitda\_lease                                    | Double | Earnings before interest and tax Depr & Amort & Optg Lease Pymt                           |
| is\_depr\_inv\_property                              | Double | Depreciation - Investment Property - Supplement                                           |
| is\_depr\_amort                                      | Double | Depreciation and Amortization - Supplement                                                |
| is\_depr\_expense                                    | Double | Depreciation Expense - Total - Supplementary                                              |
| is\_depr\_finance\_lease\_rou                        | Double | Depreciation - Finance Lease Right of Use Asset - Supplement                              |
| is\_amort\_total                                     | Double | Amortization - Total - Supplementary                                                      |
| is\_goodwill\_amort                                  | Double | Goodwill Amortization - Supplement                                                        |
| is\_other\_intang\_amort                             | Double | Intangible amortization - Other - Supplement                                              |
| is\_amort\_below\_above\_market\_leases              | Double | Amortization of below/above market leases - Supplement                                    |
| is\_amort\_tenant\_leases                            | Double | Tenant relationship and amortization of in-place leases - Supp                            |
| is\_amort\_license\_contract                         | Double | Amount of license, franchise, copyright, contract-based supply                            |
| is\_amort\_software                                  | Double | Computer Software Amortization - Supplement                                               |
| is\_amort\_brands\_patents                           | Double | Number of brands, patents, trademarks, markets and arts -Suppl                            |
| is\_amort\_fin\_lease\_rou                           | Double | Amortization of finance lease right-of-use assets - Supplement                            |
| is\_amort\_cap\_r\_and\_d                            | Double | Amortization of capitalized R\&D expenses - Supplement                                    |
| is\_amort\_deferred\_costs                           | Double | Amortization of deferred costs - Supplementary                                            |
| is\_depr\_depletion\_amort                           | Double | Depreciation Consumption and Amortization - Total                                         |
| is\_depreciation                                     | Double | Depreciation - Total                                                                      |
| is\_amort\_intang\_incl\_gw                          | Double | Amortization of intangible assets including goodwill - Total                              |
| is\_amort\_goodwill                                  | Double | Goodwill amortization - Total                                                             |
| is\_amort\_intang\_excl\_gw                          | Double | Amortization of intangible assets (excluding goodwill) - Total                            |
| is\_amort\_deferred\_charges                         | Double | Amortization of deferred charges - Total                                                  |
| is\_islamic\_financing\_income                       | Double | Islamic Financing and Investment Income                                                   |
| is\_islamic\_income                                  | Double | Islamic income                                                                            |
| is\_r\_and\_d\_total                                 | Double | Research and development expenses - expensed and capitalized - total - supplemental       |
| is\_r\_and\_d\_expense                               | Double | Research and Development Expenses - Supplement                                            |
| is\_r\_and\_d\_capitalized                           | Double | Research and Development Expenses - Capitalized - Supplementary                           |
| is\_labor\_expenses                                  | Double | Labor and Related Expenses - Total                                                        |
| is\_labor\_expenses\_supp                            | Double | Labor and Related Expenses - Supplement                                                   |
| is\_stock\_comp\_net\_tax                            | Double | Stock Compensation Expense - After Tax - Supplementary                                    |
| is\_stock\_comp\_pretax                              | Double | Stock Compensation Expense - Pre-Tax - Supplementary                                      |
| is\_stock\_comp\_tax\_benefit                        | Double | Stock Compensation - Tax Benefit - Supplement                                             |
| is\_auditor\_fees                                    | Double | Audit fees                                                                                |
| is\_audit\_related\_fees                             | Double | Audit related fees                                                                        |
| is\_tax\_fees                                        | Double | taxes                                                                                     |
| is\_fees\_other                                      | Double | Fees - Other                                                                              |
| is\_non\_gaap\_revenue                               | Double | Non-GAAP Revenue - Company Reports                                                        |
| is\_non\_gaap\_op\_income                            | Double | Non-GAAP Operating Income - Company Reports                                               |
| is\_non\_gaap\_net\_income                           | Double | Non-GAAP Adjusted Net Income - Company Reports                                            |
| is\_non\_gaap\_ebitda                                | Double | Non-GAAP Adjusted EBITDA - Company Report                                                 |
| is\_non\_gaap\_eps\_basic                            | Double | Non-GAAP EPS Basic - Company Reports                                                      |
| is\_non\_gaap\_eps\_diluted                          | Double | Non-GAAP diluted earnings per share - Company Report                                      |
| is\_non\_gaap\_op\_margin                            | Double | Non-GAAP Operating Margin % - Company Report                                              |
| is\_reported\_net\_income\_ng                        | Double | Reporting - Net Income - Non-GAAP                                                         |
| is\_reported\_non\_recurring\_ng                     | Double | Reporting - Non-Recurring Items - Non-GAAP                                                |
| is\_reported\_tax\_impact\_ng                        | Double | Reporting - Tax Impact of Non-Recurring Items - Non-GAAP                                  |
| is\_reported\_normalized\_ni                         | Double | Report - Normalized Net Income                                                            |
| is\_non\_recurring\_tax\_impact                      | Double | Non-recurring/exceptional items - tax impact                                              |
| is\_non\_recurring\_tax\_impact                      | Double | Non-recurring items - impact on income tax                                                |
| is\_normalized\_after\_tax                           | Double | Normalized profit after tax                                                               |
| is\_normalized\_ni\_cont\_ops                        | Double | Normalized net profit from continuing operations                                          |
| is\_normalized\_ni                                   | Double | Normalized net profit - bottom line                                                       |
| is\_normalized\_ebit                                 | Double | Earnings before interest and tax (EBIT) - Normalized                                      |
| is\_normalized\_ebitda                               | Double | Earnings before interest and tax, depreciation and amortization - Normalized              |
| is\_deriv\_realized\_gl\_rev                         | Double | Derivatives - Realized Gains/(Loss) - Revenue - Supplementary                             |
| is\_deriv\_realized\_gl\_cogs                        | Double | Derivatives - Realized Gains/(Loss) - COGS - Suppl                                        |
| is\_deriv\_realized\_gl\_int                         | Double | Derivatives - Realized Gains/(Loss) - Interest Expense Supplement                         |
| is\_deriv\_realized\_gl\_other                       | Double | Derivatives - Realized Gains/(Loss) - Other - Supplementary                               |
| is\_deriv\_realized\_gl\_total                       | Double | Derivatives - Realized Gains/(Loss) - Total - Supplementary                               |
| is\_deriv\_hedge\_gl\_total                          | Double | Derivatives - Hedge - Gain/(Loss) - Total - Supplementary                                 |
| is\_unrealized\_deriv\_adj                           | Double | Unrealized adjustment for hedging derivatives - Suppl                                     |
| is\_deriv\_hedge\_realized\_gl\_total                | Double | Derivatives - Hedge - Realized Gains/(Loss) - Total - Supplementary                       |
| is\_deriv\_hedge\_effective\_gl                      | Double | Derivatives - Hedge - Effective Gain/(Loss) - Supplementary                               |
| is\_deriv\_hedge\_ineffective\_gl                    | Double | Derivatives - Hedging - Ineffective Gain/(Loss) - Suppl                                   |
| is\_early\_term\_deriv\_hedge\_gl                    | Double | Derivative Hedge Early Termination - Gain/(Loss) - Suppl                                  |
| is\_trading\_deriv\_gl                               | Double | Derivatives Trading - Gain/(Loss) - Supplementary                                         |
| is\_loan\_losses\_net                                | Double | Loan losses - net                                                                         |
| is\_loan\_recoveries                                 | Double | Loan Recovery - Actual                                                                    |
| is\_loan\_losses                                     | Double | Loan losses - actual                                                                      |
| is\_avg\_employees                                   | Double | Employees - Average                                                                       |
| is\_operating\_lease\_expense                        | Double | Rent/operating lease expense                                                              |
| is\_advertising\_expense                             | Double | Advertising Expense - Supplementary                                                       |
| is\_exploration\_expense                             | Double | Exploration expense                                                                       |
| is\_us\_gaap\_adj                                    | Double | US GAAP Adjustments                                                                       |
| is\_int\_div\_income\_after\_llp                     | Double | Interest and dividend income after LLP - Net - Financials                                 |
| is\_revenue\_after\_loan\_prov                       | Double | Revenue after loan provisions - Net - Financials                                          |
| is\_purchase\_inv\_sec                               | Double | Purchase of Investment Securities - Supplement                                            |
| is\_sale\_inv\_sec                                   | Double | Sales of Investment Securities - Supplement                                               |
| is\_epra\_net\_income                                | Double | EPRA/Recurring Net Income                                                                 |
| is\_sec\_comm\_fees                                  | Double | Commissions and Fees for Securities Activities                                            |
| is\_cost\_revenue\_inc\_o\_and\_m                    | Double | Total cost of revenue, including operations and maintenance (utilities)                   |
| is\_cost\_revenues\_excl\_depr                       | Double | Cost of revenue excluding depreciation                                                    |
| is\_fx\_gl                                           | Double | FX Gain/(Loss)                                                                            |
| is\_generation\_cost                                 | Double | Generation cost                                                                           |
| is\_interest\_expense                                | Double | Interest expense                                                                          |
| is\_inv\_gl                                          | Double | Investment income/(loss)                                                                  |
| is\_inv\_income\_insurance                           | Double | Investment Income - Insurance                                                             |
| is\_losses\_benefits\_insurance                      | Double | Loss Benefits and Adjustments - Insurance                                                 |
| is\_non\_int\_expense\_bank                          | Double | Non-Interest Expense - Bank                                                               |
| is\_operating\_expenses                              | Double | Operating expenses                                                                        |
| is\_premiums\_ceded\_unearned\_total                 | Double | Ceded and Unearned Premiums - Total                                                       |
| is\_sga\_excl\_r\_and\_d                             | Double | Selling, general and administrative expenses, excluding research and development expenses |
| is\_total\_claim\_loss\_exp                          | Double | Total claim and loss expense                                                              |
| is\_underwriting\_commissions                        | Double | Underwriting and commissions                                                              |
| is\_underwriting\_exp\_insurance                     | Double | Underwriting Expense - Insurance                                                          |
| is\_net\_premiums\_written                           | Double | Net Premiums Underwriting                                                                 |
| is\_losses\_benefits\_total                          | Double | Losses, Gains and Adjustments - Total                                                     |
| is\_op\_exp\_excl\_non\_cash                         | Double | Operating expenses excluding non-cash expenses - Total                                    |
| is\_premiums\_earned                                 | Double | Premiums Earned - Total                                                                   |
| is\_commissions\_fees                                | Double | Commissions and Fees                                                                      |
| is\_est\_tax\_rate                                   | Double | Estimated tax rate                                                                        |
| is\_exploration\_int\_exp\_after\_tax                | Double | Exploration expenses and interest expenses (after tax)                                    |
| is\_fixed\_charges                                   | Double | Fixed charges                                                                             |
| is\_income\_common\_before\_depr\_amort              | Double | Income available on common stock before depreciation and amortization                     |
| is\_income\_bt\_before\_loan\_prov                   | Double | Income before tax and loan loss provision                                                 |
| is\_income\_earning\_assets                          | Double | Income from earning assets                                                                |
| is\_revenue\_net\_int\_before\_loan\_prov            | Double | Income before loan loss provisions less interest expense                                  |
| is\_tax\_adj\_op\_income                             | Double | Tax-adjusted operating income                                                             |
| is\_underwriting\_minus\_losses                      | Double | Underwriting expenses minus losses, benefits, and adjustments - Insurance                 |
| is\_water\_steam\_revenue                            | Double | Water and steam revenue                                                                   |
| is\_reported\_recurring\_revenue                     | Double | Reporting - Revenue - Recurring                                                           |
| is\_reported\_net\_premiums\_written                 | Double | Report - Net Premiums Underwritten                                                        |
| is\_reported\_revenue                                | Double | Reports - Revenue - Total                                                                 |
| is\_reported\_op\_revenue                            | Double | Report-Operating Revenue                                                                  |
| is\_reported\_cost\_revenues                         | Double | Report - Cost of Revenue                                                                  |
| is\_reported\_sga                                    | Double | Reporting - Selling, General and Administrative Expenses                                  |
| is\_reported\_gross\_profit                          | Double | Report - Gross Profit                                                                     |
| is\_reported\_op\_profit                             | Double | Report-Operating Profit                                                                   |
| is\_reported\_op\_margin                             | Double | Report - Operating Margin                                                                 |
| is\_reported\_ordinary\_profit                       | Double | Report - Ordinary Profit                                                                  |
| is\_reported\_net\_income                            | Double | Report - Net Income After Tax                                                             |
| is\_reported\_basic\_eps                             | Double | Report - Basic Earnings Per Share                                                         |
| is\_reported\_diluted\_eps                           | Double | Reporting - Diluted Earnings Per Share                                                    |
| is\_reported\_business\_profit                       | Double | Report - Operating Profit - Net                                                           |
| is\_lease\_expense\_total                            | Double | Lease Expense-Total-Supplementary                                                         |
| is\_operating\_lease\_expense                        | Double | Operating/Lease Expenses - Supplementary                                                  |
| is\_depr\_fin\_lease\_rou                            | Double | Finance Lease ROU Asset Depreciation - Supplement                                         |
| is\_amort\_fin\_lease\_rou                           | Double | Finance Lease ROU Asset Amortization - Supplement                                         |
| is\_variable\_lease\_expense                         | Double | Variable Lease Expense - Uncategorized - Supplementary                                    |
| is\_variable\_op\_lease\_expense                     | Double | Variable operating lease expense - U.S. GAAP - Supplement                                 |
| is\_variable\_fin\_lease\_expense                    | Double | Variable finance lease expense - Supplement                                               |
| is\_int\_exp\_fin\_lease                             | Double | Interest expense on finance lease liabilities - Supplement                                |
| is\_short\_term\_lease\_cost                         | Double | Short-term lease cost - Supplement                                                        |
| is\_sublease\_income                                 | Double | Sublease income - Supplement                                                              |
| is\_ffo                                              | Double | Funds from Operations (FFO) - REIT                                                        |
| is\_effective\_tax\_rate                             | Double | Actual effective tax rate                                                                 |
| is\_statutory\_tax\_rate                             | Double | Normal effective statutory tax rate                                                       |

### Usage examples

#### Obtain the financial quarterly report of a certain stock in a certain quarter

```python theme={null}
import tqx_data
result = tqx_data.get_financial_statement(
    market="hk",
    symbol="0700.HK",
    start_quarter="2020q1",
    end_quarter="2024q4",
    date="20241014",
    is_latest=False,
    fields=[]
)
print(result)
```

**Response Example**

```text theme={null}
symbol fy_period date ... is_write_off_real_estate is_zakat quarter
0 0700.HK FY2020Q1 20200513 ... None None 2020q1
1 0700.HK FY2020Q2 20200826 ... None None 2020q2
... ... ... ... ... ... ...
14 0700.HK FY2023Q3 20231115 ... None None 2023q3
```

#### Get the latest financial quarterly report of a certain stock in a certain quarter and use fields

```python theme={null}
import tqx_data

result = tqx_data.get_financial_statement(
    market="hk",
    symbol="0700.HK",
    start_quarter="2020q1",
    end_quarter="2024q4",
    date="20241014",
    is_latest=True,
    interim_type="cumulative",
    fields=["symbol", "fy_period", "date", "bs_asset_accruals"],
)
print(result)
```

**Response Example**

```text theme={null}
symbol fy_period date bs_asset_accruals
0 0700.HK FY2024Q2 20240827 1.497963e+12
```

The "latest" here means the largest row of `0700.HK` in `20241014` and the previous announcement date. It does not return the respective
latest version and therefore cannot be used directly for year-over-year calculations.

#### Historical cross-section and year-on-year calculation

```python theme={null}
import re
import numpy as np
import pandas as pd
import tqx_data

as_of_date = "20250101"
rows = tqx_data.get_financial_statement(
    market="nb",
    symbol=["NVDA.NB", "AVGO.NB"],
    start_quarter="2023q1",
    end_quarter="2024q4",
    date=as_of_date,
    is_latest=False,
    interim_type="cumulative",
    fields=[
        "symbol", "fy_period", "date",
        "is_reported_revenue", "is_revenue_business_total",
        "is_reported_gross_profit", "is_gross_profit",
        "cfs_net_cf_operating", "cfs_reported_cf_operating",
    ],
)

# 同一财期可能存在多次披露，只保留截止日前公告日期最新的版本。
rows["date_key"] = pd.to_datetime(rows["date"], errors="coerce")
rows = rows.dropna(subset=["symbol", "fy_period", "date_key"])
rows = rows.sort_values("date_key").drop_duplicates(
    ["symbol", "fy_period"], keep="last"
)

def parse_period(value):
    match = re.fullmatch(r"FY(\d{4})(.+)", str(value).upper())
    return (int(match.group(1)), match.group(2)) if match else None

def previous_year_period(value):
    parsed = parse_period(value)
    return f"FY{parsed[0] - 1}{parsed[1]}" if parsed else None

def period_sort_key(value):
    parsed = parse_period(value)
    if not parsed:
        return (0, 0, "")
    year, suffix = parsed
    rank = {"Q1": 1, "H1": 2, "Q2": 2, "Q3": 3,
            "H2": 4, "Q4": 4, "FY": 4}.get(suffix, 0)
    return (year, rank, suffix)

def first_finite(row, candidates):
    for field in candidates:
        value = pd.to_numeric(row.get(field), errors="coerce")
        if pd.notna(value) and np.isfinite(value):
            return float(value)
    return None

# 按财期而不是公告日期选择当前可见的最新财期，再匹配上年同财期。
period_keys = rows["fy_period"].map(period_sort_key)
rows[["period_year", "period_rank", "period_suffix"]] = pd.DataFrame(
    period_keys.tolist(), index=rows.index
)
latest = rows.sort_values(
    ["symbol", "period_year", "period_rank", "period_suffix", "date_key"]
).groupby("symbol", as_index=False).tail(1)
history = rows.set_index(["symbol", "fy_period"])
screening = []
for _, current in latest.iterrows():
    prior_key = (current["symbol"], previous_year_period(current["fy_period"]))
    if prior_key[1] is None or prior_key not in history.index:
        continue
    prior = history.loc[prior_key]
    current_revenue = first_finite(
        current, ["is_reported_revenue", "is_revenue_business_total"]
    )
    prior_revenue = first_finite(
        prior, ["is_reported_revenue", "is_revenue_business_total"]
    )
    gross_profit = first_finite(
        current, ["is_reported_gross_profit", "is_gross_profit"]
    )
    operating_cf = first_finite(
        current, ["cfs_net_cf_operating", "cfs_reported_cf_operating"]
    )
    if None in (current_revenue, prior_revenue, gross_profit, operating_cf):
        continue
    if current_revenue <= 0 or prior_revenue <= 0:
        continue
    revenue_growth = current_revenue / prior_revenue - 1.0
    gross_margin = gross_profit / current_revenue
    screening.append({
        "symbol": current["symbol"],
        "fy_period": current["fy_period"],
        "revenue_growth": revenue_growth,
        "gross_margin": gross_margin,
        "operating_cf": operating_cf,
        "eligible": revenue_growth > 0.20 and gross_margin > 0.20 and operating_cf > 0,
    })

screening = pd.DataFrame(screening)
```

Revenue, gross profit, and operating cash flow may only populate one of the compatible fields at different companies. Common candidates are:

* Income: `is_reported_revenue`, `is_revenue_business_total`
* Gross profit: `is_reported_gross_profit`, `is_gross_profit`
* Operating cash flow: `cfs_net_cf_operating`, `cfs_reported_cf_operating`

After selecting the field, first use `pd.to_numeric(..., errors="coerce")` to convert, delete empty strings, `NaN` and plus or minus infinity; the income is year-on-year
Revenue for the same fiscal period last year must be greater than 0. Fiscal periods should be matched by the actual suffix of the `fy_period` returned, do not assume that all markets only return quarterly format.

#### Constructing a dynamic financial panel without future data for one-year backtesting

The following demonstrates the key sequence of prefetching and slicing on a bin-by-bin basis. `period_sort_key`, `previous_year_period` and field cleaning can be reused
Functions in the previous section:

```python theme={null}
import pandas as pd
import tqx_data

backtest_end = "20251231"
all_rows = tqx_data.get_financial_statement(
    market="nb",
    symbol=nasdaq_100_symbols,
    # 公司财年可能领先公告自然年；同时要覆盖同比所需的上年同财期。
    start_quarter="2023q1",
    end_quarter="2026q4",
    date=backtest_end,
    is_latest=False,
    interim_type="cumulative",
    fields=required_financial_fields,
)
all_rows["date_key"] = pd.to_datetime(all_rows["date"], errors="coerce")
all_rows = all_rows.dropna(subset=["symbol", "fy_period", "date_key"])

def visible_financials(as_of_date):
    cutoff = pd.to_datetime(as_of_date, format="%Y%m%d")

    # 必须先按调仓日过滤，再处理同一财期的重述版本。
    visible = all_rows[all_rows["date_key"] <= cutoff].copy()
    visible = visible.sort_values("date_key").drop_duplicates(
        ["symbol", "fy_period"], keep="last"
    )
    assert visible.empty or visible["date_key"].max() <= cutoff

    keys = visible["fy_period"].map(period_sort_key)
    visible[["period_year", "period_rank", "period_suffix"]] = pd.DataFrame(
        keys.tolist(), index=visible.index
    )
    latest = visible.sort_values(
        ["symbol", "period_year", "period_rank", "period_suffix", "date_key"]
    ).groupby("symbol", as_index=False).tail(1)
    return visible, latest

panel_rows = []
for rebalance_date in rebalance_dates:  # 例如每 5 个交易日
    history, latest = visible_financials(rebalance_date)
    history = history.set_index(["symbol", "fy_period"])
    for _, current in latest.iterrows():
        prior_period = previous_year_period(current["fy_period"])
        prior_key = (current["symbol"], prior_period)
        if prior_period is None or prior_key not in history.index:
            continue
        prior = history.loc[prior_key]
        # 按 2.4.3 的兼容字段和有限值规则计算同比、毛利率、经营现金流。
        metrics = calculate_financial_metrics(current, prior)
        if metrics is None:
            continue
        panel_rows.append({
            "date": rebalance_date,
            "symbol": current["symbol"],
            "fy_period": current["fy_period"],
            "source_date": current["date"],
            **metrics,
        })

financial_panel = pd.DataFrame(panel_rows)
```

`calculate_financial_metrics` should return cleaned `revenue_growth`, `gross_margin`, `operating_cf` and `eligible`.
If the rebalancing frequency is every 5 trading days, the panel is also generated every 5 trading days; the financial values can remain unchanged between the two announcements, but the qualification
The judgment must be updated on the next rebalancing day after the new announcement. Do not re-query the interface in `handle_data` for each bar. It should be done in the offline phase or
Build and cache the panel once in `initialize`.
