{ "cells": [ { "attachments": {}, "cell_type": "markdown", "id": "438263dd", "metadata": {}, "source": [ "## XBRL US API - FERC schedule by entity \n", "\n", "### Authenticate for access token \n", "Click in the gray code cell below, then click the Run button above to execute the cell. Type your XBRL US Web account email, account password, Client ID, and secret as noted, pressing the Enter key on the keyboard after each entry.\n", "\n", "XBRL US limits records returned for a query to improve efficiency; this script loops to collect all data from the Public Filings Database for a query. **Non-members might not be able to return all data for a query** - join XBRL US for comprehensive access - https://xbrl.us/join." ] }, { "cell_type": "code", "execution_count": null, "id": "37593a39", "metadata": {}, "outputs": [], "source": [ "print('Enter your XBRL US Web account email: ')\n", "import os, re, sys, json\n", "import requests\n", "import pandas as pd\n", "from IPython.display import display, HTML\n", "import numpy as np\n", "import getpass\n", "from datetime import datetime\n", "import urllib\n", "from urllib.parse import urlencode\n", "email = input()\n", "password = getpass.getpass(prompt='Password: ')\n", "clientid = getpass.getpass(prompt='Client ID: ')\n", "secret = getpass.getpass(prompt='Secret: ')\n", "\n", "body_auth = {'username' : ''.join(email), \n", " 'client_id': ''.join(clientid), \n", " 'client_secret' : ''.join(secret), \n", " 'password' : ''.join(password), \n", " 'grant_type' : 'password', \n", " 'platform' : 'ums-ipynb' }\n", "\n", "payload = urlencode(body_auth)\n", "url = 'https://api.xbrl.us/oauth2/token'\n", "headers = {\"Content-Type\": \"application/x-www-form-urlencoded\"}\n", "\n", "res = requests.request(\"POST\", url, data=payload, headers=headers)\n", "auth_json = res.json()\n", "\n", "if 'error' in auth_json:\n", " print (\"\\n\\nThere was a problem generating an access token with these credentials. Run the first cell again to enter credentials.\")\n", "else:\n", " print (\"\\n\\nYour access token expires in 60 minutes. After it expires, run the cell immediately below this one to generate a new token and continue to use the query cell. \\n\\nFor now, skip ahead to the section 'Make a Query'.\")\n", "access_token = auth_json['access_token']\n", "refresh_token = auth_json['refresh_token']\n", "newaccess = ''\n", "newrefresh = ''\n", "#print('access token: ' + access_token + ' refresh token: ' + refresh_token)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Refresh token \n", "The cell below is only needed to refresh an expired access token after 60 minutes. When the access token no longer returns results, run the cell below to refresh the access token or re-enter credentials by running the cell above. Until the refresh token process is needed, **skip ahead to _Make a Query_**. \n" ] }, { "cell_type": "code", "execution_count": null, "id": "4000cccb", "metadata": {}, "outputs": [], "source": [ "token = token if newrefresh != '' else refresh_token \n", "\n", "refresh_auth = {'client_id': ''.join(clientid), \n", " 'client_secret' : ''.join(secret), \n", " 'grant_type' : 'refresh_token', \n", " 'platform' : 'ipynb', \n", " 'refresh_token' : ''.join(token) }\n", "refreshres = requests.post(url, data=refresh_auth)\n", "refresh_json = refreshres.json()\n", "access_token = refresh_json['access_token']\n", "refresh_token = refresh_json['refresh_token']#print('access token: ' + access_token + 'refresh token: ' + refresh_token)\n", "print('Your access token is refreshed for 60 minutes. If it expires again, run this cell to generate a new token and continue to use the query cells below.')\n", "print(access_token)" ] }, { "attachments": {}, "cell_type": "markdown", "id": "24626f1d", "metadata": {}, "source": [ "### Make a query \n", "After the access token confirmation appears above, you can modify the query below and use the **_Cell >> Run_** menu option with the cell **immediately below this text** to run the query for updated results. \n", "\n", "The sample results are from 10+ years of data for companies filing data on the _Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion_ , and may take several minutes to recreate. \n", "\n", "Modify the **_XBRL\\_Elements_** to return data from a different FERC Form 1 Schedule, and/or change the **_entity\\_codes_** to shorten the list. You can also change the base taxonomy corresponding to the Form by year or Form type. The queries to get lists are in the commented lines above each variable.\n", " \n", "Refer to XBRL API documentation at https://xbrlus.github.io/xbrl-api/#/Facts/getFactDetails for other endpoints and parameters to filter and return. " ] }, { "cell_type": "code", "execution_count": null, "id": "50057b3d", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "up to 5000 records are found so far ...\n", " - this set contained fewer than the 5000 possible, only 4534 records.\n", "\n", "At Tue Jul 25 16:02:04 2023, the query finished with 4534 rows returned in 0:00:00.410091 for \n", "https://api.xbrl.us/api/v1/cube/search?cube.description=200+-+Schedule+-+Summary+of+Utility+Plant+and+Accumulated+Provisions+for+Depreciation,+Amortization+and+Depletion&entity.code=C000533,C001111&fields=period.fiscal-year.sort(DESC),period.fiscal-period.sort(DESC),entity.code,report.entity-name,report.id,cube.description.sort(ASC),cube.tree-sequence.sort(ASC),cube.primary-local-name,fact.value,unit,dimensions.count,dimension-pair.sort(ASC)\n" ] }, { "data": { "text/html": [ "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
period.fiscal-yearperiod.fiscal-periodentity.codereport.entity-namereport.idcube.descriptioncube.tree-sequencecube.primary-local-namefact.valueunitdimensions.countdimension-pair
020231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassified1,239,295,406.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
120231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassified14,341,340,591.00USD0
220231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassified3,152,017,030.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
320231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassified3,152,017,030.00USD0
420231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassified3,758,657,157.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
520231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassified9,343,388,028.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
620231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantInServicePropertyUnderCapitalLeases863,170.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
720231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
820231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantInServicePropertyUnderCapitalLeases863,170.00USD0
920231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1020231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12UtilityPlantInServiceCompletedConstructionNotClassified140,385,501.00USD0
1120231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12UtilityPlantInServiceCompletedConstructionNotClassified386,731,768.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
1220231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12UtilityPlantInServiceCompletedConstructionNotClassified110,286,713.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
1320231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12UtilityPlantInServiceCompletedConstructionNotClassified735,250,987.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1420231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12UtilityPlantInServiceCompletedConstructionNotClassified1,232,269,468.00USD0
1520231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12UtilityPlantInServiceCompletedConstructionNotClassified140,385,501.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1620231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantInServiceClassifiedAndUnclassified3,293,265,701.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1720231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantInServiceClassifiedAndUnclassified15,588,791,163.00USD0
1820231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantInServiceClassifiedAndUnclassified3,293,265,701.00USD0
1920231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantInServiceClassifiedAndUnclassified4,145,388,925.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
2020231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantInServiceClassifiedAndUnclassified10,093,820,119.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
2120231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantInServiceClassifiedAndUnclassified1,349,582,119.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
2220231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantHeldForFutureUse54,800.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
2320231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantHeldForFutureUse699,209.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
2420231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantHeldForFutureUse801,671.00USD0
2520231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantHeldForFutureUse25,730,214.00USD0
2620231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantHeldForFutureUse801,671.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
2720231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantHeldForFutureUse24,976,205.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
2820231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion17ConstructionWorkInProgress98,831,233.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
2920231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion17ConstructionWorkInProgress549,961,605.00USD0
3020231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion17ConstructionWorkInProgress144,447,404.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3120231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion17ConstructionWorkInProgress144,447,404.00USD0
3220231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion17ConstructionWorkInProgress381,571,669.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3320231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion17ConstructionWorkInProgress69,558,703.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
3420231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19UtilityPlantAndConstructionWorkInProgress10,500,367,993.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3520231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19UtilityPlantAndConstructionWorkInProgress16,164,482,982.00USD0
3620231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19UtilityPlantAndConstructionWorkInProgress3,438,514,776.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3720231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19UtilityPlantAndConstructionWorkInProgress1,449,112,561.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
3820231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19UtilityPlantAndConstructionWorkInProgress4,215,002,428.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
3920231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19UtilityPlantAndConstructionWorkInProgress3,438,514,776.00USD0
4020231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion20AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,641,690,118.00USD0
4120231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion20AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,243,899,815.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4220231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion20AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,360,788,940.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4320231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion20AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,243,899,815.00USD0
4420231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion20AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility524,057,532.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
4520231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion20AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility756,843,646.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
4620231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21UtilityPlantNet11,522,792,864.00USD0
4720231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21UtilityPlantNet2,194,614,961.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4820231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21UtilityPlantNet2,194,614,961.00USD0
4920231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21UtilityPlantNet7,139,579,053.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
5020231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21UtilityPlantNet3,458,158,782.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
5120231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21UtilityPlantNet925,055,029.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
5220231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion24DepreciationUtilityPlantInService3,277,937,492.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
5320231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion24DepreciationUtilityPlantInService4,166,963,895.00USD0
5420231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion24DepreciationUtilityPlantInService1,214,805,385.00USD0
5520231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion24DepreciationUtilityPlantInService1,214,805,385.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
5620231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion24DepreciationUtilityPlantInService750,672,834.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
5720231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion24DepreciationUtilityPlantInService138,353,569.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
5820231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion27AmortizationOfOtherUtilityPlantUtilityPlantInService6,170,812.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
5920231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion27AmortizationOfOtherUtilityPlantUtilityPlantInService474,726,223.00USD0
6020231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion27AmortizationOfOtherUtilityPlantUtilityPlantInService82,851,448.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
6120231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion27AmortizationOfOtherUtilityPlantUtilityPlantInService29,094,430.00USD0
6220231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion27AmortizationOfOtherUtilityPlantUtilityPlantInService385,703,963.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
6320231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion27AmortizationOfOtherUtilityPlantUtilityPlantInService29,094,430.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
6420231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion28DepreciationAmortizationAndDepletionUtilityPlantInService1,243,899,815.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
6520231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion28DepreciationAmortizationAndDepletionUtilityPlantInService3,360,788,940.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
6620231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion28DepreciationAmortizationAndDepletionUtilityPlantInService756,843,646.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
6720231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion28DepreciationAmortizationAndDepletionUtilityPlantInService4,641,690,118.00USD0
6820231QC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion28DepreciationAmortizationAndDepletionUtilityPlantInService524,057,532.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
6920231QC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion28DepreciationAmortizationAndDepletionUtilityPlantInService1,243,899,815.00USD0
702022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified3,122,313,718.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
712022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified3,122,313,718.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
722022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified3,122,313,718.00USD0
732022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified14,096,838,517.00USD0
742022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified9,210,779,944.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
752022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified3,122,313,718.00USD0
762022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified3,679,824,049.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
772022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified1,206,234,524.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
782022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases903,614.00USD0
792022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases903,614.00USD0
802022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
812022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
822022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases903,614.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
832022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases903,614.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
842022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified1,300,799,643.00USD0
852022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified143,835,349.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
862022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified771,720,358.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
872022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified134,719,405.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
882022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified394,359,880.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
892022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified143,835,349.00USD0
902022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified143,835,349.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
912022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified143,835,349.00USD0
922022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified3,267,052,681.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
932022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified3,267,052,681.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
942022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified1,340,953,929.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
952022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified9,997,681,406.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
962022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified4,074,183,929.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
972022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified3,267,052,681.00USD0
982022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified3,267,052,681.00USD0
992022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified15,412,819,264.00USD0
1002022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse54,800.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
1012022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse24,976,206.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1022022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse801,671.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1032022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse801,671.00USD0
1042022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse801,671.00USD0
1052022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse25,730,215.00USD0
1062022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse699,209.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
1072022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse801,671.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1082022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress332,987,770.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1092022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress47,884,527.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
1102022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress112,870,327.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
1112022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress493,742,624.00USD0
1122022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress138,936,649.00USD0
1132022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress138,936,649.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1142022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress138,936,649.00USD0
1152022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress138,936,649.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1162022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,406,791,001.00USD0
1172022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,406,791,001.00USD0
1182022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress10,355,645,382.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1192022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress15,932,292,103.00USD0
1202022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,406,791,001.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1212022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress1,454,523,465.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
1222022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress4,122,123,256.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
1232022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,406,791,001.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1242022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,230,384,120.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1252022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility508,588,097.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
1262022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility743,329,116.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
1272022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,315,446,582.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1282022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,567,363,795.00USD0
1292022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,230,384,120.00USD0
1302022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,230,384,120.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1312022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,230,384,120.00USD0
1322022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet945,935,368.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
1332022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,176,406,881.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1342022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet3,378,794,140.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
1352022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet7,040,198,800.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1362022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet11,364,928,308.00USD0
1372022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,176,406,881.00USD0
1382022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,176,406,881.00USD0
1392022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,176,406,881.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1402022YC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion17ConstructionWorkInProgress138,936,649.00USD0
1412022YC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion17ConstructionWorkInProgress493,742,624.00USD0
1422022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService3,238,020,656.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1432022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService141,232,290.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
1442022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService1,201,250,028.00USD0
1452022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService1,201,250,028.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1462022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService4,116,705,805.00USD0
1472022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService1,201,250,028.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1482022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService737,452,859.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
1492022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService1,201,250,028.00USD0
1502022YC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19UtilityPlantAndConstructionWorkInProgress3,406,791,001.00USD0
1512022YC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19UtilityPlantAndConstructionWorkInProgress15,932,292,103.00USD0
1522022YC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion20AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,567,363,795.00USD0
1532022YC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion20AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,230,384,120.00USD0
1542022YC001111Baltimore Gas and Electric Company588986200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21UtilityPlantNet11,364,928,308.00USD0
1552022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService29,134,092.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1562022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService450,657,990.00USD0
1572022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService29,134,092.00USD0
1582022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService29,134,092.00USD0
1592022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService367,355,807.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
1602022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService5,876,257.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
1612022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService77,425,926.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1622022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService29,134,092.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1632022YC000533Kentucky Power Company588514200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21UtilityPlantNet2,176,406,881.00USD0
1642022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService1,230,384,120.00USD0
1652022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService743,329,116.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
1662022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService1,230,384,120.00USD0
1672022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService4,567,363,795.00USD0
1682022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService508,588,097.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
1692022YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService3,315,446,582.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1702022YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService1,230,384,120.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
1712022YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService1,230,384,120.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
17220223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified3,114,589,988.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
17320223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified3,602,963,827.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
17420223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified9,113,674,223.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
17520223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified13,910,935,106.00USD0
17620223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified3,114,589,988.00USD0
17720223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified1,194,297,056.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
17820223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases949,444.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
17920223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
18020223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
18120223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases949,444.00USD0
18220223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified112,931,240.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
18320223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified112,931,240.00USD0
18420223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified1,124,279,575.00USD0
18520223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified304,234,534.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
18620223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified96,125,148.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
18720223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified723,919,893.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
18820223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified9,852,775,220.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
18920223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified15,050,395,785.00USD0
19020223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified3,228,470,672.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
19120223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified3,228,470,672.00USD0
19220223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified3,907,198,361.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
19320223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified1,290,422,204.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
19420223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse801,671.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
19520223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse24,976,204.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
19620223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse54,800.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
19720223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse1,042,385.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
19820223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse801,671.00USD0
19920223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse26,073,389.00USD0
20020223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress321,563,007.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20120223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress540,127,138.00USD0
20220223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress136,303,226.00USD0
20320223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress107,643,143.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
20420223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress110,920,988.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
20520223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress136,303,226.00USD0
20620223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress540,127,138.00USD0
20720223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress136,303,226.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20820223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,365,575,569.00USD0
20920223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,365,575,569.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
21020223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress4,014,896,304.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
21120223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress10,199,314,431.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
21220223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress1,402,385,577.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
21320223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress15,616,596,312.00USD0
21420223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,365,575,569.00USD0
21520223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress15,616,596,312.00USD0
21620223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,496,659,127.00USD0
21720223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,210,197,333.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
21820223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,210,197,333.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
21920223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,279,091,123.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
22020223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,279,091,123.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
22120223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility488,268,029.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
22220223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility488,268,029.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
22320223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility729,299,975.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
22420223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility729,299,975.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
22520223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,496,659,127.00USD0
22620223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,496,659,127.00USD0
22720223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,210,197,333.00USD0
22820223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,210,197,333.00USD0
22920223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,210,197,333.00USD0
23020223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet6,920,223,308.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
23120223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,155,378,236.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
23220223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,155,378,236.00USD0
23320223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet11,119,937,185.00USD0
23420223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet11,119,937,185.00USD0
23520223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,155,378,236.00USD0
23620223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet914,117,548.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
23720223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet3,285,596,329.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
23820223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService138,472,782.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
23920223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService3,207,029,517.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24020223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService723,717,684.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
24120223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService1,181,755,745.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24220223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService1,181,755,745.00USD0
24320223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService4,069,219,983.00USD0
24420223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService5,582,291.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
24520223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService427,439,144.00USD0
24620223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService28,441,588.00USD0
24720223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService28,441,588.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24820223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService72,061,606.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24920223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService349,795,247.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
25020223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService729,299,975.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
25120223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService488,268,029.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
25220223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService3,279,091,123.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
25320223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService1,210,197,333.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
25420223QC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService1,210,197,333.00USD0
25520223QC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService4,496,659,127.00USD0
25620221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified8,941,841,141.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
25720221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified3,436,856,116.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
25820221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified1,144,621,536.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
25920221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified13,523,318,793.00USD0
26020221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified2,950,673,920.00USD0
26120221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified2,950,673,920.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
26220221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
26320221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases12,857,174.00USD0
26420221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
26520221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases12,857,174.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
26620221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified914,489,673.00USD0
26720221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified320,750,818.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
26820221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified207,985,198.00USD0
26920221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified471,617,661.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
27020221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified122,121,194.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
27120221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified207,985,198.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
27220221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified3,757,606,934.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
27320221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified3,171,516,292.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
27420221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified3,171,516,292.00USD0
27520221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified9,428,639,906.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
27620221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified1,266,742,730.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
27720221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified14,452,989,570.00USD0
27820221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse21,218,046.00USD0
27920221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse556,145.00USD0
28020221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse14,009,774.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28120221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse7,208,272.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
28220221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse556,145.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28320221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress102,938,716.00USD0
28420221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress62,816,898.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
28520221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress462,042,291.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28620221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress123,259,909.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
28720221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress648,119,098.00USD0
28820221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress102,938,716.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28920221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress648,119,098.00USD0
29020221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress102,938,716.00USD0
29120221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress15,122,326,714.00USD0
29220221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,275,011,153.00USD0
29320221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress9,904,691,971.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
29420221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,820,423,832.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
29520221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,275,011,153.00USD0
29620221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress1,397,210,911.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
29720221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,275,011,153.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
29820221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress15,122,326,714.00USD0
29920221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,373,656,338.00USD0
30020221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,177,374,064.00USD0
30120221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,177,374,064.00USD0
30220221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,177,374,064.00USD0
30320221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility438,632,560.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
30420221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility438,632,560.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
30520221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,220,344,293.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
30620221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility714,679,485.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
30720221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility714,679,485.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
30820221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,220,344,293.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
30920221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,177,374,064.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
31020221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,177,374,064.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
31120221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,373,656,338.00USD0
31220221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,373,656,338.00USD0
31320221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet958,578,351.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
31420221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,097,637,089.00USD0
31520221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,097,637,089.00USD0
31620221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet6,684,347,678.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
31720221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet3,105,744,347.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
31820221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet10,748,670,376.00USD0
31920221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet10,748,670,376.00USD0
32020221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,097,637,089.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32120221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService143,484,728.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
32220221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService709,432,300.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
32320221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService1,151,457,214.00USD0
32420221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService3,998,954,936.00USD0
32520221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService1,151,457,214.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32620221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService3,146,037,908.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32720221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService374,701,402.00USD0
32820221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService295,147,832.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
32920221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService74,306,385.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
33020221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService25,916,850.00USD0
33120221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService5,247,185.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
33220221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService25,916,850.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
33320221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService1,177,374,064.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
33420221QC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService1,177,374,064.00USD0
33520221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService3,220,344,293.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
33620221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService714,679,485.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
33720221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService438,632,560.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
33820221QC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService4,373,656,338.00USD0
3392021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified1,084,446,932.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
3402021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified2,915,567,696.00USD0
3412021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified2,915,567,696.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3422021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified2,915,567,696.00USD0
3432021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified2,915,567,696.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3442021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified13,236,712,908.00USD0
3452021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified8,782,694,958.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3462021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion3UtilityPlantInServiceClassified3,369,571,018.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
3472021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3482021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases13,610,347.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3492021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases13,610,347.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3502021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases13,610,347.00USD0
3512021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases13,610,347.00USD0
3522021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
3532021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified217,614,784.10USD0
3542021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified558,747,366.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3552021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified154,529,316.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
3562021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified342,496,132.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
3572021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified1,055,772,814.00USD0
3582021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified217,614,784.10USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3592021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified217,614,784.10USD0
3602021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion6UtilityPlantInServiceCompletedConstructionNotClassified217,614,784.10USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3612021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified3,712,067,150.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
3622021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified3,146,792,827.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3632021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified14,307,666,826.00USD0
3642021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified9,356,623,428.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3652021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified1,238,976,248.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
3662021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified3,146,792,827.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3672021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified3,146,792,827.00USD0
3682021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion8UtilityPlantInServiceClassifiedAndUnclassified3,146,792,827.00USD0
3692021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse556,145.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3702021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse556,145.00USD0
3712021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse556,145.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3722021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse556,145.00USD0
3732021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse7,195,172.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
3742021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse14,008,673.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3752021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion10UtilityPlantHeldForFutureUse21,203,845.00USD0
3762021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress95,340,895.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3772021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress405,432,570.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3782021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress95,340,895.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3792021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress95,340,895.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3802021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress39,164,413.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
3812021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress405,432,570.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3822021YC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress556,877,456.00USD0
3832021YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress95,340,895.00USD0
3842021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress95,340,895.00USD0
3852021YC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress95,340,895.00USD0
3862021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress95,340,895.00USD0
3872021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress95,340,895.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
3882021YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress556,877,456.00USD0
3892021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress112,280,473.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
3902021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress556,877,456.00USD0
3912021YC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress556,877,456.00USD0
3922021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress95,340,895.00USD0
3932021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress95,340,895.00USD0
3942021YC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress95,340,895.00USD0
3952021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress556,877,456.00USD0
3962021YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress95,340,895.00USD0
3972021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress14,885,748,127.00USD0
3982021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,242,689,868.00USD0
3992021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,751,231,563.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
4002021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,242,689,868.00USD0
4012021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress1,358,451,893.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
4022021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress9,776,064,671.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4032021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress14,885,748,127.00USD0
4042021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,242,689,868.00USD0
4052021YC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress14,885,748,127.00USD0
4062021YC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,242,689,868.00USD0
4072021YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,242,689,868.00USD0
4082021YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress14,885,748,127.00USD0
4092021YC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress14,885,748,127.00USD0
4102021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,242,689,868.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4112021YC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,242,689,868.00USD0
4122021YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,242,689,868.00USD0
4132021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,242,689,868.00USD0
4142021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,242,689,868.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4152021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,159,640,985.00USD0
4162021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,159,640,985.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4172021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility411,227,164.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
4182021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,159,640,985.00USD0
4192021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,292,551,179.00USD0
4202021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,159,640,985.00USD0
4212021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,159,640,985.00USD0
4222021YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,159,640,985.00USD0
4232021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,292,551,179.00USD0
4242021YC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,292,551,179.00USD0
4252021YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,159,640,985.00USD0
4262021YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,292,551,179.00USD0
4272021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,177,305,596.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4282021YC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,159,640,985.00USD0
4292021YC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,292,551,179.00USD0
4302021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,159,640,985.00USD0
4312021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,159,640,985.00USD0
4322021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,177,305,596.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4332021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility704,018,419.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
4342021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility411,227,164.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
4352021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,159,640,985.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4362021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,292,551,179.00USD0
4372021YC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,159,640,985.00USD0
4382021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility704,018,419.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
4392021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,159,640,985.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4402021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,159,640,985.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4412021YC000533Kentucky Power Company481718200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,083,048,883.00USD0
4422021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet6,598,759,075.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4432021YC000533Kentucky Power Company576662200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,083,048,883.00USD0
4442021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet3,047,213,144.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
4452021YC001111Baltimore Gas and Electric Company481481200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet10,593,196,948.00USD0
4462021YC001111Baltimore Gas and Electric Company544239200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet10,593,196,948.00USD0
4472021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet947,224,729.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
4482021YC000533Kentucky Power Company544336200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,083,048,883.00USD0
4492021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,083,048,883.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4502021YC000533Kentucky Power Company568435200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,083,048,883.00USD0
4512021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,083,048,883.00USD0
4522021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet10,593,196,948.00USD0
4532021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet10,593,196,948.00USD0
4542021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,083,048,883.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4552021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,083,048,883.00USD0
4562021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,083,048,883.00USD0
4572021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,083,048,883.00USD0
4582021YC001111Baltimore Gas and Electric Company566114200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet10,593,196,948.00USD0
4592021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService698,896,112.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
4602021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService1,134,142,286.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4612021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService3,939,725,630.00USD0
4622021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService1,134,142,286.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4632021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService3,107,775,321.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4642021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService133,054,197.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
4652021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService1,134,142,286.00USD0
4662021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion18DepreciationUtilityPlantInService1,134,142,286.00USD0
4672021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService352,825,549.00USD0
4682021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService25,498,698.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4692021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService25,498,698.00USD0
4702021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService69,530,275.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4712021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService25,498,698.00USD0
4722021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService25,498,698.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4732021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService278,172,967.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
4742021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion21AmortizationOfOtherUtilityPlantUtilityPlantInService5,122,307.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
4752021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService411,227,164.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
4762021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService4,292,551,179.00USD0
4772021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService1,159,640,985.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4782021YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService1,159,640,985.00USD0
4792021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService1,159,640,985.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
4802021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService704,018,419.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
4812021YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService1,159,640,985.00USD0
4822021YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22DepreciationAmortizationAndDepletionUtilityPlantInService3,177,305,596.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
48320213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,903,778,484.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
48420213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,069,671,284.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
48520213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified12,949,481,667.00USD0
48620213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,903,778,484.00USD0
48720213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified8,586,243,262.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
48820213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified3,293,567,121.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
48920213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases13,994,306.00USD0
49020213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
49120213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases13,994,306.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
49220213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
49320213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified990,718,160.00USD0
49420213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified150,462,285.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
49520213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified118,283,893.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
49620213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified150,462,285.00USD0
49720213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified600,042,628.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
49820213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified272,391,639.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
49920213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified9,201,466,994.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
50020213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,187,955,177.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
50120213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified3,565,958,760.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
50220213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified3,068,235,075.00USD0
50320213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified3,068,235,075.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
50420213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified13,955,380,931.00USD0
50520213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
50620213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD0
50720213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse22,198,113.00USD0
50820213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,195,172.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
50920213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse15,002,941.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
51020213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress126,481,786.00USD0
51120213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress97,938,738.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
51220213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress126,481,786.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
51320213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress616,031,209.00USD0
51420213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress127,770,089.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
51520213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress616,031,209.00USD0
51620213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress390,322,382.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
51720213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress126,481,786.00USD0
51820213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,663,897,498.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
51920213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,322,920,438.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
52020213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,195,273,006.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
52120213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,195,273,006.00USD0
52220213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,195,273,006.00USD0
52320213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress14,593,610,253.00USD0
52420213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress9,606,792,317.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
52520213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress14,593,610,253.00USD0
52620213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,218,531,482.00USD0
52720213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,141,953,678.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
52820213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility690,787,215.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
52920213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility385,790,589.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
53020213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility690,787,215.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
53120213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility690,787,215.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
53220213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,141,953,678.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
53320213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,141,953,678.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
53420213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD0
53520213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility385,790,589.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
53620213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
53720213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
53820213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
53920213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,218,531,482.00USD0
54020213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,218,531,482.00USD0
54120213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility690,787,215.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
54220213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,218,531,482.00USD0
54320213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,218,531,482.00USD0
54420213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,218,531,482.00USD0
54520213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD0
54620213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD0
54720213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD0
54820213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD0
54920213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
55020213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD0
55120213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,141,953,678.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
55220213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility385,790,589.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
55320213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility385,790,589.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
55420213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,051,903,127.00USD0
55520213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,051,903,127.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
55620213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,464,838,639.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
55720213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,973,110,283.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
55820213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet937,129,849.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
55920213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,051,903,127.00USD0
56020213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet10,375,078,771.00USD0
56120213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet10,375,078,771.00USD0
56220213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,118,659,051.00USD0
56320213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,076,899,108.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
56420213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService124,126,770.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
56520213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,886,812,909.00USD0
56620213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,118,659,051.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
56720213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService685,787,031.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
56820213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService65,054,570.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
56920213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService5,000,184.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
57020213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService24,710,829.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
57120213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService24,710,829.00USD0
57220213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService331,718,573.00USD0
57320213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService261,663,819.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
57420213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService385,790,589.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
57520213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,143,369,880.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
57620213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService690,787,215.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
57720213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService4,218,531,482.00USD0
57820213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,143,369,880.00USD0
57920213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,141,953,678.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
58020213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,141,953,678.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
58120213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility690,787,215.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
58220213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility690,787,215.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
58320213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
58420213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,218,531,482.00USD0
58520213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility385,790,589.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
58620213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,141,953,678.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
58720213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,218,531,482.00USD0
58820213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,218,531,482.00USD0
58920213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,218,531,482.00USD0
59020213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,218,531,482.00USD0
59120213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,218,531,482.00USD0
59220213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD0
59320213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD0
59420213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
59520213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD0
59620213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD0
59720213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
59820213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
59920213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD0
60020213QC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,143,369,880.00USD0
60120213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility385,790,589.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
60220213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,141,953,678.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
60320213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility690,787,215.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
60420213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,141,953,678.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
60520213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility690,787,215.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
60620213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility385,790,589.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
60720213QC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility385,790,589.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
60820212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,888,426,259.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
60920212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,051,515,043.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
61020212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified3,243,195,612.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
61120212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified12,802,123,752.00USD0
61220212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified8,507,413,097.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
61320212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,888,426,259.00USD0
61420212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases14,587,405.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
61520212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
61620212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
61720212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases14,587,405.00USD0
61820212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified80,233,758.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
61920212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified151,750,396.00USD0
62020212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified151,750,396.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
62120212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified262,381,506.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
62220212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified507,225,017.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
62320212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified849,840,281.00USD0
62420212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,131,748,801.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
62520212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified3,054,764,060.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
62620212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified13,667,145,137.00USD0
62720212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified3,054,764,060.00USD0
62820212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified9,029,819,218.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
62920212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified3,505,577,118.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
63020212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse17,193,417.00USD0
63120212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD0
63220212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
63320212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse9,998,245.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
63420212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,195,172.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
63520212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress419,539,046.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
63620212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress672,060,543.00USD0
63720212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress175,304,919.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
63820212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress106,406,549.00USD0
63920212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress77,216,578.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
64020212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress106,406,549.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
64120212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,314,248,892.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
64220212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress9,459,356,509.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
64320212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,582,793,696.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
64420212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,161,726,754.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
64520212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,161,726,754.00USD0
64620212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress14,356,399,097.00USD0
64720212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,163,276,935.00USD0
64820212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,124,126,701.00USD0
64920212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,163,276,935.00USD0
65020212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,124,126,701.00USD0
65120212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,105,842,910.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
65220212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility377,787,527.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
65320212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility377,787,527.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
65420212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility679,646,498.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
65520212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,105,842,910.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
65620212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,124,126,701.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
65720212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility679,646,498.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
65820212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,124,126,701.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
65920212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,903,147,198.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
66020212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet936,461,365.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
66120212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet10,193,122,162.00USD0
66220212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,037,600,053.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
66320212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,353,513,599.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
66420212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,037,600,053.00USD0
66520212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,100,846,603.00USD0
66620212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,849,939,808.00USD0
66720212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,100,846,603.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
66820212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService674,841,087.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
66920212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,044,354,518.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
67020212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService130,744,203.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
67120212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService23,280,098.00USD0
67220212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService61,488,392.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
67320212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService247,043,324.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
67420212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService313,337,127.00USD0
67520212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService23,280,098.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
67620212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService4,805,411.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
67720212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService377,787,527.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
67820212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService679,646,498.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
67920212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,105,842,910.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
68020212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,124,126,701.00USD0
68120212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,124,126,701.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
68220212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService4,163,276,935.00USD0
68320212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,124,126,701.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
68420212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility377,787,527.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
68520212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,105,842,910.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
68620212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility679,646,498.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
68720212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,124,126,701.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
68820212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,163,276,935.00USD0
68920212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,163,276,935.00USD0
69020212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,124,126,701.00USD0
69120212QC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,124,126,701.00USD0
69220212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility679,646,498.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
69320212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility377,787,527.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
69420212QC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,105,842,910.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
69520211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,861,487,227.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
69620211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified958,926,983.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
69720211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified8,410,916,026.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
69820211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified3,117,991,185.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
69920211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified12,487,834,194.00USD0
70020211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,861,487,227.00USD0
70120211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases14,788,221.00USD0
70220211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
70320211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
70420211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases14,788,221.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
70520211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified199,937,203.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
70620211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified290,354,120.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
70720211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified946,400,331.00USD0
70820211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified456,109,008.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
70920211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified167,642,099.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
71020211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified167,642,099.00USD0
71120211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified3,043,917,547.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
71220211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified3,043,917,547.00USD0
71320211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified3,408,345,305.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
71420211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,158,864,186.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
71520211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified8,882,206,138.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
71620211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified13,449,415,629.00USD0
71720211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse9,049,589.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
71820211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse16,244,505.00USD0
71920211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD0
72020211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
72120211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,194,916.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
72220211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress88,783,258.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
72320211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress426,097,088.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
72420211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress163,613,749.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
72520211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress678,494,095.00USD0
72620211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress95,347,797.00USD0
72720211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress95,347,797.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
72820211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,139,821,489.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
72920211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,139,821,489.00USD0
73020211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress14,144,154,229.00USD0
73120211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,497,128,563.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
73220211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress9,317,352,815.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
73320211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,329,672,851.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
73420211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility669,100,039.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
73520211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility394,927,920.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
73620211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,104,874,193.00USD0
73720211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,104,874,193.00USD0
73820211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,068,579,764.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
73920211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,104,874,193.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
74020211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,132,607,723.00USD0
74120211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility394,927,920.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
74220211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,068,579,764.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
74320211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility669,100,039.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
74420211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,132,607,723.00USD0
74520211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,104,874,193.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
74620211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet934,744,931.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
74720211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,248,773,051.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
74820211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet10,011,546,506.00USD0
74920211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,034,947,296.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
75020211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,828,028,524.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
75120211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,034,947,296.00USD0
75220211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService131,751,472.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
75320211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,009,800,708.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
75420211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,083,088,005.00USD0
75520211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,805,949,300.00USD0
75620211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService664,397,120.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
75720211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,083,088,005.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
75820211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService21,786,188.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
75920211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService263,176,448.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
76020211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService326,658,423.00USD0
76120211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService21,786,188.00USD0
76220211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService4,702,919.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
76320211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService58,779,056.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
76420211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService669,100,039.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
76520211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService4,132,607,723.00USD0
76620211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,104,874,193.00USD0
76720211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,104,874,193.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
76820211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,068,579,764.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
76920211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService394,927,920.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
77020211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,132,607,723.00USD0
77120211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility394,927,920.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
77220211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,104,874,193.00USD0
77320211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility394,927,920.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
77420211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,068,579,764.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
77520211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,104,874,193.00USD0
77620211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,132,607,723.00USD0
77720211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,068,579,764.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
77820211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,104,874,193.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
77920211QC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,104,874,193.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
78020211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility669,100,039.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
78120211QC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility669,100,039.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
7822020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified3,051,661,445.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
7832020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,838,241,583.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
7842020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified8,348,594,046.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
7852020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified946,656,796.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
7862020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,838,241,583.00USD0
7872020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified12,346,912,287.00USD0
7882020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
7892020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,377,739.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
7902020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,377,739.00USD0
7912020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
7922020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified158,678,106.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
7932020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified900,464,070.00USD0
7942020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified201,520,364.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
7952020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified435,256,378.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
7962020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified263,687,328.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
7972020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified158,678,106.00USD0
7982020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified3,012,297,428.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
7992020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified3,012,297,428.00USD0
8002020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified3,315,348,773.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
8012020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified13,262,557,461.00USD0
8022020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,148,177,160.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
8032020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified8,799,031,528.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
8042020YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress83,081,419.00USD0
8052020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse16,238,868.00USD0
8062020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse9,043,952.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
8072020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,194,916.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
8082020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD0
8092020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
8102020YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress628,881,305.00USD0
8112020YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11ConstructionWorkInProgress83,081,419.00USD0
8122020YC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress83,081,419.00USD0
8132020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress83,081,419.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
8142020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress103,058,522.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
8152020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress379,205,734.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
8162020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress146,617,049.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
8172020YC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress628,881,305.00USD0
8182020YC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress83,081,419.00USD0
8192020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress628,881,305.00USD0
8202020YC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress628,881,305.00USD0
8212020YC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress83,081,419.00USD0
8222020YC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress628,881,305.00USD0
8232020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress83,081,419.00USD0
8242020YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress13,907,677,634.00USD0
8252020YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,095,934,992.00USD0
8262020YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion13UtilityPlantAndConstructionWorkInProgress3,095,934,992.00USD0
8272020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,095,934,992.00USD0
8282020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,301,989,125.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
8292020YC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress13,907,677,634.00USD0
8302020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress9,187,281,214.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
8312020YC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,095,934,992.00USD0
8322020YC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress13,907,677,634.00USD0
8332020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,095,934,992.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
8342020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,418,407,295.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
8352020YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD0
8362020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress13,907,677,634.00USD0
8372020YC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,095,934,992.00USD0
8382020YC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,095,934,992.00USD0
8392020YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD0
8402020YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,050,027,604.00USD0
8412020YC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress13,907,677,634.00USD0
8422020YC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,050,027,604.00USD0
8432020YC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,050,027,604.00USD0
8442020YC001111Baltimore Gas and Electric Company459035200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet9,857,650,030.00USD0
8452020YC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,050,027,604.00USD0
8462020YC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD0
8472020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility653,954,287.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
8482020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,023,256,655.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
8492020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
8502020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
8512020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD0
8522020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD0
8532020YC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD0
8542020YC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,050,027,604.00USD0
8552020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility372,816,662.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
8562020YC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,050,027,604.00USD0
8572020YC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,050,027,604.00USD0
8582020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,050,027,604.00USD0
8592020YC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD0
8602020YC000533Kentucky Power Company477057200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,006,285,317.00USD0
8612020YC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD0
8622020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility653,954,287.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
8632020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility372,816,662.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
8642020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,023,256,655.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
8652020YC000533Kentucky Power Company460103200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15UtilityPlantNet2,006,285,317.00USD0
8662020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,050,027,604.00USD0
8672020YC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD0
8682020YC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD0
8692020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,164,024,559.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
8702020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,006,285,317.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
8712020YC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet9,857,650,030.00USD0
8722020YC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,006,285,317.00USD0
8732020YC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,006,285,317.00USD0
8742020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet9,857,650,030.00USD0
8752020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,006,285,317.00USD0
8762020YC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet9,857,650,030.00USD0
8772020YC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet9,857,650,030.00USD0
8782020YC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,006,285,317.00USD0
8792020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet929,172,463.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
8802020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,764,453,008.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
8812020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService649,346,864.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
8822020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,967,751,290.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
8832020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,740,668,371.00USD0
8842020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService123,570,217.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
8852020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,069,757,123.00USD0
8862020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,069,757,123.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
8872020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService309,359,233.00USD0
8882020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService19,892,552.00USD0
8892020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService4,607,423.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
8902020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService19,892,552.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
8912020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService55,505,365.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
8922020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService249,246,445.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
8932020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService4,050,027,604.00USD0
8942020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,089,649,675.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
8952020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,089,649,675.00USD0
8962020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService653,954,287.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
8972020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService372,816,662.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
8982020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,023,256,655.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
8992020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,023,256,655.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
9002020YC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,050,027,604.00USD0
9012020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility653,954,287.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
9022020YC001111Baltimore Gas and Electric Company458417200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,050,027,604.00USD0
9032020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,050,027,604.00USD0
9042020YC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD0
9052020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility372,816,662.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
9062020YC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD0
9072020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD0
9082020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,023,256,655.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
9092020YC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD0
9102020YC000533Kentucky Power Company428675200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD0
9112020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD0
9122020YC000533Kentucky Power Company428674200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD0
9132020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,050,027,604.00USD0
9142020YC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,050,027,604.00USD0
9152020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
9162020YC000533Kentucky Power Company458698200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD0
9172020YC001111Baltimore Gas and Electric Company428532200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,050,027,604.00USD0
9182020YC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,050,027,604.00USD0
9192020YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,089,649,675.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
9202020YC001111Baltimore Gas and Electric Company428531200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility4,050,027,604.00USD0
9212020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility653,954,287.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
9222020YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility372,816,662.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
92320203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,816,594,859.00USD0
92420203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified8,269,859,859.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
92520203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,963,105,982.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
92620203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified12,096,075,334.00USD0
92720203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified863,109,493.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
92820203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,816,594,859.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
92920203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
93020203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases14,604,697.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
93120203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
93220203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases14,604,697.00USD0
93320203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified202,102,378.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
93420203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified244,522,643.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
93520203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified328,297,724.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
93620203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified774,922,745.00USD0
93720203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified135,970,217.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
93820203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified135,970,217.00USD0
93920203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified3,207,628,625.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
94020203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,065,211,871.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
94120203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified8,613,338,687.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
94220203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified12,886,179,183.00USD0
94320203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,967,169,773.00USD0
94420203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,967,169,773.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
94520203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD0
94620203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse11,131,242.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
94720203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse18,291,297.00USD0
94820203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,160,055.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
94920203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
95020203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress116,283,281.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
95120203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress598,000,613.00USD0
95220203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress103,639,018.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
95320203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress113,351,242.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
95420203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress368,366,090.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
95520203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress103,639,018.00USD0
95620203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,071,364,936.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
95720203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,185,723,168.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
95820203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,071,364,936.00USD0
95920203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,992,836,019.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
96020203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress13,502,471,093.00USD0
96120203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,323,911,906.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
96220203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,996,220,733.00USD0
96320203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility644,043,572.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
96420203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,075,930,264.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
96520203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,075,930,264.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
96620203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,996,220,733.00USD0
96720203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility355,279,262.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
96820203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility355,279,262.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
96920203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,996,897,899.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
97020203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility644,043,572.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
97120203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,996,897,899.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
97220203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,075,930,264.00USD0
97320203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,075,930,264.00USD0
97420203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet9,506,250,360.00USD0
97520203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,995,434,672.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
97620203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet830,443,906.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
97720203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,995,434,672.00USD0
97820203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,995,938,120.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
97920203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,679,868,334.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
98020203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,943,594,368.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
98120203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService119,732,732.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
98220203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,054,001,822.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
98320203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,702,858,746.00USD0
98420203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,054,001,822.00USD0
98520203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService639,531,646.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
98620203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService53,303,531.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
98720203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService21,928,442.00USD0
98820203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService21,928,442.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
98920203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService4,511,926.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
99020203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService235,546,530.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
99120203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService293,361,987.00USD0
99220203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService355,279,262.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
99320203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,075,930,264.00USD0
99420203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService644,043,572.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
99520203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,075,930,264.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
99620203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,996,897,899.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
99720203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,996,220,733.00USD0
99820203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,996,897,899.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
99920203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility644,043,572.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
100020203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,075,930,264.00USD0
100120203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,996,220,733.00USD0
100220203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,075,930,264.00USD0
100320203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,996,220,733.00USD0
100420203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,996,897,899.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
100520203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility355,279,262.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
100620203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,075,930,264.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
100720203QC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,075,930,264.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
100820203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility355,279,262.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
100920203QC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility644,043,572.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
101020202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,800,464,090.00USD0
101120202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,860,567,925.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
101220202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified11,910,309,884.00USD0
101320202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,800,464,090.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
101420202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified8,193,326,641.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
101520202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified856,415,318.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
101620202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
101720202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases14,749,095.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
101820202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases14,749,095.00USD0
101920202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
102020202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified334,746,771.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
102120202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified267,294,546.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
102220202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified134,704,833.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
102320202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified129,274,768.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
102420202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified129,274,768.00USD0
102520202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified736,746,150.00USD0
102620202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified12,662,237,138.00USD0
102720202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,944,487,953.00USD0
102820202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,944,487,953.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
102920202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified991,120,151.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
103020202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified3,127,862,471.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
103120202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified8,543,254,516.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
103220202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse11,060,777.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
103320202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
103420202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,136,388.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
103520202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD0
103620202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse18,197,165.00USD0
103720202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress552,690,874.00USD0
103820202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress98,598,367.00USD0
103920202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress306,891,334.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
104020202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress98,598,367.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
104120202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress139,179,937.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
104220202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress106,619,603.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
104320202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,043,642,465.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
104420202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,234,482,074.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
104520202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,043,642,465.00USD0
104620202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,861,206,627.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
104720202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress13,233,125,177.00USD0
104820202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,137,436,476.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
104920202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,058,401,693.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
105020202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,962,447,058.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
105120202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility636,596,362.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
105220202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,946,132,044.00USD0
105320202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,946,132,044.00USD0
105420202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility636,596,362.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
105520202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility347,088,624.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
105620202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,058,401,693.00USD0
105720202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,058,401,693.00USD0
105820202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility347,088,624.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
105920202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,058,401,693.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
106020202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,962,447,058.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
106120202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet9,286,993,133.00USD0
106220202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,898,759,569.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
106320202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet790,347,852.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
106420202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,597,885,712.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
106520202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,985,240,772.00USD0
106620202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,985,240,772.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
106720202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,037,433,729.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
106820202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService123,947,881.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
106920202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService632,180,573.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
107020202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,037,433,729.00USD0
107120202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,667,475,749.00USD0
107220202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,911,347,295.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
107320202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService20,967,964.00USD0
107420202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService278,656,295.00USD0
107520202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService51,099,763.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
107620202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService4,415,789.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
107720202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService223,140,743.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
107820202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService20,967,964.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
107920202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,058,401,693.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
108020202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,962,447,058.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
108120202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,946,132,044.00USD0
108220202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService347,088,624.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
108320202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService636,596,362.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
108420202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,058,401,693.00USD0
108520202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,058,401,693.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
108620202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,058,401,693.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
108720202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,058,401,693.00USD0
108820202QC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,058,401,693.00USD0
108920202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility636,596,362.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
109020202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,962,447,058.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
109120202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility347,088,624.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
109220202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility347,088,624.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
109320202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,962,447,058.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
109420202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility636,596,362.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
109520202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,946,132,044.00USD0
109620202QC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,946,132,044.00USD0
109720201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified8,141,910,564.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
109820201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,776,353,102.00USD0
109920201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,776,353,102.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
110020201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,773,594,539.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
110120201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified866,064,085.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
110220201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified11,781,569,188.00USD0
110320201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
110420201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
110520201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases14,527,379.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
110620201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases14,527,379.00USD0
110720201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified697,870,488.00USD0
110820201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified255,159,561.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
110920201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified150,047,638.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
111020201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified127,452,907.00USD0
111120201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified292,663,289.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
111220201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified127,452,907.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
111320201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified12,494,620,780.00USD0
111420201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,918,333,388.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
111520201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified8,412,251,229.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
111620201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified3,066,257,828.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
111720201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,918,333,388.00USD0
111820201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,016,111,723.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
111920201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse11,057,345.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
112020201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse18,175,289.00USD0
112120201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD0
112220201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
112320201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,117,944.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
112420201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress313,289,951.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
112520201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress91,315,237.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
112620201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress121,049,923.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
112720201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress91,925,130.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
112820201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress525,655,111.00USD0
112920201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress91,925,130.00USD0
113020201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,010,814,663.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
113120201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress13,038,451,180.00USD0
113220201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,144,279,590.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
113320201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,157,573,065.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
113420201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,736,598,525.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
113520201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,010,814,663.00USD0
113620201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,042,447,402.00USD0
113720201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,042,447,402.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
113820201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility631,253,638.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
113920201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,042,447,402.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
114020201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,042,447,402.00USD0
114120201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility369,749,721.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
114220201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,943,174,143.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
114320201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,943,174,143.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
114420201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,944,177,502.00USD0
114520201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility631,253,638.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
114620201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility369,749,721.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
114720201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,944,177,502.00USD0
114820201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,968,367,261.00USD0
114920201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,793,424,382.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
115020201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,968,367,261.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
115120201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet9,094,273,678.00USD0
115220201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,526,319,427.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
115320201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet774,529,869.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
115420201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService625,767,251.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
115520201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,880,555,440.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
115620201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,022,475,585.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
115720201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,622,486,419.00USD0
115820201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,022,475,585.00USD0
115920201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService116,163,728.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
116020201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService19,971,817.00USD0
116120201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService19,971,817.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
116220201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService62,618,703.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
116320201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService253,585,993.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
116420201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService321,691,083.00USD0
116520201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService5,486,387.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
116620201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService631,253,638.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
116720201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,943,174,143.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
116820201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,042,447,402.00USD0
116920201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,042,447,402.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
117020201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,944,177,502.00USD0
117120201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService369,749,721.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
117220201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,042,447,402.00USD0
117320201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,042,447,402.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
117420201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,042,447,402.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
117520201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility631,253,638.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
117620201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility369,749,721.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
117720201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,943,174,143.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
117820201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility631,253,638.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
117920201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,943,174,143.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
118020201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility369,749,721.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
118120201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,944,177,502.00USD0
118220201QC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,944,177,502.00USD0
118320201QC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,042,447,402.00USD0
11842019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,739,638,353.00USD0
11852019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified11,532,605,526.00USD0
11862019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,739,638,353.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
11872019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified7,984,229,842.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
11882019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,706,983,907.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
11892019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified841,391,777.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
11902019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases13,430,460.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
11912019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
11922019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases13,430,460.00USD0
11932019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
11942019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified292,064,095.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
11952019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified152,035,841.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
11962019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified770,904,643.00USD0
11972019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified126,603,498.00USD0
11982019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified126,603,498.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
11992019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified326,804,707.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12002019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified8,326,215,653.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12012019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,879,672,311.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12022019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified993,427,618.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
12032019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,879,672,311.00USD0
12042019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified12,318,691,273.00USD0
12052019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,999,048,002.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
12062019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12072019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse11,057,345.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12082019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse11,756,554.00USD0
12092019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD0
12102019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse699,209.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
12112019YC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress98,671,345.00USD0
12122019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress112,966,848.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
12132019YC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress485,243,940.00USD0
12142019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress485,243,940.00USD0
12152019YC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress98,671,345.00USD0
12162019YC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress485,243,940.00USD0
12172019YC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress98,671,345.00USD0
12182019YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress485,243,940.00USD0
12192019YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress98,671,345.00USD0
12202019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress86,383,936.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
12212019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress98,671,345.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12222019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress285,893,156.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12232019YC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress485,243,940.00USD0
12242019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress98,671,345.00USD0
12252019YC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,978,899,801.00USD0
12262019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,107,093,675.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
12272019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,085,431,938.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
12282019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,623,166,154.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12292019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress12,815,691,767.00USD0
12302019YC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,978,899,801.00USD0
12312019YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,978,899,801.00USD0
12322019YC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress12,815,691,767.00USD0
12332019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,978,899,801.00USD0
12342019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,978,899,801.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12352019YC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress12,815,691,767.00USD0
12362019YC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress12,815,691,767.00USD0
12372019YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress12,815,691,767.00USD0
12382019YC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,978,899,801.00USD0
12392019YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
12402019YC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
12412019YC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
12422019YC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
12432019YC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
12442019YC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
12452019YC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
12462019YC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
12472019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12482019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12492019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
12502019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,906,448,328.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12512019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility625,089,720.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
12522019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility350,542,408.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
12532019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
12542019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility625,089,720.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
12552019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,906,448,328.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12562019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility350,542,408.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
12572019YC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
12582019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
12592019YC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
12602019YC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
12612019YC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
12622019YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
12632019YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
12642019YC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
12652019YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
12662019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
12672019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,716,717,826.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12682019YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,952,733,609.00USD0
12692019YC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,952,733,609.00USD0
12702019YC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,952,733,609.00USD0
12712019YC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,952,733,609.00USD0
12722019YC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet8,933,611,311.00USD0
12732019YC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet8,933,611,311.00USD0
12742019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,460,342,218.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
12752019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet756,551,267.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
12762019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,952,733,609.00USD0
12772019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,952,733,609.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12782019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet8,933,611,311.00USD0
12792019YC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet8,933,611,311.00USD0
12802019YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet8,933,611,311.00USD0
12812019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,006,542,436.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12822019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,576,113,416.00USD0
12832019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,846,393,595.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12842019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,006,542,436.00USD0
12852019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService110,023,050.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
12862019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService619,696,771.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
12872019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService19,623,756.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12882019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService60,054,733.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12892019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService5,392,949.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
12902019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService240,519,358.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
12912019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService305,967,040.00USD0
12922019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService19,623,756.00USD0
12932019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,026,166,192.00USD0
12942019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,026,166,192.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12952019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,882,080,456.00USD0
12962019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService625,089,720.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
12972019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService350,542,408.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
12982019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,906,448,328.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
12992019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
13002019YC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
13012019YC000533Kentucky Power Company428352200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
13022019YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
13032019YC000533Kentucky Power Company482694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
13042019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
13052019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
13062019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
13072019YC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
13082019YC001111Baltimore Gas and Electric Company428144200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
13092019YC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
13102019YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
13112019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
13122019YC000533Kentucky Power Company428351200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
13132019YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
13142019YC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
13152019YC001111Baltimore Gas and Electric Company428145200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
13162019YC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
13172019YC000533Kentucky Power Company428353200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,026,166,192.00USD0
13182019YC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
13192019YC001111Baltimore Gas and Electric Company428143200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
13202019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,906,448,328.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
13212019YC001111Baltimore Gas and Electric Company482634200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,882,080,456.00USD0
13222019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility625,089,720.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
13232019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility350,542,408.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
13242019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility625,089,720.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
13252019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,906,448,328.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
13262019YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility350,542,408.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
132720193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,729,798,942.00USD0
132820193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified7,894,274,454.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
132920193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,622,256,744.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
133020193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified813,451,372.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
133120193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified11,329,982,570.00USD0
133220193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,729,798,942.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
133320193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases12,949,776.00USD0
133420193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
133520193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
133620193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases12,949,776.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
133720193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified56,464,708.00USD0
133820193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified56,464,708.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
133920193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified653,840,195.00USD0
134020193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified250,433,039.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
134120193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified304,851,819.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
134220193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified98,555,337.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
134320193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified11,999,003,869.00USD0
134420193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,799,213,426.00USD0
134520193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified8,159,888,597.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
134620193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,799,213,426.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
134720193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified912,006,709.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
134820193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,927,108,563.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
134920193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD0
135020193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse11,756,554.00USD0
135120193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse11,057,345.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
135220193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse699,209.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
135320193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
135420193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress133,192,934.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
135520193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress324,262,118.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
135620193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress545,358,082.00USD0
135720193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress133,192,934.00USD0
135820193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress141,209,873.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
135920193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress79,886,091.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
136020193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,053,915,791.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
136120193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,932,962,505.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
136220193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,932,962,505.00USD0
136320193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,495,208,060.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
136420193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress12,556,118,505.00USD0
136520193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,006,994,654.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
136620193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,883,913,727.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
136720193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,883,913,727.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
136820193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,012,486,761.00USD0
136920193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,012,486,761.00USD0
137020193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,833,415,550.00USD0
137120193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility329,759,146.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
137220193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility619,742,677.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
137320193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,012,486,761.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
137420193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,012,486,761.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
137520193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,833,415,550.00USD0
137620193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility619,742,677.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
137720193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility329,759,146.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
137820193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,920,475,744.00USD0
137920193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet8,722,702,955.00USD0
138020193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,920,475,744.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
138120193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,387,251,977.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
138220193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet724,156,645.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
138320193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,611,294,333.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
138420193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService993,159,631.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
138520193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService993,159,631.00USD0
138620193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,542,964,416.00USD0
138720193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService614,531,431.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
138820193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService102,080,442.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
138920193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,826,352,543.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
139020193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService290,451,134.00USD0
139120193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService227,678,704.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
139220193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService19,327,130.00USD0
139320193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService57,561,184.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
139420193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService5,211,246.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
139520193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService19,327,130.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
139620193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,833,415,550.00USD0
139720193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,012,486,761.00USD0
139820193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,012,486,761.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
139920193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService329,759,146.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
140020193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService619,742,677.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
140120193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,883,913,727.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
140220193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,883,913,727.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
140320193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,833,415,550.00USD0
140420193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility329,759,146.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
140520193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,012,486,761.00USD0
140620193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility329,759,146.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
140720193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,883,913,727.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
140820193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility619,742,677.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
140920193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,833,415,550.00USD0
141020193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,012,486,761.00USD0
141120193QC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility619,742,677.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
141220193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,012,486,761.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
141320193QC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,012,486,761.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
141420192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified7,648,529,927.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
141520192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,706,683,008.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
141620192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified10,963,223,075.00USD0
141720192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,706,683,008.00USD0
141820192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,523,580,058.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
141920192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified791,113,090.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
142020192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
142120192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
142220192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases12,126,941.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
142320192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases12,126,941.00USD0
142420192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified800,719,749.00USD0
142520192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified92,263,734.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
142620192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified423,351,363.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
142720192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified285,104,652.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
142820192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified56,463,604.00USD0
142920192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified56,463,604.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
143020192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,808,684,710.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
143120192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,775,273,553.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
143220192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,775,273,553.00USD0
143320192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified11,779,123,928.00USD0
143420192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified8,087,062,394.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
143520192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified883,376,824.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
143620192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse979,757.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
143720192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse11,057,345.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
143820192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
143920192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD0
144020192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse12,037,102.00USD0
144120192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress123,334,130.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
144220192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress116,560,268.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
144320192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress275,580,771.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
144420192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress116,560,268.00USD0
144520192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress129,358,145.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
144620192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress528,273,046.00USD0
144720192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress12,319,434,076.00USD0
144820192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,013,714,726.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
144920192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,892,389,966.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
145020192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,892,389,966.00USD0
145120192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,373,700,510.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
145220192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,932,018,840.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
145320192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility996,096,234.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
145420192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility996,096,234.00USD0
145520192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility996,096,234.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
145620192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,791,184,260.00USD0
145720192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,791,184,260.00USD0
145820192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility320,282,789.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
145920192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility996,096,234.00USD0
146020192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility619,176,506.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
146120192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,851,724,965.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
146220192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility320,282,789.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
146320192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility619,176,506.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
146420192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,851,724,965.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
146520192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet8,528,249,816.00USD0
146620192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,312,842,334.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
146720192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,896,293,732.00USD0
146820192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet693,431,937.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
146920192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,896,293,732.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
147020192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,521,975,545.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
147120192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService614,188,737.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
147220192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,513,427,171.00USD0
147320192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService102,652,628.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
147420192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,796,585,806.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
147520192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService977,443,807.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
147620192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService977,443,807.00USD0
147720192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService18,652,427.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
147820192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService277,757,089.00USD0
147920192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService217,630,161.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
148020192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService55,139,159.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
148120192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService4,987,769.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
148220192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService18,652,427.00USD0
148320192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,851,724,965.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
148420192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService320,282,789.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
148520192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService619,176,506.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
148620192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService996,096,234.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
148720192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,791,184,260.00USD0
148820192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService996,096,234.00USD0
148920192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility619,176,506.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
149020192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility996,096,234.00USD0
149120192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility996,096,234.00USD0
149220192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility996,096,234.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
149320192QC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility996,096,234.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
149420192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,791,184,260.00USD0
149520192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,791,184,260.00USD0
149620192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,851,724,965.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
149720192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility619,176,506.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
149820192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility320,282,789.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
149920192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,851,724,965.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
150020192QC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility320,282,789.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
150120191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified7,572,970,794.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
150220191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,476,016,152.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
150320191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified767,420,031.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
150420191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,689,711,495.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
150520191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,689,711,495.00USD0
150620191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified10,816,406,977.00USD0
150720191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
150820191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
150920191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases12,663,827.00USD0
151020191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases12,663,827.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
151120191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified54,338,237.00USD0
151220191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified54,338,237.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
151320191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified218,518,455.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
151420191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified731,240,992.00USD0
151520191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified409,316,103.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
151620191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified103,406,434.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
151720191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified7,997,468,001.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
151820191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified11,562,829,073.00USD0
151920191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,756,713,559.00USD0
152020191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,756,713,559.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
152120191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified870,826,465.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
152220191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,694,534,607.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
152320191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD0
152420191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse11,057,345.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
152520191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
152620191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse12,037,102.00USD0
152720191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse979,757.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
152820191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress490,016,414.00USD0
152920191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress101,682,802.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
153020191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress246,579,772.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
153120191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress97,511,733.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
153220191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress97,511,733.00USD0
153320191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress141,753,840.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
153420191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,836,288,447.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
153520191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress12,064,882,589.00USD0
153620191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,854,781,437.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
153720191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,255,105,118.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
153820191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress973,489,024.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
153920191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,854,781,437.00USD0
154020191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility615,832,936.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
154120191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility315,250,337.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
154220191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,825,644,848.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
154320191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility615,832,936.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
154420191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility983,577,028.00USD0
154520191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,825,644,848.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
154620191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility315,250,337.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
154720191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility983,577,028.00USD0
154820191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,756,728,121.00USD0
154920191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,756,728,121.00USD0
155020191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility983,577,028.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
155120191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility983,577,028.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
155220191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,220,455,511.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
155320191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,429,460,270.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
155420191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet658,238,687.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
155520191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,871,204,409.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
155620191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet8,308,154,468.00USD0
155720191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,871,204,409.00USD0
155820191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService965,488,882.00USD0
155920191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService611,085,361.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
156020191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,777,690,038.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
156120191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,484,379,543.00USD0
156220191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService965,488,882.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
156320191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService95,604,144.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
156420191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService18,088,146.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
156520191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService219,646,193.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
156620191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService4,747,575.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
156720191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService47,954,810.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
156820191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService18,088,146.00USD0
156920191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService272,348,578.00USD0
157020191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService983,577,028.00USD0
157120191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService615,832,936.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
157220191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,825,644,848.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
157320191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService983,577,028.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
157420191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,756,728,121.00USD0
157520191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService315,250,337.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
157620191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,756,728,121.00USD0
157720191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility315,250,337.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
157820191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,825,644,848.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
157920191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility615,832,936.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
158020191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility615,832,936.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
158120191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,825,644,848.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
158220191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility315,250,337.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
158320191QC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,756,728,121.00USD0
158420191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility983,577,028.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
158520191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility983,577,028.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
158620191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility983,577,028.00USD0
158720191QC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility983,577,028.00USD0
15882018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,663,723,224.00USD0
15892018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified7,298,441,422.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
15902018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,663,723,224.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
15912018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified743,511,829.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
15922018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified10,398,413,896.00USD0
15932018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,356,460,645.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
15942018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,531,312.00USD0
15952018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,531,312.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
15962018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
15972018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
15982018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified1,027,507,408.00USD0
15992018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified116,952,423.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
16002018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified637,116,886.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16012018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified65,401,324.00USD0
16022018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified65,401,324.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16032018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified273,438,099.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
16042018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified860,464,252.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
16052018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified7,950,739,412.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16062018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,731,655,860.00USD0
16072018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified11,441,102,408.00USD0
16082018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,731,655,860.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16092018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,629,898,744.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
16102018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse11,994,328.00USD0
16112018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse960,087.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
16122018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse11,034,241.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16132018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD0
16142018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16152018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress94,670,613.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
16162018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress84,747,789.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16172018YC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress410,122,862.00USD0
16182018YC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress410,122,862.00USD0
16192018YC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress84,747,789.00USD0
16202018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress113,110,325.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
16212018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress202,341,924.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16222018YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress84,747,789.00USD0
16232018YC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress84,747,789.00USD0
16242018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress84,747,789.00USD0
16252018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress410,122,862.00USD0
16262018YC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress84,747,789.00USD0
16272018YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress410,122,862.00USD0
16282018YC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress410,122,862.00USD0
16292018YC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress11,863,219,598.00USD0
16302018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,164,115,577.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16312018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,816,959,794.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16322018YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress11,863,219,598.00USD0
16332018YC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,816,959,794.00USD0
16342018YC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,816,959,794.00USD0
16352018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress956,094,952.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
16362018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,743,009,069.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
16372018YC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress11,863,219,598.00USD0
16382018YC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress11,863,219,598.00USD0
16392018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,816,959,794.00USD0
16402018YC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,816,959,794.00USD0
16412018YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,816,959,794.00USD0
16422018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress11,863,219,598.00USD0
16432018YC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
16442018YC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
16452018YC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
16462018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
16472018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
16482018YC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
16492018YC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
16502018YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
16512018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
16522018YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
16532018YC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
16542018YC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
16552018YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
16562018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
16572018YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
16582018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility304,041,160.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
16592018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility609,182,408.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
16602018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,812,929,695.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16612018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,812,929,695.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16622018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility609,182,408.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
16632018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility304,041,160.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
16642018YC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
16652018YC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
16662018YC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
16672018YC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
16682018YC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
16692018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16702018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16712018YC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet8,137,066,335.00USD0
16722018YC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,847,924,548.00USD0
16732018YC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,847,924,548.00USD0
16742018YC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,847,924,548.00USD0
16752018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet652,053,792.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
16762018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,133,826,661.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
16772018YC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet8,137,066,335.00USD0
16782018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,847,924,548.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16792018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,351,185,882.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16802018YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet8,137,066,335.00USD0
16812018YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,847,924,548.00USD0
16822018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet8,137,066,335.00USD0
16832018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,847,924,548.00USD0
16842018YC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet8,137,066,335.00USD0
16852018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService95,760,744.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
16862018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,766,434,204.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16872018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService951,795,075.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16882018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService951,795,075.00USD0
16892018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,466,876,299.00USD0
16902018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService604,681,351.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
16912018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService17,240,171.00USD0
16922018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService208,280,416.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
16932018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService4,501,057.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
16942018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService259,276,964.00USD0
16952018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService17,240,171.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16962018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService46,495,491.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16972018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService969,035,246.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
16982018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService304,041,160.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
16992018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,726,153,263.00USD0
17002018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService609,182,408.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
17012018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,812,929,695.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
17022018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService969,035,246.00USD0
17032018YC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
17042018YC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
17052018YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
17062018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
17072018YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
17082018YC000533Kentucky Power Company427510200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
17092018YC000533Kentucky Power Company427989200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
17102018YC001111Baltimore Gas and Electric Company427916200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
17112018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
17122018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility304,041,160.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
17132018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility609,182,408.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
17142018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,812,929,695.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
17152018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,812,929,695.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
17162018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility609,182,408.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
17172018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility304,041,160.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
17182018YC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
17192018YC000533Kentucky Power Company427509200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
17202018YC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
17212018YC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
17222018YC001111Baltimore Gas and Electric Company427322200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
17232018YC001111Baltimore Gas and Electric Company427323200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
17242018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
17252018YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
17262018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
17272018YC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
17282018YC001111Baltimore Gas and Electric Company427324200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
17292018YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,726,153,263.00USD0
17302018YC000533Kentucky Power Company427508200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility969,035,246.00USD0
173120183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified737,616,008.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
173220183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,650,187,721.00USD0
173320183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,284,552,670.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
173420183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified7,077,460,601.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
173520183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified10,099,629,279.00USD0
173620183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,650,187,721.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
173720183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
173820183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
173920183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,271,615.00USD0
174020183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,271,615.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
174120183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified691,797,035.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
174220183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified95,406,033.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
174320183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified1,046,288,056.00USD0
174420183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified259,084,988.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
174520183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified44,660,135.00USD0
174620183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified44,660,135.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
174720183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,697,119,471.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
174820183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified7,784,438,740.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
174920183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,697,119,471.00USD0
175020183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified833,022,041.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
175120183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified11,161,098,439.00USD0
175220183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,543,637,658.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
175320183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse11,449,314.00USD0
175420183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD0
175520183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse10,750,105.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
175620183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse556,145.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
175720183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse699,209.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
175820183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress111,084,647.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
175920183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress76,560,819.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
176020183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress245,375,311.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
176120183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress433,020,777.00USD0
176220183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress90,883,232.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
176320183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress90,883,232.00USD0
176420183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress11,605,568,530.00USD0
176520183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,040,564,156.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
176620183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress910,282,069.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
176720183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,788,558,848.00USD0
176820183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,654,722,305.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
176920183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,788,558,848.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
177020183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility606,274,174.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
177120183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility960,834,299.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
177220183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility286,962,467.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
177320183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility960,834,299.00USD0
177420183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,789,065,545.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
177520183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,789,065,545.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
177620183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility960,834,299.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
177720183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility960,834,299.00USD0
177820183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,682,302,186.00USD0
177920183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility286,962,467.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
178020183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility606,274,174.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
178120183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,682,302,186.00USD0
178220183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet623,319,602.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
178320183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,827,724,549.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
178420183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,827,724,549.00USD0
178520183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet7,923,266,344.00USD0
178620183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,251,498,611.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
178720183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet2,048,448,131.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
178820183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService88,798,127.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
178920183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,744,498,656.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
179020183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,435,297,340.00USD0
179120183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService944,049,519.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
179220183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService944,049,519.00USD0
179320183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService602,000,557.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
179420183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService247,004,846.00USD0
179520183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService44,566,889.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
179620183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService16,713,322.00USD0
179720183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService16,713,322.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
179820183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService198,164,340.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
179920183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService4,273,617.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
180020183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService286,962,467.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
180120183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService960,762,841.00USD0
180220183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService960,762,841.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
180320183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,682,302,186.00USD0
180420183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,789,065,545.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
180520183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService606,274,174.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
180620183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion29DepreciationUtilityPlantHeldForFutureUse71,458.00USD0
180720183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion29DepreciationUtilityPlantHeldForFutureUse71,458.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
180820183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion31DepreciationAndAmortizationUtilityPlantHeldForFutureUse71,458.00USD0
180920183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion31DepreciationAndAmortizationUtilityPlantHeldForFutureUse71,458.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
181020183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility960,834,299.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
181120183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,682,302,186.00USD0
181220183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,682,302,186.00USD0
181320183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility606,274,174.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
181420183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,789,065,545.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
181520183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility286,962,467.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
181620183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,789,065,545.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
181720183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility286,962,467.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
181820183QC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility606,274,174.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
181920183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility960,834,299.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
182020183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility960,834,299.00USD0
182120183QC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility960,834,299.00USD0
182220182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified729,117,951.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
182320182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,245,883,599.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
182420182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,636,082,776.00USD0
182520182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,636,082,776.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
182620182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified9,994,939,403.00USD0
182720182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified7,019,937,853.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
182820182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,439,275.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
182920182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,105.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
183020182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,105.00USD0
183120182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,439,275.00USD0
183220182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified40,996,505.00USD0
183320182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified602,507,682.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
183420182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified907,900,840.00USD0
183520182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified40,996,505.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
183620182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified237,266,043.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
183720182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified68,127,115.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
183820182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,483,149,642.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
183920182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,679,518,556.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
184020182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,679,518,556.00USD0
184120182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified797,245,066.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
184220182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified7,637,626,640.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
184320182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified10,918,021,348.00USD0
184420182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse627,604.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
184520182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse687,553.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
184620182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse627,604.00USD0
184720182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse10,750,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
184820182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse11,437,657.00USD0
184920182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress87,791,868.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
185020182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress269,433,855.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
185120182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress93,565,051.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
185220182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress450,790,774.00USD0
185320182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress80,196,401.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
185420182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress80,196,401.00USD0
185520182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,760,342,561.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
185620182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,917,810,599.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
185720182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,760,342,561.00USD0
185820182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,570,941,510.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
185920182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress891,497,670.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
186020182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress11,380,249,779.00USD0
186120182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility278,671,641.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
186220182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,822,496.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
186320182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility944,676,442.00USD0
186420182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,763,716,283.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
186520182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,641,210,420.00USD0
186620182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,641,210,420.00USD0
186720182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility944,676,442.00USD0
186820182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility944,676,442.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
186920182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility944,676,442.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
187020182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,822,496.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
187120182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,763,716,283.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
187220182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility278,671,641.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
187320182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet7,739,039,359.00USD0
187420182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,815,666,119.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
187520182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet612,826,029.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
187620182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,154,094,316.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
187720182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,815,666,119.00USD0
187820182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,972,119,014.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
187920182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,406,407,079.00USD0
188020182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService929,303,411.00USD0
188120182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService594,773,880.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
188220182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService929,303,411.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
188320182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService90,528,815.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
188420182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,721,104,384.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
188520182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService15,373,031.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
188620182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService234,803,341.00USD0
188720182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService42,611,899.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
188820182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService188,142,826.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
188920182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService4,048,616.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
189020182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService15,373,031.00USD0
189120182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService278,671,641.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
189220182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService598,822,496.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
189320182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService944,676,442.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
189420182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService944,676,442.00USD0
189520182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,641,210,420.00USD0
189620182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,763,716,283.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
189720182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility278,671,641.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
189820182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,763,716,283.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
189920182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility944,676,442.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
190020182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,641,210,420.00USD0
190120182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility278,671,641.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
190220182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,641,210,420.00USD0
190320182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,763,716,283.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
190420182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility944,676,442.00USD0
190520182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,822,496.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
190620182QC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,822,496.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
190720182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility944,676,442.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
190820182QC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility944,676,442.00USD0
190920181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified6,969,791,396.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
191020181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,180,955,610.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
191120181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified716,583,328.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
191220181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,616,043,722.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
191320181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,616,043,722.00USD0
191420181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified9,867,330,334.00USD0
191520181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,552,666.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
191620181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,552,666.00USD0
191720181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
191820181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
191920181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified879,058,704.00USD0
192020181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified247,848,479.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
192120181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified43,621,349.00USD0
192220181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified69,333,551.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
192320181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified561,876,674.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
192420181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified43,621,349.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
192520181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,662,217,737.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
192620181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,662,217,737.00USD0
192720181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified10,761,570,142.00USD0
192820181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,428,804,089.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
192920181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified7,546,849,174.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
193020181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified785,916,879.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
193120181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse627,604.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
193220181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse627,604.00USD0
193320181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse12,149,719.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
193420181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse678,705.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
193520181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse12,828,424.00USD0
193620181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress65,533,970.00USD0
193720181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress68,113,991.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
193820181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress259,146,722.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
193920181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress83,266,747.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
194020181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress65,533,970.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
194120181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress410,527,460.00USD0
194220181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,496,918,080.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
194320181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,728,379,311.00USD0
194420181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,818,145,615.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
194520181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress869,862,331.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
194620181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress11,184,926,026.00USD0
194720181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,728,379,311.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
194820181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility269,203,985.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
194920181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility932,400,073.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
195020181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,593,326,551.00USD0
195120181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,593,326,551.00USD0
195220181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility932,400,073.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
195320181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,732,436,826.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
195420181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility591,685,740.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
195520181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility591,685,740.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
195620181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility932,400,073.00USD0
195720181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility932,400,073.00USD0
195820181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,732,436,826.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
195920181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility269,203,985.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
196020181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,795,979,238.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
196120181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,795,979,238.00USD0
196220181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,905,232,340.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
196320181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet7,591,599,475.00USD0
196420181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet600,658,346.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
196520181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,085,708,789.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
196620181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService84,425,073.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
196720181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService918,312,835.00USD0
196820181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,363,556,945.00USD0
196920181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService918,312,835.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
197020181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,691,269,746.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
197120181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService587,862,126.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
197220181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService3,823,614.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
197320181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService41,167,080.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
197420181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService184,778,912.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
197520181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService14,087,238.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
197620181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService229,769,606.00USD0
197720181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService14,087,238.00USD0
197820181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService269,203,985.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
197920181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,732,436,826.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
198020181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService932,400,073.00USD0
198120181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService591,685,740.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
198220181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService932,400,073.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
198320181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,593,326,551.00USD0
198420181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility932,400,073.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
198520181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,732,436,826.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
198620181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility932,400,073.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
198720181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility269,203,985.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
198820181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility591,685,740.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
198920181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,732,436,826.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
199020181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility932,400,073.00USD0
199120181QC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility932,400,073.00USD0
199220181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility269,203,985.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
199320181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility591,685,740.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
199420181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,593,326,551.00USD0
199520181QC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,593,326,551.00USD0
19962017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified9,751,579,615.00USD0
19972017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,142,662,960.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
19982017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,605,685,431.00USD0
19992017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified6,903,129,185.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20002017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,605,685,431.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20012017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified705,787,470.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
20022017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20032017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,780,621.00USD0
20042017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,780,621.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20052017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
20062017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified236,894,415.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
20072017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified42,166,265.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20082017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified42,166,265.00USD0
20092017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified849,419,783.00USD0
20102017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified546,901,589.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20112017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified65,623,779.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
20122017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,650,632,317.00USD0
20132017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified10,616,180,502.00USD0
20142017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified771,411,249.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
20152017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified7,465,211,878.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20162017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,650,632,317.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20172017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,379,557,375.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
20182017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse627,604.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20192017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse12,824,638.00USD0
20202017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse676,447.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
20212017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse12,148,191.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20222017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse627,604.00USD0
20232017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress367,459,429.00USD0
20242017YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress52,141,972.00USD0
20252017YC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress52,141,972.00USD0
20262017YC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress52,141,972.00USD0
20272017YC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress52,141,972.00USD0
20282017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress52,141,972.00USD0
20292017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress52,141,972.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20302017YC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress367,459,429.00USD0
20312017YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress367,459,429.00USD0
20322017YC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress367,459,429.00USD0
20332017YC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress367,459,429.00USD0
20342017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress74,619,018.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
20352017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress233,539,964.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20362017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress59,300,447.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
20372017YC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,703,401,893.00USD0
20382017YC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress10,996,464,569.00USD0
20392017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress10,996,464,569.00USD0
20402017YC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,703,401,893.00USD0
20412017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress846,706,714.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
20422017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,710,900,033.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20432017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,438,857,822.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
20442017YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress10,996,464,569.00USD0
20452017YC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,703,401,893.00USD0
20462017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,703,401,893.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20472017YC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress10,996,464,569.00USD0
20482017YC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress10,996,464,569.00USD0
20492017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,703,401,893.00USD0
20502017YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,703,401,893.00USD0
20512017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility585,300,525.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
20522017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,699,002,798.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20532017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
20542017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility253,449,712.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
20552017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
20562017YC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
20572017YC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
20582017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility253,449,712.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
20592017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,699,002,798.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20602017YC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
20612017YC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
20622017YC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
20632017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20642017YC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
20652017YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
20662017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
20672017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20682017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
20692017YC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
20702017YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
20712017YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
20722017YC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
20732017YC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
20742017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility585,300,525.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
20752017YC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
20762017YC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
20772017YC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
20782017YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
20792017YC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet7,458,711,534.00USD0
20802017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,785,306,138.00USD0
20812017YC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,785,306,138.00USD0
20822017YC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,785,306,138.00USD0
20832017YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet7,458,711,534.00USD0
20842017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet593,257,002.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
20852017YC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet7,458,711,534.00USD0
20862017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,785,306,138.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20872017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,853,557,297.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
20882017YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,785,306,138.00USD0
20892017YC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet7,458,711,534.00USD0
20902017YC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,785,306,138.00USD0
20912017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet7,458,711,534.00USD0
20922017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,011,897,235.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20932017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService905,197,150.00USD0
20942017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,659,938,860.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20952017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,320,105,380.00USD0
20962017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService905,197,150.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
20972017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService581,731,398.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
20982017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService78,435,122.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
20992017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService12,898,605.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
21002017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService217,647,655.00USD0
21012017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService3,569,127.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
21022017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService39,063,938.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
21032017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService175,014,590.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
21042017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService12,898,605.00USD0
21052017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService918,095,755.00USD0
21062017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService253,449,712.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
21072017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService918,095,755.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
21082017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,699,002,798.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
21092017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,537,753,035.00USD0
21102017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService585,300,525.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
21112017YC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
21122017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility253,449,712.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
21132017YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
21142017YC001111Baltimore Gas and Electric Company427116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
21152017YC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
21162017YC001111Baltimore Gas and Electric Company426512200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
21172017YC001111Baltimore Gas and Electric Company426513200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
21182017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,699,002,798.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
21192017YC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
21202017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility585,300,525.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
21212017YC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
21222017YC000533Kentucky Power Company426695200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
21232017YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
21242017YC000533Kentucky Power Company427182200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
21252017YC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
21262017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility253,449,712.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
21272017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,699,002,798.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
21282017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
21292017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility585,300,525.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
21302017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
21312017YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
21322017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
21332017YC000533Kentucky Power Company426696200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
21342017YC000533Kentucky Power Company426694200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD0
21352017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
21362017YC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
21372017YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility918,095,755.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
21382017YC001111Baltimore Gas and Electric Company426511200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,537,753,035.00USD0
213920173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified9,623,941,482.00USD0
214020173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified6,857,205,728.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
214120173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,598,276,536.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
214220173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,598,276,536.00USD0
214320173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,078,587,799.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
214420173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified688,147,955.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
214520173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,559,238.00USD0
214620173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
214720173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
214820173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,559,238.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
214920173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified677,274,294.00USD0
215020173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified403,470,743.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
215120173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified230,831,450.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
215220173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified30,681,889.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
215320173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified30,681,889.00USD0
215420173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified42,972,101.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
215520173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified7,275,857,575.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
215620173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified10,316,396,880.00USD0
215720173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,631,517,663.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
215820173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,631,517,663.00USD0
215920173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,309,419,249.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
216020173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified731,120,056.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
216120173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse19,251,652.00USD0
216220173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse672,838.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
216320173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse6,303,182.00USD0
216420173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse18,578,814.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
216520173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse6,303,182.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
216620173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress84,692,061.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
216720173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress285,581,894.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
216820173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress60,877,628.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
216920173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress431,151,583.00USD0
217020173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress39,929,540.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
217120173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress39,929,540.00USD0
217220173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress816,484,955.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
217320173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,677,750,385.00USD0
217420173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress10,766,800,115.00USD0
217520173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,677,750,385.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
217620173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,580,018,283.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
217720173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,370,296,877.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
217820173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility906,104,053.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
217920173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility242,939,159.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
218020173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility906,104,053.00USD0
218120173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility242,939,159.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
218220173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,672,398,657.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
218320173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility579,881,023.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
218420173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility906,104,053.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
218520173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,495,218,839.00USD0
218620173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,495,218,839.00USD0
218720173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,672,398,657.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
218820173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility906,104,053.00USD0
218920173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility579,881,023.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
219020173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet7,271,581,276.00USD0
219120173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,790,415,854.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
219220173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,771,646,332.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
219320173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,771,646,332.00USD0
219420173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet573,545,796.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
219520173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,907,619,626.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
219620173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService576,566,387.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
219720173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService892,787,375.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
219820173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService892,787,375.00USD0
219920173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,287,370,183.00USD0
220020173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService76,858,420.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
220120173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,633,945,376.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
220220173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService207,848,656.00USD0
220320173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService13,316,678.00USD0
220420173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService13,316,678.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
220520173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService38,453,281.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
220620173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService166,080,739.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
220720173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService3,314,636.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
220820173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService242,939,159.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
220920173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService906,104,053.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
221020173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService906,104,053.00USD0
221120173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,495,218,839.00USD0
221220173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,672,398,657.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
221320173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService579,881,023.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
221420173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,495,218,839.00USD0
221520173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility906,104,053.00USD0
221620173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility906,104,053.00USD0
221720173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility242,939,159.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
221820173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility906,104,053.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
221920173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility579,881,023.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
222020173QC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility906,104,053.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
222120173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility579,881,023.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
222220173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,672,398,657.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
222320173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,672,398,657.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
222420173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility242,939,159.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
222520173QC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,495,218,839.00USD0
222620172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified9,560,008,156.00USD0
222720172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,001,144,097.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
222820172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified710,616,024.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
222920172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified6,848,248,035.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
223020172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,582,650,887.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
223120172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,582,650,887.00USD0
223220172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,393,365.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
223320172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
223420172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,393,365.00USD0
223520172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
223620172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified37,969,705.00USD0
223720172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified407,503,880.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
223820172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified254,977,641.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
223920172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified707,188,054.00USD0
224020172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified37,969,705.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
224120172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified44,706,533.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
224220172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified10,282,377,314.00USD0
224320172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified7,270,933,019.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
224420172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified755,322,557.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
224520172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,623,013,957.00USD0
224620172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,256,121,738.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
224720172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,623,013,957.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
224820172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse19,000,731.00USD0
224920172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse19,000,731.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
225020172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse6,303,182.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
225120172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse6,303,182.00USD0
225220172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress55,765,631.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
225320172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress338,621,281.00USD0
225420172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress220,450,987.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
225520172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress62,404,663.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
225620172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress33,373,295.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
225720172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress33,373,295.00USD0
225820172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,662,690,434.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
225920172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress10,639,999,326.00USD0
226020172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress817,727,220.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
226120172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,311,887,369.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
226220172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,510,384,737.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
226320172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,662,690,434.00USD0
226420172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,509,692,515.00USD0
226520172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility576,565,200.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
226620172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility890,464,373.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
226720172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility890,464,373.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
226820172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility258,258,663.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
226920172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,674,868,652.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
227020172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,674,868,652.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
227120172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility576,565,200.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
227220172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility890,464,373.00USD0
227320172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility890,464,373.00USD0
227420172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,509,692,515.00USD0
227520172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility258,258,663.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
227620172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,772,226,061.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
227720172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,735,322,169.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
227820172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,835,516,085.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
227920172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet559,468,557.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
228020172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,772,226,061.00USD0
228120172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet7,130,306,811.00USD0
228220172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService877,292,964.00USD0
228320172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService877,292,964.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
228420172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService573,492,321.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
228520172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,638,198,222.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
228620172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,312,669,314.00USD0
228720172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService100,978,771.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
228820172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService13,171,409.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
228920172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService13,171,409.00USD0
229020172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService157,279,892.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
229120172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService36,670,430.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
229220172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService3,072,879.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
229320172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService197,023,201.00USD0
229420172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService576,565,200.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
229520172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,674,868,652.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
229620172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService890,464,373.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
229720172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService258,258,663.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
229820172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,509,692,515.00USD0
229920172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService890,464,373.00USD0
230020172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility890,464,373.00USD0
230120172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,674,868,652.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
230220172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility258,258,663.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
230320172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,674,868,652.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
230420172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility576,565,200.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
230520172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility890,464,373.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
230620172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility890,464,373.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
230720172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility258,258,663.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
230820172QC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility890,464,373.00USD0
230920172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility576,565,200.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
231020172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,509,692,515.00USD0
231120172QC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,509,692,515.00USD0
231220171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified9,408,761,658.00USD0
231320171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified665,528,182.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
231420171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,956,076,142.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
231520171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified6,787,157,334.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
231620171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,570,610,239.00USD0
231720171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,570,610,239.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
231820171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,103.00USD0
231920171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,103.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
232020171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,549,943.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
232120171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,549,943.00USD0
232220171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified267,575,932.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
232320171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified372,029,107.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
232420171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified32,948,174.00USD0
232520171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified720,611,762.00USD0
232620171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified32,948,174.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
232720171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified81,006,723.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
232820171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified10,144,554,523.00USD0
232920171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified7,174,367,544.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
233020171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,223,652,074.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
233120171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,606,108,356.00USD0
233220171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,606,108,356.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
233320171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified746,534,905.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
233420171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse6,303,504.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
233520171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse20,414,518.00USD0
233620171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse20,414,518.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
233720171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse6,303,504.00USD0
233820171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress46,083,844.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
233920171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress30,146,875.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
234020171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress221,376,417.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
234120171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress30,146,875.00USD0
234220171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress320,315,344.00USD0
234320171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress52,855,083.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
234420171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress10,485,284,385.00USD0
234520171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,416,158,479.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
234620171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,276,507,157.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
234720171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,642,558,735.00USD0
234820171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,642,558,735.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
234920171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress792,618,749.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
235020171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility589,066,036.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
235120171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility242,022,699.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
235220171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,636,965,651.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
235320171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility873,862,455.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
235420171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility873,862,455.00USD0
235520171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility873,862,455.00USD0
235620171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,468,054,386.00USD0
235720171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,468,054,386.00USD0
235820171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility242,022,699.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
235920171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility589,066,036.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
236020171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,636,965,651.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
236120171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility873,862,455.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
236220171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet550,596,050.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
236320171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,687,441,121.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
236420171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,768,696,280.00USD0
236520171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet7,017,229,999.00USD0
236620171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,768,696,280.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
236720171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,779,192,828.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
236820171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,280,945,051.00USD0
236920171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService862,720,840.00USD0
237020171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService93,079,721.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
237120171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService586,228,602.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
237220171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,601,636,728.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
237320171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService862,720,840.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
237420171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService35,328,923.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
237520171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService148,942,978.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
237620171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService12,244,070.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
237720171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService12,244,070.00USD0
237820171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService187,109,335.00USD0
237920171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService2,837,434.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
238020171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,468,054,386.00USD0
238120171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,636,965,651.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
238220171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService874,964,910.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
238320171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService242,022,699.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
238420171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService589,066,036.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
238520171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService874,964,910.00USD0
238620171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion29DepreciationUtilityPlantHeldForFutureUse-1,102,455.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
238720171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion29DepreciationUtilityPlantHeldForFutureUse-1,102,455.00USD0
238820171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion31DepreciationAndAmortizationUtilityPlantHeldForFutureUse-1,102,455.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
238920171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion31DepreciationAndAmortizationUtilityPlantHeldForFutureUse-1,102,455.00USD0
239020171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility589,066,036.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
239120171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility242,022,699.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
239220171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility873,862,455.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
239320171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,636,965,651.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
239420171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,468,054,386.00USD0
239520171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,468,054,386.00USD0
239620171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility873,862,455.00USD0
239720171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility873,862,455.00USD0
239820171QC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility873,862,455.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
239920171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility589,066,036.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
240020171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,636,965,651.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
240120171QC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility242,022,699.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
24022016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,180,103,324.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
24032016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified6,322,952,745.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24042016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,500,681,861.00USD0
24052016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified9,210,243,968.00USD0
24062016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,500,681,861.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24072016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified707,187,899.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
24082016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD0
24092016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,688,067.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24102016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,688,067.00USD0
24112016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases15,181,104.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24122016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified92,092,165.00USD0
24132016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified734,249,623.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24142016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified92,092,165.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24152016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified734,249,623.00USD0
24162016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified7,072,383,472.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24172016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,595,462,093.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24182016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified9,959,674,695.00USD0
24192016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,180,103,324.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
24202016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,595,462,093.00USD0
24212016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified707,187,899.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
24222016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse6,303,504.00USD0
24232016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse6,303,504.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24242016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse25,681,269.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24252016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse25,681,269.00USD0
24262016YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress318,323,148.00USD0
24272016YC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress27,379,769.00USD0
24282016YC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress318,323,148.00USD0
24292016YC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress27,379,769.00USD0
24302016YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress27,379,769.00USD0
24312016YC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress27,379,769.00USD0
24322016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress27,379,769.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24332016YC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress318,323,148.00USD0
24342016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress318,323,148.00USD0
24352016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress230,509,493.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24362016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress45,209,324.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
24372016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress42,604,331.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
24382016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress27,379,769.00USD0
24392016YC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress318,323,148.00USD0
24402016YC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress10,303,679,112.00USD0
24412016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,328,574,234.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24422016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress749,792,230.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
24432016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,225,312,648.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
24442016YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,629,145,366.00USD0
24452016YC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress10,303,679,112.00USD0
24462016YC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,629,145,366.00USD0
24472016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,629,145,366.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24482016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,629,145,366.00USD0
24492016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress10,303,679,112.00USD0
24502016YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress10,303,679,112.00USD0
24512016YC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,629,145,366.00USD0
24522016YC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,629,145,366.00USD0
24532016YC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress10,303,679,112.00USD0
24542016YC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
24552016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24562016YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
24572016YC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
24582016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
24592016YC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
24602016YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
24612016YC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
24622016YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
24632016YC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
24642016YC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
24652016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
24662016YC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
24672016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,610,063,346.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24682016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility224,754,605.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
24692016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility581,027,194.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
24702016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
24712016YC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
24722016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,610,063,346.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24732016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility581,027,194.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
24742016YC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
24752016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility224,754,605.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
24762016YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
24772016YC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
24782016YC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
24792016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
24802016YC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
24812016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24822016YC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,887,833,967.00USD0
24832016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,773,932,367.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24842016YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,773,932,367.00USD0
24852016YC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,887,833,967.00USD0
24862016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,773,932,367.00USD0
24872016YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,887,833,967.00USD0
24882016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,887,833,967.00USD0
24892016YC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,773,932,367.00USD0
24902016YC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,773,932,367.00USD0
24912016YC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,887,833,967.00USD0
24922016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet525,037,625.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
24932016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,644,285,454.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
24942016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,718,510,888.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24952016YC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,773,932,367.00USD0
24962016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,570,902,472.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
24972016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService85,094,707.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
24982016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService845,034,559.00USD0
24992016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService578,443,390.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
25002016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService845,034,559.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
25012016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,234,440,569.00USD0
25022016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService39,160,874.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
25032016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService181,404,576.00USD0
25042016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService139,659,898.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
25052016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService11,280,895.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
25062016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService11,280,895.00USD0
25072016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService2,583,804.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
25082016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService856,315,454.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
25092016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService856,315,454.00USD0
25102016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,610,063,346.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
25112016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,415,845,145.00USD0
25122016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService224,754,605.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
25132016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService581,027,194.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
25142016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion29DepreciationUtilityPlantHeldForFutureUse-1,102,455.00USD0
25152016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion29DepreciationUtilityPlantHeldForFutureUse-1,102,455.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
25162016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion31DepreciationAndAmortizationUtilityPlantHeldForFutureUse-1,102,455.00USD0
25172016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion31DepreciationAndAmortizationUtilityPlantHeldForFutureUse-1,102,455.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
25182016YC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
25192016YC001111Baltimore Gas and Electric Company425715200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
25202016YC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
25212016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility581,027,194.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
25222016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
25232016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,610,063,346.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
25242016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
25252016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
25262016YC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
25272016YC000533Kentucky Power Company425959200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
25282016YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
25292016YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
25302016YC001111Baltimore Gas and Electric Company425717200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
25312016YC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
25322016YC000533Kentucky Power Company425958200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
25332016YC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
25342016YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
25352016YC001111Baltimore Gas and Electric Company425716200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
25362016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,610,063,346.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
25372016YC001111Baltimore Gas and Electric Company425714200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
25382016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility224,754,605.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
25392016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
25402016YC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
25412016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility581,027,194.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
25422016YC000533Kentucky Power Company425960200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
25432016YC000533Kentucky Power Company425957200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility855,212,999.00USD0
25442016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility224,754,605.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
25452016YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,415,845,145.00USD0
254620163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,091,192,807.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
254720163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified678,542,776.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
254820163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified9,698,064,578.00USD0
254920163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,489,687,100.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
255020163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,489,687,100.00USD0
255120163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified6,928,328,995.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
255220163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,759,703.00USD0
255320163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,759,703.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
255420163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified90,091,025.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
255520163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified90,091,025.00USD0
255620163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified9,698,064,578.00USD0
255720163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified678,542,776.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
255820163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,582,537,828.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
255920163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified6,928,328,995.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
256020163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,582,537,828.00USD0
256120163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,091,192,807.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
256220163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,750,601.00USD0
256320163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,750,601.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
256420163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse25,452,454.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
256520163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse25,452,454.00USD0
256620163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress267,509,550.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
256720163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress19,167,762.00USD0
256820163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress76,446,471.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
256920163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress390,011,218.00USD0
257020163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress19,167,762.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
257120163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress46,055,197.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
257220163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,167,639,278.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
257320163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress10,113,528,250.00USD0
257420163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,609,456,191.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
257520163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,609,456,191.00USD0
257620163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,221,290,999.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
257720163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress724,597,973.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
257820163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,369,117,017.00USD0
257920163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility842,001,769.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
258020163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility842,001,769.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
258120163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility842,001,769.00USD0
258220163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility842,001,769.00USD0
258320163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,369,117,017.00USD0
258420163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility572,122,964.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
258520163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,584,816,538.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
258620163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility212,177,515.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
258720163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,584,816,538.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
258820163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility572,122,964.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
258920163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility212,177,515.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
259020163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet512,420,458.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
259120163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,636,474,461.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
259220163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,595,516,314.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
259320163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,767,454,422.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
259420163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,744,411,233.00USD0
259520163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,767,454,422.00USD0
259620163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService79,513,015.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
259720163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,197,152,167.00USD0
259820163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService831,331,849.00USD0
259920163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,547,842,594.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
260020163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService569,796,558.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
260120163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService831,331,849.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
260220163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService132,664,500.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
260320163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService2,326,406.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
260420163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService10,669,920.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
260520163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService10,669,920.00USD0
260620163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService36,973,944.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
260720163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService171,964,850.00USD0
260820163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService842,001,769.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
260920163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService842,001,769.00USD0
261020163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService572,122,964.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
261120163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,584,816,538.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
261220163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService212,177,515.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
261320163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,369,117,017.00USD0
261420163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,584,816,538.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
261520163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,369,117,017.00USD0
261620163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,584,816,538.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
261720163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility842,001,769.00USD0
261820163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility572,122,964.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
261920163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility842,001,769.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
262020163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility212,177,515.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
262120163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility572,122,964.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
262220163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility842,001,769.00USD0
262320163QC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility842,001,769.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
262420163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,369,117,017.00USD0
262520163QC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility212,177,515.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
262620162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,464,259,182.00USD0
262720162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,999,521,354.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
262820162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified6,745,831,530.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
262920162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,464,259,182.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
263020162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified9,418,158,802.00USD0
263120162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified672,805,918.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
263220162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,916,675.00USD0
263320162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,916,675.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
263420162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified109,731,593.00USD0
263520162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified109,731,593.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
263620162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified6,745,831,530.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
263720162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,999,521,354.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
263820162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,576,907,450.00USD0
263920162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified9,418,158,802.00USD0
264020162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified672,805,918.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
264120162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,576,907,450.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
264220162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse25,452,454.00USD0
264320162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,750,601.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
264420162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,750,601.00USD0
264520162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse25,452,454.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
264620162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress19,251,739.00USD0
264720162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress457,887,908.00USD0
264820162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress99,739,708.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
264920162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress314,759,878.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
265020162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress43,388,322.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
265120162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress19,251,739.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
265220162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,099,261,062.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
265320162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,086,043,862.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
265420162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,603,909,790.00USD0
265520162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress716,194,240.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
265620162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress9,901,499,164.00USD0
265720162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,603,909,790.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
265820162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,564,705,638.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
265920162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,564,705,638.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
266020162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility212,946,655.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
266120162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility559,887,855.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
266220162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility212,946,655.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
266320162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility559,887,855.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
266420162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,337,540,148.00USD0
266520162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility831,399,726.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
266620162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility831,399,726.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
266720162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility831,399,726.00USD0
266820162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,337,540,148.00USD0
266920162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility831,399,726.00USD0
267020162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,521,338,224.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
267120162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,772,510,064.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
267220162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,772,510,064.00USD0
267320162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet503,247,585.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
267420162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,539,373,207.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
267520162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,563,959,016.00USD0
267620162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,171,967,560.00USD0
267720162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,529,623,174.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
267820162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService821,504,207.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
267920162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService557,803,655.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
268020162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService821,504,207.00USD0
268120162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService84,540,731.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
268220162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService9,895,519.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
268320162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService35,082,464.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
268420162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService2,084,200.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
268520162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService128,405,924.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
268620162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService165,572,588.00USD0
268720162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService9,895,519.00USD0
268820162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService212,946,655.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
268920162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,564,705,638.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
269020162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,337,540,148.00USD0
269120162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService831,399,726.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
269220162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService831,399,726.00USD0
269320162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService559,887,855.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
269420162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility212,946,655.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
269520162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility831,399,726.00USD0
269620162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility831,399,726.00USD0
269720162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,564,705,638.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
269820162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility831,399,726.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
269920162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,564,705,638.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
270020162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,337,540,148.00USD0
270120162QC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility831,399,726.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
270220162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility212,946,655.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
270320162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility559,887,855.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
270420162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,337,540,148.00USD0
270520162QC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility559,887,855.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
270620161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified666,307,795.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
270720161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,429,776,158.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
270820161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,429,776,158.00USD0
270920161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified6,704,269,938.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
271020161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,982,310,015.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
271120161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified9,352,887,748.00USD0
271220161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,076,963.00USD0
271320161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,076,963.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
271420161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified72,453,908.00USD0
271520161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified72,453,908.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
271620161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,505,307,029.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
271720161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified9,352,887,748.00USD0
271820161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,505,307,029.00USD0
271920161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,982,310,015.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
272020161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified6,704,269,938.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
272120161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified666,307,795.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
272220161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse25,452,453.00USD0
272320161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,750,601.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
272420161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,750,601.00USD0
272520161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse25,452,453.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
272620161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress33,248,280.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
272720161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress70,277,734.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
272820161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress277,484,180.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
272920161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress57,462,059.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
273020161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress368,194,519.00USD0
273120161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress70,277,734.00USD0
273220161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress699,556,075.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
273320161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,007,206,571.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
273420161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,583,335,364.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
273520161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress9,746,534,720.00USD0
273620161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,583,335,364.00USD0
273720161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,039,772,074.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
273820161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,497,645,043.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
273920161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility818,546,632.00USD0
274020161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,497,645,043.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
274120161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility561,302,334.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
274220161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility561,302,334.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
274320161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility818,546,632.00USD0
274420161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility818,546,632.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
274520161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility818,546,632.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
274620161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility198,503,084.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
274720161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility198,503,084.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
274820161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,257,450,461.00USD0
274920161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,257,450,461.00USD0
275020161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,509,561,528.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
275120161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,489,084,259.00USD0
275220161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet501,052,991.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
275320161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,478,469,740.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
275420161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,764,788,732.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
275520161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,764,788,732.00USD0
275620161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService809,428,334.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
275720161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService78,573,883.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
275820161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService559,446,462.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
275920161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService809,428,334.00USD0
276020161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,101,798,751.00USD0
276120161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,463,778,406.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
276220161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService9,118,298.00USD0
276320161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService1,855,872.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
276420161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService9,118,298.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
276520161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService119,929,201.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
276620161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService33,866,637.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
276720161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService155,651,710.00USD0
276820161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,497,645,043.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
276920161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService818,546,632.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
277020161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService818,546,632.00USD0
277120161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,257,450,461.00USD0
277220161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService561,302,334.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
277320161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService198,503,084.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
277420161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility198,503,084.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
277520161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,497,645,043.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
277620161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility818,546,632.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
277720161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility561,302,334.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
277820161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,497,645,043.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
277920161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility198,503,084.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
278020161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility818,546,632.00USD0
278120161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility818,546,632.00USD0
278220161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,257,450,461.00USD0
278320161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,257,450,461.00USD0
278420161QC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility818,546,632.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
278520161QC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility561,302,334.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
27862015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,950,769,962.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
27872015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified6,663,357,644.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
27882015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified654,626,685.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
27892015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,415,236,066.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
27902015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,415,236,066.00USD0
27912015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified9,268,754,291.00USD0
27922015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,903,842.00USD0
27932015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases2,903,842.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
27942015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified71,657,913.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
27952015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified71,657,913.00USD0
27962015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,489,797,821.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
27972015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified654,626,685.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
27982015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified6,663,357,644.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
27992015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,950,769,962.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
28002015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,489,797,821.00USD0
28012015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified9,268,754,291.00USD0
28022015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse25,452,453.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28032015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,750,601.00USD0
28042015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse25,452,453.00USD0
28052015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,750,601.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28062015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress27,376,825.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
28072015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress59,350,976.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28082015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress229,492,642.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28092015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress54,749,246.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
28102015YC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress59,350,976.00USD0
28112015YC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress311,618,713.00USD0
28122015YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress311,618,713.00USD0
28132015YC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress311,618,713.00USD0
28142015YC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress59,350,976.00USD0
28152015YC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress311,618,713.00USD0
28162015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress311,618,713.00USD0
28172015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress59,350,976.00USD0
28182015YC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress59,350,976.00USD0
28192015YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress59,350,976.00USD0
28202015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,556,899,398.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28212015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress9,605,825,457.00USD0
28222015YC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,556,899,398.00USD0
28232015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,556,899,398.00USD0
28242015YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,556,899,398.00USD0
28252015YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress9,605,825,457.00USD0
28262015YC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,556,899,398.00USD0
28272015YC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress9,605,825,457.00USD0
28282015YC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress9,605,825,457.00USD0
28292015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,005,519,208.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
28302015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress682,003,510.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
28312015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress6,918,302,739.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28322015YC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress9,605,825,457.00USD0
28332015YC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,556,899,398.00USD0
28342015YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
28352015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility184,318,790.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
28362015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28372015YC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
28382015YC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
28392015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
28402015YC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
28412015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility184,318,790.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
28422015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28432015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
28442015YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
28452015YC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
28462015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
28472015YC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
28482015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility554,080,237.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
28492015YC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
28502015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,474,551,116.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28512015YC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
28522015YC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
28532015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility554,080,237.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
28542015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,474,551,116.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28552015YC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
28562015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
28572015YC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
28582015YC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
28592015YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
28602015YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
28612015YC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
28622015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,751,861,863.00USD0
28632015YC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,751,861,863.00USD0
28642015YC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,392,875,314.00USD0
28652015YC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,392,875,314.00USD0
28662015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet497,684,720.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
28672015YC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,392,875,314.00USD0
28682015YC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,751,861,863.00USD0
28692015YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,392,875,314.00USD0
28702015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,443,751,623.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28712015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,392,875,314.00USD0
28722015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,751,861,863.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28732015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,451,438,971.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
28742015YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,751,861,863.00USD0
28752015YC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,751,861,863.00USD0
28762015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService798,231,357.00USD0
28772015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService550,289,111.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
28782015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService74,628,494.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
28792015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,067,009,955.00USD0
28802015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService798,231,357.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28812015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,442,092,350.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28822015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService145,940,188.00USD0
28832015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService6,806,178.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28842015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService3,791,126.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
28852015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService6,806,178.00USD0
28862015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService32,458,766.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28872015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService109,690,296.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
28882015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService805,037,535.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28892015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,474,551,116.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28902015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,212,950,143.00USD0
28912015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService554,080,237.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
28922015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService184,318,790.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
28932015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService805,037,535.00USD0
28942015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,474,551,116.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28952015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility184,318,790.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
28962015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28972015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility554,080,237.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
28982015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
28992015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility184,318,790.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
29002015YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
29012015YC001111Baltimore Gas and Electric Company424922200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
29022015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
29032015YC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
29042015YC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
29052015YC000533Kentucky Power Company425160200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
29062015YC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
29072015YC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
29082015YC001111Baltimore Gas and Electric Company424919200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
29092015YC001111Baltimore Gas and Electric Company424920200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
29102015YC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
29112015YC000533Kentucky Power Company425159200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
29122015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility554,080,237.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
29132015YC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
29142015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
29152015YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
29162015YC000533Kentucky Power Company425158200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
29172015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,474,551,116.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
29182015YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
29192015YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
29202015YC000533Kentucky Power Company425161200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility805,037,535.00USD0
29212015YC001111Baltimore Gas and Electric Company424921200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,212,950,143.00USD0
292220153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified9,049,378,651.00USD0
292320153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,860,750,483.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
292420153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified6,563,090,242.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
292520153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified625,537,926.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
292620153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,437,828,819.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
292720153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,437,828,819.00USD0
292820153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,165,823.00USD0
292920153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,165,823.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
293020153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified98,105,177.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
293120153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified98,105,177.00USD0
293220153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,539,099,819.00USD0
293320153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified9,049,378,651.00USD0
293420153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,860,750,483.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
293520153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified6,563,090,242.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
293620153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified625,537,926.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
293720153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,539,099,819.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
293820153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,750,601.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
293920153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,750,601.00USD0
294020153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse25,260,067.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
294120153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse25,260,067.00USD0
294220153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress22,180,729.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
294320153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress220,161,860.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
294420153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress339,235,181.00USD0
294520153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress55,208,245.00USD0
294620153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress55,208,245.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
294720153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress96,892,592.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
294820153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress647,718,655.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
294920153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,957,643,075.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
295020153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,602,058,665.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
295120153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress6,808,512,169.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
295220153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,602,058,665.00USD0
295320153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress9,413,873,899.00USD0
295420153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility837,675,171.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
295520153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,451,269,821.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
295620153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility546,280,266.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
295720153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility169,075,657.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
295820153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,451,269,821.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
295920153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility546,280,266.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
296020153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility169,075,657.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
296120153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility837,675,171.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
296220153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,166,625,744.00USD0
296320153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,166,625,744.00USD0
296420153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility837,675,171.00USD0
296520153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility837,675,171.00USD0
296620153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,411,362,809.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
296720153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet478,642,998.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
296820153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,357,242,348.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
296920153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,247,248,155.00USD0
297020153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,764,383,494.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
297120153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,764,383,494.00USD0
297220153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService821,067,117.00USD0
297320153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,031,501,049.00USD0
297420153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService542,787,118.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
297520153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,420,137,380.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
297620153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService68,576,551.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
297720153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService821,067,117.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
297820153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService3,493,148.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
297920153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService16,608,054.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
298020153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService100,499,106.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
298120153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService31,132,441.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
298220153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService16,608,054.00USD0
298320153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService135,124,695.00USD0
298420153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService169,075,657.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
298520153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService546,280,266.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
298620153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,451,269,821.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
298720153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,166,625,744.00USD0
298820153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService837,675,171.00USD0
298920153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService837,675,171.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
299020153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,451,269,821.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
299120153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility546,280,266.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
299220153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility169,075,657.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
299320153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility169,075,657.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
299420153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility546,280,266.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
299520153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,451,269,821.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
299620153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility837,675,171.00USD0
299720153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility837,675,171.00USD0
299820153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,166,625,744.00USD0
299920153QC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,166,625,744.00USD0
300020153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility837,675,171.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
300120153QC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility837,675,171.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
300220152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified8,960,983,339.00USD0
300320152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified6,515,393,359.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
300420152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,817,130,643.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
300520152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified628,459,337.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
300620152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,370,153,834.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
300720152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,370,153,834.00USD0
300820152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,373,954.00USD0
300920152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,373,954.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
301020152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified162,889,048.00USD0
301120152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified162,889,048.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
301220152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified8,960,983,339.00USD0
301320152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,817,130,643.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
301420152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified628,459,337.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
301520152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified6,515,393,359.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
301620152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,536,416,836.00USD0
301720152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,536,416,836.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
301820152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,736,103.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
301920152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,885,767.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
302020152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,885,767.00USD0
302120152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,736,103.00USD0
302220152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress194,416,368.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
302320152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress19,641,918.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
302420152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress63,094,745.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
302520152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress63,094,745.00USD0
302620152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress308,340,167.00USD0
302720152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress94,281,881.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
302820152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,607,247,684.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
302920152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress9,294,209,273.00USD0
303020152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress6,734,695,494.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
303120152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress648,101,255.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
303220152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,911,412,524.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
303320152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,607,247,684.00USD0
303420152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility164,983,154.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
303520152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,139,513,990.00USD0
303620152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility826,867,172.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
303720152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility826,867,172.00USD0
303820152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility164,983,154.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
303920152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility826,867,172.00USD0
304020152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility826,867,172.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
304120152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility539,279,383.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
304220152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,435,251,453.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
304320152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility539,279,383.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
304420152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,435,251,453.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
304520152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,139,513,990.00USD0
304620152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,299,444,041.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
304720152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,780,380,512.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
304820152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet483,118,101.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
304920152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,780,380,512.00USD0
305020152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,372,133,141.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
305120152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,154,695,283.00USD0
305220152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,405,480,961.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
305320152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService536,084,461.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
305420152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService74,678,338.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
305520152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService811,340,459.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
305620152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService3,016,243,760.00USD0
305720152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService811,340,459.00USD0
305820152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService15,526,713.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
305920152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService3,194,922.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
306020152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService15,526,713.00USD0
306120152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService90,304,816.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
306220152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService123,270,230.00USD0
306320152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService29,770,492.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
306420152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,435,251,453.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
306520152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService164,983,154.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
306620152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService539,279,383.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
306720152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService826,867,172.00USD0
306820152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService826,867,172.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
306920152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,139,513,990.00USD0
307020152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility826,867,172.00USD0
307120152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility539,279,383.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
307220152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility164,983,154.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
307320152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,435,251,453.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
307420152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,435,251,453.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
307520152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility826,867,172.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
307620152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,139,513,990.00USD0
307720152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility826,867,172.00USD0
307820152QC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility826,867,172.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
307920152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility164,983,154.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
308020152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,139,513,990.00USD0
308120152QC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility539,279,383.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
308220151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified622,655,590.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
308320151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,782,897,899.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
308420151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified8,859,331,592.00USD0
308520151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,796,382,773.00USD0
308620151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,796,382,773.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
308720151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified6,453,778,103.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
308820151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,622,141.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
308920151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,622,141.00USD0
309020151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified166,366,801.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
309120151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified166,366,801.00USD0
309220151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,966,371,715.00USD0
309320151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified6,453,778,103.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
309420151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified8,859,331,592.00USD0
309520151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified622,655,590.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
309620151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,782,897,899.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
309720151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,966,371,715.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
309820151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,736,103.00USD0
309920151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,736,103.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
310020151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,881,991.00USD0
310120151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,881,991.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
310220151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress39,744,072.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
310320151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress45,358,232.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
310420151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress45,358,232.00USD0
310520151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress293,647,216.00USD0
310620151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress167,851,438.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
310720151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress86,051,706.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
310820151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,019,466,050.00USD0
310920151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,868,949,605.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
311020151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress6,646,511,532.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
311120151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress9,177,860,799.00USD0
311220151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress662,399,662.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
311320151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress3,019,466,050.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
311420151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility180,472,162.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
311520151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,120,053,225.00USD0
311620151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,065,873,603.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
311720151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,120,053,225.00USD0
311820151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,411,353,972.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
311920151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility528,227,091.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
312020151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility180,472,162.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
312120151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,065,873,603.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
312220151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility528,227,091.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
312320151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,065,873,603.00USD0
312420151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,065,873,603.00USD0
312520151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,411,353,972.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
312620151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet481,927,500.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
312720151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,953,592,447.00USD0
312820151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,953,592,447.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
312920151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet6,057,807,574.00USD0
313020151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,235,157,560.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
313120151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,340,722,514.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
313220151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,043,228,559.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
313320151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService69,885,477.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
313420151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,382,659,236.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
313520151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService525,330,123.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
313620151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,043,228,559.00USD0
313720151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,977,874,836.00USD0
313820151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService28,694,736.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
313920151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService22,645,044.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
314020151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService22,645,044.00USD0
314120151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService142,178,389.00USD0
314220151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService2,896,968.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
314320151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService110,586,685.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
314420151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,120,053,225.00USD0
314520151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService528,227,091.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
314620151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService180,472,162.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
314720151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,411,353,972.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
314820151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,065,873,603.00USD0
314920151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,065,873,603.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
315020151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility180,472,162.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
315120151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,065,873,603.00USD0
315220151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility528,227,091.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
315320151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,065,873,603.00USD0
315420151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility180,472,162.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
315520151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility528,227,091.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
315620151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,411,353,972.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
315720151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,120,053,225.00USD0
315820151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,120,053,225.00USD0
315920151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,065,873,603.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
316020151QC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,065,873,603.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
316120151QC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,411,353,972.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
31622014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,759,505,106.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
31632014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified622,648,722.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
31642014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified6,348,184,740.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
31652014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,761,067,133.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
31662014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,759,505,106.00USD0
31672014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified8,731,900,595.00USD0
31682014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases4,288,632.00USD0
31692014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases4,288,632.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
31702014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified188,687,048.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
31712014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified188,687,048.00USD0
31722014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified6,348,184,740.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
31732014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,952,480,786.00USD0
31742014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,761,067,133.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
31752014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,952,480,786.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
31762014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified8,731,900,595.00USD0
31772014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified622,648,722.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
31782014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,736,103.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
31792014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,736,103.00USD0
31802014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,881,563.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
31812014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,881,563.00USD0
31822014YC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress309,427,032.00USD0
31832014YC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress39,194,443.00USD0
31842014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress39,194,443.00USD0
31852014YC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress39,194,443.00USD0
31862014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress309,427,032.00USD0
31872014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress39,194,443.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
31882014YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress309,427,032.00USD0
31892014YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress39,194,443.00USD0
31902014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress30,807,703.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
31912014YC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress39,194,443.00USD0
31922014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress200,201,755.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
31932014YC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress309,427,032.00USD0
31942014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress78,417,574.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
31952014YC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress309,427,032.00USD0
31962014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,999,411,332.00USD0
31972014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,839,484,707.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
31982014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress653,456,425.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
31992014YC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,999,411,332.00USD0
32002014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,999,411,332.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32012014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress6,573,268,058.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32022014YC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress9,066,209,190.00USD0
32032014YC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress9,066,209,190.00USD0
32042014YC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress9,066,209,190.00USD0
32052014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress9,066,209,190.00USD0
32062014YC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,999,411,332.00USD0
32072014YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress9,066,209,190.00USD0
32082014YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,999,411,332.00USD0
32092014YC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,999,411,332.00USD0
32102014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32112014YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
32122014YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
32132014YC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
32142014YC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
32152014YC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32162014YC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32172014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
32182014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
32192014YC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
32202014YC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
32212014YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32222014YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32232014YC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32242014YC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32252014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32262014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility171,332,007.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
32272014YC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32282014YC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32292014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,398,809,013.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32302014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility171,332,007.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
32312014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility521,451,326.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
32322014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,398,809,013.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32332014YC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
32342014YC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
32352014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32362014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility521,451,326.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
32372014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32382014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,974,616,844.00USD0
32392014YC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,959,001,045.00USD0
32402014YC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,959,001,045.00USD0
32412014YC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,974,616,844.00USD0
32422014YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,974,616,844.00USD0
32432014YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,959,001,045.00USD0
32442014YC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,974,616,844.00USD0
32452014YC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,959,001,045.00USD0
32462014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,318,033,381.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
32472014YC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,974,616,844.00USD0
32482014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,174,459,045.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32492014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet482,124,418.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
32502014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,959,001,045.00USD0
32512014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,959,001,045.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32522014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,018,732,500.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32532014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService1,018,732,500.00USD0
32542014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService64,196,967.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
32552014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService518,827,822.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
32562014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,942,768,569.00USD0
32572014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,359,743,780.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32582014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService21,677,787.00USD0
32592014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService39,065,233.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32602014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService2,623,504.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
32612014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService21,677,787.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32622014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService148,823,777.00USD0
32632014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService107,135,040.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
32642014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService521,451,326.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
32652014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,091,592,346.00USD0
32662014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService171,332,007.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
32672014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,398,809,013.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32682014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,040,410,287.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32692014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,040,410,287.00USD0
32702014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,398,809,013.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32712014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility521,451,326.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
32722014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32732014YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
32742014YC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
32752014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility171,332,007.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
32762014YC000533Kentucky Power Company424358200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
32772014YC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
32782014YC000533Kentucky Power Company424359200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
32792014YC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32802014YC001111Baltimore Gas and Electric Company424118200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32812014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
32822014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility521,451,326.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
32832014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
32842014YC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
32852014YC000533Kentucky Power Company424360200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
32862014YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32872014YC001111Baltimore Gas and Electric Company424119200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32882014YC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32892014YC001111Baltimore Gas and Electric Company424117200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32902014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32912014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32922014YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32932014YC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32942014YC001111Baltimore Gas and Electric Company424116200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,091,592,346.00USD0
32952014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility171,332,007.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
32962014YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,398,809,013.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
32972014YC000533Kentucky Power Company424361200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,040,410,287.00USD0
329820143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified608,742,016.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
329920143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,731,720,184.00USD0
330020143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified8,605,327,823.00USD0
330120143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,731,720,184.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
330220143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,708,903,017.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
330320143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified6,287,682,790.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
330420143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases4,506,282.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
330520143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases4,506,282.00USD0
330620143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified148,935,471.00USD0
330720143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified148,935,471.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
330820143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified8,605,327,823.00USD0
330920143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,885,161,937.00USD0
331020143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified6,287,682,790.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
331120143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,885,161,937.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
331220143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified608,742,016.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
331320143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,708,903,017.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
331420143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,405,959.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
331520143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,405,959.00USD0
331620143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,881,361.00USD0
331720143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,881,361.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
331820143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress80,210,718.00USD0
331920143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress313,939,358.00USD0
332020143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress191,802,504.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
332120143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress31,786,706.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
332220143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress90,350,148.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
332320143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress80,210,718.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
332420143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress640,528,722.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
332520143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,944,148,542.00USD0
332620143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,799,253,165.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
332720143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,972,778,614.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
332820143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress6,504,366,655.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
332920143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,972,778,614.00USD0
333020143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,018,365,605.00USD0
333120143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,050,857,570.00USD0
333220143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,018,365,605.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
333320143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,018,365,605.00USD0
333420143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility516,032,046.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
333520143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,375,978,721.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
333620143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,050,857,570.00USD0
333720143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility158,846,803.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
333820143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,018,365,605.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
333920143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility158,846,803.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
334020143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,375,978,721.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
334120143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility516,032,046.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
334220143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet481,681,919.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
334320143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,893,290,972.00USD0
334420143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,954,413,009.00USD0
334520143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,954,413,009.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
334620143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,128,387,934.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
334720143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,283,221,119.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
334820143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService513,623,235.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
334920143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService61,825,946.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
335020143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,913,443,118.00USD0
335120143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService996,414,450.00USD0
335220143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService996,414,450.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
335320143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,337,993,937.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
335420143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService97,020,857.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
335520143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService21,951,155.00USD0
335620143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService137,414,452.00USD0
335720143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService21,951,155.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
335820143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService37,984,784.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
335920143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService2,408,811.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
336020143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService516,032,046.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
336120143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,018,365,605.00USD0
336220143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService1,018,365,605.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
336320143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,050,857,570.00USD0
336420143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,375,978,721.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
336520143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService158,846,803.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
336620143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,375,978,721.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
336720143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,018,365,605.00USD0
336820143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,050,857,570.00USD0
336920143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,018,365,605.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
337020143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility158,846,803.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
337120143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility516,032,046.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
337220143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility516,032,046.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
337320143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility158,846,803.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
337420143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,050,857,570.00USD0
337520143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,018,365,605.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
337620143QC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility1,018,365,605.00USD0
337720143QC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,375,978,721.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
337820142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,724,174,422.00USD0
337920142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified6,241,899,998.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
338020142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,724,174,422.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
338120142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,685,559,589.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
338220142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified601,077,765.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
338320142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified8,528,537,352.00USD0
338420142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases4,781,431.00USD0
338520142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases4,781,431.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
338620142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified123,826,880.00USD0
338720142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified123,826,880.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
338820142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,852,782,733.00USD0
338920142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified601,077,765.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
339020142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,852,782,733.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
339120142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified8,528,537,352.00USD0
339220142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified6,241,899,998.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
339320142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,685,559,589.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
339420142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,880,492.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
339520142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,405,959.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
339620142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,405,959.00USD0
339720142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,880,492.00USD0
339820142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress93,023,178.00USD0
339920142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress93,023,178.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
340020142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress250,901,863.00USD0
340120142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress31,958,150.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
340220142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress56,935,499.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
340320142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress162,008,214.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
340420142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,742,495,088.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
340520142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress633,035,915.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
340620142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,953,211,870.00USD0
340720142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,804,319,707.00USD0
340820142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress6,428,788,704.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
340920142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,953,211,870.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
341020142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility147,175,841.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
341120142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,352,323,442.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
341220142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,009,892,192.00USD0
341320142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility510,392,909.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
341420142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,352,323,442.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
341520142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,009,892,192.00USD0
341620142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility147,175,841.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
341720142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility997,903,634.00USD0
341820142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility997,903,634.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
341920142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility997,903,634.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
342020142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility997,903,634.00USD0
342120142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility510,392,909.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
342220142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet485,860,074.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
342320142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,232,102,179.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
342420142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,076,465,262.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
342520142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,955,308,236.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
342620142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,794,427,515.00USD0
342720142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,955,308,236.00USD0
342820142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService508,113,471.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
342920142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService976,869,199.00USD0
343020142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,883,599,941.00USD0
343120142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService60,028,470.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
343220142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,315,458,000.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
343320142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService976,869,199.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
343420142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService126,292,251.00USD0
343520142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService21,034,435.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
343620142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService21,034,435.00USD0
343720142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService87,147,371.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
343820142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService2,279,438.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
343920142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService36,865,442.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
344020142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService3,009,892,192.00USD0
344120142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService997,903,634.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
344220142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService997,903,634.00USD0
344320142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService147,175,841.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
344420142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService510,392,909.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
344520142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,352,323,442.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
344620142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility997,903,634.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
344720142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,009,892,192.00USD0
344820142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility997,903,634.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
344920142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility997,903,634.00USD0
345020142QC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility997,903,634.00USD0
345120142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility3,009,892,192.00USD0
345220142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility147,175,841.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
345320142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,352,323,442.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
345420142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility510,392,909.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
345520142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility510,392,909.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
345620142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility147,175,841.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
345720142QC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,352,323,442.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
345820141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,657,760,616.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
345920141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified8,423,171,071.00USD0
346020141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified580,674,076.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
346120141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,673,306,232.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
346220141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,657,760,616.00USD0
346320141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified6,169,190,763.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
346420141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases4,269,235.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
346520141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases4,269,235.00USD0
346620141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified74,241,506.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
346720141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified74,241,506.00USD0
346820141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,736,271,357.00USD0
346920141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,673,306,232.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
347020141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified6,169,190,763.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
347120141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified580,674,076.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
347220141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified8,423,171,071.00USD0
347320141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,736,271,357.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
347420141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,405,959.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
347520141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,880,457.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
347620141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,405,959.00USD0
347720141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,880,457.00USD0
347820141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress40,604,807.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
347920141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress139,320,820.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
348020141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress139,320,820.00USD0
348120141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress156,415,383.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
348220141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress28,301,910.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
348320141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress225,322,100.00USD0
348420141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,673,373,628.00USD0
348520141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress621,278,883.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
348620141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,882,998,136.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
348720141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress6,350,486,603.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
348820141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,882,998,136.00USD0
348920141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,701,608,142.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
349020141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility135,791,048.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
349120141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,331,865,575.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
349220141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,972,250,001.00USD0
349320141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,331,865,575.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
349420141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility504,593,378.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
349520141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility135,791,048.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
349620141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility979,702,136.00USD0
349720141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility979,702,136.00USD0
349820141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,972,250,001.00USD0
349920141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility504,593,378.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
350020141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility979,702,136.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
350120141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility979,702,136.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
350220141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,018,621,028.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
350320141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,701,123,627.00USD0
350420141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,903,296,000.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
350520141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,903,296,000.00USD0
350620141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,197,014,764.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
350720141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet485,487,835.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
350820141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService959,551,073.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
350920141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,857,423,682.00USD0
351020141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService58,712,390.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
351120141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,296,288,498.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
351220141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService959,551,073.00USD0
351320141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService502,422,794.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
351420141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService35,577,077.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
351520141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService77,078,658.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
351620141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService20,151,063.00USD0
351720141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService20,151,063.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
351820141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService114,826,319.00USD0
351920141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService2,170,584.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
352020141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService979,702,136.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
352120141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,331,865,575.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
352220141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService135,791,048.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
352320141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService504,593,378.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
352420141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService979,702,136.00USD0
352520141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,972,250,001.00USD0
352620141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,331,865,575.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
352720141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility979,702,136.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
352820141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility504,593,378.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
352920141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,331,865,575.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
353020141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility979,702,136.00USD0
353120141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility979,702,136.00USD0
353220141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility135,791,048.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
353320141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility504,593,378.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
353420141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,972,250,001.00USD0
353520141QC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility979,702,136.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
353620141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,972,250,001.00USD0
353720141QC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility135,791,048.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
35382013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,643,823,159.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
35392013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified8,338,105,956.00USD0
35402013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,659,870,605.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
35412013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified578,354,210.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
35422013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified2,643,823,159.00USD0
35432013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified6,099,881,141.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
35442013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases4,409,682.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
35452013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases4,409,682.00USD0
35462013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified71,803,255.00USD0
35472013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified71,803,255.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
35482013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,720,036,096.00USD0
35492013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,659,870,605.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
35502013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified2,720,036,096.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
35512013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified578,354,210.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
35522013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified6,099,881,141.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
35532013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified8,338,105,956.00USD0
35542013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,405,959.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
35552013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,405,959.00USD0
35562013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,855,771.00USD0
35572013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,855,771.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
35582013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress145,103,347.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
35592013YC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress196,223,784.00USD0
35602013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress196,223,784.00USD0
35612013YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress128,599,148.00USD0
35622013YC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress128,599,148.00USD0
35632013YC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress196,223,784.00USD0
35642013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress128,599,148.00USD0
35652013YC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress128,599,148.00USD0
35662013YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress196,223,784.00USD0
35672013YC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress196,223,784.00USD0
35682013YC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress128,599,148.00USD0
35692013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress128,599,148.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
35702013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress33,686,154.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
35712013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress17,434,283.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
35722013YC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,559,185,511.00USD0
35732013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,856,041,203.00USD0
35742013YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,856,041,203.00USD0
35752013YC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,856,041,203.00USD0
35762013YC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,856,041,203.00USD0
35772013YC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,559,185,511.00USD0
35782013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,559,185,511.00USD0
35792013YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,559,185,511.00USD0
35802013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,856,041,203.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
35812013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,677,304,888.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
35822013YC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,559,185,511.00USD0
35832013YC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress2,856,041,203.00USD0
35842013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress6,269,840,259.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
35852013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress612,040,364.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
35862013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility496,526,924.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
35872013YC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
35882013YC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
35892013YC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
35902013YC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
35912013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
35922013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
35932013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
35942013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
35952013YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
35962013YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
35972013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
35982013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
35992013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,311,997,113.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
36002013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility124,902,003.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
36012013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility124,902,003.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
36022013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,311,997,113.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
36032013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility496,526,924.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
36042013YC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
36052013YC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
36062013YC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
36072013YC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
36082013YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
36092013YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
36102013YC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
36112013YC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
36122013YC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
36132013YC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
36142013YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,625,759,471.00USD0
36152013YC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,895,001,859.00USD0
36162013YC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,625,759,471.00USD0
36172013YC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,895,001,859.00USD0
36182013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,895,001,859.00USD0
36192013YC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,625,759,471.00USD0
36202013YC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,895,001,859.00USD0
36212013YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,895,001,859.00USD0
36222013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,625,759,471.00USD0
36232013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet487,138,361.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
36242013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet3,957,843,146.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
36252013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,180,777,964.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
36262013YC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,625,759,471.00USD0
36272013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,895,001,859.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
36282013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService941,819,616.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
36292013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService494,469,882.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
36302013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,276,740,320.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
36312013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,826,367,041.00USD0
36322013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService55,156,839.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
36332013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService941,819,616.00USD0
36342013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService35,256,793.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
36352013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService107,058,999.00USD0
36362013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService69,745,164.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
36372013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService19,219,728.00USD0
36382013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService19,219,728.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
36392013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService2,057,042.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
36402013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,933,426,040.00USD0
36412013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService961,039,344.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
36422013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService124,902,003.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
36432013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService496,526,924.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
36442013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService961,039,344.00USD0
36452013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,311,997,113.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
36462013YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
36472013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
36482013YC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
36492013YC000533Kentucky Power Company423553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
36502013YC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
36512013YC001111Baltimore Gas and Electric Company423309200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
36522013YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
36532013YC001111Baltimore Gas and Electric Company423311200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
36542013YC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
36552013YC000533Kentucky Power Company423554200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
36562013YC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
36572013YC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
36582013YC000533Kentucky Power Company423555200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
36592013YC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
36602013YC001111Baltimore Gas and Electric Company423310200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
36612013YC001111Baltimore Gas and Electric Company423308200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
36622013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility496,526,924.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
36632013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,311,997,113.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
36642013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility124,902,003.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
36652013YC000533Kentucky Power Company423556200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
36662013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
36672013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
36682013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility124,902,003.00USD1[{'UtilityTypeAxis': 'OtherUtilityMember'}]
36692013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility496,526,924.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
36702013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,311,997,113.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
36712013YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,933,426,040.00USD0
36722013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD0
36732013YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility961,039,344.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
367420133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified5,997,681,405.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
367520133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified563,825,343.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
367620133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,620,652,024.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
367720133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,722,698,178.00USD0
367820133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,722,698,178.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
367920133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified8,182,158,772.00USD0
368020133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,039,574.00USD0
368120133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,039,574.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
368220133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified55,858,863.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
368320133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified55,858,863.00USD0
368420133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,781,596,615.00USD0
368520133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified5,997,681,405.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
368620133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified8,182,158,772.00USD0
368720133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,781,596,615.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
368820133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified563,825,343.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
368920133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,620,652,024.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
369020133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,858,671.00USD0
369120133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,858,671.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
369220133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,405,959.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
369320133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,405,959.00USD0
369420133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress57,588,482.00USD0
369520133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress158,268,763.00USD0
369620133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress111,341,825.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
369720133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress16,592,748.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
369820133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress30,334,190.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
369920133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress57,588,482.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
370020133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress594,159,533.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
370120133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,365,286,206.00USD0
370220133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress6,133,881,901.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
370320133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,637,244,772.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
370420133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,846,591,056.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
370520133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,846,591,056.00USD0
370620133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility118,748,742.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
370720133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility118,748,742.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
370820133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility650,677,588.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
370920133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility650,677,588.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
371020133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,291,008,982.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
371120133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,897,954,066.00USD0
371220133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility488,196,342.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
371320133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility650,677,588.00USD0
371420133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,897,954,066.00USD0
371520133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility650,677,588.00USD0
371620133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility488,196,342.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
371720133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,291,008,982.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
371820133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet475,410,791.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
371920133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,195,913,468.00USD0
372020133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,149,048,430.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
372120133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet3,842,872,919.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
372220133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,467,332,140.00USD0
372320133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,195,913,468.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
372420133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,794,082,184.00USD0
372520133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService626,987,304.00USD0
372620133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService486,217,025.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
372720133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService626,987,304.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
372820133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService50,477,493.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
372920133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,257,387,666.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
373020133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService33,621,316.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
373120133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService1,979,317.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
373220133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService103,871,882.00USD0
373320133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService23,690,284.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
373420133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService23,690,284.00USD0
373520133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService68,271,249.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
373620133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService650,677,588.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
373720133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService650,677,588.00USD0
373820133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,291,008,982.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
373920133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService488,196,342.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
374020133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService118,748,742.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
374120133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,897,954,066.00USD0
374220133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,897,954,066.00USD0
374320133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,291,008,982.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
374420133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,897,954,066.00USD0
374520133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,291,008,982.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
374620133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility118,748,742.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
374720133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility650,677,588.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
374820133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility488,196,342.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
374920133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility650,677,588.00USD0
375020133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility650,677,588.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
375120133QC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility650,677,588.00USD0
375220133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility118,748,742.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
375320133QC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility488,196,342.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
375420132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified8,107,443,620.00USD0
375520132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified560,217,004.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
375620132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified5,953,545,439.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
375720132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,593,681,177.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
375820132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,709,719,127.00USD0
375920132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,709,719,127.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
376020132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,131,439.00USD0
376120132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,131,439.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
376220132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified59,635,170.00USD0
376320132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified59,635,170.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
376420132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,772,485,736.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
376520132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified560,217,004.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
376620132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified5,953,545,439.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
376720132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,593,681,177.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
376820132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,772,485,736.00USD0
376920132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified8,107,443,620.00USD0
377020132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,436,551.00USD0
377120132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,595,780.00USD0
377220132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,436,551.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
377320132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,595,780.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
377420132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress110,841,466.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
377520132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress36,494,058.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
377620132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress49,072,109.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
377720132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress49,072,109.00USD0
377820132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress153,615,835.00USD0
377920132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress6,280,311.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
378020132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress6,088,982,685.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
378120132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,285,655,235.00USD0
378220132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,828,994,396.00USD0
378320132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,828,994,396.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
378420132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,599,961,488.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
378520132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress596,711,062.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
378620132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility640,164,251.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
378720132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility640,164,251.00USD0
378820132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility481,473,456.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
378920132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,897,684,802.00USD0
379020132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility640,164,251.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
379120132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility640,164,251.00USD0
379220132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,295,282,697.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
379320132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility120,928,649.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
379420132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility481,473,456.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
379520132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility120,928,649.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
379620132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,295,282,697.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
379720132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,897,684,802.00USD0
379820132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,387,970,433.00USD0
379920132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,118,488,032.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
380020132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet475,782,413.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
380120132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet3,793,699,988.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
380220132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,188,830,145.00USD0
380320132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,188,830,145.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
380420132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService617,413,784.00USD0
380520132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,780,163,991.00USD0
380620132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService58,023,213.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
380720132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService479,552,943.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
380820132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,242,587,835.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
380920132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService617,413,784.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
381020132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService62,905,436.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
381120132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService1,920,513.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
381220132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService22,750,467.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
381320132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService22,750,467.00USD0
381420132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService117,520,811.00USD0
381520132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService52,694,862.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
381620132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,295,282,697.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
381720132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService640,164,251.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
381820132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService481,473,456.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
381920132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService120,928,649.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
382020132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService640,164,251.00USD0
382120132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,897,684,802.00USD0
382220132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility640,164,251.00USD0
382320132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility640,164,251.00USD0
382420132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility481,473,456.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
382520132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,295,282,697.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
382620132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility120,928,649.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
382720132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility640,164,251.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
382820132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility481,473,456.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
382920132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,897,684,802.00USD0
383020132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,897,684,802.00USD0
383120132QC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility640,164,251.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
383220132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,295,282,697.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
383320132QC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility120,928,649.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
383420131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified7,974,727,549.00USD0
383520131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,694,066,063.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
383620131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,567,702,359.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
383720131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,694,066,063.00USD0
383820131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified5,850,643,825.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
383920131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified556,381,365.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
384020131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,317,355.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
384120131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,317,355.00USD0
384220131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified66,530,624.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
384320131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified66,530,624.00USD0
384420131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified556,381,365.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
384520131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified7,974,727,549.00USD0
384620131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,763,914,042.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
384720131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,567,702,359.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
384820131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,763,914,042.00USD0
384920131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified5,850,643,825.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
385020131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,436,551.00USD0
385120131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,595,781.00USD0
385220131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,436,551.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
385320131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,595,781.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
385420131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress145,628,952.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
385520131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress189,524,100.00USD0
385620131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress43,807,564.00USD0
385720131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress12,045,288.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
385820131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress43,807,564.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
385920131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress31,849,860.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
386020131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress6,020,868,558.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
386120131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,188,847,430.00USD0
386220131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,815,158,157.00USD0
386320131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress588,231,225.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
386420131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,815,158,157.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
386520131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,579,747,647.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
386620131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility117,419,190.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
386720131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,865,933,836.00USD0
386820131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,865,933,836.00USD0
386920131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility117,419,190.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
387020131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,273,719,007.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
387120131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility474,795,639.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
387220131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility474,795,639.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
387320131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,273,719,007.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
387420131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility631,375,601.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
387520131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility631,375,601.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
387620131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility631,375,601.00USD0
387720131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility631,375,601.00USD0
387820131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet470,812,035.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
387920131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet3,747,149,551.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
388020131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,104,952,008.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
388120131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,183,782,556.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
388220131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,322,913,594.00USD0
388320131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,183,782,556.00USD0
388420131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,223,407,863.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
388520131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService609,523,458.00USD0
388620131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService609,523,458.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
388720131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService472,991,669.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
388820131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService61,631,130.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
388920131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,758,030,662.00USD0
389020131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService55,788,061.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
389120131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService21,852,143.00USD0
389220131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService21,852,143.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
389320131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService107,903,174.00USD0
389420131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService50,311,144.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
389520131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService1,803,969.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
389620131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService474,795,638.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
389720131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService631,375,601.00USD0
389820131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,865,933,836.00USD0
389920131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,273,719,007.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
390020131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService631,375,601.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
390120131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService117,419,191.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
390220131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility474,795,639.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
390320131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility117,419,190.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
390420131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility474,795,639.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
390520131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,273,719,007.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
390620131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,865,933,836.00USD0
390720131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,865,933,836.00USD0
390820131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility631,375,601.00USD0
390920131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility631,375,601.00USD0
391020131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility117,419,190.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
391120131QC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,273,719,007.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
391220131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility631,375,601.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
391320131QC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility631,375,601.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
39142012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,678,058,120.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
39152012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified553,565,395.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
39162012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,548,272,352.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
39172012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified5,767,129,911.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
39182012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,678,058,120.00USD0
39192012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified7,868,967,658.00USD0
39202012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,078,177.00USD0
39212012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,078,177.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
39222012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified68,475,711.00USD0
39232012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified68,475,711.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
39242012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified5,767,129,911.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
39252012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,749,612,008.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
39262012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified7,868,967,658.00USD0
39272012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,749,612,008.00USD0
39282012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,548,272,352.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
39292012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified553,565,395.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
39302012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,436,551.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
39312012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,594,323.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
39322012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse24,594,323.00USD0
39332012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,436,551.00USD0
39342012YC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress192,738,419.00USD0
39352012YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress44,281,292.00USD0
39362012YC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress192,738,419.00USD0
39372012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress44,281,292.00USD0
39382012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress32,277,944.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
39392012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress148,324,910.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
39402012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress12,135,565.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
39412012YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress192,738,419.00USD0
39422012YC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress44,281,292.00USD0
39432012YC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress44,281,292.00USD0
39442012YC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress44,281,292.00USD0
39452012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress192,738,419.00USD0
39462012YC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress192,738,419.00USD0
39472012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress44,281,292.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
39482012YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,801,329,851.00USD0
39492012YC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,801,329,851.00USD0
39502012YC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,086,300,400.00USD0
39512012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,801,329,851.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
39522012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,086,300,400.00USD0
39532012YC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,801,329,851.00USD0
39542012YC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,801,329,851.00USD0
39552012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,560,407,917.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
39562012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress5,940,049,144.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
39572012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress585,843,339.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
39582012YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,086,300,400.00USD0
39592012YC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,086,300,400.00USD0
39602012YC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress8,086,300,400.00USD0
39612012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,801,329,851.00USD0
39622012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility108,558,786.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
39632012YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
39642012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility108,558,786.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
39652012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,250,232,619.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
39662012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility470,890,734.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
39672012YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
39682012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
39692012YC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
39702012YC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
39712012YC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
39722012YC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
39732012YC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
39742012YC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
39752012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
39762012YC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
39772012YC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
39782012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
39792012YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
39802012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
39812012YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
39822012YC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
39832012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
39842012YC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
39852012YC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
39862012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,250,232,619.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
39872012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility470,890,734.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
39882012YC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
39892012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
39902012YC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,179,195,769.00USD0
39912012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,256,618,261.00USD0
39922012YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,179,195,769.00USD0
39932012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,089,517,183.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
39942012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet477,284,553.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
39952012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet3,689,816,525.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
39962012YC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,256,618,261.00USD0
39972012YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,256,618,261.00USD0
39982012YC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,179,195,769.00USD0
39992012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,179,195,769.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
40002012YC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,179,195,769.00USD0
40012012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,179,195,769.00USD0
40022012YC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,256,618,261.00USD0
40032012YC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,256,618,261.00USD0
40042012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService469,186,234.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
40052012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService58,714,282.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
40062012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService601,239,741.00USD0
40072012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,729,678,621.00USD0
40082012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,201,778,105.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
40092012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService601,239,741.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
40102012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService20,894,341.00USD0
40112012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService49,844,504.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
40122012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService20,894,341.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
40132012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService1,704,500.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
40142012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService100,003,518.00USD0
40152012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService48,454,514.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
40162012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService470,890,734.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
40172012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService622,134,082.00USD0
40182012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService108,558,786.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
40192012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,250,232,619.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
40202012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,829,682,139.00USD0
40212012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService622,134,082.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
40222012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
40232012YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
40242012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility108,558,786.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
40252012YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
40262012YC000533Kentucky Power Company422749200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
40272012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
40282012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
40292012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility470,890,734.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
40302012YC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
40312012YC001111Baltimore Gas and Electric Company422495200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
40322012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
40332012YC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
40342012YC001111Baltimore Gas and Electric Company422497200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
40352012YC000533Kentucky Power Company422746200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
40362012YC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
40372012YC000533Kentucky Power Company422747200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
40382012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
40392012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility470,890,734.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
40402012YC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
40412012YC001111Baltimore Gas and Electric Company422494200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
40422012YC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
40432012YC001111Baltimore Gas and Electric Company422496200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,829,682,139.00USD0
40442012YC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
40452012YC000533Kentucky Power Company422748200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD0
40462012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,250,232,619.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
40472012YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility622,134,082.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
40482012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility108,558,786.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
40492012YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,250,232,619.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
405020123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,664,752,844.00USD0
405120123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified5,710,822,736.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
405220123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,512,404,099.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
405320123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified503,867,068.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
405420123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified7,727,093,903.00USD0
405520123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,664,752,844.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
405620123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,273,387.00USD0
405720123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,273,387.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
405820123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified34,427,742.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
405920123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified34,427,742.00USD0
406020123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified503,867,068.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
406120123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified7,727,093,903.00USD0
406220123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,702,453,973.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
406320123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,702,453,973.00USD0
406420123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,512,404,099.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
406520123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified5,710,822,736.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
406620123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,436,551.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
406720123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,436,551.00USD0
406820123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse14,966,737.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
406920123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse14,966,737.00USD0
407020123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress65,277,125.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
407120123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress15,246,595.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
407220123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress74,285,998.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
407320123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress208,744,844.00USD0
407420123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress128,221,124.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
407520123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress74,285,998.00USD0
407620123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress5,854,010,597.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
407720123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,784,176,522.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
407820123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,527,650,694.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
407920123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,784,176,522.00USD0
408020123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress569,144,193.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
408120123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,950,805,484.00USD0
408220123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility620,443,910.00USD0
408320123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility99,653,601.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
408420123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,812,186,110.00USD0
408520123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility99,653,601.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
408620123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility466,512,774.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
408720123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility620,443,910.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
408820123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility620,443,910.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
408920123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,246,019,735.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
409020123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility466,512,774.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
409120123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,812,186,110.00USD0
409220123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility620,443,910.00USD0
409320123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,246,019,735.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
409420123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet3,607,990,862.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
409520123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,061,137,920.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
409620123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,138,619,374.00USD0
409720123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet469,490,592.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
409820123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,163,732,612.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
409920123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,163,732,612.00USD0
410020123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,198,885,203.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
410120123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService599,192,249.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
410220123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService53,861,943.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
410320123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService462,445,512.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
410420123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,715,192,658.00USD0
410520123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService599,192,249.00USD0
410620123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService47,134,532.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
410720123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService45,791,659.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
410820123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService21,251,661.00USD0
410920123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService4,067,262.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
411020123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService96,993,453.00USD0
411120123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService21,251,661.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
411220123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,812,186,111.00USD0
411320123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService620,443,910.00USD0
411420123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService99,653,602.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
411520123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService466,512,774.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
411620123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService620,443,910.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
411720123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,246,019,735.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
411820123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility620,443,910.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
411920123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility466,512,774.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
412020123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,246,019,735.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
412120123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility99,653,601.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
412220123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility466,512,774.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
412320123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility99,653,601.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
412420123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,246,019,735.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
412520123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,812,186,110.00USD0
412620123QC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,812,186,110.00USD0
412720123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility620,443,910.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
412820123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility620,443,910.00USD0
412920123QC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility620,443,910.00USD0
413020122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified5,599,877,354.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
413120122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,486,228,044.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
413220122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified522,255,366.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
413320122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,655,091,919.00USD0
413420122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified7,608,360,764.00USD0
413520122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,655,091,919.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
413620122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,429,918.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
413720122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,429,918.00USD0
413820122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified30,235,546.00USD0
413920122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified30,235,546.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
414020122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified7,608,360,764.00USD0
414120122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,688,757,383.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
414220122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,486,228,044.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
414320122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified522,255,366.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
414420122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified5,599,877,354.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
414520122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,688,757,383.00USD0
414620122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse8,510,454.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
414720122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,436,551.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
414820122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,436,551.00USD0
414920122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse8,510,454.00USD0
415020122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress40,811,265.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
415120122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress89,585,071.00USD0
415220122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress219,770,221.00USD0
415320122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress168,870,185.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
415420122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress10,088,771.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
415520122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress89,585,071.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
415620122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,836,611,439.00USD0
415720122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress5,777,257,993.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
415820122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress563,066,631.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
415920122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,496,316,815.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
416020122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,785,779,005.00USD0
416120122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,785,779,005.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
416220122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,778,512,508.00USD0
416320122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility458,596,009.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
416420122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility97,942,324.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
416520122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility608,638,869.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
416620122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility608,638,869.00USD0
416720122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility608,638,869.00USD0
416820122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility97,942,324.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
416920122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,221,974,175.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
417020122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility458,596,009.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
417120122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,778,512,508.00USD0
417220122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,221,974,175.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
417320122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility608,638,869.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
417420122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,177,140,136.00USD0
417520122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet5,058,098,931.00USD0
417620122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,037,720,806.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
417720122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet3,555,283,818.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
417820122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet465,124,307.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
417920122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,177,140,136.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
418020122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,176,982,018.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
418120122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService588,210,536.00USD0
418220122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService588,210,536.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
418320122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,687,734,383.00USD0
418420122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService454,847,686.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
418520122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService55,904,679.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
418620122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService90,778,125.00USD0
418720122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService44,992,157.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
418820122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService3,748,323.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
418920122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService42,037,645.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
419020122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService20,428,333.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
419120122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService20,428,333.00USD0
419220122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,778,512,508.00USD0
419320122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService608,638,869.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
419420122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,221,974,175.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
419520122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService458,596,009.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
419620122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService97,942,324.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
419720122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService608,638,869.00USD0
419820122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,221,974,175.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
419920122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility608,638,869.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
420020122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility608,638,869.00USD0
420120122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility608,638,869.00USD0
420220122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility97,942,324.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
420320122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility458,596,009.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
420420122QC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility608,638,869.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
420520122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,221,974,175.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
420620122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility458,596,009.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
420720122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility97,942,324.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
420820122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,778,512,508.00USD0
420920122QC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,778,512,508.00USD0
421020121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified7,509,562,120.00USD0
421120121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,461,569,348.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
421220121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,647,494,745.00USD0
421320121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified5,525,619,631.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
421420121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified522,373,141.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
421520121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,647,494,745.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
421620121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,686,385.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
421720121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,686,385.00USD0
421820121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified30,796,829.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
421920121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified30,796,829.00USD0
422020121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified7,509,562,120.00USD0
422120121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,461,569,348.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
422220121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified5,525,619,631.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
422320121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,681,977,959.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
422420121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,681,977,959.00USD0
422520121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified522,373,141.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
422620121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,436,551.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
422720121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse12,585,975.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
422820121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,436,551.00USD0
422920121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse12,585,975.00USD0
423020121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress79,272,777.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
423120121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress79,272,777.00USD0
423220121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress193,854,505.00USD0
423320121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress146,714,587.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
423420121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress35,478,935.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
423520121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress11,660,983.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
423620121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,473,230,331.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
423720121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress557,852,076.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
423820121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress5,684,920,193.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
423920121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,768,687,287.00USD0
424020121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,716,002,600.00USD0
424120121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,768,687,287.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
424220121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility603,152,923.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
424320121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility603,152,923.00USD0
424420121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility452,560,140.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
424520121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility93,090,750.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
424620121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,188,395,615.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
424720121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility603,152,923.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
424820121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility93,090,750.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
424920121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility452,560,140.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
425020121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,188,395,615.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
425120121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,734,046,505.00USD0
425220121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,734,046,505.00USD0
425320121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility603,152,923.00USD0
425420121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet3,496,524,578.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
425520121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,981,956,095.00USD0
425620121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,165,534,364.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
425720121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,165,534,364.00USD0
425820121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet464,761,326.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
425920121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,020,670,191.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
426020121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService583,587,652.00USD0
426120121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService583,587,652.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
426220121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService449,130,757.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
426320121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,145,228,440.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
426420121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService55,020,619.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
426520121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,649,379,816.00USD0
426620121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService43,167,175.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
426720121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService19,565,271.00USD0
426820121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService19,565,271.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
426920121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService84,666,689.00USD0
427020121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService38,070,130.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
427120121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService3,429,384.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
427220121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,734,046,505.00USD0
427320121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService93,090,749.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
427420121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService452,560,141.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
427520121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,188,395,615.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
427620121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService603,152,923.00USD0
427720121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService603,152,923.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
427820121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,734,046,505.00USD0
427920121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility603,152,923.00USD0
428020121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility452,560,140.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
428120121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility93,090,750.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
428220121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,188,395,615.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
428320121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility603,152,923.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
428420121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility603,152,923.00USD0
428520121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,188,395,615.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
428620121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility452,560,140.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
428720121QC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility603,152,923.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
428820121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,734,046,505.00USD0
428920121QC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility93,090,750.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
42902011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified5,482,966,069.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
42912011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,637,068,431.00USD0
42922011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified414,653,138.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
42932011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,637,068,431.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
42942011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified7,284,525,493.00USD0
42952011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,386,906,286.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
42962011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,840,195.00USD0
42972011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases3,840,195.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
42982011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified28,057,163.00USD0
42992011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified28,057,163.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43002011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,668,965,789.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43012011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified5,482,966,069.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43022011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,386,906,286.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
43032011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified414,653,138.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
43042011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified7,284,525,493.00USD0
43052011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,668,965,789.00USD0
43062011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse12,120,820.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43072011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse12,120,820.00USD0
43082011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,436,551.00USD0
43092011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,436,551.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43102011YC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress298,395,486.00USD0
43112011YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress71,290,316.00USD0
43122011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress298,395,486.00USD0
43132011YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress298,395,486.00USD0
43142011YC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress71,290,316.00USD0
43152011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress59,086,757.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
43162011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress120,523,863.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43172011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress118,784,866.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
43182011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress71,290,316.00USD0
43192011YC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress298,395,486.00USD0
43202011YC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress71,290,316.00USD0
43212011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress71,290,316.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43222011YC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress71,290,316.00USD0
43232011YC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress298,395,486.00USD0
43242011YC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,747,692,656.00USD0
43252011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,595,041,799.00USD0
43262011YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,747,692,656.00USD0
43272011YC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,595,041,799.00USD0
43282011YC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,747,692,656.00USD0
43292011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,747,692,656.00USD0
43302011YC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,747,692,656.00USD0
43312011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,747,692,656.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43322011YC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,595,041,799.00USD0
43332011YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,595,041,799.00USD0
43342011YC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,595,041,799.00USD0
43352011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,445,993,043.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
43362011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress5,615,610,752.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43372011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress533,438,004.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
43382011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
43392011YC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
43402011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
43412011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
43422011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility447,162,509.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
43432011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
43442011YC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
43452011YC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
43462011YC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
43472011YC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
43482011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility86,692,618.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
43492011YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
43502011YC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
43512011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility86,692,618.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
43522011YC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
43532011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,149,146,065.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43542011YC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
43552011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43562011YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
43572011YC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
43582011YC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
43592011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,149,146,065.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43602011YC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
43612011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43622011YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
43632011YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
43642011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility447,162,509.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
43652011YC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
43662011YC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,148,788,535.00USD0
43672011YC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,912,040,607.00USD0
43682011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,148,788,535.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43692011YC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,912,040,607.00USD0
43702011YC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,912,040,607.00USD0
43712011YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,148,788,535.00USD0
43722011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,148,788,535.00USD0
43732011YC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,148,788,535.00USD0
43742011YC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,148,788,535.00USD0
43752011YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,912,040,607.00USD0
43762011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet446,745,386.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
43772011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet998,830,534.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
43782011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet3,466,464,687.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43792011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,912,040,607.00USD0
43802011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService53,752,702.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
43812011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,606,067,781.00USD0
43822011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService580,174,789.00USD0
43832011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService444,032,438.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
43842011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService580,174,789.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43852011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,108,282,641.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43862011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService76,933,411.00USD0
43872011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService32,939,916.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
43882011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService40,863,424.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43892011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService3,130,071.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
43902011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService18,729,332.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43912011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService18,729,332.00USD0
43922011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService447,162,509.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
43932011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService86,692,618.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
43942011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,683,001,192.00USD0
43952011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService598,904,121.00USD0
43962011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService598,904,121.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43972011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,149,146,065.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
43982011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility86,692,618.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
43992011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,149,146,065.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
44002011YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
44012011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
44022011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
44032011YC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
44042011YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
44052011YC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
44062011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
44072011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility86,692,618.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
44082011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,149,146,065.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
44092011YC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
44102011YC001111Baltimore Gas and Electric Company421301200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
44112011YC000533Kentucky Power Company421550200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
44122011YC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
44132011YC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
44142011YC000533Kentucky Power Company421552200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
44152011YC001111Baltimore Gas and Electric Company421298200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
44162011YC000533Kentucky Power Company421551200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
44172011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
44182011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility447,162,509.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
44192011YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
44202011YC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
44212011YC001111Baltimore Gas and Electric Company421300200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
44222011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
44232011YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility447,162,509.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
44242011YC000533Kentucky Power Company421553200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility598,904,121.00USD0
44252011YC001111Baltimore Gas and Electric Company421299200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,683,001,192.00USD0
442620113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified7,147,998,373.00USD0
442720113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,636,403,751.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
442820113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified432,709,388.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
442920113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,374,539,670.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
443020113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified5,340,749,315.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
443120113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion4UtilityPlantInServiceClassified1,636,403,751.00USD0
443220113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases4,135,589.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
443320113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion5UtilityPlantInServicePropertyUnderCapitalLeases4,135,589.00USD0
443420113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified25,092,986.00USD0
443520113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion7UtilityPlantInServiceCompletedConstructionNotClassified25,092,986.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
443620113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,374,539,670.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
443720113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified432,709,388.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
443820113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified5,340,749,315.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
443920113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,665,632,326.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
444020113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified7,147,998,373.00USD0
444120113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion9UtilityPlantInServiceClassifiedAndUnclassified1,665,632,326.00USD0
444220113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse11,259,800.00USD0
444320113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse11,259,800.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
444420113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,436,551.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
444520113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion11UtilityPlantHeldForFutureUse7,436,551.00USD0
444620113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress352,833,791.00USD0
444720113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress38,885,858.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
444820113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress103,300,595.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
444920113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress211,666,983.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
445020113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress38,885,858.00USD0
445120113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress37,866,213.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
445220113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress536,009,983.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
445320113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,711,954,735.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
445420113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,512,091,964.00USD0
445520113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,711,954,735.00USD0
445620113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,412,405,883.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
445720113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress5,563,676,098.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
445820113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility596,975,549.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
445920113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility596,975,549.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
446020113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility106,209,329.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
446120113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,126,051,014.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
446220113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility447,951,658.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
446320113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,680,212,001.00USD0
446420113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility596,975,549.00USD0
446520113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility447,951,658.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
446620113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,126,051,014.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
446720113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility106,209,329.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
446820113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility596,975,549.00USD0
446920113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,680,212,001.00USD0
447020113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,114,979,186.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
447120113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,831,879,963.00USD0
447220113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet964,454,225.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
447320113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet3,437,625,084.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
447420113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet429,800,654.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
447520113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,114,979,186.00USD0
447620113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService574,693,867.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
447720113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,083,704,330.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
447820113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService439,258,658.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
447920113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService574,693,867.00USD0
448020113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService2,574,504,829.00USD0
448120113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion19DepreciationUtilityPlantInService51,541,841.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
448220113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService8,693,000.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
448320113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService42,346,684.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
448420113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService105,707,172.00USD0
448520113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService22,281,682.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
448620113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService22,281,682.00USD0
448720113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion22AmortizationOfOtherUtilityPlantUtilityPlantInService54,667,488.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
448820113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,680,212,001.00USD0
448920113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService106,209,329.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
449020113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService447,951,658.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
449120113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService2,126,051,014.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
449220113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService596,975,549.00USD0
449320113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion23DepreciationAmortizationAndDepletionUtilityPlantInService596,975,549.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
449420113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility106,209,329.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
449520113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility596,975,549.00USD0
449620113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility596,975,549.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
449720113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility596,975,549.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
449820113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility106,209,329.00USD1[{'UtilityTypeAxis': 'CommonUtilityMember'}]
449920113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,126,051,014.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
450020113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility447,951,658.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
450120113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,680,212,001.00USD0
450220113QC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility596,975,549.00USD0
450320113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility447,951,658.00USD1[{'UtilityTypeAxis': 'GasUtilityMember'}]
450420113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,126,051,014.00USD1[{'UtilityTypeAxis': 'ElectricUtilityMember'}]
450520113QC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,680,212,001.00USD0
45062010YC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress34,092,976.00USD0
45072010YC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress232,918,990.00USD0
45082010YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress34,092,976.00USD0
45092010YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion12ConstructionWorkInProgress232,918,990.00USD0
45102010YC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,679,091,871.00USD0
45112010YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,201,727,460.00USD0
45122010YC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress7,201,727,460.00USD0
45132010YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion14UtilityPlantAndConstructionWorkInProgress1,679,091,871.00USD0
45142010YC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,659,775,623.00USD0
45152010YC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility568,441,518.00USD0
45162010YC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility568,441,518.00USD0
45172010YC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,659,775,623.00USD0
45182010YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,659,775,623.00USD0
45192010YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,659,775,623.00USD0
45202010YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility568,441,518.00USD0
45212010YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion15AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility568,441,518.00USD0
45222010YC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,541,951,837.00USD0
45232010YC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,110,650,353.00USD0
45242010YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet4,541,951,837.00USD0
45252010YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion16UtilityPlantNet1,110,650,353.00USD0
45262010YC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,659,775,623.00USD0
45272010YC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility568,441,518.00USD0
45282010YC001111Baltimore Gas and Electric Company418248200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,659,775,623.00USD0
45292010YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility568,441,518.00USD0
45302010YC000533Kentucky Power Company420967200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility568,441,518.00USD0
45312010YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,659,775,623.00USD0
45322010YC001111Baltimore Gas and Electric Company418249200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility2,659,775,623.00USD0
45332010YC000533Kentucky Power Company420966200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion34AccumulatedProvisionForDepreciationAmortizationAndDepletionOfPlantUtility568,441,518.00USD0
" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Define the parameters for the filter and fields to be returned, \n", "# run the loop to return results\n", "offset_value = 0\n", "res_df = []\n", "\n", "# Define the parameters of the query\n", "\n", "# query all taxonomies published for a specific year\n", "# https://api.xbrl.us/api/v1/dts/search?fields=dts.id,dts.version.sort(DESC),dts.taxonomy-name.sort(DESC)&dts.version=2023\n", "\n", "# query unique Statements in the 2023 FERC Form 1 Taxonomy\n", "# https://api.xbrl.us/api/v1/dts/730705/network/search?network.link-name=presentationLink&fields=network.role-description.sort(ASC),dts.id&unique\n", "\n", "XBRL_Elements = [\"200 - Schedule - Summary of Utility Plant and Accumulated Provisions for Depreciation, Amortization and Depletion\"]\n", "\n", "# query for a list of Form 1 filer entity codes:\n", "# https://api.xbrl.us/api/v1/report/search?report.document-type=1&fields=report.entity-name.sort(ASC),entity.code&unique\n", "entity_codes = [\n", "'C000533','C001111' \n", "]\n", "\n", "# Define data fields to return (multi-sort based on order)\n", "\n", "fields = [ # this is the list of the characteristics of the data being returned by the query\n", "\t\t'period.fiscal-year.sort(DESC)',\n", "\t\t'period.fiscal-period.sort(DESC)',\n", "\t\t'entity.code',\n", "\t\t'report.entity-name',\n", "\t\t'report.id',\n", "\t\t'cube.description.sort(ASC)',\n", "\t\t'cube.tree-sequence.sort(ASC)',\n", "\t\t'cube.primary-local-name',\n", "\t\t'fact.value',\n", "\t\t'unit',\n", "\t\t'dimensions.count',\n", "\t\t'dimension-pair.sort(ASC)'\n", " ]\n", "\n", "params = { # this is the list of what's being queried against the search endpoint\n", " 'cube.description': ','.join(XBRL_Elements), \n", " 'entity.code': ','.join(entity_codes),\n", " # uncomment this line to run by report.id AND comment the prior line for entity.code 'report.id': ','.join(full_list),\n", " 'fields': ','.join(fields)\n", " }\n", "\n", "endpoint = 'cube'\n", "\n", "# Execute the query with loop for all results - do not edit below this line\n", "\n", "search_endpoint = 'https://api.xbrl.us/api/v1/' + endpoint + '/search'\n", "orig_fields = params['fields']\n", "\n", "count = 0\n", "query_start = datetime.now()\n", "printed = False\n", "while True:\n", " if not printed:\n", " printed = True\n", " res = requests.get(search_endpoint, params=params, headers={'Authorization' : 'Bearer {}'.format(access_token)})\n", " res_json = res.json()\n", " if 'error' in res_json:\n", " print('There was an error: {}'.format(res_json['error_description']))\n", " break\n", "\n", " print(\"up to\", str(offset_value + res_json['paging']['limit']), \"records are found so far ...\")\n", "\n", " res_df += res_json['data']\n", "\n", " if res_json['paging']['count'] < res_json['paging']['limit']:\n", " print(\" - this set contained fewer than the\", res_json['paging']['limit'], \"possible, only\", str(res_json['paging']['count']), \"records.\")\n", " break\n", " else: \n", " offset_value += res_json['paging']['limit'] \n", " if 100 == res_json['paging']['limit']:\n", " params['fields'] = orig_fields + ',' + endpoint + '.offset({})'.format(offset_value)\n", " if offset_value == 10 * res_json['paging']['limit']:\n", " break \n", " elif 500 == res_json['paging']['limit']:\n", " params['fields'] = orig_fields + ',' + endpoint + '.offset({})'.format(offset_value)\n", " if offset_value == 4 * res_json['paging']['limit']:\n", " break \n", " params['fields'] = orig_fields + ',' + endpoint + '.offset({})'.format(offset_value)\n", "\n", "if not 'error' in res_json:\n", " current_datetime = datetime.now().replace(microsecond=0)\n", " time_taken = current_datetime - query_start\n", " index = pd.DataFrame(res_df).index\n", " total_rows = len(index)\n", " your_limit = res_json['paging']['limit']\n", " limit_message = \"If the results below match the limit noted above, you might not be seeing all rows, and should consider upgrading (https://xbrl.us/access-token).\\n\"\n", " \n", " if your_limit == 100:\n", " print(\"\\nThis non-Member account has a limit of \" , 10 * your_limit, \" rows per query from our Public Filings Database. \" + limit_message)\n", " elif your_limit == 500:\n", " print(\"\\nThis Basic Individual Member account has a limit of \", 4 * your_limit, \" rows per query from our Public Filings Database. \" + limit_message)\n", " \n", " print(\"\\nAt \" + current_datetime.strftime(\"%c\") + \", the query finished with \", str(total_rows), \" rows returned in \" + str(time_taken) + \" for \\n\" + urllib.parse.unquote(res.url))\n", " \n", " \n", " df = pd.DataFrame(res_df)\n", " # the format truncates the HTML display of numerical values to two decimals; .csv data is unaffected\n", " pd.options.display.float_format = '{:,.2f}'.format\n", " display(HTML(df.to_html()))" ] }, { "cell_type": "code", "execution_count": null, "id": "eb733dae", "metadata": {}, "outputs": [], "source": [ "# If you run this program locally, you can save the output to a file on your computer (modify D:\\results.csv to your system)\n", "df.to_csv(r\"D:\\results.csv\",sep=\",\")" ] } ], "metadata": { "interpreter": { "hash": "" }, "kernelspec": { "display_name": "", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "" } }, "nbformat": 4, "nbformat_minor": 5 }