{ "cells": [ { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Installing hub:\u001b[35m/\u001b[0m\u001b[35m/guardrails/\u001b[0m\u001b[95mvalid_length...\u001b[0m\n", "✅Successfully installed guardrails/valid_length!\n", "\n", "\n", "Installing hub:\u001b[35m/\u001b[0m\u001b[35m/guardrails/\u001b[0m\u001b[95mtwo_words...\u001b[0m\n", "✅Successfully installed guardrails/two_words!\n", "\n", "\n", "Installing hub:\u001b[35m/\u001b[0m\u001b[35m/guardrails/\u001b[0m\u001b[95mvalid_range...\u001b[0m\n", "✅Successfully installed guardrails/valid_range!\n", "\n", "\n", "Installing hub:\u001b[35m/\u001b[0m\u001b[35m/guardrails/\u001b[0m\u001b[95mlowercase...\u001b[0m\n", "✅Successfully installed guardrails/lowercase!\n", "\n", "\n", "Installing hub:\u001b[35m/\u001b[0m\u001b[35m/guardrails/\u001b[0m\u001b[95mone_line...\u001b[0m\n", "✅Successfully installed guardrails/one_line!\n", "\n", "\n", "Requirement already satisfied: pypdfium2 in /Users/dtam/.pyenv/versions/3.12.3/envs/litellm/lib/python3.12/site-packages (4.30.0)\n", "Note: you may need to restart the kernel to use updated packages.\n" ] } ], "source": [ "!guardrails hub install hub://guardrails/valid_length --quiet\n", "!guardrails hub install hub://guardrails/two_words --quiet\n", "!guardrails hub install hub://guardrails/valid_range --quiet\n", "!guardrails hub install hub://guardrails/lowercase --quiet\n", "!guardrails hub install hub://guardrails/one_line --quiet\n", "\n", "%pip install pypdfium2" ] }, { "attachments": {}, "cell_type": "markdown", "metadata": {}, "source": [ "# Extracting entities from a Terms of Service document\n", "\n", "!!! note\n", " To download this example as a Jupyter notebook, click [here](https://github.com/guardrails-ai/guardrails/blob/main/docs/examples/extracting_entities.ipynb).\n", "\n", "In this example, we will use Guardrails to extract key information from a Terms-of-Service document.\n", "\n", "## Objective\n", "\n", "We want to extract structured information about all fees and interest rates associated with the Chase credit card.\n", "\n", "## Step 0: Download PDF and load it as string\n", "\n", "To get started, download the document from [here](https://github.com/guardrails-ai/guardrails/blob/main/docs/examples/data/chase_card_agreement.pdf) and save it in `data/chase_card_agreement.pdf`.\n", "\n", "Guardrails has some built-in functions to help with common tasks. Here, we will use the `read_pdf` function to load the PDF as a string." ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/Users/dtam/.pyenv/versions/3.12.3/envs/litellm/lib/python3.12/site-packages/pypdfium2/_helpers/textpage.py:80: UserWarning: get_text_range() call with default params will be implicitly redirected to get_text_bounded()\n", " warnings.warn(\"get_text_range() call with default params will be implicitly redirected to get_text_bounded()\")\n" ] }, { "data": { "text/html": [ "
Chase Credit Card Document:\n",
"\n",
"2/25/23, 7:59 PM about:blank\n",
"about:blank 1/4\n",
"PRICING INFORMATION\n",
"INTEREST RATES AND INTEREST CHARGES\n",
"Purchase Annual\n",
"Percentage Rate (APR) 0% Intro APR for the first 18 months that your Account is open.\n",
"After that, 19.49%. This APR will vary with the market based on the Prim\n",
"...\n",
"\n"
],
"text/plain": [
"Chase Credit Card Document:\n",
"\n",
"\u001b[1;36m2\u001b[0m/\u001b[1;36m25\u001b[0m/\u001b[1;36m23\u001b[0m, \u001b[1;92m7:59\u001b[0m PM about:blank\n",
"about:blank \u001b[1;36m1\u001b[0m/\u001b[1;36m4\u001b[0m\n",
"PRICING INFORMATION\n",
"INTEREST RATES AND INTEREST CHARGES\n",
"Purchase Annual\n",
"Percentage Rate \u001b[1m(\u001b[0mAPR\u001b[1m)\u001b[0m \u001b[1;36m0\u001b[0m% Intro APR for the first \u001b[1;36m18\u001b[0m months that your Account is open.\n",
"After that, \u001b[1;36m19.49\u001b[0m%. This APR will vary with the market based on the Prim\n",
"\u001b[33m...\u001b[0m\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"import guardrails as gd\n",
"\n",
"from rich import print\n",
"\n",
"content = gd.docs_utils.read_pdf(\"data/chase_card_agreement.pdf\")\n",
"\n",
"print(f\"Chase Credit Card Document:\\n\\n{content[:275]}\\n...\")"
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"## Step 1: Create the Pydantic RAIL model\n",
"Here, we request:\n",
"\n",
"1. A list of the fees associated with the card. We ask for sub-information, each with its own quality criteria and corrective action.\n",
"2. A object (i.e. key-value pairs) for the interest."
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"from guardrails.hub import LowerCase, TwoWords, OneLine\n",
"from pydantic import BaseModel, Field\n",
"\n",
"prompt = \"\"\"\n",
"Given the following document, answer the following questions. If the answer doesn't exist in the document, enter 'None'.\n",
"\n",
"${document}\n",
"\n",
"${gr.complete_xml_suffix_v2}\n",
"\"\"\"\n",
"\n",
"\n",
"class Fee(BaseModel):\n",
" name: str = Field(validators=[LowerCase(on_fail=\"fix\"), TwoWords(on_fail=\"reask\")])\n",
" explanation: str = Field(validators=[OneLine(on_fail=\"noop\")])\n",
" value: float = Field(description=\"The fee amount in USD or as a percentage.\")\n",
"\n",
"\n",
"class AccountFee(BaseModel):\n",
" account_type: str = Field(validators=[LowerCase(on_fail=\"fix\")])\n",
" rate: float = Field(\n",
" description=\"The annual percentage rate (APR) for the account type.\"\n",
" )\n",
"\n",
"\n",
"class CreditCardAgreement(BaseModel):\n",
" fees: list[Fee] = Field(\n",
" description=\"What fees and charges are associated with my account?\"\n",
" )\n",
" interest_rates: list[AccountFee] = Field(\n",
" description=\"What are the interest rates offered by the bank on different kinds of accounts and products?\"\n",
" )"
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"## Step 2: Create a `Guard` object with the RAIL Spec\n",
"\n",
"We create a `gd.Guard` object that will check, validate and correct the output of the LLM. This object:\n",
"\n",
"1. Enforces the quality criteria specified in the Pydantic RAIL spec.\n",
"2. Takes corrective action when the quality criteria are not met.\n",
"3. Compiles the schema and type info from the RAIL spec and adds it to the prompt."
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"guard = gd.Guard.for_pydantic(output_class=CreditCardAgreement)"
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"As we can see, a few formatters weren't supported. These formatters won't be enforced in the output, but this information can still be used to generate a prompt.\n",
"\n",
"We see the prompt that will be sent to the LLM. The `{document}` is substituted with the user provided value at runtime."
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"## Step 3: Wrap the LLM API call with `Guard`"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/Users/dtam/dev/guardrails/guardrails/validator_service/__init__.py:85: UserWarning: Could not obtain an event loop. Falling back to synchronous validation.\n",
" warnings.warn(\n",
"/Users/dtam/dev/guardrails/guardrails/validator_service/__init__.py:85: UserWarning: Could not obtain an event loop. Falling back to synchronous validation.\n",
" warnings.warn(\n"
]
}
],
"source": [
"# Add your OPENAI_API_KEY as an environment variable if it's not already set\n",
"# import os\n",
"# os.environ[\"OPENAI_API_KEY\"] = \"YOUR_API_KEY\"\n",
"\n",
"raw_llm_response, validated_response, *rest = guard(\n",
" messages=[{\"role\": \"user\", \"content\": prompt}],\n",
" prompt_params={\"document\": content[:6000]},\n",
" model=\"gpt-4o-mini\",\n",
" max_tokens=2048,\n",
" temperature=0,\n",
")"
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"The `guard` wrapper returns the raw_llm_respose (which is a simple string), and the validated and corrected output (which is a dictionary).\n",
"\n",
"We can see that the output is a dictionary with the correct schema and types."
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"{\n", " 'fees': [\n", " {\n", " 'name': 'annual membership',\n", " 'explanation': 'No annual membership fee is charged for this account.',\n", " 'value': 0.0\n", " },\n", " {\n", " 'name': 'my chase',\n", " 'explanation': 'Monthly fee of 0% of the amount of each eligible purchase transaction during the 0% \n", "Intro Purchase APR period, then 1.72% after.',\n", " 'value': 1.72\n", " },\n", " {\n", " 'name': 'balance transfer',\n", " 'explanation': 'Intro fee of either $5 or 3% of the amount of each transfer, whichever is greater, on \n", "transfers made within 60 days of account opening. After that: Either $5 or 5% of the amount of each transfer, \n", "whichever is greater.',\n", " 'value': 5.0\n", " },\n", " {\n", " 'name': 'cash advance',\n", " 'explanation': 'Either $10 or 5% of the amount of each transaction, whichever is greater.',\n", " 'value': 10.0\n", " },\n", " {\n", " 'name': 'foreign transaction',\n", " 'explanation': '3% of the amount of each transaction in U.S. dollars.',\n", " 'value': 3.0\n", " },\n", " {'name': 'late payment', 'explanation': 'Up to $40 for late payments.', 'value': 40.0},\n", " {'name': 'return payment', 'explanation': 'Up to $40 for returned payments.', 'value': 40.0}\n", " ],\n", " 'interest_rates': [\n", " {'account_type': 'purchase', 'rate': 0.0},\n", " {'account_type': 'balance transfer', 'rate': 0.0},\n", " {'account_type': 'cash advance', 'rate': 29.49},\n", " {'account_type': 'penalty', 'rate': 29.99},\n", " {'account_type': 'my chase loan', 'rate': 19.49}\n", " ]\n", "}\n", "\n" ], "text/plain": [ "\u001b[1m{\u001b[0m\n", " \u001b[32m'fees'\u001b[0m: \u001b[1m[\u001b[0m\n", " \u001b[1m{\u001b[0m\n", " \u001b[32m'name'\u001b[0m: \u001b[32m'annual membership'\u001b[0m,\n", " \u001b[32m'explanation'\u001b[0m: \u001b[32m'No annual membership fee is charged for this account.'\u001b[0m,\n", " \u001b[32m'value'\u001b[0m: \u001b[1;36m0.0\u001b[0m\n", " \u001b[1m}\u001b[0m,\n", " \u001b[1m{\u001b[0m\n", " \u001b[32m'name'\u001b[0m: \u001b[32m'my chase'\u001b[0m,\n", " \u001b[32m'explanation'\u001b[0m: \u001b[32m'Monthly fee of 0% of the amount of each eligible purchase transaction during the 0% \u001b[0m\n", "\u001b[32mIntro Purchase APR period, then 1.72% after.'\u001b[0m,\n", " \u001b[32m'value'\u001b[0m: \u001b[1;36m1.72\u001b[0m\n", " \u001b[1m}\u001b[0m,\n", " \u001b[1m{\u001b[0m\n", " \u001b[32m'name'\u001b[0m: \u001b[32m'balance transfer'\u001b[0m,\n", " \u001b[32m'explanation'\u001b[0m: \u001b[32m'Intro fee of either $5 or 3% of the amount of each transfer, whichever is greater, on \u001b[0m\n", "\u001b[32mtransfers made within 60 days of account opening. After that: Either $5 or 5% of the amount of each transfer, \u001b[0m\n", "\u001b[32mwhichever is greater.'\u001b[0m,\n", " \u001b[32m'value'\u001b[0m: \u001b[1;36m5.0\u001b[0m\n", " \u001b[1m}\u001b[0m,\n", " \u001b[1m{\u001b[0m\n", " \u001b[32m'name'\u001b[0m: \u001b[32m'cash advance'\u001b[0m,\n", " \u001b[32m'explanation'\u001b[0m: \u001b[32m'Either $10 or 5% of the amount of each transaction, whichever is greater.'\u001b[0m,\n", " \u001b[32m'value'\u001b[0m: \u001b[1;36m10.0\u001b[0m\n", " \u001b[1m}\u001b[0m,\n", " \u001b[1m{\u001b[0m\n", " \u001b[32m'name'\u001b[0m: \u001b[32m'foreign transaction'\u001b[0m,\n", " \u001b[32m'explanation'\u001b[0m: \u001b[32m'3% of the amount of each transaction in U.S. dollars.'\u001b[0m,\n", " \u001b[32m'value'\u001b[0m: \u001b[1;36m3.0\u001b[0m\n", " \u001b[1m}\u001b[0m,\n", " \u001b[1m{\u001b[0m\u001b[32m'name'\u001b[0m: \u001b[32m'late payment'\u001b[0m, \u001b[32m'explanation'\u001b[0m: \u001b[32m'Up to $40 for late payments.'\u001b[0m, \u001b[32m'value'\u001b[0m: \u001b[1;36m40.0\u001b[0m\u001b[1m}\u001b[0m,\n", " \u001b[1m{\u001b[0m\u001b[32m'name'\u001b[0m: \u001b[32m'return payment'\u001b[0m, \u001b[32m'explanation'\u001b[0m: \u001b[32m'Up to $40 for returned payments.'\u001b[0m, \u001b[32m'value'\u001b[0m: \u001b[1;36m40.0\u001b[0m\u001b[1m}\u001b[0m\n", " \u001b[1m]\u001b[0m,\n", " \u001b[32m'interest_rates'\u001b[0m: \u001b[1m[\u001b[0m\n", " \u001b[1m{\u001b[0m\u001b[32m'account_type'\u001b[0m: \u001b[32m'purchase'\u001b[0m, \u001b[32m'rate'\u001b[0m: \u001b[1;36m0.0\u001b[0m\u001b[1m}\u001b[0m,\n", " \u001b[1m{\u001b[0m\u001b[32m'account_type'\u001b[0m: \u001b[32m'balance transfer'\u001b[0m, \u001b[32m'rate'\u001b[0m: \u001b[1;36m0.0\u001b[0m\u001b[1m}\u001b[0m,\n", " \u001b[1m{\u001b[0m\u001b[32m'account_type'\u001b[0m: \u001b[32m'cash advance'\u001b[0m, \u001b[32m'rate'\u001b[0m: \u001b[1;36m29.49\u001b[0m\u001b[1m}\u001b[0m,\n", " \u001b[1m{\u001b[0m\u001b[32m'account_type'\u001b[0m: \u001b[32m'penalty'\u001b[0m, \u001b[32m'rate'\u001b[0m: \u001b[1;36m29.99\u001b[0m\u001b[1m}\u001b[0m,\n", " \u001b[1m{\u001b[0m\u001b[32m'account_type'\u001b[0m: \u001b[32m'my chase loan'\u001b[0m, \u001b[32m'rate'\u001b[0m: \u001b[1;36m19.49\u001b[0m\u001b[1m}\u001b[0m\n", " \u001b[1m]\u001b[0m\n", "\u001b[1m}\u001b[0m\n" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "print(validated_response)" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
Logs\n",
"├── ╭────────────────────────────────────────────────── Step 0 ───────────────────────────────────────────────────╮\n",
"│ │ ╭─────────────────────────────────────────────── Messages ────────────────────────────────────────────────╮ │\n",
"│ │ │ ┏━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ │ │\n",
"│ │ │ ┃ Role ┃ Content ┃ │ │\n",
"│ │ │ ┡━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ │ │\n",
"│ │ │ │ user │ │ │ │\n",
"│ │ │ │ │ Given the following document, answer the following questions. If the answer doesn't exist in │ │ │\n",
"│ │ │ │ │ the document, enter 'None'. │ │ │\n",
"│ │ │ │ │ │ │ │\n",
"│ │ │ │ │ 2/25/23, 7:59 PM about:blank │ │ │\n",
"│ │ │ │ │ about:blank 1/4 │ │ │\n",
"│ │ │ │ │ PRICING INFORMATION │ │ │\n",
"│ │ │ │ │ INTEREST RATES AND INTEREST CHARGES │ │ │\n",
"│ │ │ │ │ Purchase Annual │ │ │\n",
"│ │ │ │ │ Percentage Rate (APR) 0% Intro APR for the first 18 months that your Account is open. │ │ │\n",
"│ │ │ │ │ After that, 19.49%. This APR will vary with the market based on the Prime │ │ │\n",
"│ │ │ │ │ Rate. │ │ │\n",
"│ │ │ │ │ a │ │ │\n",
"│ │ │ │ │ My Chase Loan │ │ │\n",
"│ │ │ │ │ SM APR 19.49%. This APR will vary with the market based on the Prime Rate. │ │ │\n",
"│ │ │ │ │ a │ │ │\n",
"│ │ │ │ │ Promotional offers with fixed APRs and varying durations may be available from │ │ │\n",
"│ │ │ │ │ time to time on some accounts. │ │ │\n",
"│ │ │ │ │ Balance Transfer APR 0% Intro APR for the first 18 months that your Account is open. │ │ │\n",
"│ │ │ │ │ After that, 19.49%. This APR will vary with the market based on the Prime │ │ │\n",
"│ │ │ │ │ Rate. │ │ │\n",
"│ │ │ │ │ a │ │ │\n",
"│ │ │ │ │ Cash Advance APR 29.49%. This APR will vary with the market based on the Prime Rate. │ │ │\n",
"│ │ │ │ │ b │ │ │\n",
"│ │ │ │ │ Penalty APR and When │ │ │\n",
"│ │ │ │ │ It Applies │ │ │\n",
"│ │ │ │ │ Up to 29.99%. This APR will vary with the market based on the Prime Rate. │ │ │\n",
"│ │ │ │ │ c │ │ │\n",
"│ │ │ │ │ We may apply the Penalty APR to your account if you: │ │ │\n",
"│ │ │ │ │ fail to make a Minimum Payment by the date and time that it is due; or │ │ │\n",
"│ │ │ │ │ make a payment to us that is returned unpaid. │ │ │\n",
"│ │ │ │ │ How Long Will the Penalty APR Apply?: If we apply the Penalty APR for │ │ │\n",
"│ │ │ │ │ either of these reasons, the Penalty APR could potentially remain in effect │ │ │\n",
"│ │ │ │ │ indefinitely. │ │ │\n",
"│ │ │ │ │ How to Avoid Paying │ │ │\n",
"│ │ │ │ │ Interest on Purchases │ │ │\n",
"│ │ │ │ │ Your due date will be a minimum of 21 days after the close of each billing cycle. │ │ │\n",
"│ │ │ │ │ We will not charge you interest on new purchases if you pay your entire balance │ │ │\n",
"│ │ │ │ │ or Interest Saving Balance by the due date each month. We will begin charging │ │ │\n",
"│ │ │ │ │ interest on balance transfers and cash advances on the transaction date. │ │ │\n",
"│ │ │ │ │ Minimum Interest │ │ │\n",
"│ │ │ │ │ Charge │ │ │\n",
"│ │ │ │ │ None │ │ │\n",
"│ │ │ │ │ Credit Card Tips from │ │ │\n",
"│ │ │ │ │ the Consumer Financial │ │ │\n",
"│ │ │ │ │ Protection Bureau │ │ │\n",
"│ │ │ │ │ To learn more about factors to consider when applying for or using a credit card, │ │ │\n",
"│ │ │ │ │ visit the website of the Consumer Financial Protection Bureau at │ │ │\n",
"│ │ │ │ │ http://www.consumerfinance.gov/learnmore. │ │ │\n",
"│ │ │ │ │ FEES │ │ │\n",
"│ │ │ │ │ Annual Membership │ │ │\n",
"│ │ │ │ │ Fee │ │ │\n",
"│ │ │ │ │ None │ │ │\n",
"│ │ │ │ │ My Chase Plan │ │ │\n",
"│ │ │ │ │ SM Fee │ │ │\n",
"│ │ │ │ │ (fixed finance charge) │ │ │\n",
"│ │ │ │ │ Monthly fee of 0% of the amount of each eligible purchase transaction or │ │ │\n",
"│ │ │ │ │ amount selected to create a My Chase Plan while in the 0% Intro Purchase │ │ │\n",
"│ │ │ │ │ APR period. │ │ │\n",
"│ │ │ │ │ After that, monthly fee of 1.72% of the amount of each eligible purchase │ │ │\n",
"│ │ │ │ │ transaction or amount selected to create a My Chase Plan. The My Chase Plan │ │ │\n",
"│ │ │ │ │ Fee will be determined at the time each My Chase Plan is created and will │ │ │\n",
"│ │ │ │ │ remain the same until the My Chase Plan is paid in full. │ │ │\n",
"│ │ │ │ │ d │ │ │\n",
"│ │ │ │ │ Transaction Fees │ │ │\n",
"│ │ │ │ │ Balance Transfers Intro fee of either $5 or 3% of the amount of each transfer, whichever is │ │ │\n",
"│ │ │ │ │ greater, │ │ │\n",
"│ │ │ │ │ on transfers made within 60 days of account opening. After that: Either $5 or 5% │ │ │\n",
"│ │ │ │ │ of the amount of each transfer, whichever is greater. │ │ │\n",
"│ │ │ │ │ Cash Advances Either $10 or 5% of the amount of each transaction, whichever is greater. │ │ │\n",
"│ │ │ │ │ 2/25/23, 7:59 PM about:blank │ │ │\n",
"│ │ │ │ │ about:blank 2/4 │ │ │\n",
"│ │ │ │ │ Foreign Transactions 3% of the amount of each transaction in U.S. dollars. │ │ │\n",
"│ │ │ │ │ Penalty Fees │ │ │\n",
"│ │ │ │ │ Late Payment Up to $40. │ │ │\n",
"│ │ │ │ │ Over-the-Credit-Limit None │ │ │\n",
"│ │ │ │ │ Return Payment Up to $40. │ │ │\n",
"│ │ │ │ │ Return Check None │ │ │\n",
"│ │ │ │ │ Note: This account may not be eligible for balance transfers. │ │ │\n",
"│ │ │ │ │ Loss of Intro APR: We will end your introductory APR if any required Minimum Payment is 60 │ │ │\n",
"│ │ │ │ │ days late, and │ │ │\n",
"│ │ │ │ │ apply the Penalty APR. │ │ │\n",
"│ │ │ │ │ How We Will Calculate Your Balance: We use the daily balance method (including new │ │ │\n",
"│ │ │ │ │ transactions). │ │ │\n",
"│ │ │ │ │ Prime Rate: Variable APRs are based on the 7.75% Prime Rate as of 2/7/2023. │ │ │\n",
"│ │ │ │ │ aWe add 11.74% to the Prime Rate to determine the Purchase/My Chase Loan/Balance Transfer │ │ │\n",
"│ │ │ │ │ APR. │ │ │\n",
"│ │ │ │ │ Maximum APR 29.99%. │ │ │\n",
"│ │ │ │ │ bWe add 21.74% to the Prime Rate to determine the Cash Advance APR. Maximum APR 29.99%. │ │ │\n",
"│ │ │ │ │ cWe add up to 26.99% to the Prime Rate to determine the Penalty APR. Maximum APR 29.99%. │ │ │\n",
"│ │ │ │ │ dMy Chase Plan Fee: The My Chase Plan Fee is calculated at the time each plan is created and │ │ │\n",
"│ │ │ │ │ is based on │ │ │\n",
"│ │ │ │ │ the amount of each purchase transaction or amount selected to create the plan, the number of │ │ │\n",
"│ │ │ │ │ billing periods │ │ │\n",
"│ │ │ │ │ you choose to pay the balance in full, and other factors. The monthly and aggregate dollar │ │ │\n",
"│ │ │ │ │ amount of your My │ │ │\n",
"│ │ │ │ │ Chase Plan Fee will be disclosed during the activation of each My Chase Plan. │ │ │\n",
"│ │ │ │ │ MILITARY LENDING ACT NOTICE: Federal law provides important protections to members of the │ │ │\n",
"│ │ │ │ │ Armed │ │ │\n",
"│ │ │ │ │ Forces and their dependents relating to extensions of consumer credit. In general, the cost │ │ │\n",
"│ │ │ │ │ of consumer credit │ │ │\n",
"│ │ │ │ │ to a member of the Armed Forces and his or her dependent may not exceed an annual percentage │ │ │\n",
"│ │ │ │ │ rate of 36 │ │ │\n",
"│ │ │ │ │ percent. This rate must include, as applicable to the credit transaction or account: the │ │ │\n",
"│ │ │ │ │ costs associated with │ │ │\n",
"│ │ │ │ │ credit insurance premiums; fees for ancillary products sold in connection with the credit │ │ │\n",
"│ │ │ │ │ transaction; any │ │ │\n",
"│ │ │ │ │ application fee charged (other than certain application fees for specified credit │ │ │\n",
"│ │ │ │ │ transactions or accounts); and │ │ │\n",
"│ │ │ │ │ any participation fee charged (other than certain participation fees for a credit card │ │ │\n",
"│ │ │ │ │ account). To receive this │ │ │\n",
"│ │ │ │ │ information and a description of your payment obligation verbally, please call │ │ │\n",
"│ │ │ │ │ 1-800-235-9978. │ │ │\n",
"│ │ │ │ │ TERMS & CONDITIONS │ │ │\n",
"│ │ │ │ │ Authorization: When you respond to this credit card offer from JPMorgan Chase Bank, N.A., │ │ │\n",
"│ │ │ │ │ Member FDIC, a │ │ │\n",
"│ │ │ │ │ subsidiary of JPMorgan Chase & Co. (\"Chase\", \"we\", or \"us\"), you agree to the following: │ │ │\n",
"│ │ │ │ │ 1. You authorize us to obtain credit bureau reports, employment, and income information │ │ │\n",
"│ │ │ │ │ about you that we │ │ │\n",
"│ │ │ │ │ will use when considering your application for credit. We may obtain and use information │ │ │\n",
"│ │ │ │ │ about your │ │ │\n",
"│ │ │ │ │ accounts with us and others such as Checking, Deposit, Investment, and Utility accounts from │ │ │\n",
"│ │ │ │ │ credit │ │ │\n",
"│ │ │ │ │ bureaus and other entities. You also authorize us to obtain credit bureau reports and any │ │ │\n",
"│ │ │ │ │ other │ │ │\n",
"│ │ │ │ │ information about you in connection with: 1) extensions of credit on your account; 2) the │ │ │\n",
"│ │ │ │ │ administration, │ │ │\n",
"│ │ │ │ │ review or collection of your account; and 3) offering you enhanced or additional products │ │ │\n",
"│ │ │ │ │ and services. If │ │ │\n",
"│ │ │ │ │ you ask, we will tell you the name and address of the credit bureau from which we obtained a │ │ │\n",
"│ │ │ │ │ report │ │ │\n",
"│ │ │ │ │ about you. │ │ │\n",
"│ │ │ │ │ 2. If an account is opened, you will receive a Cardmember Agreement with your card(s). You │ │ │\n",
"│ │ │ │ │ agree to the │ │ │\n",
"│ │ │ │ │ terms of this agreement by: using the account or any card, authorizing their use, or making │ │ │\n",
"│ │ │ │ │ any payment │ │ │\n",
"│ │ │ │ │ on the account. │ │ │\n",
"│ │ │ │ │ 3. By providing your mobile ph │ │ │\n",
"│ │ │ │ │ │ │ │\n",
"│ │ │ │ │ │ │ │\n",
"│ │ │ │ │ Given below is XML that describes the information to extract from this document and the tags │ │ │\n",
"│ │ │ │ │ to extract it into. │ │ │\n",
"│ │ │ │ │ │ │ │\n",
"│ │ │ │ │ <output> │ │ │\n",
"│ │ │ │ │ <list description=\"What fees and charges are associated with my account?\" name=\"fees\" │ │ │\n",
"│ │ │ │ │ required=\"true\"> │ │ │\n",
"│ │ │ │ │ <object required=\"true\"> │ │ │\n",
"│ │ │ │ │ <string format=\"guardrails/lowercase; guardrails/two_words\" name=\"name\" │ │ │\n",
"│ │ │ │ │ required=\"true\"></string> │ │ │\n",
"│ │ │ │ │ <string format=\"guardrails/one_line\" name=\"explanation\" required=\"true\"></string> │ │ │\n",
"│ │ │ │ │ <float description=\"The fee amount in USD or as a percentage.\" name=\"value\" │ │ │\n",
"│ │ │ │ │ required=\"true\"></float> │ │ │\n",
"│ │ │ │ │ </object> │ │ │\n",
"│ │ │ │ │ </list> │ │ │\n",
"│ │ │ │ │ <list description=\"What are the interest rates offered by the bank on different kinds of │ │ │\n",
"│ │ │ │ │ accounts and products?\" name=\"interest_rates\" required=\"true\"> │ │ │\n",
"│ │ │ │ │ <object required=\"true\"> │ │ │\n",
"│ │ │ │ │ <string format=\"guardrails/lowercase\" name=\"account_type\" required=\"true\"></string> │ │ │\n",
"│ │ │ │ │ <float description=\"The annual percentage rate (APR) for the account type.\" │ │ │\n",
"│ │ │ │ │ name=\"rate\" required=\"true\"></float> │ │ │\n",
"│ │ │ │ │ </object> │ │ │\n",
"│ │ │ │ │ </list> │ │ │\n",
"│ │ │ │ │ </output> │ │ │\n",
"│ │ │ │ │ │ │ │\n",
"│ │ │ │ │ ONLY return a valid JSON object (no other text is necessary), where the key of the field in │ │ │\n",
"│ │ │ │ │ JSON is the `name` attribute of the corresponding XML, and the value is of the type │ │ │\n",
"│ │ │ │ │ specified by the corresponding XML's tag. The JSON MUST conform to the XML format, including │ │ │\n",
"│ │ │ │ │ any types and format requests e.g. requests for lists, objects and specific types. Be │ │ │\n",
"│ │ │ │ │ correct and concise. │ │ │\n",
"│ │ │ │ │ │ │ │\n",
"│ │ │ │ │ Here are examples of simple (XML, JSON) pairs that show the expected behavior: │ │ │\n",
"│ │ │ │ │ - `<string name='foo' format='two-words lower-case' />` => `{'foo': 'example one'}` │ │ │\n",
"│ │ │ │ │ - `<list name='bar'><string format='upper-case' /></list>` => `{\"bar\": ['STRING ONE', │ │ │\n",
"│ │ │ │ │ 'STRING TWO', etc.]}` │ │ │\n",
"│ │ │ │ │ - `<object name='baz'><string name=\"foo\" format=\"capitalize two-words\" /><integer │ │ │\n",
"│ │ │ │ │ name=\"index\" format=\"1-indexed\" /></object>` => `{'baz': {'foo': 'Some String', 'index': │ │ │\n",
"│ │ │ │ │ 1}}` │ │ │\n",
"│ │ │ │ │ │ │ │\n",
"│ │ │ │ │ │ │ │\n",
"│ │ │ └──────┴──────────────────────────────────────────────────────────────────────────────────────────────┘ │ │\n",
"│ │ ╰─────────────────────────────────────────────────────────────────────────────────────────────────────────╯ │\n",
"│ │ ╭──────────────────────────────────────────── Raw LLM Output ─────────────────────────────────────────────╮ │\n",
"│ │ │ { │ │\n",
"│ │ │ \"fees\": [ │ │\n",
"│ │ │ { │ │\n",
"│ │ │ \"name\": \"annual membership fee\", │ │\n",
"│ │ │ \"explanation\": \"No annual membership fee is charged for this account.\", │ │\n",
"│ │ │ \"value\": 0.0 │ │\n",
"│ │ │ }, │ │\n",
"│ │ │ { │ │\n",
"│ │ │ \"name\": \"my chase plan fee\", │ │\n",
"│ │ │ \"explanation\": \"Monthly fee of 0% of the amount of each eligible purchase transaction during the │ │\n",
"│ │ │ 0% Intro Purchase APR period, then 1.72% after.\", │ │\n",
"│ │ │ \"value\": 1.72 │ │\n",
"│ │ │ }, │ │\n",
"│ │ │ { │ │\n",
"│ │ │ \"name\": \"balance transfer fee\", │ │\n",
"│ │ │ \"explanation\": \"Intro fee of either $5 or 3% of the amount of each transfer, whichever is │ │\n",
"│ │ │ greater, on transfers made within 60 days of account opening. After that: Either $5 or 5% of the amount │ │\n",
"│ │ │ of each transfer, whichever is greater.\", │ │\n",
"│ │ │ \"value\": 5.0 │ │\n",
"│ │ │ }, │ │\n",
"│ │ │ { │ │\n",
"│ │ │ \"name\": \"cash advance fee\", │ │\n",
"│ │ │ \"explanation\": \"Either $10 or 5% of the amount of each transaction, whichever is greater.\", │ │\n",
"│ │ │ \"value\": 10.0 │ │\n",
"│ │ │ }, │ │\n",
"│ │ │ { │ │\n",
"│ │ │ \"name\": \"foreign transaction fee\", │ │\n",
"│ │ │ \"explanation\": \"3% of the amount of each transaction in U.S. dollars.\", │ │\n",
"│ │ │ \"value\": 3.0 │ │\n",
"│ │ │ }, │ │\n",
"│ │ │ { │ │\n",
"│ │ │ \"name\": \"late payment fee\", │ │\n",
"│ │ │ \"explanation\": \"Up to $40 for late payments.\", │ │\n",
"│ │ │ \"value\": 40.0 │ │\n",
"│ │ │ }, │ │\n",
"│ │ │ { │ │\n",
"│ │ │ \"name\": \"return payment fee\", │ │\n",
"│ │ │ \"explanation\": \"Up to $40 for returned payments.\", │ │\n",
"│ │ │ \"value\": 40.0 │ │\n",
"│ │ │ } │ │\n",
"│ │ │ ], │ │\n",
"│ │ │ \"interest_rates\": [ │ │\n",
"│ │ │ { │ │\n",
"│ │ │ \"account_type\": \"purchase\", │ │\n",
"│ │ │ \"rate\": 0.0 │ │\n",
"│ │ │ }, │ │\n",
"│ │ │ { │ │\n",
"│ │ │ \"account_type\": \"balance transfer\", │ │\n",
"│ │ │ \"rate\": 0.0 │ │\n",
"│ │ │ }, │ │\n",
"│ │ │ { │ │\n",
"│ │ │ \"account_type\": \"cash advance\", │ │\n",
"│ │ │ \"rate\": 29.49 │ │\n",
"│ │ │ }, │ │\n",
"│ │ │ { │ │\n",
"│ │ │ \"account_type\": \"penalty\", │ │\n",
"│ │ │ \"rate\": 29.99 │ │\n",
"│ │ │ }, │ │\n",
"│ │ │ { │ │\n",
"│ │ │ \"account_type\": \"my chase loan\", │ │\n",
"│ │ │ \"rate\": 19.49 │ │\n",
"│ │ │ } │ │\n",
"│ │ │ ] │ │\n",
"│ │ │ } │ │\n",
"│ │ ╰─────────────────────────────────────────────────────────────────────────────────────────────────────────╯ │\n",
"│ │ ╭─────────────────────────────────────────── Validated Output ────────────────────────────────────────────╮ │\n",
"│ │ │ { │ │\n",
"│ │ │ 'fees': [ │ │\n",
"│ │ │ { │ │\n",
"│ │ │ 'name': FieldReAsk( │ │\n",
"│ │ │ incorrect_value='annual membership fee', │ │\n",
"│ │ │ fail_results=[ │ │\n",
"│ │ │ FailResult( │ │\n",
"│ │ │ outcome='fail', │ │\n",
"│ │ │ error_message='Value must be exactly two words', │ │\n",
"│ │ │ fix_value='annual membership', │ │\n",
"│ │ │ error_spans=None, │ │\n",
"│ │ │ metadata=None, │ │\n",
"│ │ │ validated_chunk=None │ │\n",
"│ │ │ ) │ │\n",
"│ │ │ ], │ │\n",
"│ │ │ additional_properties={}, │ │\n",
"│ │ │ path=['fees', 0, 'name'] │ │\n",
"│ │ │ ), │ │\n",
"│ │ │ 'explanation': 'No annual membership fee is charged for this account.', │ │\n",
"│ │ │ 'value': 0.0 │ │\n",
"│ │ │ }, │ │\n",
"│ │ │ { │ │\n",
"│ │ │ 'name': FieldReAsk( │ │\n",
"│ │ │ incorrect_value='my chase plan fee', │ │\n",
"│ │ │ fail_results=[ │ │\n",
"│ │ │ FailResult( │ │\n",
"│ │ │ outcome='fail', │ │\n",
"│ │ │ error_message='Value must be exactly two words', │ │\n",
"│ │ │ fix_value='my chase', │ │\n",
"│ │ │ error_spans=None, │ │\n",
"│ │ │ metadata=None, │ │\n",
"│ │ │ validated_chunk=None │ │\n",
"│ │ │ ) │ │\n",
"│ │ │ ], │ │\n",
"│ │ │ additional_properties={}, │ │\n",
"│ │ │ path=['fees', 1, 'name'] │ │\n",
"│ │ │ ), │ │\n",
"│ │ │ 'explanation': 'Monthly fee of 0% of the amount of each eligible purchase transaction │ │\n",
"│ │ │ during the 0% Intro Purchase APR period, then 1.72% after.', │ │\n",
"│ │ │ 'value': 1.72 │ │\n",
"│ │ │ }, │ │\n",
"│ │ │ { │ │\n",
"│ │ │ 'name': FieldReAsk( │ │\n",
"│ │ │ incorrect_value='balance transfer fee', │ │\n",
"│ │ │ fail_results=[ │ │\n",
"│ │ │ FailResult( │ │\n",
"│ │ │ outcome='fail', │ │\n",
"│ │ │ error_message='Value must be exactly two words', │ │\n",
"│ │ │ fix_value='balance transfer', │ │\n",
"│ │ │ error_spans=None, │ │\n",
"│ │ │ metadata=None, │ │\n",
"│ │ │ validated_chunk=None │ │\n",
"│ │ │ ) │ │\n",
"│ │ │ ], │ │\n",
"│ │ │ additional_properties={}, │ │\n",
"│ │ │ path=['fees', 2, 'name'] │ │\n",
"│ │ │ ), │ │\n",
"│ │ │ 'explanation': 'Intro fee of either $5 or 3% of the amount of each transfer, whichever is │ │\n",
"│ │ │ greater, on transfers made within 60 days of account opening. After that: Either $5 or 5% of the amount │ │\n",
"│ │ │ of each transfer, whichever is greater.', │ │\n",
"│ │ │ 'value': 5.0 │ │\n",
"│ │ │ }, │ │\n",
"│ │ │ { │ │\n",
"│ │ │ 'name': FieldReAsk( │ │\n",
"│ │ │ incorrect_value='cash advance fee', │ │\n",
"│ │ │ fail_results=[ │ │\n",
"│ │ │ FailResult( │ │\n",
"│ │ │ outcome='fail', │ │\n",
"│ │ │ error_message='Value must be exactly two words', │ │\n",
"│ │ │ fix_value='cash advance', │ │\n",
"│ │ │ error_spans=None, │ │\n",
"│ │ │ metadata=None, │ │\n",
"│ │ │ validated_chunk=None │ │\n",
"│ │ │ ) │ │\n",
"│ │ │ ], │ │\n",
"│ │ │ additional_properties={}, │ │\n",
"│ │ │ path=['fees', 3, 'name'] │ │\n",
"│ │ │ ), │ │\n",
"│ │ │ 'explanation': 'Either $10 or 5% of the amount of each transaction, whichever is greater.', │ │\n",
"│ │ │ 'value': 10.0 │ │\n",
"│ │ │ }, │ │\n",
"│ │ │ { │ │\n",
"│ │ │ 'name': FieldReAsk( │ │\n",
"│ │ │ incorrect_value='foreign transaction fee', │ │\n",
"│ │ │ fail_results=[ │ │\n",
"│ │ │ FailResult( │ │\n",
"│ │ │ outcome='fail', │ │\n",
"│ │ │ error_message='Value must be exactly two words', │ │\n",
"│ │ │ fix_value='foreign transaction', │ │\n",
"│ │ │ error_spans=None, │ │\n",
"│ │ │ metadata=None, │ │\n",
"│ │ │ validated_chunk=None │ │\n",
"│ │ │ ) │ │\n",
"│ │ │ ], │ │\n",
"│ │ │ additional_properties={}, │ │\n",
"│ │ │ path=['fees', 4, 'name'] │ │\n",
"│ │ │ ), │ │\n",
"│ │ │ 'explanation': '3% of the amount of each transaction in U.S. dollars.', │ │\n",
"│ │ │ 'value': 3.0 │ │\n",
"│ │ │ }, │ │\n",
"│ │ │ { │ │\n",
"│ │ │ 'name': FieldReAsk( │ │\n",
"│ │ │ incorrect_value='late payment fee', │ │\n",
"│ │ │ fail_results=[ │ │\n",
"│ │ │ FailResult( │ │\n",
"│ │ │ outcome='fail', │ │\n",
"│ │ │ error_message='Value must be exactly two words', │ │\n",
"│ │ │ fix_value='late payment', │ │\n",
"│ │ │ error_spans=None, │ │\n",
"│ │ │ metadata=None, │ │\n",
"│ │ │ validated_chunk=None │ │\n",
"│ │ │ ) │ │\n",
"│ │ │ ], │ │\n",
"│ │ │ additional_properties={}, │ │\n",
"│ │ │ path=['fees', 5, 'name'] │ │\n",
"│ │ │ ), │ │\n",
"│ │ │ 'explanation': 'Up to $40 for late payments.', │ │\n",
"│ │ │ 'value': 40.0 │ │\n",
"│ │ │ }, │ │\n",
"│ │ │ { │ │\n",
"│ │ │ 'name': FieldReAsk( │ │\n",
"│ │ │ incorrect_value='return payment fee', │ │\n",
"│ │ │ fail_results=[ │ │\n",
"│ │ │ FailResult( │ │\n",
"│ │ │ outcome='fail', │ │\n",
"│ │ │ error_message='Value must be exactly two words', │ │\n",
"│ │ │ fix_value='return payment', │ │\n",
"│ │ │ error_spans=None, │ │\n",
"│ │ │ metadata=None, │ │\n",
"│ │ │ validated_chunk=None │ │\n",
"│ │ │ ) │ │\n",
"│ │ │ ], │ │\n",
"│ │ │ additional_properties={}, │ │\n",
"│ │ │ path=['fees', 6, 'name'] │ │\n",
"│ │ │ ), │ │\n",
"│ │ │ 'explanation': 'Up to $40 for returned payments.', │ │\n",
"│ │ │ 'value': 40.0 │ │\n",
"│ │ │ } │ │\n",
"│ │ │ ], │ │\n",
"│ │ │ 'interest_rates': [ │ │\n",
"│ │ │ {'account_type': 'purchase', 'rate': 0.0}, │ │\n",
"│ │ │ {'account_type': 'balance transfer', 'rate': 0.0}, │ │\n",
"│ │ │ {'account_type': 'cash advance', 'rate': 29.49}, │ │\n",
"│ │ │ {'account_type': 'penalty', 'rate': 29.99}, │ │\n",
"│ │ │ {'account_type': 'my chase loan', 'rate': 19.49} │ │\n",
"│ │ │ ] │ │\n",
"│ │ │ } │ │\n",
"│ │ ╰─────────────────────────────────────────────────────────────────────────────────────────────────────────╯ │\n",
"│ ╰─────────────────────────────────────────────────────────────────────────────────────────────────────────────╯\n",
"└── ╭────────────────────────────────────────────────── Step 1 ───────────────────────────────────────────────────╮\n",
" │ ╭─────────────────────────────────────────────── Messages ────────────────────────────────────────────────╮ │\n",
" │ │ ┏━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ │ │\n",
" │ │ ┃ Role ┃ Content ┃ │ │\n",
" │ │ ┡━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ │ │\n",
" │ │ │ system │ │ │ │\n",
" │ │ │ │ You are a helpful assistant only capable of communicating with valid JSON, and no other │ │ │\n",
" │ │ │ │ text. │ │ │\n",
" │ │ │ │ │ │ │\n",
" │ │ │ │ ONLY return a valid JSON object (no other text is necessary), where the key of the field │ │ │\n",
" │ │ │ │ in JSON is the `name` attribute of the corresponding XML, and the value is of the type │ │ │\n",
" │ │ │ │ specified by the corresponding XML's tag. The JSON MUST conform to the XML format, │ │ │\n",
" │ │ │ │ including any types and format requests e.g. requests for lists, objects and specific │ │ │\n",
" │ │ │ │ types. Be correct and concise. If you are unsure anywhere, enter `null`. │ │ │\n",
" │ │ │ │ │ │ │\n",
" │ │ │ │ Here are examples of simple (XML, JSON) pairs that show the expected behavior: │ │ │\n",
" │ │ │ │ - `<string name='foo' format='two-words lower-case' />` => `{'foo': 'example one'}` │ │ │\n",
" │ │ │ │ - `<list name='bar'><string format='upper-case' /></list>` => `{\"bar\": ['STRING ONE', │ │ │\n",
" │ │ │ │ 'STRING TWO', etc.]}` │ │ │\n",
" │ │ │ │ - `<object name='baz'><string name=\"foo\" format=\"capitalize two-words\" /><integer │ │ │\n",
" │ │ │ │ name=\"index\" format=\"1-indexed\" /></object>` => `{'baz': {'foo': 'Some String', 'index': │ │ │\n",
" │ │ │ │ 1}}` │ │ │\n",
" │ │ │ │ │ │ │\n",
" │ │ ├────────┼────────────────────────────────────────────────────────────────────────────────────────────┤ │ │\n",
" │ │ │ user │ │ │ │\n",
" │ │ │ │ I was given the following JSON response, which had problems due to incorrect values. │ │ │\n",
" │ │ │ │ │ │ │\n",
" │ │ │ │ { │ │ │\n",
" │ │ │ │ \"fees\": [ │ │ │\n",
" │ │ │ │ { │ │ │\n",
" │ │ │ │ \"name\": { │ │ │\n",
" │ │ │ │ \"incorrect_value\": \"annual membership fee\", │ │ │\n",
" │ │ │ │ \"error_messages\": [ │ │ │\n",
" │ │ │ │ \"Value must be exactly two words\" │ │ │\n",
" │ │ │ │ ] │ │ │\n",
" │ │ │ │ }, │ │ │\n",
" │ │ │ │ \"explanation\": \"No annual membership fee is charged for this account.\", │ │ │\n",
" │ │ │ │ \"value\": 0.0 │ │ │\n",
" │ │ │ │ }, │ │ │\n",
" │ │ │ │ { │ │ │\n",
" │ │ │ │ \"name\": { │ │ │\n",
" │ │ │ │ \"incorrect_value\": \"my chase plan fee\", │ │ │\n",
" │ │ │ │ \"error_messages\": [ │ │ │\n",
" │ │ │ │ \"Value must be exactly two words\" │ │ │\n",
" │ │ │ │ ] │ │ │\n",
" │ │ │ │ }, │ │ │\n",
" │ │ │ │ \"explanation\": \"Monthly fee of 0% of the amount of each eligible purchase │ │ │\n",
" │ │ │ │ transaction during the 0% Intro Purchase APR period, then 1.72% after.\", │ │ │\n",
" │ │ │ │ \"value\": 1.72 │ │ │\n",
" │ │ │ │ }, │ │ │\n",
" │ │ │ │ { │ │ │\n",
" │ │ │ │ \"name\": { │ │ │\n",
" │ │ │ │ \"incorrect_value\": \"balance transfer fee\", │ │ │\n",
" │ │ │ │ \"error_messages\": [ │ │ │\n",
" │ │ │ │ \"Value must be exactly two words\" │ │ │\n",
" │ │ │ │ ] │ │ │\n",
" │ │ │ │ }, │ │ │\n",
" │ │ │ │ \"explanation\": \"Intro fee of either $5 or 3% of the amount of each transfer, │ │ │\n",
" │ │ │ │ whichever is greater, on transfers made within 60 days of account opening. After that: │ │ │\n",
" │ │ │ │ Either $5 or 5% of the amount of each transfer, whichever is greater.\", │ │ │\n",
" │ │ │ │ \"value\": 5.0 │ │ │\n",
" │ │ │ │ }, │ │ │\n",
" │ │ │ │ { │ │ │\n",
" │ │ │ │ \"name\": { │ │ │\n",
" │ │ │ │ \"incorrect_value\": \"cash advance fee\", │ │ │\n",
" │ │ │ │ \"error_messages\": [ │ │ │\n",
" │ │ │ │ \"Value must be exactly two words\" │ │ │\n",
" │ │ │ │ ] │ │ │\n",
" │ │ │ │ }, │ │ │\n",
" │ │ │ │ \"explanation\": \"Either $10 or 5% of the amount of each transaction, whichever is │ │ │\n",
" │ │ │ │ greater.\", │ │ │\n",
" │ │ │ │ \"value\": 10.0 │ │ │\n",
" │ │ │ │ }, │ │ │\n",
" │ │ │ │ { │ │ │\n",
" │ │ │ │ \"name\": { │ │ │\n",
" │ │ │ │ \"incorrect_value\": \"foreign transaction fee\", │ │ │\n",
" │ │ │ │ \"error_messages\": [ │ │ │\n",
" │ │ │ │ \"Value must be exactly two words\" │ │ │\n",
" │ │ │ │ ] │ │ │\n",
" │ │ │ │ }, │ │ │\n",
" │ │ │ │ \"explanation\": \"3% of the amount of each transaction in U.S. dollars.\", │ │ │\n",
" │ │ │ │ \"value\": 3.0 │ │ │\n",
" │ │ │ │ }, │ │ │\n",
" │ │ │ │ { │ │ │\n",
" │ │ │ │ \"name\": { │ │ │\n",
" │ │ │ │ \"incorrect_value\": \"late payment fee\", │ │ │\n",
" │ │ │ │ \"error_messages\": [ │ │ │\n",
" │ │ │ │ \"Value must be exactly two words\" │ │ │\n",
" │ │ │ │ ] │ │ │\n",
" │ │ │ │ }, │ │ │\n",
" │ │ │ │ \"explanation\": \"Up to $40 for late payments.\", │ │ │\n",
" │ │ │ │ \"value\": 40.0 │ │ │\n",
" │ │ │ │ }, │ │ │\n",
" │ │ │ │ { │ │ │\n",
" │ │ │ │ \"name\": { │ │ │\n",
" │ │ │ │ \"incorrect_value\": \"return payment fee\", │ │ │\n",
" │ │ │ │ \"error_messages\": [ │ │ │\n",
" │ │ │ │ \"Value must be exactly two words\" │ │ │\n",
" │ │ │ │ ] │ │ │\n",
" │ │ │ │ }, │ │ │\n",
" │ │ │ │ \"explanation\": \"Up to $40 for returned payments.\", │ │ │\n",
" │ │ │ │ \"value\": 40.0 │ │ │\n",
" │ │ │ │ } │ │ │\n",
" │ │ │ │ ], │ │ │\n",
" │ │ │ │ \"interest_rates\": [ │ │ │\n",
" │ │ │ │ { │ │ │\n",
" │ │ │ │ \"account_type\": \"purchase\", │ │ │\n",
" │ │ │ │ \"rate\": 0.0 │ │ │\n",
" │ │ │ │ }, │ │ │\n",
" │ │ │ │ { │ │ │\n",
" │ │ │ │ \"account_type\": \"balance transfer\", │ │ │\n",
" │ │ │ │ \"rate\": 0.0 │ │ │\n",
" │ │ │ │ }, │ │ │\n",
" │ │ │ │ { │ │ │\n",
" │ │ │ │ \"account_type\": \"cash advance\", │ │ │\n",
" │ │ │ │ \"rate\": 29.49 │ │ │\n",
" │ │ │ │ }, │ │ │\n",
" │ │ │ │ { │ │ │\n",
" │ │ │ │ \"account_type\": \"penalty\", │ │ │\n",
" │ │ │ │ \"rate\": 29.99 │ │ │\n",
" │ │ │ │ }, │ │ │\n",
" │ │ │ │ { │ │ │\n",
" │ │ │ │ \"account_type\": \"my chase loan\", │ │ │\n",
" │ │ │ │ \"rate\": 19.49 │ │ │\n",
" │ │ │ │ } │ │ │\n",
" │ │ │ │ ] │ │ │\n",
" │ │ │ │ } │ │ │\n",
" │ │ │ │ │ │ │\n",
" │ │ │ │ Help me correct the incorrect values based on the given error messages. │ │ │\n",
" │ │ │ │ │ │ │\n",
" │ │ │ │ Given below is XML that describes the information to extract from this document and the │ │ │\n",
" │ │ │ │ tags to extract it into. │ │ │\n",
" │ │ │ │ │ │ │\n",
" │ │ │ │ <output> │ │ │\n",
" │ │ │ │ <list description=\"What fees and charges are associated with my account?\" name=\"fees\" │ │ │\n",
" │ │ │ │ required=\"true\"> │ │ │\n",
" │ │ │ │ <object required=\"true\"> │ │ │\n",
" │ │ │ │ <string format=\"guardrails/lowercase; guardrails/two_words\" name=\"name\" │ │ │\n",
" │ │ │ │ required=\"true\"></string> │ │ │\n",
" │ │ │ │ <string format=\"guardrails/one_line\" name=\"explanation\" required=\"true\"></string> │ │ │\n",
" │ │ │ │ <float description=\"The fee amount in USD or as a percentage.\" name=\"value\" │ │ │\n",
" │ │ │ │ required=\"true\"></float> │ │ │\n",
" │ │ │ │ </object> │ │ │\n",
" │ │ │ │ </list> │ │ │\n",
" │ │ │ │ <list description=\"What are the interest rates offered by the bank on different kinds of │ │ │\n",
" │ │ │ │ accounts and products?\" name=\"interest_rates\" required=\"true\"> │ │ │\n",
" │ │ │ │ <object required=\"true\"> │ │ │\n",
" │ │ │ │ <string format=\"guardrails/lowercase\" name=\"account_type\" required=\"true\"></string> │ │ │\n",
" │ │ │ │ <float description=\"The annual percentage rate (APR) for the account type.\" │ │ │\n",
" │ │ │ │ name=\"rate\" required=\"true\"></float> │ │ │\n",
" │ │ │ │ </object> │ │ │\n",
" │ │ │ │ </list> │ │ │\n",
" │ │ │ │ </output> │ │ │\n",
" │ │ │ │ │ │ │\n",
" │ │ │ │ ONLY return a valid JSON object (no other text is necessary), where the key of the field │ │ │\n",
" │ │ │ │ in JSON is the `name` attribute of the corresponding XML, and the value is of the type │ │ │\n",
" │ │ │ │ specified by the corresponding XML's tag. The JSON MUST conform to the XML format, │ │ │\n",
" │ │ │ │ including any types and format requests e.g. requests for lists, objects and specific │ │ │\n",
" │ │ │ │ types. Be correct and concise. If you are unsure anywhere, enter `null`. │ │ │\n",
" │ │ │ │ │ │ │\n",
" │ │ └────────┴────────────────────────────────────────────────────────────────────────────────────────────┘ │ │\n",
" │ ╰─────────────────────────────────────────────────────────────────────────────────────────────────────────╯ │\n",
" │ ╭──────────────────────────────────────────── Raw LLM Output ─────────────────────────────────────────────╮ │\n",
" │ │ { │ │\n",
" │ │ \"fees\": [ │ │\n",
" │ │ { │ │\n",
" │ │ \"name\": \"annual membership\", │ │\n",
" │ │ \"explanation\": \"No annual membership fee is charged for this account.\", │ │\n",
" │ │ \"value\": 0.0 │ │\n",
" │ │ }, │ │\n",
" │ │ { │ │\n",
" │ │ \"name\": \"my chase\", │ │\n",
" │ │ \"explanation\": \"Monthly fee of 0% of the amount of each eligible purchase transaction during the │ │\n",
" │ │ 0% Intro Purchase APR period, then 1.72% after.\", │ │\n",
" │ │ \"value\": 1.72 │ │\n",
" │ │ }, │ │\n",
" │ │ { │ │\n",
" │ │ \"name\": \"balance transfer\", │ │\n",
" │ │ \"explanation\": \"Intro fee of either $5 or 3% of the amount of each transfer, whichever is │ │\n",
" │ │ greater, on transfers made within 60 days of account opening. After that: Either $5 or 5% of the amount │ │\n",
" │ │ of each transfer, whichever is greater.\", │ │\n",
" │ │ \"value\": 5.0 │ │\n",
" │ │ }, │ │\n",
" │ │ { │ │\n",
" │ │ \"name\": \"cash advance\", │ │\n",
" │ │ \"explanation\": \"Either $10 or 5% of the amount of each transaction, whichever is greater.\", │ │\n",
" │ │ \"value\": 10.0 │ │\n",
" │ │ }, │ │\n",
" │ │ { │ │\n",
" │ │ \"name\": \"foreign transaction\", │ │\n",
" │ │ \"explanation\": \"3% of the amount of each transaction in U.S. dollars.\", │ │\n",
" │ │ \"value\": 3.0 │ │\n",
" │ │ }, │ │\n",
" │ │ { │ │\n",
" │ │ \"name\": \"late payment\", │ │\n",
" │ │ \"explanation\": \"Up to $40 for late payments.\", │ │\n",
" │ │ \"value\": 40.0 │ │\n",
" │ │ }, │ │\n",
" │ │ { │ │\n",
" │ │ \"name\": \"return payment\", │ │\n",
" │ │ \"explanation\": \"Up to $40 for returned payments.\", │ │\n",
" │ │ \"value\": 40.0 │ │\n",
" │ │ } │ │\n",
" │ │ ], │ │\n",
" │ │ \"interest_rates\": [ │ │\n",
" │ │ { │ │\n",
" │ │ \"account_type\": \"purchase\", │ │\n",
" │ │ \"rate\": 0.0 │ │\n",
" │ │ }, │ │\n",
" │ │ { │ │\n",
" │ │ \"account_type\": \"balance transfer\", │ │\n",
" │ │ \"rate\": 0.0 │ │\n",
" │ │ }, │ │\n",
" │ │ { │ │\n",
" │ │ \"account_type\": \"cash advance\", │ │\n",
" │ │ \"rate\": 29.49 │ │\n",
" │ │ }, │ │\n",
" │ │ { │ │\n",
" │ │ \"account_type\": \"penalty\", │ │\n",
" │ │ \"rate\": 29.99 │ │\n",
" │ │ }, │ │\n",
" │ │ { │ │\n",
" │ │ \"account_type\": \"my chase loan\", │ │\n",
" │ │ \"rate\": 19.49 │ │\n",
" │ │ } │ │\n",
" │ │ ] │ │\n",
" │ │ } │ │\n",
" │ ╰─────────────────────────────────────────────────────────────────────────────────────────────────────────╯ │\n",
" │ ╭─────────────────────────────────────────── Validated Output ────────────────────────────────────────────╮ │\n",
" │ │ { │ │\n",
" │ │ 'fees': [ │ │\n",
" │ │ { │ │\n",
" │ │ 'name': 'annual membership', │ │\n",
" │ │ 'explanation': 'No annual membership fee is charged for this account.', │ │\n",
" │ │ 'value': 0.0 │ │\n",
" │ │ }, │ │\n",
" │ │ { │ │\n",
" │ │ 'name': 'my chase', │ │\n",
" │ │ 'explanation': 'Monthly fee of 0% of the amount of each eligible purchase transaction │ │\n",
" │ │ during the 0% Intro Purchase APR period, then 1.72% after.', │ │\n",
" │ │ 'value': 1.72 │ │\n",
" │ │ }, │ │\n",
" │ │ { │ │\n",
" │ │ 'name': 'balance transfer', │ │\n",
" │ │ 'explanation': 'Intro fee of either $5 or 3% of the amount of each transfer, whichever is │ │\n",
" │ │ greater, on transfers made within 60 days of account opening. After that: Either $5 or 5% of the amount │ │\n",
" │ │ of each transfer, whichever is greater.', │ │\n",
" │ │ 'value': 5.0 │ │\n",
" │ │ }, │ │\n",
" │ │ { │ │\n",
" │ │ 'name': 'cash advance', │ │\n",
" │ │ 'explanation': 'Either $10 or 5% of the amount of each transaction, whichever is greater.', │ │\n",
" │ │ 'value': 10.0 │ │\n",
" │ │ }, │ │\n",
" │ │ { │ │\n",
" │ │ 'name': 'foreign transaction', │ │\n",
" │ │ 'explanation': '3% of the amount of each transaction in U.S. dollars.', │ │\n",
" │ │ 'value': 3.0 │ │\n",
" │ │ }, │ │\n",
" │ │ { │ │\n",
" │ │ 'name': 'late payment', │ │\n",
" │ │ 'explanation': 'Up to $40 for late payments.', │ │\n",
" │ │ 'value': 40.0 │ │\n",
" │ │ }, │ │\n",
" │ │ { │ │\n",
" │ │ 'name': 'return payment', │ │\n",
" │ │ 'explanation': 'Up to $40 for returned payments.', │ │\n",
" │ │ 'value': 40.0 │ │\n",
" │ │ } │ │\n",
" │ │ ], │ │\n",
" │ │ 'interest_rates': [ │ │\n",
" │ │ {'account_type': 'purchase', 'rate': 0.0}, │ │\n",
" │ │ {'account_type': 'balance transfer', 'rate': 0.0}, │ │\n",
" │ │ {'account_type': 'cash advance', 'rate': 29.49}, │ │\n",
" │ │ {'account_type': 'penalty', 'rate': 29.99}, │ │\n",
" │ │ {'account_type': 'my chase loan', 'rate': 19.49} │ │\n",
" │ │ ] │ │\n",
" │ │ } │ │\n",
" │ ╰─────────────────────────────────────────────────────────────────────────────────────────────────────────╯ │\n",
" ╰─────────────────────────────────────────────────────────────────────────────────────────────────────────────╯\n",
"\n"
],
"text/plain": [
"Logs\n",
"├── ╭────────────────────────────────────────────────── Step 0 ───────────────────────────────────────────────────╮\n",
"│ │ \u001b[48;2;231;223;235m╭─\u001b[0m\u001b[48;2;231;223;235m──────────────────────────────────────────────\u001b[0m\u001b[48;2;231;223;235m Messages \u001b[0m\u001b[48;2;231;223;235m───────────────────────────────────────────────\u001b[0m\u001b[48;2;231;223;235m─╮\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m┏━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m┃\u001b[0m\u001b[1;48;2;231;223;235m \u001b[0m\u001b[1;48;2;231;223;235mRole\u001b[0m\u001b[1;48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m┃\u001b[0m\u001b[1;48;2;231;223;235m \u001b[0m\u001b[1;48;2;231;223;235mContent \u001b[0m\u001b[1;48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m┃\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m┡━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235muser\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mGiven the following document, answer the following questions. If the answer doesn't exist in\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mthe document, enter 'None'. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m2/25/23, 7:59 PM about:blank \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mabout:blank 1/4 \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mPRICING INFORMATION \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mINTEREST RATES AND INTEREST CHARGES \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mPurchase Annual \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mPercentage Rate (APR) 0% Intro APR for the first 18 months that your Account is open. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mAfter that, 19.49%. This APR will vary with the market based on the Prime \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mRate. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235ma \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mMy Chase Loan \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mSM APR 19.49%. This APR will vary with the market based on the Prime Rate. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235ma \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mPromotional offers with fixed APRs and varying durations may be available from \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mtime to time on some accounts. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mBalance Transfer APR 0% Intro APR for the first 18 months that your Account is open. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mAfter that, 19.49%. This APR will vary with the market based on the Prime \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mRate. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235ma \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mCash Advance APR 29.49%. This APR will vary with the market based on the Prime Rate. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mb \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mPenalty APR and When \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mIt Applies \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mUp to 29.99%. This APR will vary with the market based on the Prime Rate. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mc \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mWe may apply the Penalty APR to your account if you: \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mfail to make a Minimum Payment by the date and time that it is due; or \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mmake a payment to us that is returned unpaid. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mHow Long Will the Penalty APR Apply?: If we apply the Penalty APR for \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235meither of these reasons, the Penalty APR could potentially remain in effect \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mindefinitely. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mHow to Avoid Paying \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mInterest on Purchases \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mYour due date will be a minimum of 21 days after the close of each billing cycle. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mWe will not charge you interest on new purchases if you pay your entire balance \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mor Interest Saving Balance by the due date each month. We will begin charging \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235minterest on balance transfers and cash advances on the transaction date. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mMinimum Interest \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mCharge \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mNone \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mCredit Card Tips from \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mthe Consumer Financial \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mProtection Bureau \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mTo learn more about factors to consider when applying for or using a credit card, \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mvisit the website of the Consumer Financial Protection Bureau at \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mhttp://www.consumerfinance.gov/learnmore. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mFEES \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mAnnual Membership \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mFee \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mNone \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mMy Chase Plan \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mSM Fee \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m(fixed finance charge) \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mMonthly fee of 0% of the amount of each eligible purchase transaction or \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mamount selected to create a My Chase Plan while in the 0% Intro Purchase \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mAPR period. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mAfter that, monthly fee of 1.72% of the amount of each eligible purchase \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mtransaction or amount selected to create a My Chase Plan. The My Chase Plan \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mFee will be determined at the time each My Chase Plan is created and will \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mremain the same until the My Chase Plan is paid in full. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235md \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mTransaction Fees \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mBalance Transfers Intro fee of either $5 or 3% of the amount of each transfer, whichever is \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mgreater, \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mon transfers made within 60 days of account opening. After that: Either $5 or 5% \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mof the amount of each transfer, whichever is greater. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mCash Advances Either $10 or 5% of the amount of each transaction, whichever is greater. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m2/25/23, 7:59 PM about:blank \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mabout:blank 2/4 \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mForeign Transactions 3% of the amount of each transaction in U.S. dollars. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mPenalty Fees \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mLate Payment Up to $40. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mOver-the-Credit-Limit None \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mReturn Payment Up to $40. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mReturn Check None \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mNote: This account may not be eligible for balance transfers. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mLoss of Intro APR: We will end your introductory APR if any required Minimum Payment is 60 \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mdays late, and \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mapply the Penalty APR. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mHow We Will Calculate Your Balance: We use the daily balance method (including new \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mtransactions). \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mPrime Rate: Variable APRs are based on the 7.75% Prime Rate as of 2/7/2023. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235maWe add 11.74% to the Prime Rate to determine the Purchase/My Chase Loan/Balance Transfer \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mAPR. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mMaximum APR 29.99%. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mbWe add 21.74% to the Prime Rate to determine the Cash Advance APR. Maximum APR 29.99%. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mcWe add up to 26.99% to the Prime Rate to determine the Penalty APR. Maximum APR 29.99%. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mdMy Chase Plan Fee: The My Chase Plan Fee is calculated at the time each plan is created and\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mis based on \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mthe amount of each purchase transaction or amount selected to create the plan, the number of\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mbilling periods \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235myou choose to pay the balance in full, and other factors. The monthly and aggregate dollar \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mamount of your My \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mChase Plan Fee will be disclosed during the activation of each My Chase Plan. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mMILITARY LENDING ACT NOTICE: Federal law provides important protections to members of the \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mArmed \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mForces and their dependents relating to extensions of consumer credit. In general, the cost \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mof consumer credit \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mto a member of the Armed Forces and his or her dependent may not exceed an annual percentage\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mrate of 36 \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mpercent. This rate must include, as applicable to the credit transaction or account: the \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mcosts associated with \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mcredit insurance premiums; fees for ancillary products sold in connection with the credit \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mtransaction; any \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mapplication fee charged (other than certain application fees for specified credit \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mtransactions or accounts); and \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235many participation fee charged (other than certain participation fees for a credit card \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235maccount). To receive this \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235minformation and a description of your payment obligation verbally, please call \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m1-800-235-9978. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mTERMS & CONDITIONS \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mAuthorization: When you respond to this credit card offer from JPMorgan Chase Bank, N.A., \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mMember FDIC, a \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235msubsidiary of JPMorgan Chase & Co. (\"Chase\", \"we\", or \"us\"), you agree to the following: \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m1. You authorize us to obtain credit bureau reports, employment, and income information \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mabout you that we \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mwill use when considering your application for credit. We may obtain and use information \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mabout your \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235maccounts with us and others such as Checking, Deposit, Investment, and Utility accounts from\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mcredit \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mbureaus and other entities. You also authorize us to obtain credit bureau reports and any \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mother \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235minformation about you in connection with: 1) extensions of credit on your account; 2) the \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235madministration, \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mreview or collection of your account; and 3) offering you enhanced or additional products \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mand services. If \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235myou ask, we will tell you the name and address of the credit bureau from which we obtained a\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mreport \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mabout you. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m2. If an account is opened, you will receive a Cardmember Agreement with your card(s). You \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235magree to the \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mterms of this agreement by: using the account or any card, authorizing their use, or making \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235many payment \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mon the account. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m3. By providing your mobile ph \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mGiven below is XML that describes the information to extract from this document and the tags\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mto extract it into. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mONLY return a valid JSON object (no other text is necessary), where the key of the field in \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mJSON is the `name` attribute of the corresponding XML, and the value is of the type \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mspecified by the corresponding XML's tag. The JSON MUST conform to the XML format, including\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235many types and format requests e.g. requests for lists, objects and specific types. Be \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mcorrect and concise. \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235mHere are examples of simple (XML, JSON) pairs that show the expected behavior: \u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m │\n",
"│ │ \u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m│\u001b[0m\u001b[48;2;231;223;235m \u001b[0m\u001b[48;2;231;223;235m- `