diff --git a/.gitignore b/.gitignore index d22bb9e..8dce627 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,10 @@ # Ignore node_modules folder -./node_modules/ +app/node_modules/ # Ignore VS Code settings .vscode/* !.vscode/settings.json !.vscode/tasks.json !.vscode/launch.json -!.vscode/extensions.json \ No newline at end of file +!.vscode/extensions.json +# Ignore the cloudgov dist files +app/dist/cloudgov/* diff --git a/README.md b/README.md index 2f7b002..6218432 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,10 @@ These instructions will get you a copy of the project up and running on your loc Most of the text content in the app can be found within the `template` sections of each Vue component. You can make changes to this text directly to the `.vue` files there. Some content is added programmatically. For example, the values that appear in the result of the emissions estimate are added in the logic of the display methods within `EmissionsCalculator.vue.` +## Updating the data files + +Go to the `prep` folder and follow the instructions outlined in the `README.md`. + ## Requirements - [Node.js and npm](https://nodejs.org/en/) @@ -39,6 +43,17 @@ The "Page Javascript" section should look like this: ``` +## Cloud.gov +You can deploy the app to Cloud.gov for testing purposes. To do this you will need a Cloud.gov account and the [Cloud Foundry Command Line Tools](https://github.com/cloudfoundry/cli#installers-and-compressed-binaries) installed on your machine. Use these commands to build and deploy the app to Cloud.gov. + +- From `app` directory run: +`npm run cloudgov` + +- Change directories to `app\dist\cloudgov` and run: +`cf push test-power-profile` + +*Note: you will first need to log into Cloud.gov (see `cf login`)* + ## Built With * [D3 Data-Driven Documents](https://d3js.org) - JavaScript library for data viz diff --git a/.babelrc.js b/app/.babelrc.js similarity index 100% rename from .babelrc.js rename to app/.babelrc.js diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..d22bb9e --- /dev/null +++ b/app/.gitignore @@ -0,0 +1,8 @@ +# Ignore node_modules folder +./node_modules/ +# Ignore VS Code settings +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json \ No newline at end of file diff --git a/app/README.md b/app/README.md new file mode 100644 index 0000000..2f7b002 --- /dev/null +++ b/app/README.md @@ -0,0 +1,61 @@ +Link to app in production: https://www.epa.gov/energy/power-profiler + +# Power Profiler + +Power Profiler is an interactive tool to visualize a subset of eGRID data. Users can view resource mix and emission rates for all eGRID subregions. Historically, the app was hosted at the NCC and required an Oracle database. This project is intended to update the app with new visualizations (using D3.js) and rely on front-end JavaScript in order to be deployed onto the EPA's Drupal WebCMS. + +## Installation + +These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system. + +1. Clone the application to your local machine. +2. Navigate to the root of the project and run `npm install`. +3. After downloading the required packages, you can run `npm run dev`. In your browser, go to [http://localhost:8080](http://localhost:8080). + +## Editing Text + +Most of the text content in the app can be found within the `template` sections of each Vue component. You can make changes to this text directly to the `.vue` files there. Some content is added programmatically. For example, the values that appear in the result of the emissions estimate are added in the logic of the display methods within `EmissionsCalculator.vue.` + +## Requirements + +- [Node.js and npm](https://nodejs.org/en/) + +## Deployment + +To deploy the the app onto either the [production EPA Drupal site](https://wcms.epa.gov) or the [staging app dev server](https://webcms.appdev.epa.gov), verify that the correct paths to the `subregion.json` and `zip.csv` files are both correct in the webpack config file (`prod.config.js` or `stag.config.js`), located in the `webpack` folder. + +Then, use one the following commands to deploy: +- Staging: `npm run stage` +- Production: `npm run prod` + +Note, these commands will clear any existing folder with built resources located in either `dist/stag` or `dist/prod`. Then, it will create a `bundle.js` file and `index.html`. Using only the `bundle.js` minified JS, you can copy and paste this code into the "Page Javascript" input field in Drupal. + +If deploying to one of these environments, make sure to provide the app the URL of the D3 library hosted on EPA's website and assign the variable `&` to `jQuery` (shown below). + +The "Page Javascript" section should look like this: +``` + + + +``` + +## Built With + +* [D3 Data-Driven Documents](https://d3js.org) - JavaScript library for data viz +* [Vue.js](https://vuejs.org/) - The JavaScript framework used +* [Node.js and npm](https://nodejs.org/en/) - JavaScript runtime and package manager +* [Webpack](https://webpack.js.org/) - JavaScript bundler +* [Babel](https://babeljs.io/) - JavaScript compiler + +## Versioning + +- Version 1.0 was released on December 21, 2018. +- Version 1.1 was released on June 20, 2019 + +## Helpful Links +- [Staging site for app](https://webcms.appdev.epa.gov/energy/power-profiler) +- [Production site](https://www.epa.gov/energy/power-profiler) +- [eGRID Home page](https://www.epa.gov/energy/emissions-generation-resource-integrated-database-egrid) + +## Disclaimer +The United States Environmental Protection Agency (EPA) GitHub project code is provided on an "as is" basis and the user assumes responsibility for its use. EPA has relinquished control of the information and no longer has responsibility to protect the integrity , confidentiality, or availability of the information. Any reference to specific commercial products, processes, or services by service mark, trademark, manufacturer, or otherwise, does not constitute or imply their endorsement, recommendation or favoring by EPA. The EPA seal and logo shall not be used in any manner to imply endorsement of any commercial product or activity by EPA or the United States Government. \ No newline at end of file diff --git a/assets/img/egrid-text-logo.png b/app/assets/img/egrid-text-logo.png similarity index 100% rename from assets/img/egrid-text-logo.png rename to app/assets/img/egrid-text-logo.png diff --git a/data/subregion.json b/app/data/subregion.json similarity index 89% rename from data/subregion.json rename to app/data/subregion.json index 857ec4b..51a2d9d 100644 --- a/data/subregion.json +++ b/app/data/subregion.json @@ -18,7 +18,7 @@ {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-66.95954,18.489878],[-65.904988,18.450926],[-65.638181,18.229121],[-66.155387,17.929406],[-67.21433,17.962436],[-67.267484,18.353149],[-66.95954,18.489878]]]},"properties":{"GEO_ID":"0400000US72","STATE":"72","NAME":"Puerto Rico","LSAD":"","CENSUSAREA":3423.775}}, {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.669711,37.950796],[-76.33636,38.492235],[-76.147158,38.63684],[-76.334619,38.772911],[-76.163988,38.999541],[-76.278527,39.145764],[-76.519442,38.863135],[-76.515706,38.528988],[-76.388348,38.387781],[-76.590637,38.214212],[-76.920932,38.291568],[-77.1302,38.635017],[-77.038598,38.791513],[-77.1199,38.934311],[-77.527282,39.146236],[-77.719029,39.321125],[-77.878451,39.563493],[-78.171361,39.695612],[-78.462899,39.52084],[-78.795857,39.606934],[-79.486873,39.205961],[-79.476662,39.721078],[-77.469145,39.720018],[-75.788359,39.721811],[-75.693521,38.460128],[-75.048939,38.451263],[-75.242266,38.027209],[-75.669711,37.950796]]]},"properties":{"GEO_ID":"0400000US24","STATE":"24","NAME":"Maryland","LSAD":"","CENSUSAREA":9707.241}}, {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-85.002368,31.000682],[-86.519938,30.993245],[-87.598928,30.997457],[-87.406958,30.675165],[-87.429578,30.406498],[-87.518324,30.280435],[-87.656888,30.249709],[-88.100874,30.50975],[-88.107274,30.377246],[-88.395023,30.369425],[-88.473227,31.893856],[-88.330934,33.073125],[-88.097888,34.892202],[-88.200064,34.995634],[-86.862147,34.991956],[-85.605165,34.984678],[-84.893959,32.265846],[-85.140131,31.858761],[-85.002368,31.000682]]]},"properties":{"GEO_ID":"0400000US01","STATE":"01","NAME":"Alabama","LSAD":"","CENSUSAREA":50645.326}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-167.852333,53.315599],[-167.102305,53.515077],[-167.141966,53.826932],[-166.728918,54.003111],[-166.210964,53.933557],[-166.111317,53.776856],[-166.581011,53.530449],[-167.644179,53.250842],[-167.852333,53.315599]]],[[[-168.211705,53.256184],[-168.49749,53.035403],[-168.763331,53.182812],[-168.445083,53.26533],[-168.40418,53.416941],[-168.004624,53.566053],[-167.842328,53.386489],[-168.211705,53.256184]]],[[[172.763366,52.823656],[172.629077,53.001324],[173.107249,52.993228],[173.421682,52.845477],[172.903628,52.761667],[172.763366,52.823656]]],[[[-136.355431,58.222617],[-135.823562,58.282975],[-135.451444,58.134348],[-135.108896,58.08827],[-134.824891,57.500067],[-135.084338,57.464671],[-135.589839,57.660469],[-135.557765,57.451966],[-135.892131,57.408048],[-136.365052,57.828561],[-136.573288,57.926844],[-136.355431,58.222617]]],[[[-134.608358,58.173472],[-134.215981,58.162128],[-133.904874,57.807406],[-133.870657,57.358287],[-134.497718,57.031194],[-134.646773,57.226327],[-134.607557,57.513042],[-134.731798,57.721921],[-134.784927,58.096793],[-134.608358,58.173472]]],[[[-133.087587,55.429391],[-133.438933,55.645167],[-133.172912,55.814904],[-133.386468,55.946369],[-133.626006,56.35842],[-133.163212,56.317445],[-133.05552,56.125258],[-132.470697,55.782162],[-132.126398,55.288418],[-131.995908,55.259054],[-131.957914,54.791239],[-132.142277,54.691674],[-132.609786,54.965728],[-132.541802,55.097764],[-132.890686,55.23487],[-133.087587,55.429391]]],[[[-152.417424,57.815464],[-152.34666,57.423137],[-152.944201,57.259083],[-152.911371,57.126813],[-153.543429,56.995245],[-153.963274,56.7476],[-154.524695,56.991623],[-154.691855,57.28411],[-154.629678,57.510197],[-153.93522,57.813047],[-153.452645,57.963509],[-152.549661,57.900137],[-152.417424,57.815464]]],[[[-132.546463,56.606563],[-132.818043,56.494934],[-133.089215,56.523916],[-133.663094,56.448073],[-133.712922,56.827958],[-133.887957,57.097744],[-133.104611,57.005701],[-132.546463,56.606563]]],[[[-135.548794,57.508977],[-135.06505,57.418972],[-134.841774,57.248588],[-134.633997,56.728722],[-134.634668,56.265832],[-134.806163,56.235533],[-135.412989,56.810079],[-135.31278,57.044984],[-135.687696,57.367477],[-135.548794,57.508977]]],[[[-134.121514,56.069847],[-134.419791,56.838385],[-134.083291,56.931579],[-133.70806,56.608185],[-133.898589,56.489877],[-133.880927,56.222712],[-134.121514,56.069847]]],[[[-169.267598,63.343995],[-168.686675,63.293022],[-168.85875,63.146958],[-169.375667,63.151269],[-169.829912,63.07855],[-170.364806,63.285596],[-171.100855,63.42342],[-171.464455,63.306915],[-171.849984,63.485039],[-171.742338,63.665494],[-170.907197,63.572107],[-170.488192,63.696723],[-170.047114,63.490135],[-169.267598,63.343995]]],[[[-165.721389,60.16962],[-165.575815,59.904672],[-166.079823,59.775949],[-166.616849,59.850711],[-167.342885,60.074979],[-167.312616,60.238454],[-166.93797,60.20587],[-166.762522,60.309837],[-166.174906,60.401003],[-165.721389,60.16962]]],[[[-151.886513,59.421033],[-151.272459,59.555823],[-151.867713,59.778411],[-151.40927,60.720558],[-150.377171,61.039144],[-149.751943,61.024072],[-150.711291,61.251089],[-151.166606,61.046404],[-151.4803,61.010902],[-151.848614,60.733976],[-152.309221,60.506384],[-152.234199,60.393888],[-152.624648,60.218687],[-152.706431,59.915284],[-153.002521,59.886726],[-153.051559,59.691562],[-153.542466,59.630236],[-153.727546,59.435346],[-154.044563,59.388295],[-154.214818,59.151562],[-153.695664,59.073994],[-153.33478,58.920521],[-153.402472,58.742607],[-153.897155,58.606237],[-153.999323,58.376372],[-154.340449,58.090921],[-155.026275,57.999302],[-155.097095,57.865356],[-155.545676,57.786769],[-155.724167,57.633445],[-156.339425,57.417641],[-156.334404,57.1823],[-156.758967,57.025174],[-157.201724,56.767511],[-157.378771,56.861696],[-157.83842,56.56076],[-158.328798,56.484208],[-158.498837,56.38011],[-158.25247,56.199381],[-158.653214,55.958615],[-159.498022,55.855299],[-159.81107,55.85657],[-160.158013,55.663098],[-160.86538,55.526968],[-161.231535,55.357452],[-161.507657,55.362786],[-161.587047,55.62006],[-161.960866,55.106734],[-162.471364,55.051932],[-162.770983,54.932736],[-163.036062,54.942544],[-163.585967,54.611644],[-164.084894,54.620131],[-164.352704,54.465023],[-164.844931,54.417583],[-164.949781,54.575697],[-164.709465,54.661518],[-164.550256,54.888785],[-163.894695,55.039115],[-163.532962,55.048881],[-162.512111,55.378333],[-162.565411,55.466849],[-162.257033,55.693373],[-161.816225,55.888993],[-161.290777,55.98313],[-160.930591,55.814358],[-160.568356,56.004062],[-160.357156,56.279582],[-159.828049,56.543935],[-159.324421,56.670356],[-158.957471,56.851184],[-158.660298,56.789015],[-158.637364,57.061364],[-158.376249,57.265542],[-157.703852,57.563455],[-157.703782,57.721768],[-157.451918,58.505618],[-157.077914,58.708103],[-157.116866,58.867533],[-158.140307,58.61502],[-158.767748,58.864264],[-158.827852,58.626432],[-159.063346,58.423139],[-159.586966,58.900314],[-159.91031,58.773731],[-160.250433,58.897317],[-160.360184,59.061471],[-160.829245,58.848048],[-161.337982,58.742912],[-161.682907,58.564671],[-161.939163,58.655613],[-161.756622,58.826477],[-162.048584,59.254177],[-161.70253,59.490906],[-162.100708,59.944675],[-162.503647,59.99923],[-163.559148,59.801391],[-164.115117,59.836688],[-165.362975,60.506866],[-165.063148,60.688645],[-165.03204,60.903986],[-165.590682,61.111169],[-165.754317,61.498704],[-166.139409,61.632315],[-165.612337,61.871907],[-165.672037,62.13989],[-165.046045,62.54042],[-164.770232,62.592082],[-164.8773,62.78432],[-164.633943,63.09782],[-164.140096,63.259336],[-163.73265,63.213257],[-163.316203,63.037763],[-163.0405,63.062151],[-162.271089,63.487711],[-161.527809,63.451177],[-161.136758,63.504525],[-160.76556,63.773552],[-160.976038,64.235761],[-161.410382,64.422107],[-160.802048,64.610352],[-160.935974,64.82237],[-162.539996,64.530931],[-163.253027,64.469501],[-163.597834,64.563356],[-164.421871,64.545256],[-165.016519,64.434392],[-166.236939,64.583558],[-166.690814,64.985372],[-166.485968,65.3309],[-167.474024,65.412744],[-168.0752,65.576355],[-168.103708,65.685552],[-167.539643,65.820836],[-165.80503,66.33331],[-164.711009,66.542541],[-163.754171,66.551284],[-163.916551,66.190494],[-163.76751,66.060803],[-162.750705,66.09016],[-161.838018,66.022582],[-161.548429,66.239912],[-161.129512,66.336248],[-161.87488,66.511446],[-162.621564,66.85086],[-162.310392,66.937047],[-161.86618,66.704978],[-161.674359,66.961965],[-161.810256,67.050281],[-162.449219,66.988391],[-163.741345,67.129123],[-164.079514,67.585856],[-165.888488,68.113327],[-166.377564,68.422406],[-166.214433,68.879524],[-165.327043,68.858111],[-164.253157,68.930938],[-163.535314,69.141656],[-163.110318,69.375343],[-163.012595,69.757462],[-162.481016,69.975242],[-161.922949,70.291599],[-161.254723,70.256612],[-160.732703,70.374382],[-159.648383,70.794368],[-158.656101,70.787955],[-157.502459,70.948659],[-156.809653,71.286886],[-155.03174,71.146473],[-154.181863,70.768325],[-153.89048,70.885719],[-153.23848,70.922467],[-152.259966,70.84282],[-152.420775,70.608983],[-151.554647,70.435895],[-150.762035,70.497219],[-150.112899,70.431372],[-149.866698,70.510769],[-148.610566,70.422588],[-147.681722,70.199954],[-145.790386,70.148569],[-145.197331,69.994954],[-144.618671,69.969315],[-143.911494,70.129837],[-142.746807,70.042531],[-141.43084,69.695144],[-141.002672,69.645609],[-141.002465,65.840075],[-141.00184,60.306105],[-139.989142,60.18524],[-139.698361,60.340421],[-139.086669,60.357654],[-139.200346,60.090701],[-138.702053,59.910245],[-138.620931,59.770559],[-137.604277,59.243057],[-137.447383,58.909513],[-136.581521,59.164909],[-136.474326,59.464194],[-136.256889,59.623646],[-135.477436,59.799626],[-134.961972,59.280376],[-134.481241,59.128071],[-134.250526,58.858046],[-133.840392,58.727991],[-133.379908,58.427909],[-132.051044,57.051155],[-131.835133,56.601849],[-131.581221,56.613275],[-130.102761,56.116696],[-130.025929,55.915995],[-130.150595,55.767031],[-129.980058,55.28423],[-130.695817,54.719346],[-130.947098,54.826047],[-131.092605,55.192711],[-131.550044,55.293389],[-131.986493,55.500619],[-132.224167,55.701766],[-132.279962,55.924839],[-132.718342,56.217704],[-132.340678,56.341754],[-132.35841,56.595266],[-132.933219,56.994184],[-133.517197,57.177776],[-133.505982,57.578459],[-134.146685,58.199084],[-134.631203,58.247446],[-134.649643,58.378912],[-135.137433,58.829819],[-135.049062,58.309295],[-135.277198,58.233634],[-135.622105,58.428186],[-136.591924,58.217886],[-137.680811,58.621835],[-137.932593,58.868494],[-138.301496,59.058058],[-139.420168,59.37976],[-139.746478,59.503415],[-139.483129,59.707065],[-139.811185,59.829332],[-140.285557,59.698717],[-140.92722,59.745709],[-141.73624,59.961905],[-142.537534,60.083953],[-142.908859,60.090328],[-143.897029,59.985938],[-144.1103,60.098939],[-144.654899,60.204882],[-144.834059,60.443751],[-145.335651,60.338098],[-145.856046,60.610936],[-146.521336,60.775205],[-146.745543,60.957582],[-147.136884,60.980968],[-147.378086,60.877845],[-148.148298,60.828701],[-147.953709,60.42261],[-148.216921,60.331594],[-148.14282,60.039833],[-148.55292,59.954053],[-148.881286,59.929307],[-149.341584,60.076762],[-149.459733,59.919313],[-150.431504,59.396783],[-150.739958,59.425211],[-150.942212,59.233136],[-151.748451,59.158601],[-151.886513,59.421033]]],[[[-176.762478,51.867878],[-176.290728,51.872136],[-176.289921,51.741678],[-176.863062,51.684921],[-176.762478,51.867878]]],[[[-152.24289,58.241192],[-152.79626,57.992185],[-153.412933,58.069811],[-153.044316,58.306336],[-152.512483,58.427349],[-152.24289,58.241192]]]]},"properties":{"GEO_ID":"0400000US02","STATE":"02","NAME":"Alaska","LSAD":"","CENSUSAREA":570640.95}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-167.852333,53.315599],[-167.102305,53.515077],[-167.141966,53.826932],[-166.728918,54.003111],[-166.210964,53.933557],[-166.111317,53.776856],[-166.581011,53.530449],[-167.644179,53.250842],[-167.852333,53.315599]]],[[[-168.211705,53.256184],[-168.49749,53.035403],[-168.763331,53.182812],[-168.445083,53.26533],[-168.40418,53.416941],[-168.004624,53.566053],[-167.842328,53.386489],[-168.211705,53.256184]]],[[[172.763366,52.823656],[172.629077,53.001324],[173.107249,52.993228],[173.421682,52.845477],[172.903628,52.761667],[172.763366,52.823656]]],[[[-136.355431,58.222617],[-135.823562,58.282975],[-135.451444,58.134348],[-135.108896,58.08827],[-134.824891,57.500067],[-135.084338,57.464671],[-135.589839,57.660469],[-135.557765,57.451966],[-135.892131,57.408048],[-136.365052,57.828561],[-136.573288,57.926844],[-136.355431,58.222617]]],[[[-134.608358,58.173472],[-134.215981,58.162128],[-133.904874,57.807406],[-133.870657,57.358287],[-134.497718,57.031194],[-134.646773,57.226327],[-134.607557,57.513042],[-134.731798,57.721921],[-134.784927,58.096793],[-134.608358,58.173472]]],[[[-133.087587,55.429391],[-133.438933,55.645167],[-133.172912,55.814904],[-133.386468,55.946369],[-133.626006,56.35842],[-133.163212,56.317445],[-133.05552,56.125258],[-132.470697,55.782162],[-132.126398,55.288418],[-131.995908,55.259054],[-131.957914,54.791239],[-132.142277,54.691674],[-132.609786,54.965728],[-132.541802,55.097764],[-132.890686,55.23487],[-133.087587,55.429391]]],[[[-152.417424,57.815464],[-152.34666,57.423137],[-152.944201,57.259083],[-152.911371,57.126813],[-153.543429,56.995245],[-153.963274,56.7476],[-154.524695,56.991623],[-154.691855,57.28411],[-154.629678,57.510197],[-153.93522,57.813047],[-153.452645,57.963509],[-152.549661,57.900137],[-152.417424,57.815464]]],[[[-132.546463,56.606563],[-132.818043,56.494934],[-133.089215,56.523916],[-133.663094,56.448073],[-133.712922,56.827958],[-133.887957,57.097744],[-133.104611,57.005701],[-132.546463,56.606563]]],[[[-135.548794,57.508977],[-135.06505,57.418972],[-134.841774,57.248588],[-134.633997,56.728722],[-134.634668,56.265832],[-134.806163,56.235533],[-135.412989,56.810079],[-135.31278,57.044984],[-135.687696,57.367477],[-135.548794,57.508977]]],[[[-134.121514,56.069847],[-134.419791,56.838385],[-134.083291,56.931579],[-133.70806,56.608185],[-133.898589,56.489877],[-133.880927,56.222712],[-134.121514,56.069847]]],[[[-169.267598,63.343995],[-168.686675,63.293022],[-168.85875,63.146958],[-169.375667,63.151269],[-169.829912,63.07855],[-170.364806,63.285596],[-171.100855,63.42342],[-171.464455,63.306915],[-171.849984,63.485039],[-171.742338,63.665494],[-170.907197,63.572107],[-170.488192,63.696723],[-170.047114,63.490135],[-169.267598,63.343995]]],[[[-165.721389,60.16962],[-165.575815,59.904672],[-166.079823,59.775949],[-166.616849,59.850711],[-167.342885,60.074979],[-167.312616,60.238454],[-166.93797,60.20587],[-166.762522,60.309837],[-166.174906,60.401003],[-165.721389,60.16962]]],[[[-151.886513,59.421033],[-151.272459,59.555823],[-151.867713,59.778411],[-151.40927,60.720558],[-150.377171,61.039144],[-149.751943,61.024072],[-150.711291,61.251089],[-151.166606,61.046404],[-151.4803,61.010902],[-151.848614,60.733976],[-152.309221,60.506384],[-152.234199,60.393888],[-152.624648,60.218687],[-152.706431,59.915284],[-153.002521,59.886726],[-153.051559,59.691562],[-153.542466,59.630236],[-153.727546,59.435346],[-154.044563,59.388295],[-154.214818,59.151562],[-153.695664,59.073994],[-153.33478,58.920521],[-153.402472,58.742607],[-153.897155,58.606237],[-153.999323,58.376372],[-154.340449,58.090921],[-155.026275,57.999302],[-155.097095,57.865356],[-155.545676,57.786769],[-155.724167,57.633445],[-156.339425,57.417641],[-156.334404,57.1823],[-156.758967,57.025174],[-157.201724,56.767511],[-157.378771,56.861696],[-157.83842,56.56076],[-158.328798,56.484208],[-158.498837,56.38011],[-158.25247,56.199381],[-158.653214,55.958615],[-159.498022,55.855299],[-159.81107,55.85657],[-160.158013,55.663098],[-160.86538,55.526968],[-161.231535,55.357452],[-161.507657,55.362786],[-161.587047,55.62006],[-161.960866,55.106734],[-162.471364,55.051932],[-162.770983,54.932736],[-163.036062,54.942544],[-163.585967,54.611644],[-164.084894,54.620131],[-164.352704,54.465023],[-164.844931,54.417583],[-164.949781,54.575697],[-164.709465,54.661518],[-164.550256,54.888785],[-163.894695,55.039115],[-163.532962,55.048881],[-162.512111,55.378333],[-162.565411,55.466849],[-162.257033,55.693373],[-161.816225,55.888993],[-161.290777,55.98313],[-160.930591,55.814358],[-160.568356,56.004062],[-160.357156,56.279582],[-159.828049,56.543935],[-159.324421,56.670356],[-158.957471,56.851184],[-158.660298,56.789015],[-158.637364,57.061364],[-158.376249,57.265542],[-157.703852,57.563455],[-157.703782,57.721768],[-157.451918,58.505618],[-157.077914,58.708103],[-157.116866,58.867533],[-158.140307,58.61502],[-158.767748,58.864264],[-158.827852,58.626432],[-159.063346,58.423139],[-159.586966,58.900314],[-159.91031,58.773731],[-160.250433,58.897317],[-160.360184,59.061471],[-160.829245,58.848048],[-161.337982,58.742912],[-161.682907,58.564671],[-161.939163,58.655613],[-161.756622,58.826477],[-162.048584,59.254177],[-161.70253,59.490906],[-162.100708,59.944675],[-162.503647,59.99923],[-163.559148,59.801391],[-164.115117,59.836688],[-165.362975,60.506866],[-165.063148,60.688645],[-165.03204,60.903986],[-165.590682,61.111169],[-165.754317,61.498704],[-166.139409,61.632315],[-165.612337,61.871907],[-165.672037,62.13989],[-165.046045,62.54042],[-164.770232,62.592082],[-164.8773,62.78432],[-164.633943,63.09782],[-164.140096,63.259336],[-163.73265,63.213257],[-163.316203,63.037763],[-163.0405,63.062151],[-162.271089,63.487711],[-161.527809,63.451177],[-161.136758,63.504525],[-160.76556,63.773552],[-160.976038,64.235761],[-161.410382,64.422107],[-160.802048,64.610352],[-160.935974,64.82237],[-162.539996,64.530931],[-163.253027,64.469501],[-163.597834,64.563356],[-164.421871,64.545256],[-165.016519,64.434392],[-166.236939,64.583558],[-166.690814,64.985372],[-166.485968,65.3309],[-167.474024,65.412744],[-168.0752,65.576355],[-168.103708,65.685552],[-167.539643,65.820836],[-165.80503,66.33331],[-164.711009,66.542541],[-163.754171,66.551284],[-163.916551,66.190494],[-163.76751,66.060803],[-162.750705,66.09016],[-161.838018,66.022582],[-161.548429,66.239912],[-161.129512,66.336248],[-161.87488,66.511446],[-162.621564,66.85086],[-162.310392,66.937047],[-161.86618,66.704978],[-161.674359,66.961965],[-161.810256,67.050281],[-162.449219,66.988391],[-163.741345,67.129123],[-164.079514,67.585856],[-165.888488,68.113327],[-166.377564,68.422406],[-166.214433,68.879524],[-164.253157,68.930938],[-163.535314,69.141656],[-163.110318,69.375343],[-163.012595,69.757462],[-162.481016,69.975242],[-161.922949,70.291599],[-161.254723,70.256612],[-160.732703,70.374382],[-159.648383,70.794368],[-158.656101,70.787955],[-157.502459,70.948659],[-156.809653,71.286886],[-155.03174,71.146473],[-154.181863,70.768325],[-153.89048,70.885719],[-153.23848,70.922467],[-152.259966,70.84282],[-152.420775,70.608983],[-151.554647,70.435895],[-150.762035,70.497219],[-150.112899,70.431372],[-149.866698,70.510769],[-148.610566,70.422588],[-147.681722,70.199954],[-145.790386,70.148569],[-145.197331,69.994954],[-144.618671,69.969315],[-143.911494,70.129837],[-142.746807,70.042531],[-141.43084,69.695144],[-141.002672,69.645609],[-141.002465,65.840075],[-141.00184,60.306105],[-139.989142,60.18524],[-139.698361,60.340421],[-139.086669,60.357654],[-139.200346,60.090701],[-138.702053,59.910245],[-138.620931,59.770559],[-137.604277,59.243057],[-137.447383,58.909513],[-136.581521,59.164909],[-136.474326,59.464194],[-136.256889,59.623646],[-135.477436,59.799626],[-134.961972,59.280376],[-134.481241,59.128071],[-134.250526,58.858046],[-133.840392,58.727991],[-133.379908,58.427909],[-132.051044,57.051155],[-131.835133,56.601849],[-131.581221,56.613275],[-130.102761,56.116696],[-130.025929,55.915995],[-130.150595,55.767031],[-129.980058,55.28423],[-130.695817,54.719346],[-130.947098,54.826047],[-131.092605,55.192711],[-131.550044,55.293389],[-131.986493,55.500619],[-132.224167,55.701766],[-132.279962,55.924839],[-132.718342,56.217704],[-132.340678,56.341754],[-132.35841,56.595266],[-132.933219,56.994184],[-133.517197,57.177776],[-133.505982,57.578459],[-134.146685,58.199084],[-134.631203,58.247446],[-134.649643,58.378912],[-135.137433,58.829819],[-135.049062,58.309295],[-135.277198,58.233634],[-135.622105,58.428186],[-136.591924,58.217886],[-137.680811,58.621835],[-137.932593,58.868494],[-138.301496,59.058058],[-139.420168,59.37976],[-139.746478,59.503415],[-139.483129,59.707065],[-139.811185,59.829332],[-140.285557,59.698717],[-140.92722,59.745709],[-141.73624,59.961905],[-142.537534,60.083953],[-142.908859,60.090328],[-143.897029,59.985938],[-144.1103,60.098939],[-144.654899,60.204882],[-144.834059,60.443751],[-145.335651,60.338098],[-145.856046,60.610936],[-146.521336,60.775205],[-146.745543,60.957582],[-147.136884,60.980968],[-147.378086,60.877845],[-148.148298,60.828701],[-147.953709,60.42261],[-148.216921,60.331594],[-148.14282,60.039833],[-148.55292,59.954053],[-148.881286,59.929307],[-149.341584,60.076762],[-149.459733,59.919313],[-150.431504,59.396783],[-150.739958,59.425211],[-150.942212,59.233136],[-151.748451,59.158601],[-151.886513,59.421033]]],[[[-176.762478,51.867878],[-176.290728,51.872136],[-176.289921,51.741678],[-176.863062,51.684921],[-176.762478,51.867878]]],[[[-152.24289,58.241192],[-152.79626,57.992185],[-153.412933,58.069811],[-153.044316,58.306336],[-152.512483,58.427349],[-152.24289,58.241192]]]]},"properties":{"GEO_ID":"0400000US02","STATE":"02","NAME":"Alaska","LSAD":"","CENSUSAREA":570640.95}}, {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-109.045223,36.999084],[-109.046024,35.8798],[-109.046182,34.522393],[-109.04748,33.06842],[-109.050044,31.332502],[-111.074825,31.332239],[-113.125961,31.97278],[-114.813613,32.494277],[-114.719633,32.718763],[-114.526856,32.757094],[-114.50613,33.01701],[-114.707896,33.097432],[-114.533679,33.926072],[-114.415908,34.107636],[-114.138282,34.30323],[-114.342615,34.451442],[-114.633013,35.002085],[-114.572747,35.138725],[-114.736165,36.104367],[-114.15413,36.023862],[-114.046838,36.194069],[-114.0506,37.000396],[-112.966471,37.000219],[-111.405869,37.001481],[-109.045223,36.999084]]]},"properties":{"GEO_ID":"0400000US04","STATE":"04","NAME":"Arizona","LSAD":"","CENSUSAREA":113594.084}}, {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-89.733095,36.000608],[-89.910687,35.617536],[-90.129448,35.441931],[-90.173603,35.118073],[-90.309297,34.995694],[-90.613944,34.390723],[-91.087921,33.975335],[-91.166073,33.004106],[-92.796533,33.014836],[-94.042964,33.019219],[-94.04345,33.552253],[-94.399144,33.555498],[-94.485875,33.637867],[-94.617919,36.499414],[-93.125969,36.497851],[-90.154409,36.496832],[-90.083731,36.272332],[-90.37789,35.995683],[-89.733095,36.000608]]]},"properties":{"GEO_ID":"0400000US05","STATE":"05","NAME":"Arkansas","LSAD":"","CENSUSAREA":52035.477}}, {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-124.211605,41.99846],[-119.999168,41.99454],[-119.999866,41.183974],[-119.997634,39.956505],[-120.001014,38.999574],[-118.949673,38.26894],[-117.375905,37.126843],[-115.750844,35.889287],[-114.633013,35.002085],[-114.342615,34.451442],[-114.138282,34.30323],[-114.415908,34.107636],[-114.533679,33.926072],[-114.707896,33.097432],[-114.50613,33.01701],[-114.526856,32.757094],[-114.719633,32.718763],[-116.04662,32.623353],[-117.124862,32.534156],[-117.255169,32.700051],[-117.328359,33.121842],[-117.50565,33.334063],[-118.088896,33.729817],[-118.411211,33.741985],[-118.519514,34.027509],[-118.805114,34.001239],[-119.216441,34.146105],[-119.270144,34.252903],[-119.559459,34.413395],[-119.873971,34.408795],[-120.141165,34.473405],[-120.471376,34.447846],[-120.645739,34.581035],[-120.609898,34.842751],[-120.698906,35.171192],[-120.89679,35.247877],[-120.869209,35.403276],[-121.272322,35.666711],[-121.894714,36.317806],[-121.923866,36.634559],[-121.788278,36.803994],[-121.862266,36.931552],[-122.105976,36.955951],[-122.405073,37.195791],[-122.516689,37.52134],[-122.163049,37.667933],[-122.33079,37.78383],[-122.262861,38.0446],[-122.491283,38.108087],[-122.505383,37.822128],[-122.939711,38.031908],[-122.968569,38.242879],[-123.128825,38.450418],[-123.331899,38.565542],[-123.725367,38.917438],[-123.693969,39.057363],[-123.826306,39.36871],[-123.766475,39.552803],[-123.851714,39.832041],[-124.110549,40.103765],[-124.363414,40.260974],[-124.409591,40.438076],[-124.158322,40.876069],[-124.063076,41.439579],[-124.211605,41.99846]]]},"properties":{"GEO_ID":"0400000US06","STATE":"06","NAME":"California","LSAD":"","CENSUSAREA":155779.22}}, @@ -51,31 +51,31 @@ {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-75.242266,38.027209],[-75.514921,37.799149],[-75.800755,37.197297],[-76.013071,37.205366],[-75.909586,37.622671],[-75.669711,37.950796],[-75.242266,38.027209]]],[[[-81.968297,37.537798],[-81.67821,37.201483],[-80.299789,37.508271],[-80.296138,37.691783],[-79.787542,38.273298],[-79.649075,38.591515],[-79.476638,38.457228],[-78.601655,38.964603],[-78.347087,39.466012],[-77.828157,39.132329],[-77.719029,39.321125],[-77.527282,39.146236],[-77.1199,38.934311],[-77.038598,38.791513],[-77.1302,38.635017],[-77.32544,38.44885],[-76.838795,38.163476],[-76.613939,38.148587],[-76.307482,37.81235],[-76.245283,37.386839],[-76.381075,37.28534],[-76.271262,37.084544],[-75.996252,36.922047],[-75.867044,36.550754],[-76.916048,36.543815],[-78.509965,36.541065],[-80.295243,36.543973],[-81.677535,36.588117],[-83.675413,36.600814],[-82.879492,36.889085],[-82.722097,37.120168],[-81.968297,37.537798]]]]},"properties":{"GEO_ID":"0400000US51","STATE":"51","NAME":"Virginia","LSAD":"","CENSUSAREA":39490.086}}, {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.968297,37.537798],[-82.296118,37.686174],[-82.593673,38.421809],[-82.188767,38.594984],[-82.035963,39.025478],[-81.78182,38.964935],[-81.456143,39.409274],[-80.88036,39.620706],[-80.518991,40.638801],[-80.519342,39.721403],[-79.476662,39.721078],[-79.486873,39.205961],[-78.795857,39.606934],[-78.462899,39.52084],[-78.171361,39.695612],[-77.878451,39.563493],[-77.719029,39.321125],[-77.828157,39.132329],[-78.347087,39.466012],[-78.601655,38.964603],[-79.476638,38.457228],[-79.649075,38.591515],[-79.787542,38.273298],[-80.296138,37.691783],[-80.299789,37.508271],[-81.67821,37.201483],[-81.968297,37.537798]]]},"properties":{"GEO_ID":"0400000US54","STATE":"54","NAME":"West Virginia","LSAD":"","CENSUSAREA":24038.21}}, {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-109.050076,41.000659],[-111.046723,40.997959],[-111.046689,42.001567],[-111.048974,44.474072],[-111.055199,45.001321],[-110.705272,44.992324],[-108.271201,45.000251],[-106.263586,44.993788],[-104.057698,44.997431],[-104.053127,43.000585],[-104.053249,41.001406],[-106.217573,40.997734],[-107.625624,41.002124],[-109.050076,41.000659]]]},"properties":{"GEO_ID":"0400000US56","STATE":"56","NAME":"Wyoming","LSAD":"","CENSUSAREA":97093.141}}, -{"type":"Feature","geometry":null,"properties":{"name":"National","fullName":"National","fuelMix":{"gas":33.8,"coal":30.4,"nuclear":19.8,"hydro":6.4,"wind":5.6,"biomass":1.7,"solar":0.9,"oil":0.6,"geothermal":0.4,"otherFossilFuel":0.3,"otherUnknownFuel":0.1},"fuelMixCategories":{"renewable":15,"non-renewable":85,"non-renewable (excluding nuclear)":65.2,"renewable (excluding hydro)":8.5,"nuclear":19.8,"hydro":6.4},"emissionFactor":{"noxEmissionRate":{"units":"lb/MWh","display":"0.7","value":0.7},"so2EmissionRate":{"units":"lb/MWh","display":"0.8","value":0.8},"co2EmissionRate":{"units":"lb/MWh","display":"998.4","value":998.4}},"gridLoss":{"display":"4.48%","value":0.0448}}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-145.971896,66.244338],[-146.619076,66.468736],[-144.892186,66.636334],[-144.921862,66.468349],[-145.270215,66.558564],[-145.740791,66.35673],[-145.509582,66.251891],[-145.971896,66.244338]]],[[[-151.740029,60.922784],[-151.827951,61.147883],[-152.70309,61.208243],[-153.002181,61.425686],[-153.001339,62.72744],[-152.434244,63.169824],[-152.853432,63.651711],[-152.529193,63.94101],[-151.300774,64.010019],[-150.750056,64.365202],[-149.310686,64.35844],[-148.6451156,64.6014469],[-148.663844,65.211355],[-148.13865,65.211281],[-148.324709,65.326328],[-147.682961,65.550911],[-147.82864,65.410283],[-147.197831,65.286346],[-145.995111,65.406472],[-145.64925,65.033179],[-143.891217,65.091284],[-144.072624,64.652067],[-146.355747,64.279714],[-147.571949,64.260022],[-147.685965,63.787237],[-147.255383,63.625435],[-147.686211,63.472155],[-146.489541,63.482913],[-146.426456,62.247209],[-146.984765,62.242473],[-146.977259,61.6610744],[-147.2665737,61.8303826],[-149.037853,61.672414],[-149.009035,61.890762],[-149.469924,61.498779],[-149.984043,61.238099],[-150.665097,61.287148],[-151.166606,61.046405],[-151.480301,61.010903],[-151.740029,60.922784]]],[[[-149.237607,61.47912],[-148.460084,61.426973],[-148.655767,60.727256],[-148.656481,60.667051],[-148.656061,60.498221],[-148.665169,60.458154],[-148.564513,60.128071],[-148.5836031,59.9614235],[-148.59917,59.950889],[-148.635891,59.939662],[-148.680067,59.9437972],[-148.8650752,59.9240504],[-148.8866452,59.9319972],[-148.917788,59.971825],[-148.9565163,59.9732536],[-148.9915281,59.9552953],[-149.0157712,59.9489513],[-149.1018122,59.9617384],[-149.116781,59.990077],[-149.0681093,60.0262118],[-149.030727,60.042929],[-149.058235,60.055645],[-149.133184,60.044919],[-149.156302,60.032346],[-149.182118,60.006251],[-149.208258,59.998784],[-149.2975128,59.8829061],[-149.298021,59.967326],[-149.3223251,59.9706676],[-149.318047,59.996876],[-149.333351,60.007299],[-149.341622,60.076763],[-149.367695,60.094712],[-149.36184,60.114169],[-149.4386466,60.1204159],[-149.439135,60.030954],[-149.392857,60.003098],[-149.409546,59.986651],[-149.430566,59.978895],[-149.459405,59.921756],[-149.566927,59.9019171],[-149.5530365,59.8904752],[-149.5757066,59.8796321],[-149.5919793,59.8450211],[-149.6254577,59.8184553],[-149.5353645,59.7577401],[-149.6514753,59.7705493],[-149.6169692,59.7895524],[-149.6506082,59.8090414],[-149.6374465,59.8317163],[-149.6660965,59.8349535],[-149.690071,59.951902],[-149.8412369,59.8508998],[-149.7673377,59.7976625],[-149.7885008,59.7823665],[-149.7670984,59.7728623],[-149.7723412,59.7577409],[-149.7468958,59.7236324],[-149.7459939,59.7090783],[-149.7251306,59.6931738],[-149.7731544,59.6595979],[-149.8006421,59.7085669],[-149.8406051,59.7157332],[-149.8452146,59.7392547],[-150.0782863,59.8426577],[-149.9371518,59.6668058],[-150.0834054,59.6643312],[-150.091423,59.582993],[-150.2134141,59.5779988],[-150.180094,59.535111],[-150.271718,59.527979],[-150.244745,59.511762],[-150.237754,59.497823],[-150.400379,59.387271],[-150.426762,59.409347],[-150.399925,59.445195],[-150.343655,59.442166],[-150.389761,59.4757162],[-150.3501538,59.4718322],[-150.369082,59.515662],[-150.2624355,59.6296018],[-150.237493,59.737637],[-150.4785491,59.4592169],[-150.5204969,59.6069624],[-150.664455,59.546644],[-150.604965,59.4250383],[-150.6631545,59.4170057],[-150.6919415,59.429976],[-150.7384678,59.4222885],[-150.7724067,59.3737609],[-150.803512,59.3616059],[-150.836547,59.355834],[-150.877448,59.318122],[-150.938593,59.310739],[-150.942213,59.233136],[-151.748752,59.159466],[-151.886513,59.421033],[-151.301106,59.410778],[-150.978083,59.764587],[-151.063751,59.793147],[-151.329812,59.683645],[-151.435844,59.667054],[-151.443831,59.650506],[-151.501064,59.633677],[-151.869468,59.76916],[-151.85734,59.791145],[-151.83334,59.81413],[-151.813598,59.844292],[-151.803021,59.878571],[-151.757693,59.917637],[-151.702284,60.032804],[-151.42166,60.212996],[-151.2955963,60.3937743],[-151.40927,60.720558],[-150.372036,61.038532],[-149.010589,60.83664],[-150.0745906,61.1570721],[-149.237607,61.47912]]],[[[-141.001696,59.769829],[-141.163882,59.818416],[-141.372808,59.864848],[-141.38661,59.861788],[-141.443477,59.877269],[-141.416713,59.901331],[-141.275534,59.93039],[-141.153446,60.167269],[-141.671838,59.948839],[-141.992136,60.021844],[-142.327081,60.058025],[-142.393857,60.061853],[-142.43108,60.061146],[-142.538423,60.081812],[-142.590977,60.086153],[-142.699423,60.091489],[-142.809476,60.093511],[-142.905184,60.088649],[-143.118989,60.060212],[-143.176581,60.06018],[-143.492898,60.04328],[-143.582269,60.032077],[-143.610866,60.034016],[-143.889372,59.991045],[-143.930524,59.993369],[-144.209649,60.023811],[-144.013562,60.042045],[-144.091097,60.081796],[-144.124058,60.108843],[-144.267842,60.153182],[-144.255558,60.181662],[-144.382673,60.189076],[-144.4127,60.170506],[-144.448844,60.164027],[-144.485609,60.182758],[-144.499505,60.205471],[-144.527666,60.204861],[-144.533686,60.190825],[-144.566114,60.17865],[-144.604145,60.182472],[-144.948819,60.291012],[-144.894828,60.352984],[-144.93406,60.380243],[-144.854841,60.42045],[-144.838741,60.445189],[-144.853511,60.45668],[-145.149514,60.424627],[-145.158031,60.401221],[-145.199885,60.395865],[-145.208719,60.374989],[-145.246821,60.355201],[-145.326912,60.336302],[-145.937623,60.456164],[-145.963784,60.470353],[-145.8030879,60.5211588],[-145.791719,60.537413],[-145.752761,60.569058],[-145.721409,60.583355],[-145.673105,60.632889],[-145.624334,60.651303],[-145.850465,60.613154],[-145.859528,60.689045],[-145.899667,60.672468],[-145.923273,60.653815],[-145.931193,60.639009],[-145.954386,60.622209],[-146.0101217,60.6280797],[-146.001755,60.644844],[-145.96988,60.673255],[-145.933531,60.684898],[-145.931718,60.702144],[-146.040746,60.665917],[-146.132468,60.64205],[-146.148947,60.63426],[-146.258506,60.629376],[-146.269783,60.650992],[-146.216076,60.668092],[-146.188444,60.689967],[-146.158402,60.698124],[-146.140947,60.710095],[-146.073764,60.730539],[-146.041405,60.796651],[-146.16521,60.72497],[-146.331873,60.742479],[-146.367222,60.719154],[-146.39065,60.717019],[-146.41525,60.693916],[-146.474689,60.677668],[-146.619067,60.684562],[-146.56953,60.711471],[-146.513835,60.721236],[-146.386642,60.750472],[-146.24544,60.798837],[-146.06372,60.808499],[-145.915058,60.949125],[-145.698157,60.8992],[-145.36147,61.157831],[-144.413015,61.214045],[-144.424139,61.040583],[-143.716827,61.031627],[-143.717036,60.845415],[-142.861915,60.75853],[-142.861805,60.590932],[-141.001854,60.390438],[-141.001841,60.306105],[-141.001696,59.769829]]]]},"properties":{"name":"AKGD","fullName":"ASCC Alaska Grid","emissionFactor":{"co2EmissionRate":{"value":1072.3,"display":"1,072.3","units":"lb/MWh"},"noxEmissionRate":{"value":6.5,"display":"6.5","units":"lb/MWh"},"so2EmissionRate":{"value":0.5,"display":"0.5","units":"lb/MWh"}},"fuelMix":{"coal":12.6,"oil":9.2,"gas":61.9,"nuclear":0,"hydro":12.6,"biomass":0.9,"wind":2.9,"solar":0,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0},"gridLoss":{"display":"5.25%","value":0.0525},"fuelMixCategories":{"renewable":16.4,"non-renewable":83.6,"non-renewable (excluding nuclear)":83.6,"renewable (excluding hydro)":3.8,"nuclear":0,"hydro":12.6}}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[179.248954,51.35131],[178.651226,51.659621],[179.457391,51.370628],[179.248954,51.35131]]],[[[-176.930434,51.593417],[-176.789559,51.957212],[-176.579975,52.003239],[-176.544867,51.927245],[-176.616377,51.902622],[-176.626495,51.864193],[-176.424204,51.744922],[-176.51048,51.762976],[-176.530468,51.746283],[-176.53062,51.734334],[-176.546945,51.712192],[-176.576179,51.689172],[-176.72267,51.683518],[-176.719642,51.627264],[-176.806345,51.611543],[-176.837605,51.682604],[-176.820699,51.695407],[-176.825767,51.716496],[-176.865803,51.682199],[-176.86568,51.664765],[-176.883106,51.660529],[-176.930434,51.593417]]],[[[-177.905832,51.598151],[-178.197548,51.903474],[-177.63389,51.849011],[-177.905832,51.598151]]],[[[-177.635883,51.659542],[-177.054769,51.908945],[-177.148655,51.707044],[-177.635883,51.659542]]],[[[173.65629,52.35779],[173.360953,52.403653],[173.769507,52.512073],[173.65629,52.35779]]],[[[172.921509,52.749064],[172.45595,52.925117],[172.499803,52.941971],[172.506522,52.951905],[172.548424,52.958849],[172.555656,52.969813],[172.618789,52.991581],[172.643268,53.00498],[172.772497,53.013467],[172.797249,53.004916],[172.837137,52.999576],[172.867905,53.000584],[172.902912,52.994283],[172.9018699,52.9805207],[172.953345,52.971717],[173.107244,52.993228],[173.405895,52.846682],[173.058076,52.831852],[173.01211,52.816451],[172.998464,52.79698],[172.962466,52.777614],[172.942596,52.755839],[172.921509,52.749064]]],[[[-173.485549,52.027534],[-174.042927,52.135291],[-172.962704,52.09445],[-173.485549,52.027534]]],[[[-175.08429,52.010875],[-175.296306,52.021044],[-174.335636,52.190956],[-174.459093,52.316941],[-174.185347,52.417788],[-173.985204,52.317601],[-174.098969,52.099438],[-175.08429,52.010875]]],[[[-165.871194,54.048131],[-165.983201,54.221176],[-165.655574,54.1191],[-165.871194,54.048131]]],[[[-167.852333,53.315599],[-167.146404,53.47438],[-167.176275,53.48533],[-167.176588,53.494088],[-167.157332,53.507967],[-167.181014,53.526392],[-167.128277,53.520411],[-167.080974,53.511424],[-167.096601,53.53867],[-167.131239,53.547268],[-167.163197,53.613814],[-167.140431,53.626968],[-167.091378,53.633438],[-167.039043,53.611],[-167.022385,53.715468],[-166.785233,53.629777],[-166.711169,53.729128],[-167.024982,53.757241],[-167.051537,53.801631],[-167.092252,53.820576],[-167.149291,53.82875],[-167.013614,53.961897],[-166.746095,54.016936],[-166.728732,54.003285],[-166.740592,53.976937],[-166.720692,53.969136],[-166.712038,53.994099],[-166.684483,54.015588],[-166.636936,54.012],[-166.599948,53.983696],[-166.587394,53.959831],[-166.634485,53.874914],[-166.578358,53.8476962],[-166.4486084,53.9021345],[-166.4386657,53.9537313],[-166.4106254,53.9468283],[-166.4133373,53.9747126],[-166.367461,54.008904],[-166.264519,53.977551],[-166.217434,53.934771],[-166.211208,53.912334],[-166.247001,53.900349],[-166.236513,53.881343],[-166.591512,53.715602],[-166.263037,53.700395],[-166.665332,53.578353],[-166.637078,53.522244],[-166.716323,53.537122],[-166.668686,53.520461],[-166.646225,53.500281],[-166.656234,53.487119],[-167.658005,53.240008],[-167.852333,53.315599]]],[[[-169.09569,52.830348],[-168.862875,52.940988],[-168.799743,53.141344],[-168.766444,53.180241],[-168.722027,53.204802],[-168.703745,53.207985],[-168.684847,53.231867],[-168.661344,53.230088],[-168.604049,53.277978],[-168.524988,53.252312],[-168.479907,53.273241],[-168.45549,53.273021],[-168.437177,53.253816],[-168.343994,53.26215],[-168.340516,53.29393],[-168.367129,53.292931],[-168.388283,53.32052],[-168.433667,53.325381],[-168.408208,53.419529],[-168.233863,53.528334],[-168.014542,53.564612],[-167.982895,53.562644],[-167.962723,53.554069],[-167.938981,53.526908],[-167.791026,53.521076],[-167.842329,53.386491],[-167.872879,53.367361],[-167.897988,53.364899],[-168.039762,53.304284],[-168.106955,53.28919],[-168.124364,53.27457],[-168.270745,53.242811],[-168.346106,53.157364],[-168.376269,53.165629],[-168.361394,53.133456],[-168.455922,53.057412],[-168.484094,53.047247],[-168.514829,53.047056],[-168.517179,53.037998],[-168.578897,53.029914],[-168.723816,52.943805],[-168.787026,52.948104],[-168.756287,52.907541],[-169.09569,52.830348]]],[[[-133.714704,55.90082],[-133.613583,56.142019],[-133.518849,56.117768],[-133.461446,56.136783],[-133.451802,56.15083],[-133.411086,56.162948],[-133.284773,56.14718],[-133.288303,56.01614],[-133.368722,55.995253],[-133.374004,56.024809],[-133.429824,56.014827],[-133.45827,56.005336],[-133.491996,56.016481],[-133.714704,55.90082]]],[[[-132.34217,55.918044],[-132.722096,56.144859],[-132.717497,56.216643],[-132.689497,56.237544],[-132.644364,56.231433],[-132.602155,56.238513],[-132.583173,56.283772],[-132.531413,56.336601],[-132.444954,56.351404],[-132.425299,56.346399],[-132.383547,56.305235],[-132.385254,56.25512],[-132.477424,56.19664],[-132.107977,56.10663],[-132.224605,56.067751],[-132.218186,55.936143],[-132.242124,55.923021],[-132.278904,55.934689],[-132.297185,55.91971],[-132.34217,55.918044]]],[[[-132.861903,56.232241],[-133.066204,56.348092],[-132.735291,56.457],[-132.861903,56.232241]]],[[[-134.1259897,56.0003207],[-134.285696,56.348915],[-134.232146,56.378861],[-134.221087,56.416028],[-134.176559,56.409747],[-134.182785,56.443949],[-134.037296,56.360419],[-134.036335,56.496777],[-134.415466,56.829385],[-134.13882,56.850465],[-134.146343,56.877069],[-134.214924,56.893864],[-134.269093,56.924674],[-134.245226,56.928534],[-134.219804,56.923752],[-134.17021,56.904977],[-134.150122,56.907966],[-134.038558,56.871596],[-134.017823,56.871162],[-133.943435,56.795963],[-133.986855,56.627115],[-133.867678,56.7317285],[-133.869918,56.760722],[-133.865248,56.779842],[-133.887617,56.805942],[-133.730188,56.774283],[-133.769207,56.684149],[-133.690733,56.599399],[-133.773671,56.557443],[-133.793365,56.571315],[-133.791259,56.582354],[-133.834897,56.595707],[-133.831508,56.606213],[-133.898153,56.607045],[-133.967197,56.497243],[-133.950084,56.487072],[-133.894009,56.487859],[-133.864011,56.46963],[-133.871888,56.395279],[-133.891114,56.38932],[-133.912409,56.401922],[-133.927416,56.373467],[-133.904201,56.371083],[-133.888577,56.359723],[-133.844326,56.345953],[-133.830711,56.318617],[-133.868153,56.275981],[-133.902699,56.300631],[-133.945514,56.343157],[-133.982192,56.342248],[-133.984083,56.275138],[-133.912431,56.275941],[-133.877758,56.223007],[-133.984434,56.081894],[-134.036378,56.116652],[-134.018712,56.148667],[-134.016638,56.166246],[-134.075808,56.30978],[-134.08924,56.191725],[-134.133488,56.164921],[-134.193838,56.178415],[-134.1259897,56.0003207]]],[[[-132.81635,56.4934937],[-132.947551,56.506834],[-132.960155,56.526265],[-132.9432427,56.8224283],[-132.550007,56.606502],[-132.544361,56.581675],[-132.81635,56.4934937]]],[[[-164.084894,54.620131],[-164.328537,54.539693],[-164.336042,54.48451],[-164.352704,54.465024],[-164.41682,54.431714],[-164.640458,54.391167],[-164.743977,54.394216],[-164.805774,54.404896],[-164.844932,54.417584],[-164.944637,54.532903],[-164.939664,54.559447],[-164.94879,54.579878],[-164.918761,54.605307],[-164.709466,54.661519],[-164.56405,54.87554],[-164.550256,54.888786],[-164.517053,54.894669],[-164.507502,54.912157],[-164.486781,54.922442],[-164.435281,54.933126],[-164.373441,54.91535],[-164.343535,54.894139],[-164.223329,54.898243],[-164.125616,54.971743],[-164.030708,54.969819],[-163.981192,54.988823],[-163.894695,55.039116],[-163.77867,55.055673],[-163.533736,55.053617],[-163.540022,55.038968],[-163.529614,55.012233],[-163.418042,54.938499],[-163.415045,54.861082],[-163.372807,54.790937],[-163.32285,54.750281],[-163.046491,54.670981],[-163.352695,54.751318],[-163.422913,54.654135],[-163.502228,54.650442],[-163.50766,54.636136],[-163.571045,54.627415],[-163.596924,54.614231],[-164.084894,54.620131]]],[[[-131.607862,54.998367],[-131.597838,55.27654],[-131.357607,55.071149],[-131.607862,54.998367]]],[[[-132.142211,54.695659],[-132.390607,55.087867],[-132.419329,54.915801],[-132.492817,55.000681],[-132.605758,54.966815],[-132.493641,55.050774],[-132.570784,55.131132],[-132.593091,55.113448],[-132.611859,55.083992],[-132.639202,55.077179],[-132.628825,55.11119],[-132.608683,55.145095],[-132.589795,55.159483],[-132.655371,55.26969],[-132.600352,55.290907],[-132.67127,55.279189],[-132.631997,55.180488],[-132.637552,55.155525],[-132.676005,55.147622],[-132.700022,55.147401],[-133.240652,55.289726],[-133.225864,55.383881],[-133.004463,55.346377],[-132.989446,55.356958],[-132.919096,55.347156],[-132.919065,55.360636],[-133.051369,55.612822],[-133.406521,55.645843],[-133.366931,55.682854],[-133.389393,55.699797],[-133.387445,55.733035],[-133.347398,55.7076],[-133.341071,55.749032],[-133.295735,55.733788],[-133.259797,55.745178],[-133.236495,55.758929],[-133.224571,55.787957],[-133.15619,55.819123],[-133.1565,55.834871],[-133.265544,56.146236],[-133.293745,56.161935],[-133.445913,56.16412],[-133.467281,56.174515],[-133.532194,56.187587],[-133.584808,56.180664],[-133.660231,56.309222],[-133.620118,56.336353],[-133.6375981,56.3459736],[-133.62195,56.355936],[-133.346931,56.299343],[-133.326071,56.298304],[-133.272115,56.333233],[-133.174759,56.327284],[-133.151473,56.305746],[-133.168593,56.29862],[-133.155622,56.26946],[-133.139507,56.277647],[-133.112681,56.245419],[-133.075479,56.244702],[-133.037756,56.182566],[-133.048082,56.153512],[-133.088915,56.129944],[-133.088628,56.106111],[-133.134415,56.101528],[-133.098514,56.048271],[-132.971065,56.006067],[-132.923596,56.012625],[-132.845078,56.035798],[-132.731551,55.978692],[-132.481174,55.792759],[-132.475906,55.777007],[-132.491523,55.760885],[-132.447729,55.717321],[-132.464536,55.68377],[-132.564271,55.683487],[-132.445985,55.642841],[-132.419225,55.668095],[-132.386724,55.666251],[-132.171726,55.491316],[-132.169222,55.452956],[-132.251834,55.494498],[-132.294895,55.508268],[-132.384404,55.533],[-132.419723,55.539764],[-132.473357,55.562063],[-132.534081,55.60641],[-132.694248,55.458744],[-132.425538,55.516421],[-132.527065,55.368531],[-132.277528,55.420775],[-132.230742,55.376837],[-132.195795,55.373526],[-132.158689,55.348229],[-132.15466,55.313676],[-132.102289,55.268565],[-132.145959,55.241374],[-132.371458,55.263825],[-132.35951,55.136516],[-132.282983,55.234087],[-132.128133,55.196368],[-132.065241,55.26421],[-132.031917,55.281154],[-132.001308,55.265974],[-132.002106,55.246628],[-131.989804,55.22981],[-131.995755,55.213376],[-131.980894,55.185887],[-131.989561,55.172741],[-132.015012,55.164036],[-132.036775,55.12955],[-131.999388,55.113292],[-132.275276,55.028073],[-132.210722,54.926042],[-131.983207,55.039073],[-132.142211,54.695659]]],[[[-160.8175702,55.1224151],[-160.797147,55.381522],[-160.517513,55.379378],[-160.522441,55.134975],[-160.8175702,55.1224151]]],[[[-131.2164588,55.1962026],[-131.239902,55.199909],[-131.300179,55.230668],[-131.325704,55.249735],[-131.209275,55.3902],[-131.48304,55.305974],[-131.353012,55.594481],[-131.5291397,55.297272],[-131.839682,55.456841],[-131.656084,55.561641],[-131.723457,55.749544],[-131.51106,55.785396],[-131.717203,55.83564],[-131.260184,55.96943],[-130.948479,55.623818],[-130.979388,55.395925],[-131.047625,55.402646],[-131.072979,55.263175],[-131.16096,55.23155],[-131.156412,55.21234],[-131.192492,55.196384],[-131.2164588,55.1962026]]],[[[-133.505598,55.703356],[-133.649423,55.823724],[-133.311424,55.795886],[-133.505598,55.703356]]],[[[-130.70945,54.77162],[-131.01663,55.033452],[-130.707641,55.055416],[-130.553267,55.270988],[-130.753765,55.10519],[-130.831494,55.156699],[-131.005068,55.090604],[-131.034244,55.098163],[-131.045111,55.117245],[-131.079597,55.130625],[-131.1008028,55.1851462],[-131.084513,55.204964],[-130.959395,55.279717],[-130.961561,55.295159],[-130.671009,55.345469],[-130.881119,55.316262],[-130.87347,55.717634],[-131.221031,55.981262],[-131.068103,56.070554],[-131.904398,55.870737],[-131.768717,55.814278],[-131.890567,55.602421],[-131.999726,55.648313],[-131.943242,55.592701],[-131.941074,55.535748],[-131.963932,55.533787],[-131.969516,55.512227],[-131.99097,55.501661],[-132.187993,55.58958],[-132.2867869,55.7605991],[-132.2681608,55.7648221],[-132.2351023,55.744059],[-132.1955408,55.7310351],[-132.075206,55.808843],[-131.97331,56.1727],[-131.507585,56.228204],[-131.978769,56.380195],[-132.026805,56.137001],[-132.332732,56.233972],[-132.367127,56.279942],[-132.3431043,56.339163],[-132.3577,56.343762],[-132.367802,56.367491],[-132.34493,56.411583],[-132.37699,56.434532],[-132.3941195,56.4837818],[-132.3620979,56.4858548],[-132.3497284,56.4752929],[-132.318974,56.463535],[-132.257754,56.446156],[-132.174229,56.348269],[-132.112616,56.359053],[-132.209873,56.456785],[-132.295567,56.483754],[-132.311682,56.502316],[-132.340155,56.512677],[-132.365975,56.530681],[-132.368878,56.593426],[-132.32783,56.605093],[-132.236644,56.685006],[-132.053196,56.695651],[-131.834627,56.593367],[-131.582913,56.605919],[-130.470488,56.231571],[-130.429441,56.13075],[-130.106505,56.110601],[-130.020404,56.011407],[-130.017428,55.911878],[-130.043903,55.897606],[-130.093499,55.836654],[-130.153283,55.81689],[-130.188101,55.716296],[-130.013231,55.284499],[-130.70945,54.77162]]],[[[-172.568605,60.315976],[-173.041847,60.611497],[-172.254821,60.326467],[-172.568605,60.315976]]],[[[-166.078038,59.751817],[-166.13567,59.747893],[-166.173115,59.78735],[-166.252204,59.819],[-166.297446,59.823978],[-166.284462,59.85672],[-166.334144,59.867802],[-166.455067,59.842835],[-166.530691,59.844974],[-166.566018,59.850278],[-166.616566,59.850624],[-167.111792,59.989335],[-167.33911,60.07016],[-167.33405,60.08861],[-167.343303,60.123182],[-167.442716,60.204224],[-167.31891,60.237779],[-167.287813,60.237969],[-167.276101,60.226673],[-167.248742,60.222218],[-167.227319,60.238315],[-167.16134,60.233829],[-167.161852,60.2235],[-167.106902,60.238621],[-167.045821,60.219088],[-166.95129,60.227796],[-166.937971,60.205871],[-166.894951,60.208701],[-166.860768,60.204821],[-166.811924,60.229389],[-166.811968,60.261933],[-166.839044,60.272221],[-166.746506,60.312608],[-166.15766,60.422355],[-165.787371,60.327637],[-165.516935,59.914105],[-166.078038,59.751817]]],[[[-146.617621,60.241085],[-146.620819,60.484165],[-146.136127,60.43507],[-146.617621,60.241085]]],[[[-147.852553,59.786652],[-147.211618,60.346269],[-146.918441,60.314582],[-147.852553,59.786652]]],[[[-148.680067,59.9437972],[-148.635891,59.939662],[-148.59917,59.950889],[-148.5836031,59.9614235],[-148.564513,60.128071],[-148.665169,60.458154],[-148.248003,60.445342],[-148.114947,60.596029],[-148.085181,60.525965],[-148.031372,60.546612],[-148.016151,60.517454],[-147.979204,60.519147],[-147.963794,60.50275],[-147.976434,60.481225],[-148.003272,60.471238],[-148.054315,60.461919],[-148.057556,60.450474],[-148.011082,60.456331],[-148.002739,60.443179],[-147.970613,60.449911],[-147.94186,60.444029],[-147.958269,60.42122],[-147.992316,60.416635],[-148.01129,60.402115],[-148.040164,60.39307],[-148.078296,60.400961],[-148.097877,60.372556],[-148.14147,60.377748],[-148.129704,60.35303],[-148.170793,60.335252],[-148.221551,60.349058],[-148.235636,60.359194],[-148.258411,60.353816],[-148.249152,60.281266],[-148.409014,60.263533],[-148.354795,60.194537],[-148.275874,60.249271],[-148.216981,60.260007],[-148.188408,60.248575],[-148.200886,60.236712],[-148.250147,60.232843],[-148.294361,60.213338],[-148.221177,60.153697],[-148.184967,60.165547],[-148.153135,60.235526],[-148.139969,60.241082],[-148.13525,60.164531],[-148.212508,60.128329],[-148.246187,60.117883],[-148.303095,60.11599],[-148.331717,60.170571],[-148.449182,60.028567],[-148.401249,59.997606],[-148.421772,59.987508],[-148.429143,59.969161],[-148.470246,59.973708],[-148.467731,59.994628],[-148.544196,60.00281],[-148.543125,59.970367],[-148.5636677,59.9463298],[-148.6139354,59.9229566],[-148.680067,59.9437972]]],[[[-164.739332,60.291991],[-164.97128,60.539558],[-165.257774,60.492852],[-165.309528,60.505753],[-165.355996,60.506293],[-165.37756,60.513164],[-165.415194,60.55816],[-165.2895257,60.5745429],[-165.2303738,60.6171765],[-165.191998,60.618487],[-165.063149,60.688646],[-165.027536,60.686009],[-164.971251,60.711434],[-165.040844,60.772661],[-164.862285,60.839831],[-164.939497,60.924775],[-164.828201,60.862982],[-164.653102,60.904211],[-164.647541,60.816976],[-164.264164,60.789629],[-164.199633,60.677201],[-164.739332,60.291991]]],[[[-148.656061,60.498221],[-148.656481,60.667051],[-148.405705,60.780301],[-148.192735,60.609891],[-148.656061,60.498221]]],[[[-169.637764,62.941672],[-169.750169,62.955592],[-169.716141,63.046802],[-169.770426,63.05959],[-169.767298,63.07415],[-169.790475,63.093792],[-169.865488,63.129023],[-169.914803,63.145717],[-169.966765,63.141536],[-170.024668,63.14909],[-170.12782,63.183251],[-170.260562,63.177793],[-170.307109,63.238273],[-170.368292,63.285175],[-170.434148,63.31386],[-170.762549,63.394771],[-170.971008,63.423286],[-171.104393,63.422972],[-171.272789,63.384932],[-171.291805,63.374378],[-171.280552,63.359301],[-171.331084,63.335013],[-171.436858,63.307118],[-171.467994,63.306454],[-171.514135,63.32603],[-171.561045,63.319275],[-171.569078,63.337829],[-171.74288,63.365642],[-171.852976,63.486569],[-171.7428556,63.7834702],[-171.569604,63.666388],[-171.603825,63.642232],[-171.661828,63.621388],[-170.950529,63.563679],[-170.914604,63.566813],[-170.885051,63.585371],[-170.635663,63.665473],[-170.594613,63.662038],[-170.552074,63.666767],[-170.538949,63.683598],[-170.47432,63.697304],[-170.348386,63.693807],[-170.116573,63.615834],[-170.044413,63.523001],[-170.063499,63.506827],[-170.06067,63.495087],[-170.030441,63.480292],[-169.561081,63.362206],[-169.235144,63.327642],[-169.159337,63.336136],[-169.125341,63.334668],[-169.055381,63.34274],[-168.939312,63.336524],[-168.696361,63.301901],[-168.706481,63.278314],[-168.735895,63.267634],[-168.720292,63.255936],[-168.728453,63.227997],[-168.786656,63.183751],[-168.82176,63.162844],[-168.862166,63.146578],[-168.893099,63.147327],[-168.966996,63.166721],[-169.109232,63.178416],[-169.371456,63.15193],[-169.44018,63.113186],[-169.538417,63.07396],[-169.535608,62.976972],[-169.637764,62.941672]]],[[[-153.281728,57.001035],[-153.348626,57.012743],[-153.322884,57.026119],[-153.32318,57.042026],[-153.360474,57.051156],[-153.303684,57.097489],[-153.4037,57.080538],[-153.276504,57.201353],[-153.090437,57.12777],[-153.055189,57.172851],[-152.975827,57.190394],[-152.947151,57.189736],[-152.944002,57.180062],[-152.917349,57.170798],[-152.892771,57.175094],[-152.912246,57.13559],[-153.005238,57.128243],[-153.027771,57.142098],[-153.179758,57.097357],[-153.215252,57.078038],[-153.198582,57.04508],[-153.281728,57.001035]]],[[[-135.813713,56.9839429],[-135.767109,57.339748],[-135.558836,57.1458],[-135.813713,56.9839429]]],[[[-133.521099,56.43496],[-133.658776,56.446287],[-133.655177,56.457075],[-133.668179,56.485808],[-133.661832,56.492995],[-133.673337,56.536812],[-133.648204,56.561587],[-133.683346,56.578723],[-133.648586,56.590083],[-133.653316,56.607441],[-133.689142,56.64054],[-133.70919,56.649995],[-133.725732,56.682986],[-133.711529,56.688139],[-133.692509,56.715462],[-133.694881,56.827557],[-133.770959,56.804541],[-133.870711,56.858274],[-133.77288,56.896124],[-134.0258164,57.0287284],[-134.025382,57.061217],[-133.949882,57.070723],[-133.914147,57.086814],[-133.885307,57.094794],[-132.952019,56.872059],[-133.011635,56.59656],[-133.369868,56.833371],[-133.089707,56.534193],[-133.137806,56.531569],[-133.139576,56.507337],[-133.121966,56.490499],[-133.20281,56.446184],[-133.521099,56.43496]]],[[[-134.664825,56.1644561],[-134.678775,56.204688],[-134.716196,56.221773],[-134.7643,56.215211],[-134.761981,56.226679],[-134.789387,56.229525],[-134.80169,56.238622],[-134.806186,56.337325],[-134.891682,56.318983],[-135.056853,56.535882],[-134.888265,56.670433],[-135.119805,56.595716],[-134.990904,56.748001],[-135.207564,56.665812],[-135.098993,56.787439],[-135.373751,56.826063],[-135.135796,56.991966],[-135.278836,57.171396],[-135.392979,57.141687],[-135.346453,57.23914],[-135.470744,57.254759],[-135.493479,57.253407],[-135.534321,57.234864],[-135.688513,57.363083],[-135.651441,57.371202],[-135.489018,57.353129],[-135.596641,57.40736],[-135.528283,57.447871],[-135.5429242,57.5069012],[-135.52168,57.507645],[-135.440183,57.554037],[-135.290032,57.506796],[-135.304088,57.490727],[-135.363656,57.473656],[-135.414116,57.449709],[-135.391542,57.429198],[-135.346063,57.469993],[-135.293486,57.479345],[-135.281884,57.471745],[-135.222804,57.486465],[-134.829348,57.408168],[-134.807886,57.297341],[-134.948953,57.339745],[-135.020807,57.348485],[-135.073647,57.340104],[-134.947055,57.325074],[-135.012081,57.260633],[-134.960614,57.30565],[-134.914895,57.256036],[-134.858016,57.26772],[-134.840413,57.250155],[-134.625866,56.717793],[-134.624989,56.561669],[-134.668662,56.561837],[-134.666062,56.537137],[-134.724239,56.54697],[-134.63903,56.479502],[-134.653063,56.278718],[-134.618368,56.253138],[-134.664825,56.1644561]]],[[[-141.001696,59.769829],[-141.001841,60.306105],[-140.003057,60.1866],[-139.709302,60.341309],[-139.090333,60.358992],[-139.087148,60.325163],[-139.215384,60.091928],[-138.715827,59.912058],[-138.63096,59.771571],[-138.564943,59.739909],[-138.255929,59.582349],[-138.004052,59.453905],[-137.604426,59.244753],[-137.503269,59.00313],[-137.497721,58.987689],[-137.525484,58.907532],[-137.4461874,58.910322],[-136.8238376,59.1608028],[-136.578282,59.167523],[-136.463332,59.287515],[-136.471265,59.468065],[-136.3644396,59.4522769],[-136.298212,59.468221],[-136.230519,59.52911],[-136.233051,59.563176],[-136.346355,59.603682],[-135.470239,59.80308],[-134.955397,59.283112],[-134.698109,59.250981],[-134.479097,59.130886],[-134.251178,58.859688],[-133.844558,58.729492],[-133.729226,58.627223],[-133.705696,58.608455],[-133.385632,58.428486],[-132.255094,57.210973],[-132.373798,57.091569],[-132.053693,57.045676],[-132.127591,56.87047],[-131.873482,56.798749],[-131.852729,56.660455],[-131.896053,56.643497],[-132.081275,56.714312],[-132.454423,56.669523],[-132.831519,57.097829],[-132.89892,57.023362],[-133.164764,57.172283],[-133.28838,57.106532],[-133.361345,57.11728],[-133.56261,57.187211],[-133.528916,57.189401],[-133.504197,57.201851],[-133.474726,57.293455],[-133.056576,57.35085],[-133.451358,57.352618],[-133.347935,57.594388],[-133.479542,57.583667],[-133.563691,57.56081],[-133.617968,57.576863],[-133.653665,57.706817],[-133.621182,57.711823],[-133.584853,57.709031],[-133.570932,57.714094],[-133.223495,57.600503],[-133.077124,57.510463],[-132.896755,57.494243],[-133.576482,57.914101],[-133.152685,57.856955],[-133.586925,57.924449],[-133.701027,57.790745],[-134.009517,58.390857],[-134.1507868,58.2833284],[-134.103389,58.235733],[-134.1489444,58.2042325],[-134.1852145,58.2085956],[-134.21696,58.20448],[-134.2707995,58.2302098],[-134.318286,58.256111],[-134.4068952,58.2991917],[-134.4258107,58.3008981],[-134.5165854,58.355729],[-134.6360823,58.3405856],[-134.6459384,58.3861417],[-134.7070115,58.375372],[-134.7371904,58.3758055],[-134.7775785,58.3941792],[-134.9888764,58.6739081],[-134.973983,58.680433],[-134.933006,58.681453],[-134.929319,58.775803],[-135.148422,58.857458],[-135.3354935,59.4789059],[-135.297037,59.095034],[-135.588613,59.251089],[-135.3226381,59.0646598],[-135.397961,58.970114],[-135.138394,58.618879],[-135.236663,58.620297],[-135.056545,58.350613],[-135.047716,58.310388],[-135.120598,58.222347],[-135.277341,58.233558],[-135.345076,58.270872],[-135.369744,58.312216],[-135.398331,58.327942],[-135.452167,58.45434],[-135.499637,58.509636],[-135.477218,58.376565],[-135.6206,58.428903],[-135.91847,58.381085],[-136.087739,58.817481],[-135.785019,58.891361],[-136.192367,59.070129],[-136.212647,58.752598],[-136.928255,58.926917],[-136.084209,58.569222],[-136.035742,58.381942],[-136.466966,58.402012],[-136.369358,58.300229],[-136.646479,58.340261],[-136.562509,58.260976],[-136.564288,58.244909],[-136.5847,58.236857],[-136.594097,58.215475],[-136.653337,58.208845],[-137.679954,58.620934],[-137.928151,58.78008],[-137.924721,58.843823],[-137.932924,58.868499],[-137.9629577,58.8939614],[-138.172985,59.003598],[-138.034389,59.010741],[-138.114879,59.043676],[-138.1858715,59.0181525],[-138.416482,59.104121],[-138.428289,59.09663],[-138.475681,59.108578],[-138.519867,59.105573],[-138.566649,59.116394],[-138.517029,59.117727],[-138.499998,59.127476],[-138.496383,59.191665],[-138.634119,59.165981],[-138.661555,59.140804],[-138.767322,59.191117],[-138.87721,59.233905],[-139.111392,59.298144],[-139.212276,59.319139],[-139.341327,59.351241],[-139.427505,59.376888],[-139.878136,59.541398],[-139.537179,59.678401],[-139.533094,59.714434],[-139.609784,59.719398],[-139.592539,59.736132],[-139.57429,59.741196],[-139.545697,59.73546],[-139.650473,59.878167],[-139.517114,59.993794],[-139.309735,59.56324],[-139.311168,59.822765],[-138.9087,59.817873],[-139.531403,60.061534],[-139.625942,59.956339],[-139.735133,59.925285],[-139.795149,59.838363],[-139.856396,59.815223],[-139.938365,59.797995],[-139.988841,59.790304],[-140.149953,59.878241],[-140.342806,59.789635],[-140.007151,59.785421],[-140.16617,59.744395],[-140.234287,59.712906],[-140.27839,59.700572],[-140.315594,59.695145],[-140.409145,59.697353],[-140.647431,59.710194],[-140.900916,59.73502],[-140.948925,59.753831],[-141.001696,59.769829]]],[[[-154.121806,56.744311],[-154.149443,56.745736],[-154.138399,56.764744],[-154.105774,56.797144],[-154.08797,56.824229],[-154.056206,56.850666],[-153.83116,56.962356],[-153.965698,56.996272],[-153.789541,57.163739],[-154.095956,56.968526],[-153.976508,57.119164],[-154.22607,57.164246],[-154.464558,57.13197],[-154.096151,57.123291],[-154.159196,56.945342],[-154.259007,56.936043],[-154.212154,56.90647],[-154.261356,56.903542],[-154.254545,56.881802],[-154.281723,56.870905],[-154.288563,56.889396],[-154.283702,56.911949],[-154.298725,56.914888],[-154.295546,56.860055],[-154.275186,56.862773],[-154.242244,56.885338],[-154.23241,56.872065],[-154.255367,56.865427],[-154.303256,56.843808],[-154.298271,56.863208],[-154.305643,56.913062],[-154.352272,56.939813],[-154.273581,56.957936],[-154.522335,56.992144],[-154.570658,57.248294],[-154.619511,57.278637],[-154.67263,57.277642],[-154.679788,57.289263],[-154.701956,57.29036],[-154.773924,57.28471],[-154.623976,57.521273],[-154.336224,57.648966],[-154.270843,57.6514],[-154.229635,57.671623],[-154.011313,57.652679],[-153.634607,57.275499],[-153.877394,57.654198],[-153.565383,57.602895],[-153.922894,57.723196],[-153.940618,57.741579],[-153.933696,57.758796],[-153.937132,57.818198],[-153.85531,57.8776],[-153.725728,57.907497],[-153.715006,57.895696],[-153.660528,57.889314],[-153.624621,57.891948],[-153.501631,57.63242],[-153.478517,57.849527],[-153.193941,57.709208],[-153.086267,57.849316],[-153.203767,57.945673],[-153.233659,57.950684],[-153.27091,57.963592],[-153.286302,57.99827],[-152.802693,57.917939],[-152.796342,57.906803],[-152.88736,57.851519],[-152.910482,57.811691],[-152.845645,57.733159],[-152.82314,57.847273],[-152.729694,57.822348],[-152.691225,57.878295],[-152.628017,57.859912],[-152.621195,57.879326],[-152.640006,57.901413],[-152.637949,57.917457],[-152.609695,57.921325],[-152.467604,57.894911],[-152.325453,57.822462],[-152.379017,57.793057],[-152.449591,57.776255],[-152.478921,57.745751],[-152.568394,57.707736],[-152.468952,57.599257],[-152.428998,57.592877],[-152.406434,57.608471],[-152.369515,57.618817],[-152.271307,57.627168],[-152.151147,57.616657],[-152.318495,57.43158],[-152.341859,57.422316],[-152.375811,57.431792],[-152.44997,57.433771],[-152.488606,57.466737],[-152.515859,57.432188],[-152.95534,57.522106],[-152.620615,57.401099],[-152.601351,57.381702],[-152.611317,57.356925],[-152.631357,57.347226],[-152.630888,57.325051],[-152.652801,57.308911],[-152.810936,57.270185],[-152.846647,57.274292],[-152.840375,57.294622],[-152.900944,57.302178],[-152.876325,57.349119],[-153.145609,57.320217],[-152.943625,57.256069],[-153.539124,57.177917],[-153.498216,57.065113],[-153.689773,57.064991],[-153.595452,57.055941],[-153.609412,57.009935],[-153.543162,56.998758],[-153.550986,56.975937],[-153.599414,56.935399],[-153.628707,56.937056],[-153.668962,56.932337],[-153.708593,56.94382],[-153.784815,56.86957],[-153.761616,56.860329],[-153.69519,56.881417],[-153.691065,56.863481],[-153.76484,56.8433],[-153.815664,56.848676],[-153.84384,56.838458],[-153.848857,56.81915],[-153.898389,56.792019],[-153.908748,56.766413],[-153.97049,56.744806],[-154.121806,56.744311]]],[[[-141.001854,60.390438],[-142.861805,60.590932],[-142.861915,60.75853],[-143.717036,60.845415],[-143.716827,61.031627],[-144.424139,61.040583],[-144.413015,61.214045],[-145.36147,61.157831],[-145.698157,60.8992],[-145.915058,60.949125],[-146.06372,60.808499],[-146.24544,60.798837],[-146.386642,60.750472],[-146.513835,60.721236],[-146.56953,60.711471],[-146.619067,60.684562],[-146.693669,60.747045],[-146.618509,60.728265],[-146.603003,60.761469],[-146.568064,60.741865],[-146.512912,60.758852],[-146.513752,60.774633],[-146.330879,60.789649],[-146.24319,60.842927],[-146.120327,60.848746],[-146.234241,60.885642],[-146.548583,60.811238],[-146.584371,60.855113],[-146.604333,60.843873],[-146.615648,60.825276],[-146.633684,60.829482],[-146.632155,60.849392],[-146.61138,60.86405],[-146.629346,60.887521],[-146.6765581,60.8601042],[-146.734896,60.91253],[-146.736407,60.938799],[-146.755847,60.961222],[-146.585232,60.938249],[-146.65806,61.034622],[-146.540414,61.015898],[-146.653549,61.067968],[-146.272244,61.113176],[-146.59122,61.129941],[-146.731885,61.048405],[-146.788155,61.071996],[-146.790297,61.031201],[-146.855041,60.992833],[-146.858621,60.977906],[-146.879387,60.965135],[-146.935235,60.943281],[-147.055628,60.945532],[-147.01258,60.959946],[-146.988535,60.972953],[-146.976575,61.00013],[-147.101941,61.012327],[-147.14679,60.977361],[-147.135728,60.946249],[-147.171823,60.932878],[-147.215519,60.948077],[-147.226743,60.962161],[-147.214137,60.998669],[-147.363728,60.884751],[-147.445675,60.989949],[-147.549999,60.908009],[-147.5202,61.155083],[-147.682748,60.959739],[-147.594712,60.949069],[-147.613694,60.919743],[-147.58891,60.879441],[-147.602644,60.849979],[-147.672157,60.845283],[-147.659576,60.862362],[-147.675665,60.890486],[-147.726676,60.882967],[-147.709188,60.939779],[-147.7527,60.936077],[-147.797549,60.857728],[-147.773208,60.85877],[-147.750087,60.828585],[-147.777374,60.81102],[-147.836289,60.823748],[-147.799976,60.845045],[-147.811097,60.850346],[-147.856124,60.820883],[-147.880265,60.827151],[-147.911096,60.851824],[-147.920756,60.89118],[-148.065299,60.937963],[-147.725074,61.277177],[-148.655767,60.727256],[-148.460084,61.426973],[-149.237607,61.47912],[-149.469924,61.498779],[-149.009035,61.890762],[-149.037853,61.672414],[-147.2665737,61.8303826],[-146.977259,61.6610744],[-146.984765,62.242473],[-146.426456,62.247209],[-146.489541,63.482913],[-147.686211,63.472155],[-147.255383,63.625435],[-147.685965,63.787237],[-147.571949,64.260022],[-146.355747,64.279714],[-144.072624,64.652067],[-143.891217,65.091284],[-145.64925,65.033179],[-145.995111,65.406472],[-147.197831,65.286346],[-147.82864,65.410283],[-147.682961,65.550911],[-148.324709,65.326328],[-148.13865,65.211281],[-148.663844,65.211355],[-148.6451156,64.6014469],[-149.310686,64.35844],[-150.750056,64.365202],[-151.300774,64.010019],[-152.529193,63.94101],[-152.853432,63.651711],[-152.434244,63.169824],[-153.001339,62.72744],[-153.002181,61.425686],[-152.70309,61.208243],[-151.827951,61.147883],[-151.740029,60.922784],[-151.800265,60.853673],[-151.777311,60.810462],[-151.751818,60.788729],[-151.703803,60.732376],[-151.712857,60.710958],[-152.309221,60.506384],[-152.234199,60.393889],[-152.307616,60.36649],[-152.315856,60.359071],[-152.366213,60.353304],[-152.386335,60.327889],[-152.392009,60.302108],[-152.411282,60.287865],[-152.556756,60.224218],[-152.613156,60.218943],[-152.640673,60.225898],[-152.660056,60.242005],[-152.721047,60.243576],[-152.787319,60.226503],[-152.896938,60.292566],[-153.001596,60.298069],[-152.935548,60.287426],[-152.895454,60.223194],[-152.683853,60.161508],[-152.687487,60.140306],[-152.65842,60.121592],[-152.601313,60.103661],[-152.569121,60.071749],[-152.604187,60.011938],[-152.679402,59.968055],[-152.693676,59.932774],[-152.706432,59.915285],[-152.745083,59.904232],[-152.793584,59.89672],[-152.811159,59.880709],[-152.861084,59.875007],[-152.882747,59.881969],[-152.920419,59.877741],[-153.002521,59.886727],[-153.173908,59.861669],[-153.245145,59.896533],[-153.257743,59.81081],[-153.081811,59.833957],[-153.021946,59.834135],[-152.994176,59.814203],[-153.048723,59.695353],[-153.100123,59.680337],[-153.129357,59.682017],[-153.143297,59.662954],[-153.214157,59.634272],[-153.262741,59.643426],[-153.275176,59.667304],[-153.314002,59.666336],[-153.301921,59.647274],[-153.302757,59.627679],[-153.342938,59.621313],[-153.409408,59.636326],[-153.415507,59.650919],[-153.367185,59.693564],[-153.436964,59.78037],[-154.136181,59.374461],[-154.106203,59.344013],[-154.060082,59.346831],[-154.033616,59.354282],[-153.969401,59.353034],[-154.019146,59.329232],[-154.054756,59.320793],[-154.113577,59.299627],[-154.13684,59.262666],[-154.134886,59.241361],[-154.141192,59.216599],[-154.122821,59.205533],[-154.177483,59.190508],[-154.16502,59.178702],[-154.188648,59.168276],[-154.22194,59.169324],[-154.214722,59.151646],[-154.263291,59.138462],[-154.171462,59.021964],[-154.063489,59.07214],[-153.845358,59.05295],[-153.793972,59.071417],[-153.769598,59.061776],[-153.724337,59.067111],[-153.704162,59.07578],[-153.624727,59.012937],[-153.547283,58.983717],[-153.505618,58.981734],[-153.479939,58.995287],[-153.398479,58.966057],[-153.319469,58.921946],[-153.335293,58.858798],[-153.262072,58.85154],[-153.344831,58.846954],[-153.369389,58.821255],[-153.370731,58.799302],[-153.385127,58.766173],[-153.402473,58.742608],[-153.445002,58.70931],[-153.577544,58.670533],[-153.591515,58.633942],[-153.677598,58.611603],[-153.771636,58.60564],[-153.832838,58.611671],[-153.897225,58.606127],[-153.999323,58.376373],[-154.35245,58.282126],[-154.184421,58.321575],[-154.149074,58.31454],[-154.136137,58.292065],[-154.106983,58.275999],[-154.222468,58.132566],[-154.3407,58.082133],[-154.343409,58.097366],[-154.436518,58.148294],[-154.432333,58.173199],[-154.469316,58.19185],[-154.449213,58.093218],[-154.525454,58.104125],[-154.559297,58.082291],[-154.536587,58.065426],[-154.568627,58.025787],[-154.64396,58.033148],[-154.653381,58.064038],[-154.679458,58.065727],[-154.721884,58.050544],[-154.737543,58.01295],[-154.765283,58.00371],[-154.819516,58.003495],[-154.82823,58.018849],[-154.868916,58.02726],[-154.912798,58.023985],[-154.929791,58.033737],[-154.963899,58.01363],[-155.022465,58.025677],[-155.122712,57.964366],[-155.094747,57.935438],[-155.063276,57.918978],[-155.069805,57.900577],[-155.098992,57.884048],[-155.153168,57.871431],[-155.240223,57.881168],[-155.21769,57.85666],[-155.238771,57.838759],[-155.263013,57.833677],[-155.327957,57.841023],[-155.342925,57.830447],[-155.326943,57.82006],[-155.337228,57.795031],[-155.292679,57.743566],[-155.30686,57.730979],[-155.379138,57.71529],[-155.424098,57.753107],[-155.463783,57.75265],[-155.546279,57.789395],[-155.618762,57.787611],[-155.612714,57.745421],[-155.630895,57.72728],[-155.634574,57.706551],[-155.58001,57.672474],[-155.734337,57.546785],[-155.81696,57.576923],[-155.915037,57.535017],[-155.967902,57.542634],[-156.011112,57.570154],[-156.044858,57.563039],[-156.024759,57.523327],[-156.049751,57.497489],[-156.023553,57.438026],[-156.092883,57.437689],[-156.135168,57.46939],[-156.184493,57.480419],[-156.211172,57.473175],[-156.220565,57.444175],[-156.335024,57.418716],[-156.354012,57.401627],[-156.407683,57.368111],[-156.535159,57.326783],[-156.552437,57.289086],[-156.355282,57.320766],[-156.345651,57.298432],[-156.320878,57.292663],[-156.33116,57.264613],[-156.346413,57.249226],[-156.40699,57.223833],[-156.338566,57.19024],[-156.340423,57.174757],[-156.357209,57.157823],[-156.576622,57.046286],[-156.546292,56.989802],[-156.661237,57.001301],[-156.703832,57.033746],[-156.72577,57.040137],[-156.745726,57.03528],[-156.774208,57.040851],[-157.199799,56.775406],[-157.384324,56.869642],[-157.434714,56.866605],[-157.595022,56.740685],[-157.574692,56.716399],[-157.558957,56.719286],[-157.545985,56.696658],[-157.47664,56.685426],[-157.455463,56.642839],[-157.666893,56.633986],[-157.694586,56.647696],[-157.730347,56.698627],[-157.747368,56.702118],[-157.909572,56.672896],[-158.133853,56.534444],[-157.899967,56.604714],[-157.824825,56.575181],[-157.817895,56.545929],[-157.853365,56.507548],[-158.498837,56.38011],[-158.618231,56.259568],[-158.558186,56.252636],[-158.538109,56.30898],[-158.464991,56.342147],[-158.429621,56.343124],[-158.152577,56.227497],[-158.410992,56.007491],[-158.505542,56.038018],[-158.499026,55.981698],[-158.516291,55.989604],[-158.551197,56.021678],[-158.557116,56.036128],[-158.496363,56.058216],[-158.598368,56.048823],[-158.606551,56.200709],[-158.717315,56.053415],[-158.63669,56.005007],[-158.689849,55.984483],[-158.653213,55.958615],[-159.411506,55.788912],[-159.470217,55.828912],[-159.471978,55.843507],[-159.461028,55.86667],[-159.473006,55.8739],[-159.456716,55.897561],[-159.528345,55.888459],[-159.550818,55.870133],[-159.541609,55.854378],[-159.512018,55.845413],[-159.494689,55.763451],[-159.630707,55.581087],[-159.618178,55.812995],[-159.712817,55.846393],[-159.811074,55.85657],[-160.429727,55.658047],[-160.433023,55.63998],[-160.394388,55.629986],[-160.354442,55.60944],[-160.501346,55.478518],[-161.234221,55.355904],[-161.318524,55.358241],[-161.31495,55.379231],[-161.346081,55.385783],[-161.507657,55.362787],[-161.489626,55.488178],[-161.13961,55.540969],[-161.587047,55.62006],[-161.960867,55.106735],[-162.471365,55.051933],[-162.645868,55.30318],[-162.7247402,55.222481],[-162.579766,55.13694],[-162.642477,55.06506],[-162.607474,55.089376],[-162.572406,55.019856],[-162.568648,54.956156],[-162.61516,54.987841],[-162.646473,54.997164],[-162.696005,54.994607],[-162.708453,54.958481],[-162.739918,54.951498],[-162.745563,54.943236],[-162.776843,54.932186],[-162.88164,54.934786],[-162.906757,54.949747],[-162.919941,54.950457],[-162.920103,54.971017],[-162.966788,55.004313],[-162.913748,55.021022],[-163.00155,55.080044],[-163.198546,55.134401],[-163.045461,54.949122],[-163.353124,54.810171],[-163.240009,54.962885],[-163.33053,55.089957],[-163.310694,55.105612],[-163.300046,55.132613],[-163.02811,55.230552],[-163.014803,55.218765],[-163.038973,55.21311],[-163.07895,55.186155],[-163.070495,55.174115],[-162.867553,55.182336],[-162.843172,55.242564],[-162.893709,55.242289],[-162.8880414,55.2704489],[-162.64991,55.364152],[-162.624092,55.367661],[-162.594765,55.360674],[-162.57395,55.348444],[-162.51853,55.360583],[-162.483406,55.386974],[-162.488526,55.455135],[-162.522717,55.455541],[-162.560437,55.441723],[-162.575651,55.446999],[-162.504042,55.482556],[-162.483688,55.495237],[-162.246972,55.680013],[-162.076139,55.770815],[-161.898956,55.833465],[-161.85843,55.865403],[-161.807833,55.891954],[-161.695132,55.907467],[-161.66614,55.904706],[-161.650057,55.91799],[-161.585605,55.937324],[-161.531711,55.94281],[-161.394106,55.963291],[-161.295566,55.981832],[-161.375674,55.956318],[-161.392333,55.915874],[-161.361146,55.952244],[-161.230445,55.947468],[-161.192871,55.961448],[-161.138544,55.953369],[-161.102244,55.96447],[-161.076384,55.94208],[-160.86325,55.996238],[-161.017117,55.911014],[-160.940847,55.822529],[-160.908954,55.802853],[-160.895211,55.807846],[-160.787046,55.726783],[-160.771538,55.885985],[-160.256264,55.766022],[-160.244275,55.852487],[-160.548059,55.943661],[-160.529292,55.986103],[-160.568357,56.004063],[-160.540647,56.023427],[-160.45566,56.118804],[-160.450778,56.150544],[-160.411382,56.194139],[-160.392677,56.237673],[-160.357156,56.279583],[-160.340249,56.291271],[-159.82805,56.543936],[-159.324421,56.670357],[-159.237876,56.730242],[-159.047729,56.806755],[-158.996708,56.798529],[-158.950489,56.83878],[-158.617907,56.758887],[-158.456276,57.196329],[-158.010613,57.401376],[-157.957241,57.450055],[-157.933111,57.47713],[-157.773275,57.547553],[-157.70435,57.563331],[-157.685264,57.55769],[-157.625955,57.492811],[-157.573351,57.515968],[-157.60046,57.606806],[-157.692112,57.610334],[-157.711499,57.639189],[-157.704749,57.720296],[-157.671876,57.772086],[-157.641978,57.869249],[-157.612284,57.97347],[-157.607199,58.034621],[-157.593771,58.08376],[-157.577566,58.12547],[-157.548819,58.137626],[-157.533361,58.160166],[-157.352285,58.220089],[-157.425085,58.210287],[-157.472777,58.230819],[-157.516335,58.255232],[-157.538671,58.272611],[-157.525401,58.4138],[-157.463575,58.497753],[-157.443085,58.50205],[-157.399449,58.525392],[-157.382317,58.52268],[-157.360349,58.532419],[-157.068045,58.708218],[-156.883078,58.983015],[-157.11639,58.867547],[-157.215672,58.841538],[-157.259663,58.835665],[-157.301303,58.837105],[-157.532555,58.772669],[-157.550655,58.754517],[-158.038122,58.633547],[-158.141929,58.612882],[-158.216373,58.612607],[-158.334351,58.662907],[-158.334351,58.684636],[-158.351123,58.726566],[-158.376512,58.747329],[-158.5644,58.804323],[-158.4324376,59.0596162],[-158.769202,58.864824],[-158.802176,58.734152],[-158.893774,58.720179],[-158.855515,58.693063],[-158.827157,58.64536],[-158.827187,58.628802],[-158.797107,58.583133],[-158.767666,58.563397],[-158.741332,58.495374],[-158.693941,58.485407],[-158.886394,58.394502],[-159.047944,58.427012],[-159.038962,58.436892],[-159.073195,58.474626],[-159.385323,58.764589],[-159.497884,58.825713],[-159.528694,58.834859],[-159.586787,58.841783],[-159.595915,58.834676],[-159.634056,58.847933],[-159.631671,58.856347],[-159.582976,58.900573],[-159.616106,58.932591],[-159.717038,58.930748],[-159.766263,58.875067],[-159.752608,58.843096],[-159.795444,58.83072],[-159.786585,58.821621],[-159.793415,58.805632],[-159.898701,58.776334],[-159.936766,58.802813],[-159.970165,58.834813],[-159.989786,58.837625],[-160.008386,58.880705],[-160.162501,58.867501],[-160.15457,58.90435],[-160.181764,58.913879],[-160.224954,58.903225],[-160.244624,58.890979],[-160.329547,58.947756],[-160.291931,58.977727],[-160.252977,58.988589],[-160.3353537,59.074479],[-160.676505,58.943743],[-160.75002,58.904319],[-160.783192,58.876343],[-160.805821,58.84365],[-160.830743,58.863348],[-160.823384,58.870998],[-160.870617,58.884086],[-160.956165,58.875965],[-161.288688,58.765996],[-161.289085,58.756212],[-161.337241,58.735423],[-161.363268,58.706736],[-161.359986,58.659197],[-161.677548,58.563588],[-162.134208,58.637557],[-161.97521,58.680245],[-161.935922,58.648283],[-161.886635,58.65334],[-161.692396,58.760986],[-161.842105,59.0345911],[-161.515905,59.106499],[-161.885179,59.077711],[-161.913411,59.08664],[-161.975428,59.135768],[-161.997115,59.167398],[-162.021773,59.214999],[-161.938177,59.257459],[-161.958085,59.288701],[-161.95005,59.353011],[-161.942812,59.37396],[-161.882512,59.39273],[-161.789962,59.473229],[-161.738385,59.46823],[-161.714145,59.479976],[-161.704048,59.501536],[-162.318433,60.406351],[-162.5832,60.299113],[-162.445728,60.176449],[-162.461917,60.06974],[-162.477884,60.040274],[-162.501812,60.010958],[-162.516982,59.981034],[-162.561429,59.960314],[-163.30857,59.804282],[-163.722124,59.779955],[-164.086229,59.821659],[-164.131023,59.849825],[-164.173204,59.901565],[-164.17682,59.933992],[-164.092408,59.975379],[-164.658968,60.315389],[-164.031675,60.759703],[-163.698324,60.575187],[-163.36356,60.844303],[-163.873911,60.844086],[-163.533732,60.903646],[-163.746222,60.995185],[-164.104043,60.868401],[-163.977494,61.053095],[-164.121655,60.869515],[-164.53357,60.847008],[-164.631698,60.928475],[-164.80398,60.894991],[-164.866592,60.944787],[-164.950056,60.942788],[-165.007097,60.922059],[-165.03242,60.90374],[-165.108287,60.913883],[-165.178971,60.948363],[-165.194964,60.979916],[-164.86818,61.096368],[-165.307976,61.181823],[-165.343443,61.070564],[-165.403008,61.067061],[-165.442047,61.07641],[-165.475688,61.076629],[-165.549613,61.088163],[-165.589471,61.108895],[-165.614992,61.155367],[-165.621246,61.176767],[-165.603086,61.189678],[-165.629399,61.243568],[-165.598664,61.250808],[-165.627138,61.288125],[-165.649251,61.29548],[-165.70572,61.296132],[-165.751875,61.308858],[-165.816435,61.303364],[-165.879599,61.335045],[-165.871741,61.430187],[-165.79157,61.449989],[-165.746146,61.417918],[-165.694588,61.437537],[-165.756806,61.502973],[-165.807731,61.533878],[-165.840645,61.532583],[-165.891976,61.550025],[-165.930485,61.556682],[-166.124203,61.504645],[-166.167668,61.641428],[-166.134939,61.633093],[-166.04138,61.638846],[-165.785597,61.677629],[-165.788278,61.690182],[-165.850797,61.68647],[-165.856539,61.700716],[-165.901082,61.699919],[-165.946486,61.709382],[-165.951647,61.722202],[-166.00772,61.723597],[-166.094312,61.813859],[-165.783079,61.814719],[-165.730439,61.842075],[-165.696039,61.847056],[-165.640217,61.848042],[-165.600098,61.859603],[-165.62213,61.877581],[-165.703482,61.921572],[-165.756807,62.006337],[-165.707335,62.106367],[-165.675605,62.135591],[-165.645367,62.150269],[-165.620747,62.172616],[-165.583642,62.184168],[-165.534239,62.229958],[-165.348413,62.357642],[-165.317354,62.361691],[-165.294963,62.403354],[-165.269271,62.427353],[-165.04724,62.540053],[-164.936156,62.650087],[-164.850878,62.692197],[-164.833648,62.716242],[-164.850421,62.724661],[-164.857182,62.76883],[-164.877245,62.784169],[-164.874259,62.808254],[-164.788212,62.941573],[-164.716721,63.006243],[-164.668161,63.027574],[-164.44346,63.036149],[-164.45207,63.068854],[-164.48647,63.0853],[-164.515639,63.11486],[-164.502218,63.124246],[-164.531738,63.135503],[-164.545384,63.153282],[-164.418975,63.213961],[-164.209476,63.251472],[-164.1592,63.256597],[-164.036565,63.261204],[-163.934597,63.237005],[-163.885059,63.222309],[-163.838079,63.223916],[-163.795277,63.216334],[-163.755284,63.217462],[-163.725805,63.210621],[-163.725866,63.197176],[-163.616272,63.141214],[-163.590122,63.146091],[-163.559698,63.136315],[-163.529939,63.1354],[-163.417684,63.083875],[-163.364979,63.055806],[-163.363587,63.034587],[-163.115661,63.050613],[-163.040501,63.062152],[-162.963277,63.111942],[-162.901644,63.125597],[-162.84384,63.15532],[-162.834927,63.164622],[-162.840188,63.18758],[-162.821122,63.205597],[-162.769537,63.217069],[-162.724081,63.214616],[-162.667915,63.227129],[-162.43217,63.382607],[-162.428745,63.401055],[-162.388736,63.432729],[-162.27109,63.487711],[-162.301643,63.537221],[-162.013382,63.48476],[-162.045709,63.475434],[-162.075308,63.448584],[-162.108539,63.442398],[-162.083471,63.43129],[-161.999896,63.448422],[-161.968756,63.431691],[-161.954001,63.450925],[-161.813048,63.439482],[-161.75304,63.456619],[-161.728119,63.455444],[-161.705631,63.464062],[-161.651148,63.461749],[-161.591633,63.454245],[-161.583774,63.447858],[-161.521452,63.453272],[-161.510483,63.468461],[-161.470646,63.466523],[-161.433061,63.457721],[-161.142798,63.502774],[-161.133785,63.528506],[-161.101873,63.536015],[-161.0995587,63.5545035],[-161.036049,63.579566],[-161.013798,63.62396],[-160.984701,63.614176],[-160.935155,63.636776],[-160.783304,63.752893],[-160.76556,63.773553],[-160.764067,63.81719],[-160.9759775,64.2356867],[-161.0726248,64.2881766],[-161.088082,64.293913],[-161.167902,64.33847],[-161.231159,64.370946],[-161.150133,64.371025],[-161.2616,64.387916],[-161.21997,64.410557],[-161.410382,64.422107],[-160.802049,64.610352],[-160.791616,64.623055],[-160.783398,64.717161],[-160.87185,64.806344],[-161.149656,64.911986],[-160.974852,64.929001],[-161.170579,64.929114],[-161.548826,64.745006],[-161.733168,64.84773],[-162.539996,64.530931],[-162.78306,64.326843],[-162.848918,64.496629],[-162.9199,64.519976],[-162.940777,64.542417],[-163.014838,64.553353],[-163.038051,64.585603],[-163.133431,64.607789],[-163.12354,64.647204],[-163.377338,64.604463],[-163.028887,64.511908],[-163.043436,64.485416],[-163.100952,64.45583],[-163.107459,64.409193],[-163.150789,64.39725],[-163.597834,64.563356],[-165.001962,64.433918],[-165.214182,64.469726],[-165.411452,64.497573],[-166.236939,64.583558],[-166.421644,64.914356],[-166.460007,64.912172],[-166.518715,64.945806],[-166.544246,64.945498],[-166.636843,64.968114],[-166.690815,64.985373],[-166.941033,65.144901],[-166.86866,65.275717],[-166.725945,65.109251],[-166.67032,65.10972],[-166.595418,65.118353],[-166.521701,65.137376],[-166.362257,65.265976],[-165.655059,65.047385],[-165.238778,65.161216],[-165.874934,65.145046],[-166.252634,65.305059],[-166.37002,65.297107],[-166.42259,65.314182],[-166.496216,65.332864],[-166.593184,65.33731],[-166.625987,65.325122],[-166.679717,65.326857],[-167.474025,65.412744],[-168.075201,65.576355],[-168.12742,65.624423],[-168.128081,65.657975],[-168.089712,65.692699],[-167.845319,65.75693],[-167.897311,65.728311],[-167.943656,65.708591],[-168.033326,65.685037],[-168.036383,65.625936],[-167.585763,65.708678],[-166.285387,66.163459],[-165.599804,66.117687],[-165.756611,66.314282],[-165.005078,66.392986],[-164.892643,66.467615],[-164.736215,66.510867],[-164.662527,66.549588],[-164.409931,66.580858],[-163.754171,66.551285],[-163.730248,66.491373],[-163.761968,66.454875],[-163.844221,66.418978],[-163.873107,66.389016],[-163.880031,66.323226],[-163.843569,66.306108],[-163.830078,66.272001],[-163.929883,66.216014],[-163.897871,66.191224],[-163.861406,66.136666],[-163.847402,66.122106],[-163.768848,66.081329],[-163.777159,66.066186],[-163.729553,66.061638],[-163.695386,66.069269],[-163.63576,66.057876],[-163.588154,66.069166],[-163.546504,66.068726],[-163.495845,66.085388],[-163.398834,66.085158],[-163.326114,66.079308],[-163.287769,66.06923],[-163.186893,66.064712],[-163.168568,66.05929],[-163.093003,66.06296],[-162.997473,66.076846],[-162.958046,66.088885],[-162.763513,66.095193],[-162.735168,66.081065],[-162.685268,66.070719],[-162.628863,66.038131],[-162.391893,66.028725],[-162.227454,66.050104],[-162.142691,66.078133],[-161.98789,66.071232],[-161.893309,66.036437],[-161.88732,66.008386],[-161.873816,66.002648],[-161.903536,65.974473],[-161.87985,65.961728],[-161.791863,65.967536],[-161.756033,66.083614],[-161.636927,66.160505],[-161.61755,66.188775],[-161.558415,66.238535],[-161.488651,66.268011],[-161.385779,66.263079],[-161.348785,66.265311],[-161.263045,66.219555],[-161.064844,66.237852],[-161.065711,66.188507],[-160.997997,66.256279],[-161.10165,66.331182],[-161.162295,66.346491],[-161.220528,66.352667],[-161.363366,66.379118],[-161.532657,66.3991],[-161.917101,66.268102],[-161.880909,66.513709],[-162.620399,66.84928],[-162.6225116,66.8764307],[-162.6024541,66.8974954],[-162.51246,66.904492],[-162.467411,66.948774],[-162.32774,66.943509],[-162.284146,66.925992],[-162.270273,66.900988],[-162.227356,66.863092],[-162.096003,66.783664],[-162.013661,66.774511],[-161.918338,66.554113],[-161.774254,66.497894],[-161.676619,66.474171],[-161.631624,66.451833],[-161.580618,66.440554],[-161.524787,66.44372],[-161.440928,66.455871],[-161.32974,66.47935],[-161.242229,66.52093],[-160.741749,66.366165],[-159.654605,66.417468],[-160.821178,66.65428],[-161.493714,66.527098],[-161.539277,66.581096],[-161.666504,66.611212],[-161.707862,66.628035],[-161.732144,66.64698],[-161.793662,66.669916],[-161.882361,66.716161],[-161.811963,67.047809],[-162.414089,66.982292],[-162.947253,67.032796],[-162.848448,66.995015],[-163.738191,67.128557],[-163.734157,67.185143],[-163.737469,67.210792],[-163.813961,67.346024],[-163.766903,67.398711],[-164.106541,67.602599],[-165.4179747,68.0454877],[-165.8588221,68.1076215],[-165.9602863,68.134703],[-166.2490579,68.2764931],[-166.7964271,68.3431362],[-166.5314964,68.338942],[-166.5507846,68.3627484],[-166.4658428,68.3743309],[-166.406671,68.397653],[-166.367957,68.426176],[-166.334643,68.442155],[-166.207311,68.675914],[-166.196539,68.77289],[-166.212918,68.805984],[-166.234284,68.865471],[-166.222477,68.872248],[-165.994448,68.862291],[-165.812266,68.859198],[-165.795802,68.856381],[-165.559934,68.854803],[-165.523299,68.857403],[-165.343713,68.858688],[-165.196651,68.866161],[-164.252412,68.926266],[-163.965971,68.986044],[-163.582264,69.121488],[-163.510245,69.161613],[-163.467708,69.191586],[-163.273967,69.288048],[-163.171373,69.361668],[-163.221803,69.311025],[-163.249494,69.29454],[-163.229849,69.28285],[-163.094416,69.38219],[-163.076244,69.462801],[-163.087304,69.482947],[-163.040351,69.487822],[-163.025463,69.544764],[-163.110266,69.584666],[-163.073859,69.606031],[-163.002474,69.610256],[-163.026218,69.649338],[-163.054963,69.655607],[-163.035101,69.667626],[-162.987747,69.667975],[-162.926886,69.694821],[-162.965871,69.71596],[-163.032831,69.728179],[-163.015146,69.754552],[-162.98939,69.75736],[-162.963612,69.780371],[-162.933312,69.783937],[-162.909341,69.800432],[-162.84719,69.809993],[-162.834065,69.830412],[-162.622806,69.915765],[-162.60032,69.913176],[-162.511172,69.961242],[-162.476814,69.982759],[-162.466934,70.041482],[-162.398227,70.044296],[-162.335326,70.040384],[-162.325092,70.050674],[-162.353732,70.058727],[-162.359362,70.076149],[-162.314609,70.077566],[-162.314528,70.109109],[-161.924193,70.292127],[-161.855784,70.298135],[-161.8189,70.288541],[-161.835325,70.27132],[-161.80241,70.2588],[-161.661279,70.244345],[-161.844874,70.150414],[-161.630127,70.239596],[-161.315491,70.244033],[-160.83656,70.342988],[-160.598341,70.414407],[-160.158782,70.583753],[-159.901303,70.586132],[-159.842749,70.247928],[-159.37533,70.497396],[-160.059548,70.627664],[-159.660353,70.785528],[-159.597529,70.79986],[-159.486097,70.820231],[-159.326293,70.842708],[-159.160415,70.84732],[-159.162188,70.817468],[-159.302564,70.807257],[-159.348901,70.795309],[-159.342173,70.786778],[-159.408249,70.767017],[-159.259954,70.712336],[-157.88248,70.853522],[-157.499116,70.948925],[-157.386815,70.987974],[-157.239646,71.052417],[-157.075051,71.150265],[-157.059571,71.154315],[-156.957958,71.213245],[-156.812238,71.286536],[-156.63839,71.34024],[-156.076578,71.242659],[-156.09185,71.224866],[-156.026048,71.202573],[-156.08611,71.16992],[-155.563643,71.164186],[-155.980316,70.746565],[-155.061226,71.133825],[-155.064342,71.005743],[-154.98918,71.100267],[-154.863869,71.097909],[-154.843713,71.078762],[-154.772316,71.085248],[-154.572939,70.990675],[-154.597906,70.978409],[-154.615627,70.952926],[-154.605208,70.911252],[-154.776572,70.890376],[-154.563762,70.825258],[-154.353202,70.836893],[-154.258128,70.816898],[-154.217488,70.797328],[-154.231369,70.782722],[-154.16414,70.770118],[-153.988739,70.822463],[-153.928807,70.870631],[-153.886033,70.886533],[-153.240243,70.925247],[-152.758048,70.888488],[-152.699875,70.854701],[-152.667573,70.801001],[-152.610901,70.840381],[-152.620187,70.861994],[-152.677011,70.887032],[-152.593122,70.886313],[-152.411507,70.856199],[-152.376325,70.84637],[-152.267365,70.835804],[-152.231144,70.824874],[-152.196061,70.790894],[-152.296579,70.777616],[-152.376916,70.727929],[-152.383866,70.713202],[-152.470366,70.685612],[-152.460413,70.643538],[-152.41891,70.610627],[-151.747486,70.555912],[-151.772879,70.486206],[-151.821291,70.484932],[-151.85834,70.476286],[-151.915683,70.473609],[-151.952356,70.458042],[-151.878014,70.431314],[-151.215037,70.36455],[-151.170764,70.435212],[-150.842176,70.463685],[-150.791225,70.481336],[-150.794833,70.495316],[-150.685467,70.499394],[-150.65443,70.497293],[-150.583464,70.505464],[-150.368297,70.498076],[-150.114538,70.434054],[-149.871891,70.517487],[-149.462393,70.518511],[-149.374527,70.483134],[-149.167549,70.48945],[-149.138431,70.474147],[-149.058854,70.464882],[-148.99919,70.436581],[-148.962398,70.424297],[-148.598645,70.403588],[-148.412641,70.304948],[-148.25473,70.333561],[-148.181738,70.325802],[-148.112212,70.341575],[-147.791799,70.27183],[-147.787663,70.217228],[-147.687016,70.200004],[-146.98678,70.149743],[-146.902345,70.175436],[-146.862999,70.181468],[-146.520307,70.191493],[-146.270379,70.179254],[-146.115897,70.158471],[-146.08944,70.145478],[-145.926578,70.147176],[-145.875679,70.134427],[-145.85907,70.168989],[-145.210682,70.026407],[-145.25217,69.998837],[-144.953059,69.968688],[-144.852112,69.978117],[-144.847549,69.989096],[-144.629527,69.970779],[-144.402064,70.033079],[-144.317117,70.029746],[-144.153199,70.039588],[-144.123224,70.058356],[-144.010516,70.048866],[-143.732175,70.104717],[-143.640118,70.080725],[-143.596396,70.087032],[-143.566708,70.082312],[-143.521795,70.091214],[-143.38162,70.094228],[-143.350202,70.11002],[-143.225215,70.107753],[-143.132568,70.07971],[-143.010369,70.075493],[-143.01346,70.059567],[-142.772744,70.034263],[-142.232989,69.84701],[-142.074091,69.842827],[-141.987472,69.800524],[-141.897831,69.810205],[-141.872383,69.801652],[-141.779021,69.790104],[-141.693795,69.77209],[-141.537491,69.728265],[-141.470909,69.697892],[-141.37968,69.620444],[-141.266935,69.596946],[-141.212638,69.636033],[-141.232752,69.65164],[-141.207569,69.669519],[-141.206648,69.681582],[-141.002527,69.64666],[-141.002465,65.840075],[-141.001854,60.390438]],[[-145.971896,66.244338],[-145.509582,66.251891],[-145.740791,66.35673],[-145.270215,66.558564],[-144.921862,66.468349],[-144.892186,66.636334],[-146.619076,66.468736],[-145.971896,66.244338]]],[[[-135.705443,57.366468],[-135.837795,57.387935],[-135.853879,57.423149],[-135.868665,57.41728],[-135.91791,57.44975],[-135.963465,57.460889],[-136.016521,57.513266],[-136.00713,57.527493],[-135.826016,57.462014],[-136.122465,57.617987],[-136.181582,57.743],[-136.371506,57.832305],[-136.412648,57.817597],[-136.418453,57.848402],[-136.390642,57.879057],[-136.356729,57.930927],[-136.354538,57.997357],[-136.142932,57.888802],[-136.342225,58.221554],[-136.180724,58.080661],[-136.161287,58.218003],[-135.980189,58.178322],[-135.967629,58.210087],[-135.901079,58.24808],[-135.835422,58.269906],[-135.824141,58.283318],[-135.523348,58.185732],[-135.496736,58.169367],[-135.526577,58.154939],[-135.540337,58.101175],[-135.627574,58.049255],[-135.777626,58.056107],[-135.6429,57.991289],[-135.796645,57.98132],[-135.591967,57.989528],[-135.430743,58.09512],[-135.467582,58.132211],[-135.398396,58.143897],[-135.336806,58.120885],[-135.346935,58.110514],[-135.306897,58.099488],[-135.175789,58.086603],[-135.115259,58.090681],[-134.937206,58.024384],[-135.00159,57.882123],[-135.082394,57.910187],[-135.146255,57.927432],[-135.161181,57.936493],[-135.216707,57.951657],[-135.066774,57.773791],[-135.833948,57.987657],[-135.365931,57.724322],[-135.217516,57.70104],[-135.112323,57.76001],[-135.009777,57.747502],[-134.97814,57.763501],[-134.92727,57.757267],[-134.829536,57.511865],[-134.830374,57.486783],[-134.839968,57.47912],[-134.875359,57.503737],[-134.956491,57.518654],[-134.890613,57.486072],[-134.865855,57.464604],[-134.89783,57.457785],[-135.08,57.462745],[-135.11916,57.491262],[-135.210335,57.532533],[-135.826195,57.769192],[-135.81085,57.649335],[-135.707598,57.655563],[-135.646007,57.621843],[-135.562356,57.591975],[-135.554353,57.58147],[-135.583069,57.566915],[-135.611067,57.577733],[-135.660442,57.559782],[-135.646129,57.548813],[-135.609367,57.563846],[-135.591976,57.552209],[-135.561794,57.547036],[-135.562951,57.527909],[-135.573596,57.514453],[-135.560601,57.508176],[-135.544509,57.472413],[-135.551674,57.449608],[-135.591973,57.442273],[-135.59397,57.422343],[-135.618582,57.407662],[-135.662144,57.393683],[-135.705443,57.366468]]],[[[-134.6074081,57.0147631],[-134.598426,57.155499],[-134.635598,57.178597],[-134.65299,57.213985],[-134.646042,57.240133],[-134.60297,57.232359],[-134.572502,57.220624],[-134.489217,57.327574],[-134.57599,57.40142],[-134.431858,57.368961],[-134.577078,57.475016],[-134.342215,57.557928],[-134.57719,57.504637],[-134.60758,57.555734],[-134.633543,57.582229],[-134.671852,57.612956],[-134.701189,57.700443],[-134.727969,57.720981],[-134.701131,57.832583],[-134.762156,57.993779],[-134.786418,58.012042],[-134.808331,58.04448],[-134.783716,58.081838],[-134.768977,58.087654],[-134.754583,58.115249],[-134.761232,58.15889],[-134.725455,58.174276],[-134.7727134,58.1648489],[-134.7682551,58.1397169],[-134.777398,58.09884],[-134.80097,58.106115],[-134.819896,58.141724],[-134.897902,58.194957],[-134.917105,58.226261],[-134.958267,58.405192],[-134.698302,58.161212],[-134.556543,58.194581],[-134.516817,58.17516],[-134.443403,58.172855],[-134.410535,58.166763],[-134.367879,58.148116],[-134.313413,58.144604],[-134.2666959,58.1574424],[-134.2314621,58.1575571],[-134.2077148,58.1668997],[-134.1758597,58.1578441],[-134.166829,58.127003],[-134.190838,58.106757],[-134.187769,58.085759],[-134.091279,58.009677],[-134.088737,57.972918],[-134.000665,57.914248],[-133.974185,57.857458],[-133.931999,57.835883],[-133.918117,57.816114],[-133.901121,57.805406],[-133.803681,57.607715],[-133.812918,57.566355],[-133.836265,57.574785],[-133.85875,57.621611],[-133.908492,57.66128],[-133.973404,57.688671],[-134.205848,58.012173],[-134.157607,57.991165],[-134.311837,58.0925776],[-134.303754,57.829934],[-134.225111,57.858627],[-134.04541,57.673319],[-134.09571,57.656041],[-133.935462,57.611827],[-133.943193,57.559008],[-133.918991,57.527632],[-133.883167,57.502533],[-133.852547,57.461621],[-133.924197,57.49981],[-133.974539,57.47743],[-134.077553,57.511983],[-134.088411,57.463574],[-133.88858,57.413901],[-133.881152,57.390682],[-133.867205,57.379226],[-133.868028,57.356261],[-133.883065,57.346797],[-133.946231,57.327195],[-133.960639,57.304157],[-133.981088,57.301701],[-134.197982,57.389393],[-134.0924,57.280365],[-134.145555,57.262044],[-134.150981,57.206432],[-134.221579,57.169339],[-134.22879,57.181618],[-134.277386,57.174437],[-134.293346,57.217666],[-134.272834,57.148584],[-134.381501,57.130246],[-134.401889,57.10711],[-134.367889,57.088723],[-134.480806,57.030317],[-134.6074081,57.0147631]]],[[[-152.780046,57.994579],[-152.850639,57.994214],[-152.919489,58.011238],[-152.968149,58.040617],[-153.020589,58.045203],[-153.218587,58.158241],[-152.926249,58.169306],[-153.10241,58.260344],[-153.069874,58.276848],[-153.044868,58.306761],[-153.00439,58.300136],[-152.982357,58.287496],[-152.893909,58.271842],[-152.763306,58.282173],[-152.739953,58.343013],[-152.776776,58.368026],[-152.81033,58.368333],[-152.883108,58.400443],[-152.485245,58.46216],[-152.512088,58.427568],[-152.535124,58.411809],[-152.409337,58.305053],[-152.363911,58.325861],[-152.332978,58.413819],[-152.140337,58.386905],[-152.147237,58.23771],[-151.981446,58.344251],[-152.081084,58.154276],[-152.223176,58.194795],[-152.233249,58.251294],[-152.256937,58.247051],[-152.325688,58.247593],[-152.315675,58.217404],[-152.290112,58.201069],[-152.293418,58.178622],[-152.351003,58.200414],[-152.366091,58.189128],[-152.325955,58.178187],[-152.273607,58.12563],[-152.557237,58.086463],[-152.569595,58.114801],[-152.556136,58.177063],[-152.594167,58.204712],[-152.62868,58.076357],[-152.777907,58.050365],[-152.754107,58.025304],[-152.7577,58.012403],[-152.780046,57.994579]]],[[[-152.472383,58.47215],[-152.667813,58.5427],[-152.341126,58.637879],[-152.472383,58.47215]]]]},"properties":{"name":"AKMS","gridLoss":{"display":"5.25%","value":0.0525},"fuelMixCategories":{"renewable":67.5,"non-renewable":32.5,"non-renewable (excluding nuclear)":32.5,"renewable (excluding hydro)":2.2,"nuclear":0,"hydro":65.4},"fullName":"ASCC Miscellaneous","emissionFactor":{"co2EmissionRate":{"value":503.1,"display":"503.1","units":"lb/MWh"},"noxEmissionRate":{"value":7,"display":"7.0","units":"lb/MWh"},"so2EmissionRate":{"value":0.6,"display":"0.6","units":"lb/MWh"}},"fuelMix":{"coal":0,"oil":24.6,"gas":7.9,"nuclear":0,"hydro":65.4,"biomass":0,"wind":2.1,"solar":0,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0}}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-109.84831,34.7934],[-109.842904,35.170402],[-109.686091,35.170113],[-109.84831,34.7934]]],[[[-110.473457,35.740668],[-110.424985,36.09919],[-110.285957,36.035466],[-110.473457,35.740668]]],[[[-116.270935,32.605452],[-116.220089,32.828782],[-116.733665,32.995236],[-116.615196,33.194825],[-116.421951,33.134636],[-116.617688,33.427355],[-116.155189,33.427151],[-116.63485,33.903674],[-116.454588,34.083112],[-116.665006,34.275926],[-116.127542,34.251503],[-116.032907,34.421428],[-116.034823,34.219166],[-115.720332,34.295942],[-115.744258,34.552122],[-115.333517,34.0772242],[-114.43543,34.079727],[-114.4205,34.103466],[-114.405941,34.11154],[-114.229716,34.186929],[-114.164648,34.259699],[-114.13545,34.257886],[-114.138283,34.303231],[-114.176909,34.349306],[-114.339627,34.451435],[-114.371217,34.446992],[-114.386699,34.457911],[-114.378124,34.507288],[-114.380838,34.529724],[-114.47162,34.712966],[-114.51662,34.736746],[-114.552682,34.766872],[-114.628277,34.863597],[-114.636769,34.885705],[-114.630878,34.907263],[-114.629812,34.94481],[-114.634953,34.958918],[-114.629353,34.983175],[-114.633013,35.002086],[-115.21294,35.46594],[-115.6713727,35.8283258],[-115.898334,36.004289],[-115.8969248,36.8420849],[-114.956114,36.853405],[-114.836413,37.907901],[-114.051843,37.724001],[-114.052828,37.103962],[-114.046838,36.194069],[-114.15413,36.023862],[-114.27155,35.776008],[-114.054591,35.731031],[-113.903534,36.092851],[-113.419539,35.750823],[-113.313431,36.100001],[-112.630205,36.392017],[-112.200557,36.096912],[-111.762852,36.198265],[-111.746595,35.672162],[-111.318833,35.757117],[-111.243586,35.156355],[-110.750692,35.170175],[-110.750685,34.636651],[-110.524669,34.567585],[-110.1346026,34.7975452],[-109.422649,34.646499],[-109.324877,34.671809],[-109.165494,34.810624],[-109.066094,34.855174],[-109.0460701,34.8707326],[-109.046258,35.174725],[-108.910395,35.176678],[-108.841055,35.169409],[-108.843266,35.11104],[-108.681377,35.306862],[-108.206018,35.306412],[-108.214701,35.575309],[-107.434253,35.880864],[-107.308828,35.645966],[-106.955414,35.65323],[-106.885887,36.067443],[-107.62425,36.219799],[-107.780374,36.824606],[-107.705282,36.830587],[-107.704358,36.882192],[-107.67328,36.911808],[-107.675386,36.94408],[-107.651277,36.96912],[-107.648635,36.986631],[-107.635627,37.000004],[-106.591178,36.992923],[-105.66472,36.995875],[-105.1208,36.995428],[-105.029228,36.99273],[-104.000525,36.996217],[-103.625507,36.998629],[-103.250493,36.999578],[-103.002375,37.000204],[-102.986976,36.998524],[-102.86545,36.999591],[-102.841004,36.986886],[-102.822162,36.961273],[-102.804987,36.719211],[-103.002206,36.66202],[-102.6431211,36.5004763],[-102.875478,36.500238],[-103.0419238,36.5004008],[-103.041168,35.899024],[-103.1427075,35.8993145],[-103.1608993,35.8906403],[-103.125799,35.739781],[-103.374973,35.740013],[-103.364971,36.086365],[-103.682076,35.940827],[-103.793983,36.173995],[-104.134093,36.218288],[-104.367312,35.781427],[-104.912005,35.695863],[-104.559329,35.216176],[-104.587624,34.881078],[-104.12941,34.779312],[-104.087759,34.112036],[-103.718836,33.640235],[-103.506823,33.657372],[-103.720743,33.569679],[-103.766177,33.139525],[-104.595026,33.291901],[-104.840609,32.963308],[-104.680417,32.798765],[-104.84237,32.76776],[-104.847758,32.00052],[-105.998004,32.002328],[-105.997105,31.933234],[-105.482883,31.78147],[-105.491966,31.598005],[-104.06497,31.537521],[-104.102365,31.105175],[-104.500484,30.891663],[-104.625495,30.822791],[-104.779064,30.739298],[-104.9797397,30.6291637],[-105.395317,30.849273],[-105.5557129,30.9886927],[-105.581227,31.026716],[-105.5853178,31.0575272],[-105.5951476,31.0642225],[-105.606341,31.085214],[-105.627622,31.098609],[-105.640268,31.097656],[-105.649514,31.116152],[-105.709098,31.136191],[-105.741611,31.164423],[-105.772947,31.166724],[-105.8692304,31.2888281],[-105.9327821,31.3133056],[-105.9477562,31.3391733],[-105.9458111,31.3529387],[-105.9537009,31.3645652],[-105.9704308,31.3661217],[-106.0054562,31.3925895],[-106.0779276,31.3980208],[-106.199792,31.46238],[-106.2196628,31.4816229],[-106.2240552,31.4996815],[-106.2363674,31.512271],[-106.2459251,31.5407537],[-106.2813382,31.5631885],[-106.289,31.587687],[-106.3024221,31.6098703],[-106.308157,31.629746],[-106.35073,31.697894],[-106.374018,31.71475],[-106.38208,31.732727],[-106.528179,31.783861],[-106.734847,31.783818],[-107.031808,31.78362],[-107.375583,31.783669],[-107.613208,31.783684],[-107.865602,31.78367],[-108.208478,31.783664],[-108.208491,31.625104],[-108.208468,31.333375],[-108.768198,31.3321982],[-109.08933,31.332408],[-109.27849,31.333959],[-109.5613552,31.3340023],[-110.4493889,31.3327635],[-110.8460221,31.3336907],[-111.0749488,31.3322463],[-114.813679,32.494205],[-114.810678,32.622219],[-114.764921,32.643741],[-114.749252,32.662269],[-114.720352,32.718762],[-115.375929,32.67366],[-115.801995,32.641634],[-116.061548,32.622099],[-116.270935,32.605452]]]]},"properties":{"name":"AZNM","gridLoss":{"display":"4.23%","value":0.0423},"fuelMixCategories":{"renewable":11.1,"non-renewable":88.9,"non-renewable (excluding nuclear)":69.4,"renewable (excluding hydro)":7.6,"nuclear":19.5,"hydro":3.5},"fullName":"WECC Southwest","emissionFactor":{"co2EmissionRate":{"value":1043.6,"display":"1,043.6","units":"lb/MWh"},"noxEmissionRate":{"value":1,"display":"1.0","units":"lb/MWh"},"so2EmissionRate":{"value":0.3,"display":"0.3","units":"lb/MWh"}},"fuelMix":{"coal":29.5,"oil":0.1,"gas":39.8,"nuclear":19.5,"hydro":3.5,"biomass":0.4,"wind":1.2,"solar":2.8,"geothermal":3.2,"otherFossilFuel":0,"otherUnknownFuel":0}}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-120.054946,34.037363],[-120.117018,33.893851],[-120.246513,33.999324],[-120.054946,34.037363]]],[[[-124.140134,41.685371],[-124.1207336,41.6996802],[-124.118965,41.740054],[-124.089659,41.73997],[-124.089235,41.758635],[-124.004076,41.74421],[-123.770249,41.380777],[-122.847358,41.294993],[-122.970967,41.090159],[-122.638011,40.985173],[-122.864469,40.825928],[-122.639498,40.845272],[-122.498376,41.182675],[-121.446495,41.183484],[-121.374484,41.811014],[-121.170744,41.184385],[-119.999867,41.183975],[-119.99986,40.999891],[-119.998479,40.749899],[-119.995926,40.499902],[-119.997624,39.960439],[-119.773646,39.835682],[-119.928983,39.628072],[-119.957604,39.644954],[-119.974959,39.648546],[-119.988544,39.636288],[-120.001238,39.643475],[-120.001015,38.999574],[-118.9497367,38.2689831],[-118.771867,38.141871],[-118.714313,38.102185],[-118.372402,37.855884],[-117.904625,37.515837],[-117.498548,37.219207],[-117.000896,36.847695],[-115.898334,36.004289],[-115.6713727,35.8283258],[-115.21294,35.46594],[-114.633013,35.002086],[-114.629353,34.983175],[-114.634953,34.958918],[-114.629812,34.94481],[-114.630878,34.907263],[-114.636769,34.885705],[-114.628277,34.863597],[-114.552682,34.766872],[-114.51662,34.736746],[-114.47162,34.712966],[-114.380838,34.529724],[-114.378124,34.507288],[-114.386699,34.457911],[-114.371217,34.446992],[-114.339627,34.451435],[-114.176909,34.349306],[-114.138283,34.303231],[-114.13545,34.257886],[-114.164648,34.259699],[-114.229716,34.186929],[-114.405941,34.11154],[-114.4205,34.103466],[-114.43543,34.079727],[-115.333517,34.0772242],[-115.744258,34.552122],[-115.720332,34.295942],[-116.034823,34.219166],[-116.032907,34.421428],[-116.127542,34.251503],[-116.665006,34.275926],[-116.454588,34.083112],[-116.63485,33.903674],[-116.155189,33.427151],[-116.617688,33.427355],[-116.421951,33.134636],[-116.615196,33.194825],[-116.733665,32.995236],[-116.220089,32.828782],[-116.270935,32.605452],[-117.124164,32.5343433],[-117.227181,32.6975861],[-117.098625,32.592989],[-117.1189126,32.6724566],[-117.176957,32.727374],[-117.2137806,32.7280426],[-117.2393496,32.6900681],[-117.253726,32.692333],[-117.257924,32.725223],[-117.2522259,32.756713],[-117.2324771,32.7824985],[-117.2520243,32.7888153],[-117.280763,32.822265],[-117.282432,32.84019],[-117.25614,32.8595],[-117.251572,32.876096],[-117.279758,33.01163],[-117.296609,33.037049],[-117.301682,33.056835],[-117.328642,33.122005],[-117.361662,33.16795],[-117.469703,33.29529],[-117.506676,33.333412],[-117.545704,33.362706],[-117.573216,33.378876],[-117.595149,33.385958],[-117.6067264,33.4048622],[-117.640497,33.437451],[-117.68126,33.46127],[-117.714768,33.459975],[-117.72779,33.483588],[-117.786898,33.542557],[-117.888582,33.60972],[-117.899888,33.609695],[-117.926993,33.620638],[-117.941762,33.620745],[-118.005059,33.656799],[-118.02938,33.676289],[-118.0875717,33.7328179],[-118.117273,33.740989],[-118.123128,33.761355],[-118.410807,33.742833],[-118.4423092,33.9932178],[-118.4680056,33.9783777],[-118.495427,34.007241],[-118.526438,34.03056],[-118.569875,34.041641],[-118.743983,34.03248],[-118.782576,34.022058],[-118.808603,34.001267],[-119.13057,34.10025],[-119.2005604,34.1433616],[-119.2165,34.14615],[-119.231295,34.165762],[-119.266205,34.234195],[-119.269508,34.253482],[-119.282277,34.27002],[-119.374345,34.321042],[-119.39131,34.318869],[-119.401341,34.331548],[-119.432262,34.355224],[-119.442988,34.355752],[-119.459151,34.373127],[-119.537504,34.396223],[-119.562884,34.414757],[-119.684038,34.412861],[-119.702444,34.397683],[-119.7289361,34.3960104],[-119.787062,34.416557],[-119.836112,34.415488],[-119.84375,34.405001],[-119.8788531,34.4071316],[-119.890489,34.418821],[-119.928711,34.435367],[-119.950046,34.434534],[-120.003096,34.458707],[-120.023195,34.457735],[-120.036346,34.463249],[-120.074837,34.460332],[-120.098204,34.462318],[-120.118028,34.469931],[-120.153419,34.473089],[-120.295791,34.470374],[-120.33717,34.459338],[-120.402517,34.45534],[-120.452821,34.44583],[-120.472526,34.44864],[-120.479548,34.478763],[-120.514478,34.52473],[-120.578135,34.55539],[-120.623749,34.554057],[-120.637005,34.563044],[-120.645794,34.579447],[-120.639655,34.604903],[-120.602075,34.700988],[-120.616461,34.733202],[-120.637073,34.757336],[-120.616543,34.86701],[-120.670301,34.901714],[-120.661056,34.937605],[-120.640059,35.003912],[-120.631137,35.052532],[-120.640418,35.132217],[-120.651098,35.147749],[-120.686762,35.159491],[-120.699674,35.171547],[-120.739065,35.178526],[-120.760493,35.15971],[-120.857179,35.207856],[-120.895478,35.245578],[-120.896247,35.270383],[-120.860215,35.325638],[-120.831434,35.339022],[-120.884695,35.430263],[-120.905842,35.448381],[-120.950519,35.447927],[-121.007257,35.463309],[-121.103815,35.552103],[-121.114312,35.576115],[-121.163892,35.632918],[-121.18839,35.643229],[-121.199017,35.637198],[-121.21991,35.651575],[-121.242271,35.652756],[-121.260767,35.664056],[-121.284834,35.66877],[-121.899087,36.307694],[-121.971008,36.569945],[-121.938984,36.632542],[-121.930031,36.637524],[-121.903237,36.621742],[-121.894099,36.604872],[-121.874631,36.603186],[-121.816115,36.677092],[-121.805888,36.745781],[-121.788595,36.804196],[-121.8064127,36.8437079],[-121.858623,36.926199],[-121.889987,36.957923],[-121.9373518,36.9783119],[-121.972618,36.954656],[-122.022529,36.96184],[-122.0259993,36.9511449],[-122.065876,36.948098],[-122.106522,36.956582],[-122.139347,36.974144],[-122.152978,36.976282],[-122.405684,37.195465],[-122.411273,37.227888],[-122.420844,37.242409],[-122.402792,37.361542],[-122.448084,37.47225],[-122.471246,37.501017],[-122.504766,37.506422],[-122.516724,37.52168],[-122.51996,37.536252],[-122.4760245,37.809595],[-122.360285,37.591995],[-122.318329,37.591234],[-122.306039,37.575336],[-122.251762,37.567542],[-122.0908652,37.4513031],[-121.946285,37.464577],[-122.105509,37.499235],[-122.162378,37.669935],[-122.261192,37.740351],[-122.214086,37.755169],[-122.322675,37.799707],[-122.299106,37.8371],[-122.302855,37.861563],[-122.324353,37.907203],[-122.41872,37.962239],[-122.382377,37.953352],[-122.368032,38.006551],[-122.300044,38.010276],[-122.282236,38.022544],[-122.262253,38.050905],[-122.243678,38.058137],[-121.909856,38.083247],[-122.479994,38.114457],[-122.487405,38.109771],[-122.484622,38.07253],[-122.498496,38.031512],[-122.498629,38.015609],[-122.462099,38.003527],[-122.447066,37.98558],[-122.494255,37.921738],[-122.43803,37.882279],[-122.498425,37.893658],[-122.478085,37.825728],[-122.5235676,37.8246617],[-122.548957,37.835688],[-122.562178,37.851925],[-122.601006,37.874443],[-122.620982,37.877686],[-122.682883,37.929794],[-122.683153,37.905525],[-122.701304,37.894157],[-122.726814,37.90365],[-122.736816,37.926],[-122.782454,37.950942],[-122.794481,37.97302],[-122.82185,37.996798],[-122.931575,38.035591],[-122.932824,38.064243],[-122.938452,38.033414],[-122.961127,38.027639],[-122.983036,37.997972],[-123.002791,37.992851],[-123.012467,38.00127],[-122.96554,38.100149],[-122.948425,38.154531],[-122.95587,38.178253],[-122.966322,38.183242],[-122.966447,38.199349],[-122.980261,38.213905],[-122.982812,38.233953],[-122.94813,38.195274],[-122.937298,38.19073],[-122.909381,38.159621],[-122.893915,38.132747],[-122.827266,38.092176],[-123.00306,38.295915],[-123.023675,38.30984],[-123.048248,38.332795],[-123.065224,38.305773],[-123.0684921,38.3589163],[-123.085279,38.390394],[-123.096554,38.394441],[-123.102408,38.413534],[-123.114361,38.421585],[-123.131004,38.452485],[-123.195293,38.490631],[-123.219781,38.498645],[-123.258311,38.518695],[-123.308681,38.555794],[-123.333257,38.56554],[-123.727479,38.91923],[-123.738808,38.954226],[-123.7257884,38.9583849],[-123.71137,38.974947],[-123.695928,39.003877],[-123.691195,39.051278],[-123.718914,39.13194],[-123.737327,39.149442],[-123.734839,39.158609],[-123.751473,39.174513],[-123.757844,39.187942],[-123.770485,39.194095],[-123.809808,39.303558],[-123.800218,39.318989],[-123.826537,39.349215],[-123.817195,39.361834],[-123.824114,39.369825],[-123.817386,39.387877],[-123.821522,39.40511],[-123.814674,39.446624],[-123.778755,39.520574],[-123.76695,39.55153],[-123.766983,39.564845],[-123.788715,39.59978],[-123.782608,39.614861],[-123.794424,39.69025],[-123.808893,39.710986],[-123.830419,39.723157],[-123.853625,39.833995],[-124.0792244,40.0299366],[-124.079927,40.066382],[-124.109762,40.10375],[-124.362764,40.260726],[-124.347612,40.315434],[-124.372717,40.392903],[-124.390111,40.406065],[-124.409716,40.438564],[-124.280711,40.691518],[-124.261194,40.697491],[-124.219106,40.68716],[-124.187292,40.794674],[-124.082694,40.832958],[-124.157585,40.855159],[-124.20045,40.781936],[-124.224472,40.759504],[-124.2323533,40.7639649],[-124.066586,41.418895],[-124.140134,41.685371]],[[-120.751239,40.838636],[-120.437628,40.775139],[-120.342515,40.98693],[-120.774473,40.970517],[-120.751239,40.838636]]]]},"properties":{"name":"CAMX","gridLoss":{"display":"4.23%","value":0.0423},"fuelMixCategories":{"renewable":36.8,"non-renewable":63.2,"non-renewable (excluding nuclear)":53.8,"renewable (excluding hydro)":24.7,"nuclear":9.4,"hydro":12.1},"fullName":"WECC California","emissionFactor":{"co2EmissionRate":{"value":527.9,"display":"527.9","units":"lb/MWh"},"noxEmissionRate":{"value":0.6,"display":"0.6","units":"lb/MWh"},"so2EmissionRate":{"value":0.1,"display":"0.1","units":"lb/MWh"}},"fuelMix":{"coal":4.3,"oil":0.1,"gas":48.4,"nuclear":9.4,"hydro":12.1,"biomass":2.9,"wind":7,"solar":10.6,"geothermal":4.1,"otherFossilFuel":0.7,"otherUnknownFuel":0.2}}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-97.2893895,26.5643583],[-97.39007,27.157019],[-97.220144,27.632471],[-97.377001,27.101022],[-97.2893895,26.5643583]]],[[[-104.9797397,30.6291637],[-104.779064,30.739298],[-104.625495,30.822791],[-104.500484,30.891663],[-104.102365,31.105175],[-104.06497,31.537521],[-105.491966,31.598005],[-105.482883,31.78147],[-105.997105,31.933234],[-105.998004,32.002328],[-104.847758,32.00052],[-104.460846,32.000111],[-103.979829,32.00011],[-103.616431,31.651132],[-103.129091,31.835781],[-102.79894,31.651782],[-102.799087,32.085795],[-102.211255,32.086938],[-102.211028,32.523052],[-101.688753,32.52524],[-101.691284,32.961838],[-102.076215,32.959703],[-102.07593,33.389588],[-102.318018,33.388839],[-102.181906,33.553165],[-101.688612,33.536682],[-102.122947,33.623309],[-102.140311,34.747513],[-101.628443,34.807245],[-101.622942,35.183117],[-101.044538,35.357351],[-101.085708,36.057573],[-100.540222,36.056492],[-100.540198,35.619308],[-100.340019,35.619486],[-100.290027,35.499313],[-100.040779,35.447792],[-100.0408716,35.4614682],[-100.004444,35.461771],[-100.000389,35.465823],[-100.000385,35.125053],[-100.0003842,34.7969067],[-100.000382,34.560509],[-99.694528,34.378218],[-99.3282581,34.3948748],[-99.475606,33.834056],[-98.808713,33.818792],[-98.837273,33.994483],[-98.767549,33.975369],[-98.759529,34.115491],[-98.735472,34.135209],[-98.6901817,34.1330639],[-98.671529,34.148893],[-98.643224,34.164532],[-98.601407,34.16024],[-98.576244,34.144447],[-98.5558,34.136957],[-98.480276,34.06354],[-98.403593,34.089692],[-98.396218,34.119879],[-98.376862,34.147851],[-98.360018,34.15642],[-98.101938,34.14683],[-98.120839,34.0845225],[-98.083839,34.04172],[-98.103618,34.029208],[-98.084435,34.002894],[-98.041118,33.993457],[-97.97167,34.005435],[-97.946803,33.990893],[-97.957156,33.914455],[-97.984374,33.898024],[-97.957093,33.878859],[-97.865765,33.849393],[-97.805972,33.876572],[-97.763044,33.934146],[-97.731138,33.9371138],[-97.712349,33.951906],[-97.697565,33.978316],[-97.687694,33.98718],[-97.66149,33.990818],[-97.588828,33.951883],[-97.595421,33.941437],[-97.59698,33.920228],[-97.589255,33.903923],[-97.551542,33.897947],[-97.5246113,33.9118995],[-97.500961,33.919644],[-97.463346,33.905007],[-97.452232,33.89267],[-97.451553,33.875857],[-97.463618,33.842331],[-97.415913,33.817925],[-97.373792,33.819091],[-97.358662,33.829306],[-97.337293,33.861657],[-97.31342,33.865956],[-97.305733,33.886458],[-97.254185,33.865149],[-97.248238,33.90493],[-97.201007,33.912533],[-97.192993,33.759229],[-97.174802,33.747252],[-97.170137,33.735719],[-97.154368,33.724028],[-97.125951,33.717198],[-97.050211,33.816682],[-97.054159,33.834646],[-97.084143,33.840537],[-97.086033,33.854553],[-97.055534,33.855107],[-97.041615,33.837614],[-97.020727,33.847035],[-96.98377,33.890038],[-96.984939,33.904866],[-96.995678,33.936988],[-96.987801,33.954703],[-96.971891,33.936119],[-96.921564,33.959611],[-96.907486,33.950136],[-96.895729,33.896415],[-96.866438,33.85315],[-96.761588,33.824406],[-96.690708,33.849959],[-96.684727,33.862906],[-96.681494,33.894675],[-96.673449,33.912279],[-96.592949,33.895617],[-96.585361,33.888949],[-96.597349,33.875101],[-96.611635,33.869253],[-96.629205,33.850893],[-96.625877,33.84404],[-96.355947,33.687156],[-96.294867,33.764772],[-96.17806,33.760518],[-96.1652,33.780131],[-96.168293,33.802977],[-96.17691,33.813934],[-96.149226,33.837092],[-95.595562,33.941643],[-95.561887,33.931874],[-95.549146,33.90795],[-95.552388,33.889521],[-95.531527,33.881894],[-95.29536,33.872634],[-95.282179,33.875845],[-95.285302,33.898102],[-95.253536,33.894198],[-95.219359,33.961568],[-95.166686,33.939728],[-95.124701,33.934675],[-95.131643,33.916027],[-95.117593,33.904613],[-95.09011,33.920949],[-95.081816,33.907546],[-95.10074,33.895209],[-95.082408,33.879883],[-95.0763,33.902164],[-95.062354,33.903532],[-95.049025,33.864091],[-95.022325,33.859814],[-95.0083828,33.866033],[-94.992164,33.852035],[-94.968792,33.860886],[-94.943602,33.828065],[-94.953558,33.816012],[-94.869804,33.746054],[-94.849297,33.739586],[-94.827931,33.741054],[-94.816388,33.763964],[-94.732367,33.72194],[-94.753069,33.710754],[-94.758809,33.618904],[-94.897765,33.654871],[-94.7369994,33.2946641],[-94.918249,33.387565],[-95.515696,33.104359],[-95.594301,32.479859],[-95.083237,32.356552],[-94.985298,32.157201],[-94.332872,32.236858],[-94.207994,32.194682],[-94.163035,32.234749],[-94.127205,32.173975],[-94.109291,32.165089],[-94.07049,32.17283],[-94.0426504,32.1669115],[-94.04272,31.999266],[-93.900616,31.896789],[-93.902069,31.879105],[-93.881679,31.868582],[-93.882879,31.854672],[-93.872989,31.836697],[-93.874837,31.822314],[-93.822599,31.773559],[-93.839384,31.599076],[-93.719708,31.50584],[-93.687512,31.310813],[-93.620829,31.271299],[-93.589119,31.16589],[-93.567271,31.178781],[-93.508893,31.029332],[-93.533415,31.018956],[-93.540355,31.008135],[-93.565458,31.012678],[-93.57784,31.00106],[-93.553626,30.83514],[-93.705081,30.726793],[-93.870567,30.789456],[-93.731372,31.168403],[-94.4433443,31.036513],[-94.357632,31.259591],[-94.554839,31.435123],[-94.865801,31.526957],[-95.2302325,31.1988698],[-95.099989,31.518982],[-95.601005,32.061483],[-95.961342,31.672382],[-96.333293,31.757827],[-96.359203,31.438086],[-96.731041,31.444669],[-96.490488,31.188354],[-96.54808,30.919713],[-96.201604,30.937842],[-96.12634,30.449278],[-95.8206608,30.4666945],[-96.305321,29.69573],[-95.9292311,29.6385625],[-95.76035,29.701897],[-95.7815971,30.0370142],[-95.170434,30.091763],[-94.979664,29.67827],[-95.002307,29.662654],[-95.013062,29.646309],[-95.015064,29.632075],[-94.982912,29.601174],[-95.001326,29.582663],[-95.021621,29.551875],[-94.981406,29.512773],[-94.909738,29.495455],[-94.892391,29.314043],[-94.8999572,29.3019099],[-94.937505,29.313699],[-95.096654,29.178683],[-95.188832,29.214177],[-95.153875,29.152636],[-95.235935,29.0145],[-95.155447,29.070253],[-95.141379,29.067666],[-95.142106,29.055891],[-95.384099,28.864864],[-95.413602,28.860192],[-95.439993,28.859829],[-95.643237,28.75482],[-95.923762,28.7015],[-95.946137,28.680611],[-95.936817,28.670838],[-95.954681,28.653829],[-95.958462,28.625472],[-95.868297,28.649702],[-95.825345,28.679],[-95.682633,28.733535],[-95.813845,28.664505],[-96.220191,28.490821],[-95.994031,28.59912],[-95.980062,28.617764],[-95.987198,28.62583],[-95.985464,28.645169],[-96.39832,28.737689],[-96.472813,28.573487],[-96.645308,28.711724],[-96.617671,28.568296],[-96.567242,28.583912],[-96.42659,28.473691],[-96.402743,28.448885],[-96.403598,28.442517],[-96.667306,28.324556],[-96.687885,28.327844],[-96.706556,28.350125],[-96.706116,28.403919],[-96.802496,28.480497],[-96.764507,28.411055],[-96.85872,28.41761],[-96.791092,28.358048],[-96.788334,28.257639],[-96.800421,28.224627],[-96.826752,28.201648],[-96.874625,28.174256],[-96.931892,28.123654],[-96.957372,28.122455],[-96.928496,28.261773],[-96.9856827,28.1284196],[-97.18358,28.161199],[-97.146944,27.99983],[-97.020182,28.103734],[-97.188602,27.825681],[-97.550542,27.869433],[-97.254257,27.696802],[-97.412023,27.322324],[-97.732685,27.370559],[-97.423196,27.262399],[-97.560643,26.839629],[-97.474591,26.4562],[-97.308383,26.12676],[-97.2822592,26.0940059],[-97.24714,26.079962],[-97.207218,26.079038],[-97.193907,26.051877],[-97.219111,26.043411],[-97.230923,26.065119],[-97.245768,26.071122],[-97.259004,26.068657],[-97.255862,26.008755],[-97.191362,25.994873],[-97.152038,26.014237],[-97.146595,25.959562],[-97.174379,25.965581],[-97.190323,25.953863],[-97.206519,25.963228],[-97.247534,25.948174],[-97.276708,25.952148],[-97.278572,25.934978],[-97.336441,25.929297],[-97.368717,25.915399],[-97.367445,25.893789],[-97.3736823,25.8810124],[-97.362333,25.868802],[-97.372926,25.839917],[-97.426116,25.840867],[-97.455503,25.884068],[-97.485418,25.878441],[-97.523296,25.888818],[-97.545491,25.932624],[-97.582739,25.938112],[-97.58312,25.956091],[-97.602149,25.957381],[-97.62268,25.989579],[-97.633341,25.988723],[-97.639714,26.012144],[-97.675995,26.031233],[-97.875524,26.063863],[-98.031387,26.064686],[-98.038849,26.041411],[-98.070093,26.051092],[-98.075755,26.06567],[-98.091798,26.058764],[-98.105394,26.067666],[-98.137322,26.06151],[-98.149619,26.051652],[-98.180579,26.065971],[-98.192285,26.053317],[-98.248405,26.071788],[-98.267602,26.092523],[-98.284486,26.101026],[-98.272058,26.113026],[-98.291393,26.120863],[-98.309648,26.113866],[-98.323134,26.120207],[-98.335205,26.137618],[-98.335621,26.165921],[-98.358167,26.158598],[-98.386919,26.15796],[-98.406793,26.183242],[-98.44236,26.198975],[-98.43985,26.218373],[-98.458454,26.225627],[-98.622347,26.259818],[-98.633419,26.243255],[-98.664633,26.235351],[-98.678477,26.244269],[-98.679014,26.260622],[-98.718349,26.271475],[-98.704284,26.27729],[-98.754948,26.331358],[-98.775462,26.325199],[-98.788221,26.329989],[-98.79853,26.360742],[-98.824992,26.370702],[-98.895759,26.353239],[-98.903852,26.372201],[-98.956073,26.377113],[-98.978756,26.399922],[-99.011405,26.392431],[-99.02067,26.40627],[-99.03675,26.413526],[-99.062112,26.397434],[-99.081683,26.396602],[-99.109754,26.42501],[-99.099666,26.46146],[-99.091661,26.476219],[-99.105031,26.500336],[-99.171991,26.546023],[-99.26912,26.842208],[-99.443802,27.018488],[-99.44163,27.250108],[-99.463303,27.268503],[-99.480688,27.25999],[-99.495022,27.303937],[-99.538036,27.317091],[-99.504339,27.339039],[-99.487582,27.412855],[-99.495273,27.446793],[-99.478795,27.479256],[-99.489,27.495611],[-99.528327,27.499454],[-99.519313,27.552465],[-99.511471,27.564179],[-99.594559,27.638793],[-99.608949,27.641072],[-99.638942,27.626656],[-99.710556,27.657706],[-99.8403621,27.7651395],[-99.851762,27.794509],[-99.871528,27.794988],[-99.875927,27.837978],[-99.901709,27.864802],[-99.931071,27.979997],[-99.990176,27.993344],[-100.017389,28.063872],[-100.053003,28.084827],[-100.055829,28.102999],[-100.067377,28.113544],[-100.088765,28.147866],[-100.120237,28.155958],[-100.141246,28.168172],[-100.15862,28.167591],[-100.210978,28.193068],[-100.268131,28.251008],[-100.294103,28.284132],[-100.285972,28.309699],[-100.314198,28.34586],[-100.31815,28.359076],[-100.344385,28.389871],[-100.348951,28.404747],[-100.367766,28.475019],[-100.344575,28.486122],[-100.338519,28.501834],[-100.384682,28.513246],[-100.398575,28.585289],[-100.429981,28.596177],[-100.447607,28.609314],[-100.445584,28.63728],[-100.474495,28.647071],[-100.479205,28.655281],[-100.498086,28.659576],[-100.512083,28.706761],[-100.50668,28.716881],[-100.507561,28.740799],[-100.537558,28.779518],[-100.535832,28.806069],[-100.645604,28.940036],[-100.646278,28.990316],[-100.663145,29.046695],[-100.663708,29.074087],[-100.675315,29.101435],[-100.801495,29.250076],[-100.833886,29.261228],[-100.85548,29.275824],[-100.8783593,29.2811569],[-100.886158,29.307176],[-100.897497,29.309292],[-100.940414,29.333234],[-100.944898,29.344312],[-101.009952,29.368285],[-101.060357,29.45848],[-101.255011,29.520143],[-101.261076,29.537487],[-101.241543,29.564902],[-101.247488,29.618195],[-101.264062,29.630499],[-101.280233,29.612427],[-101.279316,29.588476],[-101.294356,29.572228],[-101.309963,29.586519],[-101.312252,29.612736],[-101.301277,29.646856],[-101.347964,29.662153],[-101.363019,29.652572],[-101.372642,29.678212],[-101.372957,29.699154],[-101.414247,29.743969],[-101.405606,29.772052],[-101.436816,29.750941],[-101.450096,29.751456],[-101.456176,29.77314],[-101.455388,29.78827],[-101.480411,29.783971],[-101.502354,29.764194],[-101.53929,29.760201],[-101.540465,29.808828],[-101.568029,29.798513],[-101.57454,29.788713],[-101.57411,29.770104],[-101.648531,29.755522],[-101.804813,29.780211],[-101.816894,29.81155],[-101.837843,29.793626],[-101.855442,29.807493],[-101.875437,29.793893],[-101.9103,29.798357],[-101.924625,29.784212],[-101.935736,29.799677],[-101.954786,29.7956],[-101.980608,29.815648],[-101.983821,29.80012],[-102.02338,29.80295],[-102.050045,29.78507],[-102.116888,29.793383],[-102.144052,29.803613],[-102.188622,29.848887],[-102.320297,29.879289],[-102.67704,29.741609],[-102.877056,29.354801],[-102.887335,29.311577],[-102.88798,29.293126],[-102.906322,29.261854],[-102.867376,29.223831],[-103.274351,28.981673],[-103.287642,29.001872],[-103.309928,29.003969],[-103.313629,29.026224],[-103.32603,29.016363],[-103.330809,29.043291],[-103.344745,29.045447],[-103.35943,29.018685],[-103.473901,29.070202],[-103.499709,29.11455],[-103.523689,29.121155],[-103.524679,29.137349],[-103.5564182,29.1558114],[-103.592361,29.150261],[-103.718646,29.180902],[-103.777082,29.220285],[-103.776584,29.243321],[-103.782947,29.264199],[-103.798893,29.258475],[-103.809422,29.272691],[-103.825879,29.26921],[-103.838016,29.278418],[-103.918597,29.284676],[-103.968254,29.299927],[-103.973548,29.295943],[-104.02037,29.312124],[-104.055469,29.330688],[-104.168507,29.396261],[-104.183945,29.416673],[-104.180683,29.425664],[-104.210754,29.449215],[-104.208944,29.480522],[-104.262193,29.513615],[-104.295075,29.523625],[-104.337183,29.519626],[-104.380203,29.542057],[-104.394948,29.556506],[-104.398663,29.571714],[-104.4676534,29.6113729],[-104.4773086,29.6285803],[-104.5184648,29.6492631],[-104.680033,29.9212146],[-104.7074497,30.0503496],[-104.6851489,30.0854133],[-104.695464,30.132577],[-104.686056,30.1456998],[-104.6871036,30.1789404],[-104.6973392,30.1918224],[-104.713136,30.237522],[-104.8594998,30.3905401],[-104.8989222,30.5705706],[-104.922394,30.603311],[-104.9348671,30.6000891],[-104.9601712,30.6107322],[-104.972011,30.6103324],[-104.9797397,30.6291637]],[[-94.681297,31.843947],[-94.63623,31.618505],[-94.519128,31.744036],[-94.681297,31.843947]],[[-101.556887,33.394761],[-101.963946,33.370447],[-101.557192,33.241118],[-101.556887,33.394761]]]]},"properties":{"name":"ERCT","gridLoss":{"display":"4.89%","value":0.0489},"fuelMixCategories":{"renewable":14.4,"non-renewable":85.6,"non-renewable (excluding nuclear)":74.8,"renewable (excluding hydro)":14.1,"nuclear":10.8,"hydro":0.3},"fullName":"ERCOT All","emissionFactor":{"co2EmissionRate":{"value":1009.2,"display":"1,009.2","units":"lb/MWh"},"noxEmissionRate":{"value":0.5,"display":"0.5","units":"lb/MWh"},"so2EmissionRate":{"value":1,"display":"1.0","units":"lb/MWh"}},"fuelMix":{"coal":25.9,"oil":0,"gas":48.2,"nuclear":10.8,"hydro":0.3,"biomass":0.3,"wind":13.7,"solar":0.2,"geothermal":0,"otherFossilFuel":0.5,"otherUnknownFuel":0.2}}}, -{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-85.4309192,29.9500295],[-85.421959,29.966564],[-85.389816,29.95906],[-85.391448,30.025415],[-85.616044,30.134255],[-85.322617,30.998601],[-85.243632,31.000884],[-85.001901,31.000681],[-84.925724,30.843789],[-84.935824,30.83379],[-84.936824,30.81849],[-84.920023,30.765791],[-84.864694,30.711543],[-84.634212,30.701511],[-84.47441,30.692794],[-84.046606,30.674201],[-83.49954,30.645653],[-82.749855,30.601156],[-82.499849,30.586802],[-82.2147951,30.5684331],[-82.16551,30.357943],[-82.035829,30.384938],[-82.045386,30.728327],[-82.011141,30.763752],[-82.023825,30.783247],[-82.015802,30.791669],[-81.995312,30.786775],[-81.977809,30.776694],[-81.962682,30.796062],[-81.964064,30.818038],[-81.949981,30.827831],[-81.444124,30.709714],[-81.4571118,30.5130031],[-81.43241,30.486539],[-81.41081,30.482039],[-81.407444,30.429507],[-81.416948,30.410828],[-81.392984,30.397152],[-81.397873,30.362733],[-81.389961,30.294182],[-81.382996,30.262728],[-81.310648,29.976445],[-81.297678,29.935086],[-81.273817,29.889799],[-81.265407,29.859538],[-81.262413,29.815766],[-81.249825,29.766192],[-80.971213,29.156714],[-80.94177,29.106527],[-80.9100245,29.0694504],[-80.892642,29.033513],[-80.865146,28.989192],[-80.703661,28.748335],[-80.574903,28.585181],[-80.561675,28.532572],[-80.525675,28.458967],[-80.529256,28.448881],[-80.562272,28.438115],[-80.590748,28.408096],[-80.6036381,28.3581317],[-80.605854,28.272698],[-80.5920678,28.186635],[-80.447315,27.862457],[-80.612354,28.16858],[-80.639108,28.406591],[-80.592106,28.557361],[-80.684245,28.365694],[-80.62439,28.177584],[-80.837154,28.785177],[-80.744836,28.396215],[-80.374673,27.650251],[-80.314628,27.423926],[-80.121439,27.081484],[-80.095721,27.023499],[-80.067978,26.928097],[-80.047945,26.865919],[-80.032137,26.800916],[-80.031101,26.777522],[-80.037188,26.764482],[-80.033022,26.700759],[-80.036633,26.598689],[-80.080091,26.262555],[-80.0887441,26.2306016],[-80.1016493,26.1454052],[-80.1216372,25.9010639],[-80.17086,25.867665],[-80.188894,25.75836],[-80.238377,25.726971],[-80.249083,25.713427],[-80.309504,25.6035915],[-80.340776,25.498387],[-80.340168,25.470346],[-80.330233,25.44139],[-80.331483,25.346211],[-80.365475,25.326914],[-80.381184,25.312117],[-80.39391,25.288381],[-80.40481,25.286298],[-80.429987,25.257303],[-80.432109,25.230458],[-80.4126316,25.1956895],[-80.260221,25.324639],[-80.371119,25.137142],[-80.557261,24.97312],[-80.383906,25.167612],[-80.419065,25.198361],[-80.434085,25.225597],[-80.435462,25.240715],[-80.435406,25.134704],[-80.51916,25.222343],[-80.741481,25.142497],[-80.756266,25.160055],[-80.8252164,25.1607968],[-80.834701,25.173066],[-80.850177,25.177378],[-80.900627,25.160671],[-80.901389,25.139542],[-81.087776,25.116501],[-81.14169,25.157507],[-81.144049,25.326569],[-81.127329,25.331498],[-81.117859,25.320129],[-81.0938,25.305222],[-81.079096,25.278603],[-81.06507,25.285327],[-81.061468,25.262904],[-80.999933,25.250782],[-80.953161,25.211906],[-80.901756,25.245916],[-80.9735,25.33937],[-81.016962,25.329962],[-81.086749,25.353367],[-81.094695,25.370006],[-81.121942,25.379033],[-81.141585,25.381544],[-81.149767,25.388183],[-81.209681,25.50674],[-81.203892,25.533454],[-81.135201,25.578991],[-81.050056,25.550407],[-81.121647,25.61044],[-81.221949,25.554719],[-81.266144,25.800316],[-81.326577,25.784549],[-81.394831,25.854318],[-81.476748,25.892467],[-81.504674,25.88514],[-81.544322,25.918106],[-81.590865,25.896628],[-81.619036,25.946323],[-81.643279,25.939158],[-81.667263,25.951459],[-81.657683,25.969546],[-81.678268,25.968645],[-81.692574,25.973811],[-81.712918,25.971134],[-81.70976,25.98371],[-81.726311,25.984261],[-81.739954,26.015394],[-81.740836,26.033673],[-81.801869,26.095431],[-81.853779,26.44172],[-82.063683,26.566777],[-82.064262,26.883516],[-82.304734,26.858211],[-82.571391,27.402484],[-82.5808493,27.4148918],[-82.620685,27.427893],[-82.661183,27.457184],[-82.688691,27.467488],[-82.6888,27.478311],[-82.658216,27.466043],[-82.639773,27.473754],[-82.643486,27.502563],[-82.658533,27.501442],[-82.675144,27.510153],[-82.674948,27.519166],[-82.634017,27.538736],[-82.617269,27.535291],[-82.605038,27.525904],[-82.563556,27.570387],[-82.585559,27.56638],[-82.605832,27.577191],[-82.520423,27.690068],[-82.508383,27.700669],[-82.486118,27.711147],[-82.466792,27.715036],[-82.474617,27.726331],[-82.473749,27.741687],[-82.443032,27.755932],[-82.409888,27.811322],[-82.394001,27.814164],[-82.395249,27.842944],[-82.696557,28.035571],[-82.724352,27.949062],[-82.59719,27.864881],[-82.624876,27.852552],[-82.612282,27.831765],[-82.5968453,27.8231832],[-82.596804,27.814058],[-82.638184,27.704106],[-82.6906,27.710605],[-82.758541,27.816084],[-82.828906,27.822097],[-82.846461,27.852494],[-82.7824958,28.0556848],[-82.798035,28.187545],[-82.748399,28.245833],[-82.701456,28.40375],[-82.686762,28.409936],[-82.665308,28.455541],[-82.636636,28.698079],[-82.808261,29.159068],[-82.838286,29.159822],[-82.85466,29.168502],[-82.889586,29.163644],[-82.901516,29.171417],[-82.937444,29.167456],[-83.001481,29.177549],[-83.026594,29.167413],[-83.071147,29.20146],[-83.062608,29.215943],[-83.072119,29.22898],[-83.069534,29.240185],[-83.074914,29.2609],[-83.167084,29.301802],[-83.145251,29.334071],[-83.212809,29.424494],[-83.378084,29.504781],[-83.400076,29.658266],[-83.416296,29.672368],[-83.430356,29.676974],[-83.458505,29.678208],[-83.48191,29.689907],[-83.494622,29.713749],[-83.558275,29.744088],[-83.585227,29.817736],[-83.620476,29.851811],[-83.639294,29.887357],[-84.002549,30.100651],[-84.044512,30.103908],[-84.068047,30.100119],[-84.083822,30.092263],[-84.121139,30.093743],[-84.138276,30.088063],[-84.15985,30.072497],[-84.183231,30.078387],[-84.18689,30.094051],[-84.19919,30.106259],[-84.271776,30.104282],[-84.360765,30.0593],[-84.36004,30.044573],[-84.386732,30.025875],[-84.3486682,29.9690766],[-84.445238,29.9705],[-84.349067,29.896812],[-84.455624,29.928811],[-84.537247,29.909307],[-84.663675,29.835459],[-84.678811,29.836734],[-84.798315,29.768553],[-84.883484,29.731959],[-84.902822,29.73494],[-84.88637,29.765292],[-84.870583,29.781898],[-84.923017,29.782387],[-84.935284,29.758422],[-84.972573,29.760343],[-84.9805182,29.7249206],[-85.002375,29.713598],[-85.347506,29.6689625],[-85.4309192,29.9500295]]]},"properties":{"name":"FRCC","gridLoss":{"display":"4.49%","value":0.0449},"fuelMixCategories":{"renewable":2.6,"non-renewable":97.4,"non-renewable (excluding nuclear)":84.6,"renewable (excluding hydro)":2.6,"nuclear":12.8,"hydro":0.1},"fullName":"FRCC All","emissionFactor":{"co2EmissionRate":{"value":1011.7,"display":"1,011.7","units":"lb/MWh"},"noxEmissionRate":{"value":0.5,"display":"0.5","units":"lb/MWh"},"so2EmissionRate":{"value":0.4,"display":"0.4","units":"lb/MWh"}},"fuelMix":{"coal":16,"oil":1.2,"gas":66.6,"nuclear":12.8,"hydro":0.1,"biomass":2.4,"wind":0,"solar":0.1,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0.7}}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-155.668916,18.91684],[-155.68085,18.910787],[-155.687534,18.939076],[-155.798812,19.01077],[-155.860857,19.024736],[-155.880989,19.035963],[-155.883461,19.052682],[-155.905924,19.078263],[-155.918058,19.114635],[-155.906166,19.202974],[-155.898352,19.211668],[-155.899829,19.253727],[-155.888116,19.296241],[-155.889936,19.323976],[-155.885541,19.344217],[-156.061116,19.728358],[-155.831566,19.974103],[-155.8225953,20.0231088],[-155.829258,20.036924],[-155.864453,20.076378],[-155.891493,20.124027],[-155.904813,20.196039],[-155.865984,20.266365],[-155.835084,20.2675],[-155.778107,20.242393],[-155.753141,20.235897],[-155.737934,20.221606],[-155.729362,20.202119],[-155.598352,20.123075],[-155.556979,20.127947],[-155.514801,20.111857],[-155.496458,20.111935],[-155.469837,20.10039],[-155.437728,20.091762],[-155.386876,20.064252],[-155.322083,20.033163],[-155.279605,20.018609],[-155.251552,20.00057],[-155.23878,19.987592],[-155.21441,19.97594],[-155.081763,19.847354],[-155.093229,19.807188],[-155.090751,19.734591],[-155.07872,19.723114],[-155.03998,19.738946],[-155.021278,19.732038],[-155.003259,19.736122],[-154.978696,19.687213],[-154.983258,19.672368],[-154.981288,19.638972],[-154.904733,19.569677],[-154.823695,19.534474],[-154.806172,19.517573],[-154.976143,19.346778],[-155.505035,19.134384],[-155.668916,18.91684]]],[[[-156.371446,20.574969],[-156.441037,20.604742],[-156.4389939,20.6219569],[-156.452814,20.636529],[-156.440824,20.652538],[-156.446677,20.7164072],[-156.455655,20.73398],[-156.462419,20.780874],[-156.485535,20.795298],[-156.502891,20.796459],[-156.523385,20.777201],[-156.538505,20.775362],[-156.62691,20.812501],[-156.687561,20.882403],[-156.639322,21.024816],[-156.587435,21.030779],[-156.545953,21.00161],[-156.526759,20.96666],[-156.497333,20.932201],[-156.491029,20.914497],[-156.47805,20.895096],[-156.448376,20.897037],[-156.4220608,20.9101345],[-156.3840213,20.91594],[-156.320967,20.946182],[-156.306587,20.939377],[-156.28162,20.945285],[-156.228542,20.927728],[-156.227847,20.915596],[-156.194215,20.89309],[-156.168164,20.872123],[-156.156492,20.858777],[-156.129381,20.854931],[-156.112553,20.824458],[-156.084313,20.82771],[-156.056989,20.80737],[-156.030458,20.805036],[-156.001143,20.791627],[-155.985183,20.773296],[-156.045628,20.65294],[-156.371446,20.574969]]],[[[-156.963706,20.732205],[-157.02326,20.926016],[-156.806601,20.822407],[-156.963706,20.732205]]],[[[-159.526604,21.882893],[-159.7606686,21.9806197],[-159.783241,22.06112],[-159.7444574,22.0989105],[-159.722771,22.150057],[-159.58058,22.223541],[-159.5118618,22.2034163],[-159.476963,22.230081],[-159.399469,22.23012],[-159.343755,22.20998],[-159.292925,22.141332],[-159.2974,22.103787],[-159.333923,22.04953],[-159.330774,21.95961],[-159.444402,21.868318],[-159.526604,21.882893]]],[[[-156.882004,21.046513],[-157.31016,21.101566],[-156.711106,21.15938],[-156.882004,21.046513]]]]},"properties":{"name":"HIMS","gridLoss":{"display":"5.35%","value":0.0535},"fuelMixCategories":{"renewable":34,"non-renewable":66,"non-renewable (excluding nuclear)":66,"renewable (excluding hydro)":30.7,"nuclear":0,"hydro":3.3},"fullName":"HICC Miscellaneous","emissionFactor":{"co2EmissionRate":{"value":1152,"display":"1,152.0","units":"lb/MWh"},"noxEmissionRate":{"value":7.4,"display":"7.4","units":"lb/MWh"},"so2EmissionRate":{"value":4.5,"display":"4.5","units":"lb/MWh"}},"fuelMix":{"coal":0.2,"oil":61.7,"gas":0,"nuclear":0,"hydro":3.3,"biomass":4.3,"wind":14.8,"solar":2.1,"geothermal":9.5,"otherFossilFuel":0,"otherUnknownFuel":4.1}}}, -{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-158.032971,21.304206],[-158.1015111,21.2951934],[-158.110873,21.299518],[-158.119674,21.317957],[-158.13629,21.369289],[-158.1589125,21.3930142],[-158.176204,21.400424],[-158.190348,21.446189],[-158.23141,21.482898],[-158.231564,21.537202],[-158.270071,21.575831],[-157.967256,21.709308],[-157.651041,21.298782],[-157.8185875,21.2576418],[-157.823301,21.271933],[-157.861105,21.290405],[-157.86419,21.303117],[-157.894884,21.325026],[-157.947672,21.303669],[-157.962903,21.387759],[-158.032971,21.304206]]]},"properties":{"name":"HIOA","gridLoss":{"display":"5.35%","value":0.0535},"fuelMixCategories":{"renewable":9.7,"non-renewable":90.3,"non-renewable (excluding nuclear)":90.3,"renewable (excluding hydro)":9.7,"nuclear":0,"hydro":0},"fullName":"HICC Oahu","emissionFactor":{"co2EmissionRate":{"value":1662.9,"display":"1,662.9","units":"lb/MWh"},"noxEmissionRate":{"value":3.4,"display":"3.4","units":"lb/MWh"},"so2EmissionRate":{"value":8.6,"display":"8.6","units":"lb/MWh"}},"fuelMix":{"coal":20.7,"oil":68.7,"gas":0,"nuclear":0,"hydro":0,"biomass":6.1,"wind":3.2,"solar":0.4,"geothermal":0,"otherFossilFuel":0.9,"otherUnknownFuel":0}}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.700377,43.767401],[-87.7092059,43.7373471],[-87.703012,43.708676],[-87.706403,43.67925],[-87.726667,43.649964],[-87.800123,43.761226],[-87.7649803,43.7610142],[-87.757047,43.768179],[-87.700377,43.767401]]],[[[-87.140645,45.676031],[-87.367734,45.985269],[-87.617009,45.985906],[-87.615914,46.246794],[-87.992021,46.246996],[-87.991505,46.506553],[-88.365907,46.42015],[-88.240845,46.592163],[-88.678849,46.592578],[-89.124731,46.601017],[-88.933258,47.031613],[-88.911823,47.073643],[-88.889141,47.100575],[-88.371601,47.392393],[-88.18186,47.457844],[-87.79517,47.471275],[-87.718227,47.40088],[-87.813207,47.385092],[-87.847854,47.394753],[-87.880224,47.395715],[-87.956995,47.387473],[-88.230404,47.198178],[-88.242631,47.174288],[-88.231708,47.146778],[-88.28171,47.138247],[-88.367628,47.019226],[-88.405439,46.981595],[-88.445037,46.970059],[-88.4995845,46.7612339],[-88.390761,46.866705],[-88.362658,46.856584],[-88.241304,46.931194],[-88.198406,46.944217],[-88.155741,46.964956],[-88.136915,46.962914],[-88.146975,46.9466],[-88.183421,46.9211],[-88.211533,46.908891],[-88.241197,46.886737],[-88.242403,46.860786],[-88.08187,46.920465],[-87.99368,46.90469],[-87.955739,46.909103],[-87.902238,46.909957],[-87.86892,46.889905],[-87.844716,46.883743],[-87.817485,46.891017],[-87.784504,46.880274],[-87.77215,46.862706],[-87.740983,46.865024],[-87.73297,46.832461],[-87.725639,46.825502],[-87.690602,46.828052],[-87.675238,46.838023],[-87.669079,46.81754],[-87.633627,46.812081],[-87.608295,46.78801],[-87.594079,46.782306],[-87.590548,46.75068],[-87.577105,46.723051],[-87.503292,46.647497],[-87.470413,46.635641],[-87.434074,46.590833],[-87.394467,46.584143],[-87.393795,46.532105],[-87.380606,46.516066],[-87.360733,46.50385],[-87.107221,46.495741],[-87.084728,46.510836],[-87.001775,46.533057],[-86.965086,46.516294],[-86.947964,46.484939],[-86.946718,46.471602],[-86.876292,46.437352],[-86.83388,46.434142],[-86.815363,46.437927],[-86.808253,46.460601],[-86.789237,46.477628],[-86.754313,46.479691],[-86.731525,46.472149],[-86.729517,46.4621],[-86.703594,46.439394],[-86.654961,46.441683],[-86.638463,46.411313],[-85.864414,46.689704],[-85.864866,46.120259],[-86.114419,46.331372],[-86.1166179,45.9650046],[-86.150832,45.953576],[-86.196786,45.963113],[-86.27604,45.943154],[-86.324035,45.906673],[-86.346145,45.82086],[-86.369528,45.789621],[-86.53763,45.745615],[-86.616973,45.621817],[-86.716114,45.683299],[-86.58054,45.777358],[-86.576814,45.801477],[-86.557279,45.808075],[-86.554172,45.832701],[-86.530453,45.849774],[-86.553308,45.896307],[-86.585039,45.897069],[-86.598736,45.877275],[-86.632747,45.860758],[-86.632637,45.844694],[-86.649395,45.835454],[-86.782068,45.860187],[-86.773222,45.811393],[-86.809272,45.792532],[-86.806873,45.77668],[-86.818957,45.772261],[-86.822318,45.756342],[-86.845018,45.737648],[-86.839092,45.722036],[-86.96677,45.670801],[-86.969714,45.691904],[-86.984542,45.705819],[-86.981976,45.79312],[-87.005034,45.831728],[-86.968055,45.910824],[-87.140645,45.676031]]],[[[-90.4371468,42.507235],[-91.051275,42.737001],[-91.05791,43.253968],[-90.666316,43.271838],[-90.9577409,43.4133305],[-90.683673,43.422455],[-90.741785,43.552644],[-90.531669,43.552821],[-90.6476871,43.3931316],[-90.4125507,43.247731],[-90.2141169,43.3311534],[-90.36716,43.47826],[-90.09505,43.695787],[-90.59561,43.793814],[-90.672675,44.15932],[-90.315785,44.467837],[-90.4346945,44.8427548],[-89.940234,44.778108],[-89.865085,45.105134],[-89.426109,45.119196],[-89.790797,45.301442],[-89.4874341,45.5462083],[-89.912053,45.696499],[-89.673488,45.81803],[-89.8394332,46.0696647],[-89.670291,45.938062],[-89.554937,46.113637],[-88.978711,45.982217],[-88.9461549,45.571817],[-88.592544,45.63666],[-88.6652389,45.8092302],[-88.059246,45.713063],[-88.0888123,45.54205],[-87.823804,45.538307],[-88.1174851,45.4630228],[-87.939989,45.265193],[-87.860365,45.264275],[-87.860181,45.278433],[-87.7836088,45.2775964],[-87.7771522,45.2807098],[-87.7006286,45.2795927],[-87.647768,45.340563],[-87.693956,45.389894],[-87.754104,45.349443],[-87.790325,45.353444],[-87.832613,45.35225],[-87.850418,45.347493],[-87.884855,45.362793],[-87.861698,45.434473],[-87.831218,45.457186],[-87.812884,45.464329],[-87.792769,45.499968],[-87.808367,45.544663],[-87.832968,45.559462],[-87.831689,45.568035],[-87.797536,45.562125],[-87.777494,45.593835],[-87.264469,45.550392],[-87.600279,45.14993],[-87.610295,45.114554],[-87.587022,45.087267],[-87.630067,44.983611],[-87.780529,44.962584],[-87.81315,44.953968],[-87.838127,44.932679],[-87.844169,44.916879],[-87.82804,44.889057],[-87.866238,44.840481],[-87.901138,44.827365],[-87.938181,44.756447],[-87.951561,44.753108],[-87.983494,44.720197],[-88.047538,44.564615],[-87.928388,44.536311],[-87.855255,44.620257],[-87.840154,44.619314],[-87.809348,44.636084],[-87.775727,44.639042],[-87.754473,44.650612],[-87.610047,44.838374],[-87.398384,44.844116],[-87.382661,44.855301],[-87.383876,44.886544],[-87.406205,44.90428],[-87.39339,44.934424],[-87.229796,45.173455],[-86.98272,45.294805],[-87.057489,45.087036],[-87.1224495,45.0671921],[-87.204564,44.875634],[-87.261162,44.850711],[-87.282648,44.814573],[-87.306085,44.803494],[-87.468093,44.551925],[-87.483942,44.51023],[-87.490153,44.476789],[-87.4989809,44.4608041],[-87.501881,44.435486],[-87.517828,44.394325],[-87.516956,44.378036],[-87.542863,44.32909],[-87.541153,44.293145],[-87.508643,44.230425],[-87.5084125,44.2037432],[-87.518792,44.1802246],[-87.5306879,44.1663245],[-87.646624,44.104667],[-87.699249,43.965307],[-88.599957,43.850457],[-88.60696,43.30556],[-88.882562,43.371917],[-89.166536,43.188549],[-89.1503176,43.0030354],[-88.94358,43.042169],[-88.987684,42.846946],[-88.663459,42.581855],[-88.511329,42.575324],[-88.525696,42.494917],[-90.4371468,42.507235]],[[-88.498253,44.855456],[-89.005153,44.400131],[-89.026819,44.068985],[-88.046361,44.080884],[-87.847157,44.247659],[-88.210587,44.593205],[-88.2547569,44.9754839],[-88.498253,44.855456]]]]},"properties":{"name":"MROE","gridLoss":{"display":"4.49%","value":0.0449},"fuelMixCategories":{"renewable":14.1,"non-renewable":85.9,"non-renewable (excluding nuclear)":85.9,"renewable (excluding hydro)":7.3,"nuclear":0,"hydro":6.8},"fullName":"MRO East","emissionFactor":{"co2EmissionRate":{"value":1668.2,"display":"1,668.2","units":"lb/MWh"},"noxEmissionRate":{"value":1,"display":"1.0","units":"lb/MWh"},"so2EmissionRate":{"value":1.3,"display":"1.3","units":"lb/MWh"}},"fuelMix":{"coal":64.5,"oil":0.6,"gas":20.5,"nuclear":0,"hydro":6.8,"biomass":5.3,"wind":2,"solar":0,"geothermal":0,"otherFossilFuel":0.1,"otherUnknownFuel":0.1}}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-107.14314,44.558341],[-107.24854,44.661059],[-106.894846,44.621005],[-107.14314,44.558341]]],[[[-94.708021,40.572242],[-95.049388,40.55455],[-94.933981,40.230331],[-95.16174,40.261402],[-95.255407,39.998679],[-95.3589364,39.9998927],[-95.592039,40.000218],[-95.97707,40.000582],[-96.889293,40.0014785],[-98.530258,40.002391],[-98.972379,40.002228],[-99.290687,40.001994],[-100.23181,40.001614],[-100.509528,40.001793],[-100.927279,40.002163],[-101.178884,40.002459],[-101.455314,40.002551],[-101.812807,40.002851],[-101.815789,40.149878],[-101.814853,40.175533],[-101.891917,40.20889],[-101.892394,40.349373],[-101.684635,40.523171],[-101.911987,40.56703],[-101.476703,40.698175],[-101.500449,41.395354],[-101.984631,41.394713],[-102.038169,42.443307],[-102.302292,42.529363],[-102.2772213,42.3644347],[-102.49162,42.36863],[-102.538368,42.785336],[-102.6178,42.792145],[-102.615994,42.871145],[-102.694594,42.914159],[-102.694193,42.999982],[-103.000897,43.000743],[-103.001051,43.603702],[-102.138938,43.820692],[-102.6085,43.99504],[-102.656953,44.473977],[-102.9644298,44.5028963],[-102.957726,45.212641],[-104.039958,45.212926],[-104.040284,45.336959],[-104.101866,45.35991],[-104.121878,45.341672],[-104.223981,45.35983],[-104.339271,45.482404],[-104.298601,45.595859],[-104.252176,45.566962],[-104.173415,45.567729],[-104.123069,45.53896],[-104.041504,45.539236],[-104.04403,45.881976],[-104.134663,45.882037],[-104.134716,45.968946],[-104.390877,45.970307],[-104.573029,46.194117],[-104.745054,46.187973],[-104.732854,46.612672],[-105.491935,46.624433],[-105.008511,46.861439],[-104.603767,46.86088],[-104.607017,46.684927],[-104.417784,46.684893],[-104.353874,46.641447],[-104.111733,46.641614],[-104.101677,46.656107],[-104.045338,46.657194],[-104.045496,46.745515],[-103.986739,46.738357],[-103.986501,46.803437],[-103.902639,46.803415],[-103.899328,47.00596],[-103.667006,47.095677],[-103.666723,47.329355],[-104.0443158,47.3301078],[-104.041461,47.862563],[-104.04412,47.996107],[-104.021983,47.988899],[-104.01157,47.971413],[-103.967638,47.985616],[-103.91979,47.955951],[-103.821324,47.979853],[-103.600934,48.133466],[-103.346168,48.031924],[-103.407041,48.459587],[-103.863427,48.459941],[-103.906941,48.402035],[-104.045444,48.402224],[-104.046767,48.389402],[-104.118949,48.389429],[-104.282218,48.230071],[-104.659663,48.230062],[-104.632151,48.110743],[-105.452845,47.998677],[-105.785505,47.708172],[-106.082464,47.775139],[-105.820529,47.954489],[-105.833932,48.493225],[-106.476067,48.440231],[-106.480121,48.871033],[-106.783768,48.912113],[-106.783752,48.966709],[-106.824003,48.978956],[-106.831879,48.999921],[-105.777996,48.999672],[-105.772642,48.983242],[-105.826607,48.975964],[-105.826489,48.925313],[-105.535659,48.809619],[-105.650065,48.708079],[-105.492733,48.563105],[-105.099283,48.563014],[-104.275105,48.606559],[-104.048043,48.707971],[-104.048885,48.877324],[-104.048737,48.999878],[-101.988772,48.998977],[-101.0171808,48.99922],[-100.526931,48.999218],[-100.182707,48.999205],[-99.940059,48.999051],[-99.701008,48.999101],[-97.461799,49.000481],[-97.2291475,49.0006824],[-96.93096,48.999984],[-96.659919,48.999982],[-96.358753,48.999982],[-95.153711,48.998903],[-95.153509,49.124994],[-95.153313,49.384359],[-94.952112,49.36868],[-94.816221,49.320986],[-94.82516,49.294284],[-94.797245,49.214284],[-94.797527,49.197791],[-94.751255,49.100238],[-94.750219,48.999992],[-94.68307,48.884592],[-94.690889,48.778067],[-94.587192,48.717618],[-94.555836,48.716208],[-94.538372,48.702841],[-94.437564,48.695394],[-94.415508,48.710799],[-94.308498,48.710225],[-94.262023,48.697414],[-94.250623,48.678236],[-94.254507,48.6608],[-94.224276,48.649527],[-93.850257,48.630007],[-93.834324,48.624954],[-93.821153,48.606302],[-93.80527,48.5703],[-93.818252,48.530048],[-93.794454,48.516022],[-92.95012,48.63042],[-92.63494,48.542864],[-92.636685,48.499433],[-92.698825,48.494892],[-92.712562,48.463013],[-92.6561979,48.4365633],[-92.575636,48.440827],[-92.537203,48.447703],[-92.5074497,48.4480736],[-92.456326,48.414205],[-92.45639,48.401134],[-92.476751,48.371761],[-92.469949,48.351836],[-92.369813,48.220336],[-92.000133,48.321355],[-91.958288,48.233023],[-91.893052,48.237311],[-91.864308,48.206947],[-91.816216,48.211748],[-91.710552,48.192666],[-91.724584,48.170658],[-91.705095,48.170659],[-91.698431,48.143783],[-91.71186,48.114603],[-91.566948,48.043696],[-91.542512,48.053268],[-91.488067,48.068112],[-91.450331,48.068807],[-91.431639,48.04867],[-91.392386,48.05643],[-91.370872,48.069411],[-91.34016,48.073237],[-91.289877,48.074054],[-91.250111,48.084088],[-91.214428,48.102941],[-91.156106,48.140476],[-91.0843,48.179902],[-90.885476,48.245773],[-90.875108,48.237785],[-90.847352,48.244444],[-90.839165,48.239477],[-90.832585,48.173747],[-90.804221,48.177842],[-90.76132,48.098409],[-90.13574,48.112114],[-90.11621,48.104242],[-90.073873,48.101138],[-90.022599,48.083436],[-89.993969,48.049338],[-89.995061,48.029154],[-89.896077,47.987301],[-89.871416,47.985684],[-89.819725,48.0154],[-89.76735,48.022632],[-89.622667,48.011589],[-89.573864,47.984865],[-89.61701,47.996567],[-89.737743,47.916788],[-89.930501,47.858705],[-89.928322,47.85163],[-89.974704,47.830629],[-90.4375,47.731669],[-90.526654,47.706424],[-90.551441,47.68998],[-90.62893,47.664215],[-90.662314,47.648859],[-90.729839,47.627465],[-90.777226,47.605926],[-91.128603,47.399236],[-91.481102,47.124426],[-92.0940007,46.788326],[-92.157321,46.705089],[-92.099408,46.748019],[-92.048283,46.709504],[-92.029234,46.702762],[-92.0148338,46.6839892],[-91.942583,46.679784],[-91.886963,46.690209],[-91.835142,46.689539],[-91.790133,46.694676],[-91.36157,46.797564],[-91.33825,46.817705],[-91.257771,46.836432],[-91.232324,46.860409],[-91.20311,46.869968],[-91.200108,46.854017],[-91.183295,46.84567],[-91.111419,46.856544],[-91.09135,46.882351],[-91.063022,46.878493],[-91.034152,46.903305],[-90.996883,46.916663],[-90.968419,46.94391],[-90.855875,46.962232],[-90.834479,46.95632],[-90.830435,46.936213],[-90.793741,46.935048],[-90.752034,46.886364],[-90.815081,46.807287],[-90.86268,46.782257],[-90.866586,46.764409],[-90.884557,46.749502],[-90.852704,46.699583],[-90.9471222,46.5904317],[-90.434368,46.562166],[-90.414633,46.566978],[-90.384129,46.584137],[-90.330683,46.608747],[-90.028393,46.674391],[-89.983395,46.704976],[-89.924515,46.736441],[-89.869727,46.780717],[-89.831957,46.804053],[-89.787335,46.819405],[-89.660626,46.831056],[-89.6287229,46.818562],[-89.55058,46.836759],[-89.513466,46.841787],[-89.471504,46.837168],[-89.431166,46.840189],[-88.933258,47.031613],[-89.124731,46.601017],[-88.678849,46.592578],[-88.8665774,46.3333088],[-89.49028,46.333247],[-89.490586,46.215356],[-89.616871,46.160423],[-89.554937,46.113637],[-89.670291,45.938062],[-89.8394332,46.0696647],[-89.673488,45.81803],[-89.912053,45.696499],[-89.4874341,45.5462083],[-89.790797,45.301442],[-89.426109,45.119196],[-89.865085,45.105134],[-89.940234,44.778108],[-90.4346945,44.8427548],[-90.315785,44.467837],[-90.672675,44.15932],[-90.59561,43.793814],[-90.09505,43.695787],[-90.36716,43.47826],[-90.2141169,43.3311534],[-90.4125507,43.247731],[-90.6476871,43.3931316],[-90.531669,43.552821],[-90.741785,43.552644],[-90.683673,43.422455],[-90.9577409,43.4133305],[-90.666316,43.271838],[-91.05791,43.253968],[-91.051275,42.737001],[-90.4371468,42.507235],[-90.4428163,42.4967374],[-90.486854,42.484706],[-90.49518,42.45724],[-90.515833,42.462079],[-90.516199,42.429814],[-90.552633,42.430021],[-90.555018,42.416138],[-90.403349,42.309936],[-90.258762,42.339969],[-90.024853,42.012575],[-90.254106,41.522531],[-90.34111,41.221413],[-90.494115,41.355118],[-90.821338,41.301409],[-90.849682,41.362591],[-90.791427,41.39856],[-90.810514,41.435991],[-90.781729,41.439766],[-90.781608,41.451995],[-91.045063,41.414873],[-91.051934,41.384483],[-91.065058,41.369102],[-91.071553,41.339651],[-91.073553,41.310481],[-91.08688,41.294372],[-91.114186,41.25003],[-91.112334,41.239003],[-91.041856,41.166461],[-91.009594,41.166239],[-90.989663,41.155716],[-90.946627,41.096633],[-90.942254,41.034703],[-90.945949,41.006495],[-90.958142,40.979768],[-90.951967,40.958238],[-90.962916,40.924958],[-91.090073,40.824639],[-91.111941,40.697019],[-91.295474,40.775014],[-91.331746,41.175969],[-91.582269,41.163291],[-91.715021,41.438603],[-92.042749,41.163436],[-92.410678,41.267266],[-92.5107515,41.1367921],[-93.189269,41.452544],[-93.556325,40.754179],[-93.556496,40.673538],[-93.4421522,40.6813899],[-93.39854,40.580235],[-93.552385,40.580335],[-93.720185,40.577542],[-93.816118,40.577128],[-94.03422,40.573587],[-94.213248,40.572005],[-94.537063,40.570795],[-94.708021,40.572242]]]]},"properties":{"name":"MROW","gridLoss":{"display":"4.49%","value":0.0449},"fuelMixCategories":{"renewable":27.4,"non-renewable":72.6,"non-renewable (excluding nuclear)":59.8,"renewable (excluding hydro)":22.4,"nuclear":12.8,"hydro":5},"fullName":"MRO West","emissionFactor":{"co2EmissionRate":{"value":1238.8,"display":"1,238.8","units":"lb/MWh"},"noxEmissionRate":{"value":1,"display":"1.0","units":"lb/MWh"},"so2EmissionRate":{"value":1.4,"display":"1.4","units":"lb/MWh"}},"fuelMix":{"coal":52.7,"oil":0.2,"gas":6.7,"nuclear":12.8,"hydro":5,"biomass":1.3,"wind":21.1,"solar":0,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0.2}}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-70.007755,41.239202],[-70.200631,41.268421],[-70.017279,41.363706],[-70.007755,41.239202]]],[[[-70.6474052,41.3472332],[-70.835898,41.344286],[-70.449214,41.383513],[-70.6474052,41.3472332]]],[[[-73.660895,40.987391],[-73.727776,41.100696],[-73.514249,41.198651],[-73.487314,42.049638],[-73.264957,42.74594],[-73.311025,44.27424],[-73.343124,45.01084],[-72.274571,45.004233],[-71.914554,45.007927],[-71.801157,45.010758],[-71.5024695,45.0133734],[-71.492208,45.035397],[-71.501002,45.045194],[-71.486119,45.078663],[-71.428828,45.123881],[-71.39781,45.203553],[-71.420335,45.23272],[-71.297092,45.298985],[-71.264938,45.293447],[-71.231114,45.249686],[-71.1448,45.242252],[-71.097124,45.302227],[-71.06268,45.31309],[-71.032674,45.310173],[-70.952375,45.339099],[-70.917866,45.311725],[-70.920434,45.278566],[-70.895138,45.252247],[-70.884656,45.234861],[-70.857593,45.229148],[-70.848926,45.263053],[-70.831864,45.278931],[-70.833211,45.294995],[-70.815921,45.299358],[-70.808588,45.328361],[-70.825652,45.400287],[-70.794185,45.428339],[-70.743994,45.421125],[-70.74354,45.411826],[-70.711949,45.390453],[-70.636798,45.382337],[-70.627743,45.420728],[-70.681015,45.452149],[-70.691712,45.474227],[-70.717802,45.490191],[-70.722629,45.506533],[-70.689167,45.562194],[-70.644878,45.606766],[-70.619465,45.611905],[-70.592303,45.62954],[-70.552886,45.667859],[-70.400308,45.719702],[-70.388405,45.750146],[-70.40704,45.762691],[-70.405607,45.776463],[-70.41693,45.795508],[-70.396127,45.798601],[-70.341905,45.852311],[-70.306305,45.859703],[-70.284411,45.871759],[-70.25382,45.902551],[-70.240465,45.943848],[-70.27736,45.96651],[-70.312544,45.962149],[-70.316038,46.019965],[-70.281289,46.050481],[-70.278856,46.060578],[-70.307564,46.061522],[-70.236872,46.14585],[-70.278043,46.174996],[-70.292747,46.191595],[-70.231531,46.29071],[-70.206514,46.29912],[-70.208514,46.329858],[-70.191657,46.348952],[-70.170803,46.359158],[-70.149159,46.35863],[-70.129065,46.369516],[-70.126327,46.380828],[-70.110715,46.386206],[-70.096285,46.409431],[-70.0572153,46.4150139],[-70.02613,46.558969],[-69.99952,46.685438],[-69.994249,46.698564],[-69.22442,47.459687],[-68.895659,47.18291],[-68.234604,47.355035],[-67.790515,47.067922],[-67.752076,45.914732],[-67.768747,45.89795],[-67.789862,45.8935],[-67.803921,45.8829],[-67.803314,45.677887],[-67.768649,45.677582],[-67.733313,45.664141],[-67.713041,45.681497],[-67.692623,45.650366],[-67.675417,45.630959],[-67.645839,45.613566],[-67.51858,45.587925],[-67.489665,45.592255],[-67.488551,45.601497],[-67.455407,45.604665],[-67.429715,45.583774],[-67.420976,45.550029],[-67.432212,45.541037],[-67.43127,45.503882],[-67.501264,45.479999],[-67.422236,45.378933],[-67.472134,45.256534],[-67.404738,45.160103],[-67.379718,45.151184],[-67.352238,45.129133],[-67.321012,45.131815],[-67.319788,45.142479],[-67.296583,45.14757],[-67.290467,45.187723],[-67.157796,45.160776],[-67.114159,45.114517],[-67.082729,45.055468],[-67.101967,45.04705],[-67.082185,45.029556],[-67.072883,45.008364],[-67.05532,44.987861],[-67.033362,44.939754],[-67.013144,44.937016],[-67.014416,44.917167],[-67.040439,44.942795],[-67.111419,44.931368],[-67.133337,44.881668],[-67.196138,44.907344],[-66.983151,44.811491],[-68.044283,44.340413],[-68.267339,44.576376],[-68.564638,44.409212],[-68.56426,44.308025],[-68.535326,44.29163],[-68.519769,44.264829],[-68.523642,44.228646],[-68.578,44.262937],[-68.629965,44.286972],[-68.665243,44.293246],[-68.733723,44.331823],[-68.826359,44.311425],[-68.862019,44.480208],[-68.99524,44.42185],[-68.954788,44.323544],[-69.106193,44.111394],[-69.098995,44.081519],[-69.052982,44.077275],[-69.212389,43.932035],[-69.255917,43.922947],[-69.285205,43.960017],[-69.300699,43.956824],[-69.330307,43.978317],[-69.366312,43.988137],[-69.352193,44.015762],[-69.383981,44.017257],[-69.438328,43.976969],[-69.453845,43.941588],[-69.459972,43.90291],[-69.49974,43.848916],[-69.512972,43.844675],[-69.526267,43.878475],[-69.538811,43.879411],[-69.53866,43.896645],[-69.558732,43.897245],[-69.554146,43.864455],[-69.590908,43.814533],[-69.589548,43.859961],[-69.696572,43.887331],[-69.716893,43.849341],[-69.707272,43.828341],[-69.721456,43.806959],[-69.717827,43.789357],[-69.850689,43.704125],[-69.877994,43.797781],[-69.91745,43.80087],[-69.901767,43.810559],[-69.899315,43.823907],[-69.9172,43.825541],[-69.93759,43.773794],[-69.958017,43.810851],[-70.0263,43.762366],[-70.008007,43.783261],[-69.976711,43.827068],[-69.952328,43.85041],[-70.020369,43.860405],[-70.186336,43.774308],[-70.195902,43.739949],[-70.222674,43.71628],[-70.223696,43.70266],[-70.243051,43.694133],[-70.252484,43.678028],[-70.239407,43.664725],[-70.221495,43.633178],[-70.207077,43.62319],[-70.198101,43.569123],[-70.21647,43.556187],[-70.231041,43.562663],[-70.244216,43.552084],[-70.28074,43.559402],[-70.312501,43.5366],[-70.360349,43.53008],[-70.384277,43.496652],[-70.382734,43.468723],[-70.36854,43.447783],[-70.368614,43.435738],[-70.388655,43.407409],[-70.439531,43.355458],[-70.518012,43.34415],[-70.539796,43.335786],[-70.55996,43.31492],[-70.5958,43.248171],[-70.57632,43.221047],[-70.623415,43.134423],[-70.672386,43.070644],[-70.692848,43.06623],[-70.695275,43.082518],[-70.725711,43.088282],[-70.7530989,43.0784664],[-70.714048,43.046202],[-70.718507,43.03262],[-70.759723,42.988995],[-70.7759,42.957105],[-70.794486,42.939773],[-70.810982,42.898271],[-70.834577,42.896614],[-70.815847,42.875101],[-70.816486,42.849161],[-70.805541,42.787351],[-70.772726,42.711158],[-70.815264,42.757241],[-70.818952,42.720765],[-70.754313,42.649337],[-70.71816,42.663507],[-70.692576,42.655378],[-70.630127,42.692809],[-70.595741,42.634626],[-70.653692,42.58243],[-70.649739,42.612157],[-70.677245,42.607668],[-70.698971,42.576897],[-70.867756,42.548694],[-70.887765,42.520168],[-70.875197,42.502767],[-70.862239,42.521254],[-70.841232,42.509556],[-70.854009,42.491679],[-70.894951,42.460588],[-70.921306,42.467319],[-70.94529,42.456889],[-70.979491,42.427608],[-71.007671,42.346667],[-71.0450273,42.3710657],[-71.0472395,42.3236209],[-70.996495,42.26584],[-70.9730901,42.2631719],[-70.949379,42.273427],[-70.950409,42.248544],[-70.878053,42.248248],[-70.882036,42.273622],[-70.869536,42.283943],[-70.79163,42.25433],[-70.788456,42.23916],[-70.7655674,42.244265],[-70.721056,42.20812],[-70.329128,41.710061],[-70.004183,41.806384],[-70.240922,42.065999],[-70.056481,42.038586],[-69.962605,41.653502],[-70.653415,41.520291],[-70.674999,41.527245],[-70.642802,41.572073],[-70.651042,41.64541],[-70.627155,41.651676],[-70.628431,41.664049],[-70.6148794,41.7159788],[-70.715347,41.732786],[-70.720267,41.680234],[-70.8247,41.650571],[-70.800115,41.630732],[-70.838317,41.625202],[-70.849508,41.610254],[-70.857245,41.58368],[-70.869793,41.62504],[-70.889113,41.632352],[-70.931606,41.607835],[-70.946519,41.572267],[-70.936694,41.550923],[-70.982706,41.508885],[-71.194677,41.457952],[-71.21313,41.627371],[-71.208271,41.652925],[-71.194455,41.681006],[-71.15758,41.710443],[-71.226026,41.726348],[-71.225214,41.709644],[-71.24603,41.696849],[-71.235517,41.678623],[-71.253496,41.660839],[-71.304518,41.655518],[-71.306715,41.672683],[-71.293031,41.688241],[-71.290462,41.712902],[-71.348106,41.741036],[-71.440907,41.686798],[-71.408068,41.663092],[-71.4032823,41.6257836],[-71.418142,41.472529],[-71.488622,41.361754],[-71.855221,41.307289],[-71.863077,41.334825],[-71.967368,41.349974],[-72.008815,41.307811],[-72.085072,41.356979],[-72.111794,41.299092],[-72.177387,41.3226],[-72.261013,41.283528],[-72.34215,41.298286],[-72.358498,41.291512],[-72.377422,41.265008],[-72.387758,41.260922],[-72.399244,41.278243],[-72.447383,41.279167],[-72.534696,41.268152],[-72.546423,41.249154],[-72.894477,41.242232],[-72.893616,41.26011],[-72.905728,41.270264],[-72.907774,41.29012],[-73.130232,41.147132],[-73.220087,41.153434],[-73.262672,41.117803],[-73.345112,41.113632],[-73.436878,41.057187],[-73.502844,41.049513],[-73.516951,41.030006],[-73.599939,41.018276],[-73.626669,41.001787],[-73.645882,41.000534],[-73.660895,40.987391]]]]},"properties":{"name":"NEWE","gridLoss":{"display":"4.49%","value":0.0449},"fuelMixCategories":{"renewable":16.6,"non-renewable":83.4,"non-renewable (excluding nuclear)":53,"renewable (excluding hydro)":11.3,"nuclear":30.4,"hydro":5.3},"fullName":"NPCC New England","emissionFactor":{"co2EmissionRate":{"value":558.2,"display":"558.2","units":"lb/MWh"},"noxEmissionRate":{"value":0.4,"display":"0.4","units":"lb/MWh"},"so2EmissionRate":{"value":0.1,"display":"0.1","units":"lb/MWh"}},"fuelMix":{"coal":2.4,"oil":0.6,"gas":49.8,"nuclear":30.4,"hydro":5.3,"biomass":8.2,"wind":2.5,"solar":0.7,"geothermal":0,"otherFossilFuel":0.1,"otherUnknownFuel":0.1}}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-120.751239,40.838636],[-120.774473,40.970517],[-120.342515,40.98693],[-120.437628,40.775139],[-120.751239,40.838636]]],[[[-106.277989,43.282492],[-106.404184,43.49277],[-106.078069,43.494471],[-106.277989,43.282492]]],[[[-105.144867,41.656058],[-105.378625,41.701771],[-105.28391,42.431403],[-105.59942,42.297536],[-105.797526,42.557908],[-105.687922,43.255097],[-105.924895,43.525932],[-104.899941,43.499641],[-104.9769206,42.8895453],[-104.64127,43.025643],[-104.654956,42.412656],[-104.931667,42.4018],[-104.891316,42.12587],[-104.654497,42.189088],[-104.654107,41.813124],[-105.144867,41.656058]]],[[[-122.376369,47.906939],[-122.7702068,48.2245422],[-122.664666,48.401499],[-122.509255,48.294153],[-122.73403,48.228417],[-122.376369,47.906939]]],[[[-105.777996,48.999672],[-104.048737,48.999878],[-104.048885,48.877324],[-104.048043,48.707971],[-104.275105,48.606559],[-105.099283,48.563014],[-105.492733,48.563105],[-105.650065,48.708079],[-105.535659,48.809619],[-105.826489,48.925313],[-105.826607,48.975964],[-105.772642,48.983242],[-105.777996,48.999672]]],[[[-124.140134,41.685371],[-124.558015,42.833509],[-124.385879,43.329807],[-124.342215,43.351109],[-124.316311,43.347956],[-124.240212,43.424014],[-124.179986,43.370439],[-123.874294,45.488855],[-123.956642,45.571262],[-123.938947,45.7035694],[-123.944427,45.730873],[-123.964536,45.744063],[-123.967001,45.758104],[-123.980033,45.764832],[-123.993637,45.946179],[-123.932088,46.063967],[-124.080146,46.281775],[-124.072823,46.639661],[-124.024693,46.585074],[-124.031751,46.495874],[-124.025897,46.450146],[-124.020149,46.437039],[-124.014328,46.378585],[-124.005847,46.370541],[-123.9064878,46.4355675],[-123.915909,46.458388],[-123.943463,46.474413],[-123.942569,46.487832],[-123.919172,46.510931],[-123.893244,46.513965],[-123.90433,46.551488],[-123.921938,46.566932],[-123.928861,46.588875],[-123.955487,46.603635],[-123.960629,46.636365],[-123.92125,46.650787],[-123.920178,46.668565],[-123.839927,46.712934],[-123.893055,46.750204],[-123.979263,46.709637],[-124.021945,46.712813],[-124.094529,46.73697],[-124.133971,46.900776],[-124.061712,46.847621],[-124.045625,46.856099],[-124.049048,46.891326],[-123.985066,46.921924],[-123.823091,46.957651],[-124.122057,47.04165],[-124.146321,47.032137],[-124.151218,47.022222],[-124.127981,46.94548],[-124.174803,46.927659],[-124.173685,47.071696],[-124.183311,47.132099],[-124.204566,47.205008],[-124.420167,47.725148],[-124.430547,47.746249],[-124.475287,47.775658],[-124.489737,47.816989],[-124.5144944,47.8223399],[-124.588955,47.87813],[-124.60176,47.874365],[-124.6328641,47.8950419],[-124.671922,47.970189],[-124.731917,48.169792],[-124.658883,48.331083],[-124.731863,48.380858],[-124.659503,48.391349],[-124.620393,48.36701],[-124.590215,48.37362],[-124.564636,48.367962],[-124.384665,48.285294],[-124.291921,48.258414],[-124.266716,48.254615],[-124.236391,48.262153],[-123.971409,48.164345],[-123.125176,48.153486],[-123.066927,48.120949],[-123.046708,48.097188],[-123.03773,48.053227],[-123.014197,48.027327],[-122.918953,48.096054],[-122.851938,47.995528],[-122.881236,48.108852],[-122.829253,48.134543],[-122.784137,48.14333],[-122.755797,48.1442511],[-122.748853,48.116978],[-122.781124,48.104952],[-122.800689,48.089926],[-122.619409,47.890524],[-122.77085,47.693177],[-122.870145,47.809786],[-123.159373,47.353971],[-122.850878,47.432683],[-123.119397,47.390168],[-122.569442,47.831132],[-122.60322,47.940823],[-122.594229,47.924364],[-122.549766,47.919585],[-122.524864,47.911811],[-122.511626,47.881836],[-122.505897,47.831985],[-122.479065,47.808954],[-122.500314,47.787984],[-122.474004,47.747112],[-122.5145267,47.7437726],[-122.544532,47.747823],[-122.603227,47.695485],[-122.650782,47.714213],[-122.607976,47.568492],[-122.705117,47.602619],[-122.645556,47.538169],[-122.547763,47.585951],[-122.546966,47.524547],[-122.524188,47.524695],[-122.494904,47.510711],[-122.530879,47.471049],[-122.538533,47.376825],[-122.573477,47.327177],[-122.565703,47.264381],[-122.697276,47.285797],[-122.684259,47.364195],[-122.771486,47.167821],[-122.824432,47.363155],[-123.094376,47.207529],[-122.916703,47.066037],[-122.814709,47.176216],[-122.677016,47.102255],[-122.591106,47.17671],[-122.5401572,47.3185962],[-122.506961,47.30309],[-122.484219,47.284272],[-122.436529,47.261488],[-122.408095,47.285032],[-122.443074,47.299636],[-122.429935,47.319135],[-122.402401,47.323581],[-122.367693,47.335602],[-122.339872,47.340862],[-122.323865,47.351392],[-122.207702,48.017122],[-122.209849,48.032414],[-122.239283,48.030714],[-122.342525,48.097503],[-122.392561,48.230584],[-122.356518,48.056843],[-122.51156,48.132945],[-122.5308007,48.2495955],[-122.396834,48.254933],[-122.385743,48.276535],[-122.369678,48.289658],[-122.408862,48.327032],[-122.473228,48.353698],[-122.477848,48.36956],[-122.507411,48.372115],[-122.496887,48.391638],[-122.495241,48.40755],[-122.511937,48.458264],[-122.469976,48.469218],[-122.483088,48.487954],[-122.480706,48.520294],[-122.49793,48.541972],[-122.492478,48.559409],[-122.464042,48.557339],[-122.437021,48.57761],[-122.425719,48.600415],[-122.756959,49.00203],[-122.381987,49.002226],[-122.098358,49.002147],[-121.751252,48.9974],[-120.698761,49.00024],[-118.174833,49.000262],[-116.155897,49.000757],[-115.876026,49.00112],[-115.619839,49.000596],[-115.501017,49.000694],[-115.207912,48.999228],[-113.692982,48.997632],[-110.530261,48.998412],[-108.754215,48.999073],[-107.610105,48.999571],[-107.441017,48.999363],[-107.160178,49.000021],[-106.831879,48.999921],[-106.824003,48.978956],[-106.783752,48.966709],[-106.783768,48.912113],[-106.480121,48.871033],[-106.476067,48.440231],[-105.833932,48.493225],[-105.820529,47.954489],[-106.082464,47.775139],[-105.785505,47.708172],[-105.452845,47.998677],[-104.632151,48.110743],[-104.659663,48.230062],[-104.282218,48.230071],[-104.118949,48.389429],[-104.046767,48.389402],[-104.045444,48.402224],[-103.906941,48.402035],[-103.863427,48.459941],[-103.407041,48.459587],[-103.346168,48.031924],[-103.600934,48.133466],[-103.821324,47.979853],[-103.91979,47.955951],[-103.967638,47.985616],[-104.01157,47.971413],[-104.021983,47.988899],[-104.04412,47.996107],[-104.041461,47.862563],[-104.0443158,47.3301078],[-103.666723,47.329355],[-103.667006,47.095677],[-103.899328,47.00596],[-103.902639,46.803415],[-103.986501,46.803437],[-103.986739,46.738357],[-104.045496,46.745515],[-104.045338,46.657194],[-104.101677,46.656107],[-104.111733,46.641614],[-104.353874,46.641447],[-104.417784,46.684893],[-104.607017,46.684927],[-104.603767,46.86088],[-105.008511,46.861439],[-105.491935,46.624433],[-104.732854,46.612672],[-104.745054,46.187973],[-104.573029,46.194117],[-104.390877,45.970307],[-104.134716,45.968946],[-104.134663,45.882037],[-104.04403,45.881976],[-104.041504,45.539236],[-104.123069,45.53896],[-104.173415,45.567729],[-104.252176,45.566962],[-104.298601,45.595859],[-104.339271,45.482404],[-104.223981,45.35983],[-104.121878,45.341672],[-104.101866,45.35991],[-104.040284,45.336959],[-104.039958,45.212926],[-104.040303,44.997771],[-104.365938,44.998151],[-104.772766,44.999158],[-105.913383,45.000941],[-105.928185,44.993647],[-106.250587,44.993689],[-106.625612,44.994928],[-107.0555,44.996356],[-107.090158,44.997023],[-107.079714,44.969762],[-107.045313,44.95658],[-107.043112,44.937121],[-106.97974,44.912101],[-107.058696,44.824373],[-107.220335,44.819634],[-107.189027,44.91937],[-107.386376,44.907129],[-107.453568,44.967784],[-107.554931,44.96375],[-107.570086,44.969117],[-107.606992,45.000931],[-108.621313,45.000278],[-108.621535,44.947841],[-108.661966,44.953162],[-108.644368,44.897689],[-108.670615,44.882741],[-108.592276,44.871384],[-108.592614,44.74481],[-108.542036,44.77279],[-108.573679,44.461604],[-109.392425,44.333723],[-109.789901,43.803252],[-110.05318,44.008023],[-110.051571,43.464784],[-109.754717,43.4632],[-109.364427,42.930651],[-110.188772,42.270737],[-107.522723,42.261757],[-107.509721,41.657452],[-107.929737,41.659597],[-107.918422,41.002037],[-108.046539,41.002065],[-108.257751,41.000108],[-108.884138,41.000094],[-109.2514937,41.0011194],[-109.5437204,40.998398],[-110.001031,40.997658],[-110.000709,40.813751],[-109.203253,40.858642],[-109.161064,40.683817],[-109.123471,40.684127],[-109.123485,40.653779],[-109.04825,40.653601],[-109.050071,40.540437],[-108.846319,40.465111],[-108.778261,40.502479],[-108.511178,40.44939],[-108.621052,40.222371],[-108.217857,40.11346],[-108.618814,39.955592],[-108.55463,39.650166],[-109.051163,39.660473],[-109.045223,36.999085],[-108.250635,36.999562],[-108.242941,36.929082],[-108.191374,36.880589],[-108.190864,36.928894],[-108.100774,36.923174],[-108.106393,36.967392],[-108.058433,36.989292],[-108.047311,36.999729],[-107.635627,37.000004],[-107.648635,36.986631],[-107.651277,36.96912],[-107.675386,36.94408],[-107.67328,36.911808],[-107.704358,36.882192],[-107.705282,36.830587],[-107.780374,36.824606],[-107.62425,36.219799],[-106.885887,36.067443],[-106.955414,35.65323],[-107.308828,35.645966],[-107.434253,35.880864],[-108.214701,35.575309],[-108.206018,35.306412],[-108.681377,35.306862],[-108.843266,35.11104],[-108.841055,35.169409],[-108.910395,35.176678],[-109.046258,35.174725],[-109.0460701,34.8707326],[-109.066094,34.855174],[-109.165494,34.810624],[-109.324877,34.671809],[-109.422649,34.646499],[-110.1346026,34.7975452],[-110.524669,34.567585],[-110.750685,34.636651],[-110.750692,35.170175],[-111.243586,35.156355],[-111.318833,35.757117],[-111.746595,35.672162],[-111.762852,36.198265],[-112.200557,36.096912],[-112.630205,36.392017],[-113.313431,36.100001],[-113.419539,35.750823],[-113.903534,36.092851],[-114.054591,35.731031],[-114.27155,35.776008],[-114.15413,36.023862],[-114.046838,36.194069],[-114.052828,37.103962],[-114.051843,37.724001],[-114.836413,37.907901],[-114.956114,36.853405],[-115.8969248,36.8420849],[-115.898334,36.004289],[-117.000896,36.847695],[-117.498548,37.219207],[-117.904625,37.515837],[-118.372402,37.855884],[-118.714313,38.102185],[-118.771867,38.141871],[-118.9497367,38.2689831],[-120.001015,38.999574],[-120.001238,39.643475],[-119.988544,39.636288],[-119.974959,39.648546],[-119.957604,39.644954],[-119.928983,39.628072],[-119.773646,39.835682],[-119.997624,39.960439],[-119.995926,40.499902],[-119.998479,40.749899],[-119.99986,40.999891],[-119.999867,41.183975],[-121.170744,41.184385],[-121.374484,41.811014],[-121.446495,41.183484],[-122.498376,41.182675],[-122.639498,40.845272],[-122.864469,40.825928],[-122.638011,40.985173],[-122.970967,41.090159],[-122.847358,41.294993],[-123.770249,41.380777],[-124.004076,41.74421],[-124.089235,41.758635],[-124.089659,41.73997],[-124.118965,41.740054],[-124.1207336,41.6996802],[-124.140134,41.685371]],[[-110.473457,35.740668],[-110.285957,36.035466],[-110.424985,36.09919],[-110.473457,35.740668]],[[-109.84831,34.7934],[-109.686091,35.170113],[-109.842904,35.170402],[-109.84831,34.7934]]]]},"properties":{"name":"NWPP","gridLoss":{"display":"4.23%","value":0.0423},"fuelMixCategories":{"renewable":58.3,"non-renewable":41.7,"non-renewable (excluding nuclear)":38.3,"renewable (excluding hydro)":11,"nuclear":3.4,"hydro":47.2},"fullName":"WECC Northwest","emissionFactor":{"co2EmissionRate":{"value":651.2,"display":"651.2","units":"lb/MWh"},"noxEmissionRate":{"value":0.6,"display":"0.6","units":"lb/MWh"},"so2EmissionRate":{"value":0.4,"display":"0.4","units":"lb/MWh"}},"fuelMix":{"coal":22.5,"oil":0.2,"gas":15.3,"nuclear":3.4,"hydro":47.2,"biomass":1.3,"wind":8.6,"solar":0.5,"geothermal":0.7,"otherFossilFuel":0.3,"otherUnknownFuel":0.1}}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-73.754687,40.610349],[-73.73799,40.594605],[-73.814331,40.583126],[-73.935316,40.545043],[-73.925427,40.561628],[-73.876246,40.569404],[-73.853016,40.581269],[-73.821436,40.586792],[-73.778579,40.609696],[-73.754687,40.610349]]],[[[-74.025186,40.705921],[-74.013784,40.756602],[-73.963183,40.8269],[-73.919881,40.913399],[-73.889377,41.024564],[-73.887315,41.127337],[-73.971017,41.247693],[-73.917966,41.307862],[-73.848575,41.23906],[-73.757973,41.344901],[-73.69569,41.294958],[-73.628441,41.300933],[-73.621494,41.255405],[-73.567535,41.259861],[-73.514249,41.198651],[-73.727776,41.100696],[-73.660895,40.987391],[-73.8172631,40.8138328],[-73.8963137,40.8067099],[-73.97827,40.710484],[-74.011236,40.700862],[-74.025186,40.705921]]],[[[-73.746803,40.78041],[-73.743952,40.637574],[-73.931445,40.575775],[-74.001958,40.571313],[-74.040367,40.61531],[-74.018293,40.674379],[-73.9962376,40.7033551],[-73.969273,40.70703],[-73.909626,40.790938],[-73.746803,40.78041]]]]},"properties":{"name":"NYCW","gridLoss":{"display":"4.49%","value":0.0449},"fuelMixCategories":{"renewable":0.9,"non-renewable":99.1,"non-renewable (excluding nuclear)":65,"renewable (excluding hydro)":0.9,"nuclear":34.1,"hydro":0},"fullName":"NPCC NYC/Westchester","emissionFactor":{"co2EmissionRate":{"value":635.8,"display":"635.8","units":"lb/MWh"},"noxEmissionRate":{"value":0.3,"display":"0.3","units":"lb/MWh"},"so2EmissionRate":{"value":0,"display":"0.0","units":"lb/MWh"}},"fuelMix":{"coal":0,"oil":0.4,"gas":64.6,"nuclear":34.1,"hydro":0,"biomass":0.9,"wind":0,"solar":0,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0}}}, -{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.73799,40.594605],[-73.754687,40.610349],[-73.743952,40.637574],[-73.746803,40.78041],[-73.479273,40.942942],[-73.435233,40.897435],[-73.361,40.903109],[-73.352292,40.923129],[-73.377201,40.938867],[-73.392141,40.924262],[-73.403881,40.941925],[-73.39281,40.954925],[-73.373155,40.936341],[-73.346152,40.925469],[-73.330196,40.929954],[-73.21932,40.907887],[-73.19624,40.915938],[-73.165712,40.909715],[-73.14607,40.927813],[-73.144204,40.955574],[-73.120489,40.975101],[-73.032449,40.951072],[-73.020553,40.963303],[-72.890447,40.962888],[-72.835872,40.969973],[-72.77349,40.965405],[-72.631345,40.982721],[-72.586604,40.997161],[-72.519186,41.03926],[-72.472453,41.055513],[-72.448019,41.084775],[-72.417468,41.08772],[-72.395241,41.097114],[-72.382989,41.114251],[-72.36234,41.125713],[-72.354736,41.138789],[-72.239832,41.154668],[-72.283199,41.126715],[-72.317081,41.139687],[-72.339635,41.114075],[-72.355396,41.10756],[-72.365212,41.092318],[-72.398376,41.078461],[-72.391483,41.029769],[-72.620258,40.92262],[-72.49209,40.867485],[-72.520595,40.846675],[-72.541369,40.858475],[-72.552158,40.839593],[-72.57061,40.842144],[-72.581063,40.820342],[-72.635331,40.795026],[-72.664176,40.805328],[-72.700292,40.796906],[-72.720979,40.805803],[-72.868894,40.739508],[-73.01507,40.749627],[-73.148718,40.698754],[-73.238909,40.715808],[-73.73799,40.594605]]]},"properties":{"name":"NYLI","gridLoss":{"display":"4.49%","value":0.0449},"fuelMixCategories":{"renewable":8.8,"non-renewable":91.2,"non-renewable (excluding nuclear)":91.2,"renewable (excluding hydro)":8.8,"nuclear":0,"hydro":0},"fullName":"NPCC Long Island","emissionFactor":{"co2EmissionRate":{"value":1178.3,"display":"1,178.3","units":"lb/MWh"},"noxEmissionRate":{"value":0.9,"display":"0.9","units":"lb/MWh"},"so2EmissionRate":{"value":0.2,"display":"0.2","units":"lb/MWh"}},"fuelMix":{"coal":0,"oil":2.7,"gas":88.5,"nuclear":0,"hydro":0,"biomass":8,"wind":0,"solar":0.8,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0}}}, -{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.7619497,42.2693362],[-79.151262,42.552327],[-79.141121,42.560973],[-79.130278,42.589713],[-79.110704,42.613782],[-79.063868,42.645559],[-79.047681,42.691387],[-78.916686,42.737357],[-78.86486,42.772565],[-78.853772,42.78509],[-78.91886,42.946857],[-78.932361,42.955857],[-78.961762,42.957757],[-79.019964,42.994756],[-78.999464,43.056056],[-79.074467,43.077856],[-79.07047,43.262454],[-78.56436,43.367318],[-78.484722,43.374839],[-78.469762,43.370793],[-78.414123,43.375],[-78.260359,43.372694],[-78.233468,43.368857],[-78.182358,43.370265],[-78.159341,43.374841],[-78.10451,43.375628],[-78.063825,43.370025],[-78.038626,43.37089],[-77.995293,43.36504],[-77.962542,43.367706],[-77.872852,43.349193],[-77.760639,43.341317],[-77.714775,43.323951],[-77.659283,43.282308],[-77.634832,43.274177],[-77.577035,43.242898],[-77.553005,43.235989],[-76.962392,43.237915],[-76.231103,43.531273],[-76.217095,43.546019],[-76.203324,43.576318],[-76.199134,43.598892],[-76.210656,43.743983],[-76.297064,43.856476],[-76.129156,43.895697],[-76.126152,43.922858],[-76.13926,43.940289],[-76.061588,43.995491],[-76.246422,44.064894],[-76.201329,44.022799],[-76.221829,44.002235],[-76.222015,43.993222],[-76.250034,43.96893],[-76.280336,43.960817],[-76.270018,44.001453],[-76.300076,44.018577],[-76.294902,44.058274],[-76.318849,44.059712],[-76.360163,44.074931],[-76.344441,44.086464],[-76.368928,44.099699],[-76.365745,44.109681],[-76.339055,44.129142],[-76.316088,44.134027],[-76.297924,44.151607],[-76.251082,44.168647],[-76.159961,44.219163],[-76.014887,44.27108],[-76.041891,44.298763],[-76.025378,44.316478],[-76.023578,44.333115],[-76.002211,44.345965],[-75.972016,44.342483],[-75.950856,44.34858],[-75.9128241,44.3677946],[-75.87083,44.395435],[-75.82083,44.432244],[-75.807779,44.471644],[-75.766231,44.515851],[-75.302783,44.838474],[-75.256096,44.857423],[-75.217885,44.877539],[-75.203826,44.877545],[-75.167791,44.89216],[-75.140551,44.896586],[-75.133649,44.915382],[-75.098116,44.925735],[-75.066051,44.929355],[-75.005543,44.958193],[-74.992756,44.977449],[-74.972463,44.983403],[-74.908297,44.983372],[-74.888029,44.999647],[-74.834669,45.014684],[-73.343124,45.01084],[-73.311025,44.27424],[-73.264957,42.74594],[-73.487314,42.049638],[-73.514249,41.198651],[-73.567535,41.259861],[-73.621494,41.255405],[-73.628441,41.300933],[-73.69569,41.294958],[-73.757973,41.344901],[-73.848575,41.23906],[-73.917966,41.307862],[-73.971017,41.247693],[-73.887315,41.127337],[-73.889377,41.024564],[-73.919881,40.913399],[-73.941698,40.925891],[-73.936424,40.950573],[-73.986345,40.968541],[-73.958937,41.022573],[-74.164246,41.021956],[-74.213291,41.133995],[-74.42812,41.150402],[-74.4134,41.226195],[-74.461357,41.250095],[-74.694915,41.357424],[-74.720923,41.347385],[-74.729135,41.353609],[-74.760769,41.344415],[-74.763647,41.384456],[-74.744929,41.407397],[-74.792598,41.39966],[-74.816199,41.441384],[-74.981761,41.480098],[-75.074613,41.605712],[-75.044225,41.617979],[-75.049921,41.662557],[-75.058792,41.674475],[-75.052736,41.688393],[-75.068783,41.708089],[-75.053228,41.751662],[-75.075942,41.771518],[-75.10464,41.774203],[-75.08579,41.811626],[-75.113351,41.822807],[-75.1144,41.843584],[-75.140242,41.852079],[-75.15735,41.848463],[-75.203929,41.869866],[-75.223734,41.857457],[-75.243345,41.866876],[-75.279287,41.9390089],[-75.310359,41.949012],[-75.34246,41.974303],[-75.341125,41.992772],[-75.3594795,41.9994064],[-75.607574,41.998917],[-75.7610537,41.9977992],[-75.98025,41.999035],[-76.37466,41.99841],[-78.000202,41.998784],[-78.179294,42.054628],[-78.2801685,41.9990881],[-78.59665,41.999877],[-78.749754,41.998109],[-78.874759,41.99756],[-79.76095,41.9988177],[-79.761804,42.019878],[-79.7619497,42.2693362]]]},"properties":{"name":"NYUP","gridLoss":{"display":"4.49%","value":0.0449},"fuelMixCategories":{"renewable":38.5,"non-renewable":61.5,"non-renewable (excluding nuclear)":30.1,"renewable (excluding hydro)":6.9,"nuclear":31.4,"hydro":31.6},"fullName":"NPCC Upstate NY","emissionFactor":{"co2EmissionRate":{"value":294.7,"display":"294.7","units":"lb/MWh"},"noxEmissionRate":{"value":0.3,"display":"0.3","units":"lb/MWh"},"so2EmissionRate":{"value":0.2,"display":"0.2","units":"lb/MWh"}},"fuelMix":{"coal":2.1,"oil":0.2,"gas":27.7,"nuclear":31.4,"hydro":31.6,"biomass":2.1,"wind":4.7,"solar":0.1,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0}}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-75.257206,38.025851],[-75.238771,38.045459],[-75.246031,38.055808],[-75.236723,38.065706],[-75.219132,38.069568],[-75.211377,38.103149],[-75.192123,38.120339],[-75.186832,38.167032],[-75.161305,38.213184],[-75.14491,38.216112],[-75.201255,38.08328],[-75.245159,38.02237],[-75.307894,37.945613],[-75.341417,37.888119],[-75.371253,37.856912],[-75.345471,37.890689],[-75.380482,37.893201],[-75.334792,37.921644],[-75.289544,37.973829],[-75.30238,37.984979],[-75.298099,37.998661],[-75.268669,38.00958],[-75.257206,38.025851]]],[[[-80.519376,41.977233],[-80.18795,42.094056],[-80.158381,42.110705],[-80.1303612,42.1554061],[-80.116251,42.166226],[-80.093211,42.172973],[-80.09713,42.153297],[-80.141693,42.135238],[-80.146121,42.114208],[-80.061501,42.144854],[-79.99021,42.176626],[-79.930332,42.206973],[-79.903754,42.215444],[-79.872349,42.231783],[-79.84474,42.235222],[-79.817587,42.245495],[-79.782585,42.264141],[-79.7619497,42.2693362],[-79.761804,42.019878],[-79.76095,41.9988177],[-78.874759,41.99756],[-78.749754,41.998109],[-78.59665,41.999877],[-78.2801685,41.9990881],[-78.179294,42.054628],[-78.000202,41.998784],[-76.37466,41.99841],[-75.98025,41.999035],[-75.7610537,41.9977992],[-75.607574,41.998917],[-75.3594795,41.9994064],[-75.341125,41.992772],[-75.34246,41.974303],[-75.310359,41.949012],[-75.279287,41.9390089],[-75.243345,41.866876],[-75.223734,41.857457],[-75.203929,41.869866],[-75.15735,41.848463],[-75.140242,41.852079],[-75.1144,41.843584],[-75.113351,41.822807],[-75.08579,41.811626],[-75.10464,41.774203],[-75.075942,41.771518],[-75.053228,41.751662],[-75.068783,41.708089],[-75.052736,41.688393],[-75.058792,41.674475],[-75.049921,41.662557],[-75.044225,41.617979],[-75.074613,41.605712],[-74.981761,41.480098],[-74.816199,41.441384],[-74.792598,41.39966],[-74.744929,41.407397],[-74.763647,41.384456],[-74.760769,41.344415],[-74.729135,41.353609],[-74.720923,41.347385],[-74.694915,41.357424],[-74.461357,41.250095],[-74.4134,41.226195],[-74.42812,41.150402],[-74.213291,41.133995],[-74.164246,41.021956],[-73.958937,41.022573],[-73.986345,40.968541],[-73.936424,40.950573],[-73.941698,40.925891],[-73.919881,40.913399],[-73.963183,40.8269],[-74.013784,40.756602],[-74.025186,40.705921],[-74.070733,40.660683],[-74.087038,40.653907],[-74.136749,40.645644],[-74.1236204,40.7170157],[-74.270447,40.484992],[-74.262079,40.465011],[-74.191868,40.44261],[-74.1353969,40.4572505],[-73.976546,40.404614],[-73.977659,40.300005],[-73.997399,40.223041],[-74.028776,40.129486],[-74.064261,39.972402],[-74.083768,39.862098],[-74.095115,39.767996],[-74.102818,39.800275],[-74.083108,39.954747],[-74.059044,40.040167],[-74.299815,39.517191],[-74.652565,39.30554],[-74.616355,39.284328],[-74.626708,39.27395],[-74.629714,39.256093],[-74.553307,39.285089],[-74.8824112,38.942253],[-74.971656,38.938461],[-74.892227,39.113302],[-74.886563,39.158288],[-74.901621,39.174711],[-75.041014,39.216321],[-75.081147,39.210944],[-75.111073,39.211654],[-75.151164,39.189066],[-75.536855,39.46033],[-75.542563,39.497843],[-75.528088,39.498114],[-75.533412,39.542044],[-75.512732,39.578001],[-75.527693,39.584113],[-75.571247,39.620897],[-75.45944,39.765814],[-75.437939,39.783413],[-75.4064384,39.7957805],[-75.423418,39.806573],[-75.436755,39.803468],[-75.469595,39.785689],[-75.614865,39.620688],[-75.58944,39.460813],[-75.494622,39.346717],[-75.437267,39.311943],[-75.40905,39.26452],[-75.39566,39.189143],[-75.409179,39.175251],[-75.413293,39.1514],[-75.402378,39.067453],[-75.341712,39.021106],[-75.317884,38.987414],[-75.311608,38.967638],[-75.315869,38.931024],[-75.3036765,38.9134433],[-75.188631,38.805626],[-75.1435664,38.7843893],[-75.114546,38.782564],[-75.093177,38.794737],[-75.081223,38.765511],[-75.065461,38.657776],[-75.066026,38.614613],[-75.137473,38.681717],[-75.181357,38.582408],[-75.081715,38.579809],[-75.071989,38.605428],[-75.059018,38.600066],[-75.0489039,38.4660709],[-75.054591,38.414815],[-75.085049,38.324329],[-75.065123,38.399356],[-75.063755,38.419202],[-75.070725,38.438919],[-75.056196,38.45581],[-75.052898,38.471705],[-75.069824,38.484113],[-75.081114,38.462438],[-75.10222,38.436704],[-75.119194,38.438307],[-75.098672,38.401398],[-75.124629,38.369054],[-75.109954,38.352671],[-75.094008,38.346422],[-75.096284,38.328143],[-75.110532,38.318718],[-75.117753,38.301658],[-75.140327,38.283955],[-75.151338,38.247725],[-75.261127,38.204736],[-75.301099,38.098945],[-75.365015,38.076667],[-75.376795,38.008775],[-75.402904,38.001423],[-75.409624,37.987065],[-75.42843,37.986325],[-75.500361,37.869712],[-75.477023,37.859517],[-75.687141,37.60661],[-75.673916,37.533073],[-75.886015,37.362781],[-75.916485,37.311365],[-75.935206,37.237086],[-75.923581,37.226829],[-75.940072,37.199095],[-75.940697,37.134841],[-75.957852,37.122115],[-75.969584,37.12632],[-75.978186,37.157319],[-76.012845,37.205909],[-76.01031,37.23115],[-76.025238,37.259244],[-75.940857,37.563881],[-75.909705,37.622373],[-75.892009,37.636996],[-75.891426,37.649197],[-75.852304,37.67633],[-75.80333,37.761984],[-75.814103,37.781986],[-75.80482,37.795307],[-75.782042,37.806281],[-75.774704,37.784216],[-75.732737,37.785018],[-75.671845,37.850178],[-75.678696,37.887259],[-75.71543,37.905372],[-75.729927,37.920052],[-75.718985,37.934445],[-75.695439,37.929665],[-75.677786,37.942404],[-75.64321,37.936105],[-75.635272,37.95249],[-75.643722,37.964455],[-75.662605,37.961194],[-75.691667,37.967056],[-75.713151,37.976623],[-75.736951,37.976159],[-75.853804,37.937634],[-75.855575,38.000644],[-75.898956,37.974514],[-75.813629,38.059138],[-75.875157,38.07613],[-75.863767,38.09514],[-75.847326,38.109193],[-75.827674,38.133439],[-75.909377,38.173576],[-75.889264,38.153545],[-75.906869,38.137345],[-75.959617,38.13713],[-75.947395,38.169726],[-75.94969,38.180654],[-75.923352,38.190339],[-75.92912,38.21643],[-75.865506,38.237433],[-75.975705,38.367209],[-76.048684,38.315279],[-76.027061,38.280298],[-76.044708,38.273606],[-76.035686,38.263814],[-76.041583,38.250106],[-76.03564,38.230933],[-76.050306,38.225156],[-76.257084,38.32472],[-76.282804,38.41617],[-76.332028,38.474854],[-76.339343,38.49999],[-76.302779,38.617614],[-76.347443,38.684037],[-76.338421,38.760499],[-76.309932,38.797003],[-76.301525,38.826199],[-76.2692244,38.8306755],[-76.226297,38.820384],[-76.191646,38.828722],[-76.203637,38.928384],[-76.220313,38.947625],[-76.235176,38.941995],[-76.249936,38.969024],[-76.374578,38.855432],[-76.230355,39.045598],[-76.23093,39.081468],[-76.235842,39.100163],[-76.246201,39.114493],[-76.244883,39.13055],[-76.278259,39.148032],[-76.267752,39.178894],[-75.970199,39.557548],[-76.481364,39.189283],[-76.395048,39.011328],[-76.474248,38.972596],[-76.559605,38.767199],[-76.517884,38.53693],[-76.505722,38.503616],[-76.484369,38.474385],[-76.402409,38.394398],[-76.381465,38.386279],[-76.236743,37.888644],[-76.6103562,38.148513],[-76.838796,38.163477],[-76.875272,38.172208],[-76.910833,38.197074],[-76.948924,38.208261],[-76.962376,38.230094],[-76.9616788,38.2558306],[-77.030683,38.311623],[-77.041506,38.400694],[-77.084933,38.368417],[-77.137734,38.368024],[-77.164636,38.345283],[-77.279634,38.339444],[-77.325605,38.443196],[-77.323297,38.46597],[-77.309648,38.495621],[-77.246404,38.593419],[-77.130201,38.635018],[-77.121101,38.686616],[-77.073995,38.711899],[-77.052739,38.709894],[-77.042794,38.718672],[-77.0328493,38.8550577],[-77.146601,38.964211],[-77.181645,38.968889],[-77.197494,38.966958],[-77.244858,38.982601],[-77.255674,39.00161],[-77.244905,39.019413],[-77.254614,39.029792],[-77.340904,39.063082],[-77.38568,39.061987],[-77.452831,39.072468],[-77.503682,39.115185],[-77.471539,39.104622],[-77.453342,39.126156],[-77.452696,39.159099],[-77.376646,39.157461],[-77.326394,39.24235],[-77.238164,39.221343],[-77.160913,39.289789],[-77.185317,39.599241],[-77.264667,39.720004],[-77.4788605,39.7200188],[-77.4804785,39.7384659],[-77.465631,39.739747],[-77.460471,39.759932],[-77.476694,39.84218],[-77.744511,39.839702],[-77.797733,39.956504],[-78.140555,39.722384],[-78.384501,39.800402],[-78.533618,39.722512],[-78.990497,39.72256],[-79.224754,39.721981],[-79.523715,39.720904],[-79.513894,39.764796],[-79.495693,39.792103],[-79.507481,39.807562],[-79.496929,39.827881],[-79.73207,39.979625],[-79.36453,40.065786],[-79.288757,40.292894],[-79.6676503,40.5149073],[-79.464147,40.655628],[-79.958838,40.537605],[-80.424233,40.999148],[-80.046223,41.296785],[-80.208371,41.441671],[-80.519091,41.347842],[-80.519376,41.977233]],[[-77.824872,40.743536],[-77.595054,40.942768],[-77.796485,41.083643],[-77.824872,40.743536]],[[-78.958908,41.452906],[-78.487106,41.363723],[-78.419118,41.602189],[-78.790062,41.624935],[-78.887658,41.470154],[-78.956057,41.623863],[-78.958908,41.452906]]]]},"properties":{"name":"RFCE","gridLoss":{"display":"4.49%","value":0.0449},"fuelMixCategories":{"renewable":4.2,"non-renewable":95.8,"non-renewable (excluding nuclear)":56.1,"renewable (excluding hydro)":3.3,"nuclear":39.7,"hydro":0.9},"fullName":"RFC East","emissionFactor":{"co2EmissionRate":{"value":758.2,"display":"758.2","units":"lb/MWh"},"noxEmissionRate":{"value":0.6,"display":"0.6","units":"lb/MWh"},"so2EmissionRate":{"value":0.6,"display":"0.6","units":"lb/MWh"}},"fuelMix":{"coal":17.6,"oil":0.2,"gas":38,"nuclear":39.7,"hydro":0.9,"biomass":1.9,"wind":1,"solar":0.4,"geothermal":0,"otherFossilFuel":0.2,"otherUnknownFuel":0}}}, -{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-86.413141,42.186524],[-86.361879,42.245864],[-86.327876,42.300121],[-86.311482,42.331134],[-86.129281,42.375477],[-86.244385,42.510751],[-86.206748,42.70782],[-86.21135,42.825266],[-86.210153,42.855766],[-86.215357,42.916727],[-86.233712,43.021119],[-86.249909,43.056048],[-86.255379,43.08583],[-86.271078,43.118027],[-86.321978,43.204623],[-86.385164,43.299248],[-86.426625,43.374035],[-86.448333,43.429896],[-86.464684,43.483929],[-86.479528,43.515907],[-86.530505,43.595084],[-86.54035,43.626744],[-86.52918,43.67789],[-86.480499,43.72628],[-86.455052,43.755301],[-86.43663,43.790895],[-86.43037,43.835502],[-86.462804,43.969914],[-86.512803,44.041376],[-86.515016,44.055614],[-86.505653,44.071448],[-86.445075,44.107274],[-86.428836,44.12061],[-86.267658,44.346503],[-86.220698,44.566742],[-86.225435,44.594586],[-86.245565,44.627474],[-86.258976,44.667326],[-86.255593,44.691401],[-85.5407467,45.2109091],[-85.614893,45.126626],[-85.566217,45.059068],[-85.648421,44.971392],[-85.6008178,44.9245122],[-85.624664,44.922008],[-85.649199,44.873459],[-85.651454,44.831823],[-85.593391,44.769373],[-85.578846,44.817784],[-85.524741,44.895571],[-85.519733,44.974399],[-85.474911,44.991495],[-85.499696,44.856232],[-85.556276,44.81828],[-85.559582,44.78697],[-85.574751,44.757852],[-85.562632,44.75123],[-85.524749,44.749037],[-85.408917,44.905449],[-85.395858,44.930899],[-85.382993,44.968995],[-85.363261,45.111541],[-85.372724,45.12621],[-85.379489,45.177378],[-85.387688,45.191665],[-85.374159,45.266748],[-85.355319,45.284393],[-85.343732,45.286155],[-85.327605,45.30288],[-85.271595,45.316065],[-85.203485,45.361939],[-85.038644,45.361937],[-85.011938,45.370805],[-84.987637,45.368587],[-84.914654,45.394257],[-85.061961,45.451292],[-85.093478,45.481643],[-85.115798,45.541673],[-85.117246,45.579376],[-84.974771,45.754139],[-84.937284,45.759886],[-84.901104,45.746814],[-84.878285,45.756181],[-84.840773,45.744672],[-84.796249,45.748109],[-84.781426,45.761081],[-84.792025,45.782074],[-84.772861,45.789341],[-84.7228771,45.7837386],[-84.216246,45.635065],[-84.196017,45.621437],[-84.165959,45.59176],[-84.136994,45.572222],[-84.126521,45.556607],[-84.123233,45.526277],[-84.112491,45.507911],[-84.074395,45.490242],[-84.056134,45.489344],[-84.034969,45.497762],[-83.909873,45.48588],[-83.450825,45.318245],[-83.381835,45.269747],[-83.412394,45.238891],[-83.263999,45.021975],[-83.3891,45.075834],[-83.418707,45.065276],[-83.442153,45.051056],[-83.463406,44.995799],[-83.449593,44.989876],[-83.438825,44.940843],[-83.426482,44.92735],[-83.405002,44.919492],[-83.390737,44.902228],[-83.319571,44.880664],[-83.272462,44.713242],[-83.332633,44.339359],[-83.578038,44.048983],[-83.603477,44.055163],[-83.650098,44.052393],[-83.678878,44.037037],[-83.68945,44.026595],[-83.678021,43.989739],[-83.741543,44.004945],[-83.763775,43.985159],[-83.831661,43.997419],[-83.876047,43.961597],[-83.890633,43.923739],[-83.908571,43.916496],[-83.918315,43.885144],[-83.926051,43.787235],[-83.956602,43.763889],[-83.940647,43.718099],[-83.902874,43.668109],[-83.678099,43.590035],[-83.648023,43.604024],[-83.523263,43.71759],[-83.496656,43.696274],[-83.468845,43.724947],[-83.325885,43.882889],[-83.330698,43.902854],[-83.377302,43.91319],[-83.262546,43.975248],[-83.197754,43.983642],[-83.180461,43.981992],[-83.112293,44.004491],[-83.073311,44.001674],[-83.046657,44.015729],[-83.027831,44.045814],[-82.964811,44.068437],[-82.928722,44.068152],[-82.901161,44.060649],[-82.87589,44.044992],[-82.814043,44.032676],[-82.739905,43.990147],[-82.657465,43.869304],[-82.645031,43.837409],[-82.621457,43.79744],[-82.614622,43.777836],[-82.52309,43.225614],[-82.508814,43.19672],[-82.501506,43.160859],[-82.493535,43.140805],[-82.484667,43.100475],[-82.471964,43.088185],[-82.462275,43.068166],[-82.425214,43.015128],[-82.424217,42.991524],[-82.413087,42.976467],[-82.518554,42.61466],[-82.541255,42.600065],[-82.581905,42.567047],[-82.587175,42.555305],[-82.608009,42.550654],[-82.619021,42.578772],[-82.640614,42.596435],[-82.645928,42.631168],[-82.623856,42.671067],[-82.799208,42.65319],[-82.781897,42.571396],[-82.87835,42.514817],[-82.868175,42.454737],[-82.888407,42.398592],[-82.898375,42.384722],[-82.959416,42.339638],[-82.988619,42.332439],[-83.01832,42.329739],[-83.064121,42.317738],[-83.096522,42.290138],[-83.128023,42.238839],[-83.133792,42.174228],[-83.122224,42.129041],[-83.144962,42.054558],[-83.18703,42.05376],[-83.434333,41.818217],[-83.455346,41.732806],[-83.649564,41.727223],[-83.741351,41.659254],[-83.998694,41.716858],[-83.946134,41.487209],[-84.43828,41.427234],[-84.514626,41.703281],[-84.805966,41.696088],[-84.805813,41.760185],[-84.972255,41.759551],[-85.2921,41.759962],[-85.292048,41.781722],[-85.318135,41.762493],[-85.507183,41.919145],[-85.487351,41.868184],[-85.565144,41.835238],[-85.535965,41.82441],[-85.531059,41.806837],[-85.545931,41.796199],[-85.548005,41.770256],[-85.543598,41.758839],[-85.659802,41.759098],[-85.618641,41.625356],[-85.791364,41.609001],[-85.726958,41.710416],[-85.827445,41.759137],[-85.819933,41.766686],[-85.815848,41.822617],[-85.799164,41.831052],[-85.799207,41.84553],[-85.760287,41.845028],[-85.789298,41.969081],[-85.666756,42.070112],[-86.165619,41.883981],[-86.223592,42.250037],[-86.281135,42.157228],[-86.359404,42.157397],[-86.3770035,42.1863008],[-86.404604,42.193557],[-86.413141,42.186524]]]},"properties":{"name":"RFCM","gridLoss":{"display":"4.49%","value":0.0449},"fuelMixCategories":{"renewable":6.6,"non-renewable":93.2,"non-renewable (excluding nuclear)":75.7,"renewable (excluding hydro)":6.8,"nuclear":17.5,"hydro":0},"fullName":"RFC Michigan","emissionFactor":{"co2EmissionRate":{"value":1272,"display":"1,272.0","units":"lb/MWh"},"noxEmissionRate":{"value":0.9,"display":"0.9","units":"lb/MWh"},"so2EmissionRate":{"value":1.7,"display":"1.7","units":"lb/MWh"}},"fuelMix":{"coal":41.5,"oil":0.9,"gas":31.4,"nuclear":17.5,"hydro":0,"biomass":2,"wind":4.8,"solar":0,"geothermal":0,"otherFossilFuel":1.9,"otherUnknownFuel":0}}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-77.824872,40.743536],[-77.796485,41.083643],[-77.595054,40.942768],[-77.824872,40.743536]]],[[[-88.498253,44.855456],[-88.2547569,44.9754839],[-88.210587,44.593205],[-87.847157,44.247659],[-88.046361,44.080884],[-89.026819,44.068985],[-89.005153,44.400131],[-88.498253,44.855456]]],[[[-86.1166179,45.9650046],[-86.114419,46.331372],[-85.864866,46.120259],[-85.864414,46.689704],[-85.544782,46.674192],[-85.261667,46.752148],[-85.175272,46.76352],[-85.036243,46.760402],[-84.986769,46.772695],[-85.052955,46.532827],[-85.054943,46.514751],[-85.033776,46.487639],[-84.837077,46.445212],[-84.800056,46.44615],[-84.730416,46.46571],[-84.678956,46.48756],[-84.631448,46.484919],[-84.596969,46.450492],[-84.59775,46.415488],[-84.479042,46.432515],[-84.453706,46.471168],[-84.41433,46.488886],[-84.3061844,46.4892423],[-84.300476,46.471562],[-84.260247,46.43001],[-84.222607,46.348946],[-84.221914,46.291144],[-84.180732,46.241119],[-84.25116,46.177214],[-84.178054,46.184564],[-84.162804,46.172322],[-84.115259,46.162028],[-84.095816,46.147735],[-84.028269,46.133012],[-83.89764,45.989705],[-83.998164,45.959634],[-84.086727,45.96885],[-84.11639,45.983051],[-84.310823,45.977258],[-84.333584,45.994744],[-84.363618,45.974882],[-84.43911,46.008463],[-84.462874,45.980468],[-84.502305,45.998747],[-84.516311,45.99282],[-84.514072,45.971293],[-84.533057,45.969821],[-84.530441,45.99007],[-84.540583,46.018868],[-84.655354,46.052724],[-84.678462,46.043929],[-84.691717,46.028618],[-84.684305,46.004967],[-84.690661,45.988949],[-84.684369,45.977133],[-84.708917,45.973384],[-84.729099,45.962616],[-84.739482,45.942142],[-84.734287,45.897716],[-84.725707,45.892181],[-84.7150063,45.862325],[-84.724083,45.846233],[-84.744649,45.847416],[-84.750822,45.839116],[-84.796791,45.861537],[-84.821435,45.868085],[-84.885181,45.923881],[-84.913149,45.92571],[-84.973516,45.986111],[-85.013917,46.010759],[-85.426871,46.101951],[-85.457813,46.090113],[-85.512647,46.094719],[-85.535073,46.083666],[-85.603777,46.030364],[-85.618245,46.005273],[-85.647709,45.984299],[-85.659017,45.965755],[-85.92855,45.926366],[-86.010493,45.953923],[-86.055477,45.96306],[-86.094685,45.966708],[-86.1166179,45.9650046]]],[[[-83.5505442,45.914638],[-83.86668,46.008737],[-83.634948,46.103919],[-83.5505442,45.914638]]],[[[-89.554937,46.113637],[-89.616871,46.160423],[-89.490586,46.215356],[-89.49028,46.333247],[-88.8665774,46.3333088],[-88.678849,46.592578],[-88.240845,46.592163],[-88.365907,46.42015],[-87.991505,46.506553],[-87.992021,46.246996],[-87.615914,46.246794],[-87.617009,45.985906],[-87.367734,45.985269],[-87.140645,45.676031],[-87.17143,45.662375],[-87.176566,45.647646],[-87.197159,45.638373],[-87.264469,45.550392],[-87.777494,45.593835],[-87.797536,45.562125],[-87.831689,45.568035],[-87.832968,45.559462],[-87.808367,45.544663],[-87.792769,45.499968],[-87.812884,45.464329],[-87.831218,45.457186],[-87.861698,45.434473],[-87.884855,45.362793],[-87.850418,45.347493],[-87.832613,45.35225],[-87.790325,45.353444],[-87.754104,45.349443],[-87.693956,45.389894],[-87.647768,45.340563],[-87.7006286,45.2795927],[-87.7771522,45.2807098],[-87.7836088,45.2775964],[-87.860181,45.278433],[-87.860365,45.264275],[-87.939989,45.265193],[-88.1174851,45.4630228],[-87.823804,45.538307],[-88.0888123,45.54205],[-88.059246,45.713063],[-88.6652389,45.8092302],[-88.592544,45.63666],[-88.9461549,45.571817],[-88.978711,45.982217],[-89.554937,46.113637]]],[[[-86.311482,42.331134],[-86.244385,42.510751],[-86.129281,42.375477],[-86.311482,42.331134]]],[[[-78.958908,41.452906],[-78.956057,41.623863],[-78.887658,41.470154],[-78.790062,41.624935],[-78.419118,41.602189],[-78.487106,41.363723],[-78.958908,41.452906]]],[[[-88.02803,37.799225],[-87.984781,38.228743],[-87.93733,38.292432],[-87.915554,38.300455],[-87.908915,38.290479],[-87.919292,38.275909],[-87.906842,38.269634],[-87.878303,38.30785],[-87.836496,38.285487],[-87.743772,38.413116],[-87.730821,38.449228],[-87.75618,38.462538],[-87.744639,38.477271],[-87.714047,38.47988],[-87.669811,38.507179],[-87.652366,38.50322],[-87.645372,38.513836],[-87.656145,38.521668],[-87.670071,38.545237],[-87.62098,38.637655],[-87.597248,38.665314],[-87.534484,38.68172],[-87.522039,38.693351],[-87.519511,38.710485],[-87.506172,38.733726],[-87.496282,38.766313],[-87.4956898,38.7844493],[-87.526816,38.81737],[-87.525894,38.848795],[-87.552028,38.860318],[-87.513347,38.956001],[-87.658747,39.135997],[-87.526642,41.12145],[-87.963534,41.001047],[-88.164646,41.130361],[-88.13074,40.93922],[-89.066934,40.926084],[-89.162265,41.103988],[-88.627265,41.270492],[-88.63504,41.471294],[-88.31451,41.577984],[-88.4343959,41.716815],[-89.747262,41.58441],[-89.895354,41.723942],[-90.254106,41.522531],[-90.024853,42.012575],[-90.258762,42.339969],[-90.403349,42.309936],[-90.555018,42.416138],[-90.552633,42.430021],[-90.516199,42.429814],[-90.515833,42.462079],[-90.49518,42.45724],[-90.486854,42.484706],[-90.4428163,42.4967374],[-90.4371468,42.507235],[-88.525696,42.494917],[-88.511329,42.575324],[-88.663459,42.581855],[-88.987684,42.846946],[-88.94358,43.042169],[-89.1503176,43.0030354],[-89.166536,43.188549],[-88.882562,43.371917],[-88.60696,43.30556],[-88.599957,43.850457],[-87.699249,43.965307],[-87.718829,43.938205],[-87.726774,43.903408],[-87.736084,43.880386],[-87.700377,43.767401],[-87.757047,43.768179],[-87.7649803,43.7610142],[-87.800123,43.761226],[-87.726667,43.649964],[-87.7931,43.549437],[-87.791656,43.493196],[-87.803462,43.4642829],[-87.825838,43.435518],[-87.864054,43.39389],[-87.876973,43.369547],[-87.890219,43.304041],[-87.901973,43.283232],[-87.911974,43.247094],[-87.8915936,43.0072287],[-87.823974,42.834928],[-87.757848,42.782085],[-87.815815,42.643036],[-87.811769,42.518575],[-87.797713,42.486844],[-87.802857,42.390195],[-87.8163644,42.3614523],[-87.824083,42.361743],[-87.831646,42.329638],[-87.833971,42.293755],[-87.5283462,41.716072],[-87.504742,41.691804],[-87.467903,41.672838],[-87.446779,41.685445],[-87.42459,41.689597],[-87.406849,41.680434],[-87.420536,41.659492],[-87.436967,41.65501],[-87.421101,41.641074],[-87.318052,41.620992],[-87.253271,41.6212],[-87.161468,41.63576],[-86.916531,41.716538],[-86.9040881,41.7284942],[-86.875328,41.73802],[-86.820264,41.762188],[-86.777457,41.784271],[-86.688155,41.837285],[-86.620316,41.892865],[-86.587788,41.932383],[-86.575314,41.955304],[-86.556593,41.999709],[-86.51206,42.06506],[-86.487763,42.117144],[-86.413141,42.186524],[-86.404604,42.193557],[-86.3770035,42.1863008],[-86.359404,42.157397],[-86.281135,42.157228],[-86.223592,42.250037],[-86.165619,41.883981],[-85.666756,42.070112],[-85.789298,41.969081],[-85.760287,41.845028],[-85.799207,41.84553],[-85.799164,41.831052],[-85.815848,41.822617],[-85.819933,41.766686],[-85.827445,41.759137],[-85.726958,41.710416],[-85.791364,41.609001],[-85.618641,41.625356],[-85.659802,41.759098],[-85.543598,41.758839],[-85.548005,41.770256],[-85.545931,41.796199],[-85.531059,41.806837],[-85.535965,41.82441],[-85.565144,41.835238],[-85.487351,41.868184],[-85.507183,41.919145],[-85.318135,41.762493],[-85.292048,41.781722],[-85.2921,41.759962],[-84.972255,41.759551],[-84.805813,41.760185],[-84.805966,41.696088],[-84.514626,41.703281],[-84.43828,41.427234],[-83.946134,41.487209],[-83.998694,41.716858],[-83.741351,41.659254],[-83.649564,41.727223],[-83.455346,41.732806],[-83.468605,41.721294],[-83.477115,41.698539],[-83.464603,41.69008],[-83.426134,41.7134],[-83.425713,41.69],[-83.351779,41.68698],[-83.335558,41.705387],[-83.305755,41.676394],[-83.240072,41.651903],[-83.235893,41.637379],[-83.212725,41.637821],[-83.154274,41.619053],[-83.1027242,41.61263],[-83.067363,41.595669],[-83.039519,41.563005],[-82.973869,41.524869],[-82.9316481,41.5147109],[-82.879295,41.526592],[-82.834131,41.587079],[-82.716518,41.540784],[-82.713704,41.524563],[-82.72683,41.511968],[-82.765142,41.502773],[-82.9542,41.489038],[-83.003219,41.437424],[-82.488722,41.38077],[-82.461825,41.385852],[-82.3602115,41.4271129],[-82.2551735,41.4342968],[-82.012659,41.515663],[-81.744798,41.487503],[-81.676973,41.522015],[-81.665142,41.531656],[-81.627449,41.54412],[-81.447086,41.670206],[-81.389342,41.706928],[-81.298675,41.752192],[-81.285716,41.762709],[-81.222489,41.768702],[-81.129982,41.810609],[-81.088516,41.823443],[-81.002015,41.853454],[-80.903581,41.867869],[-80.814889,41.897902],[-80.800506,41.910004],[-80.772787,41.908545],[-80.727647,41.918445],[-80.585025,41.956567],[-80.561158,41.966715],[-80.519376,41.977233],[-80.519091,41.347842],[-80.208371,41.441671],[-80.046223,41.296785],[-80.424233,40.999148],[-79.958838,40.537605],[-79.464147,40.655628],[-79.6676503,40.5149073],[-79.288757,40.292894],[-79.36453,40.065786],[-79.73207,39.979625],[-79.496929,39.827881],[-79.507481,39.807562],[-79.495693,39.792103],[-79.513894,39.764796],[-79.523715,39.720904],[-79.224754,39.721981],[-78.990497,39.72256],[-78.533618,39.722512],[-78.384501,39.800402],[-78.140555,39.722384],[-77.797733,39.956504],[-77.744511,39.839702],[-77.476694,39.84218],[-77.460471,39.759932],[-77.465631,39.739747],[-77.4804785,39.7384659],[-77.4788605,39.7200188],[-77.264667,39.720004],[-77.185317,39.599241],[-77.160913,39.289789],[-77.238164,39.221343],[-77.326394,39.24235],[-77.376646,39.157461],[-77.452696,39.159099],[-77.453342,39.126156],[-77.471539,39.104622],[-77.503682,39.115185],[-77.524653,39.127804],[-77.527411,39.146635],[-77.46021,39.228359],[-77.568018,39.306448],[-77.674908,39.324252],[-77.7189303,39.3212857],[-77.7349,39.31241],[-77.828806,39.132773],[-78.245363,39.402714],[-78.257624,39.394801],[-78.276729,39.372069],[-78.278439,39.321135],[-78.298154,39.310901],[-78.2575467,39.2758981],[-78.436659,39.141692],[-78.395431,38.915862],[-78.641034,38.60616],[-78.5392626,38.4768197],[-79.020527,38.579829],[-78.9338772,38.3745169],[-78.704207,38.494586],[-78.8114417,38.1579762],[-78.592814,38.292054],[-78.394662,38.009079],[-78.272625,38.207178],[-78.022372,38.141463],[-78.195889,37.953517],[-77.720342,37.587466],[-77.846931,37.414113],[-78.185321,37.444538],[-78.395595,37.159218],[-78.870948,37.242973],[-78.995267,37.038296],[-79.20683,37.190729],[-79.4984508,37.0604758],[-79.198127,36.769038],[-78.8371378,36.8762389],[-78.810238,36.721456],[-79.178188,36.708887],[-78.881811,36.611028],[-78.8807084,36.5420422],[-81.677535,36.588118],[-81.646901,36.611918],[-81.922645,36.616214],[-81.934145,36.594214],[-82.221458,36.596179],[-82.466614,36.594482],[-82.480689,36.595702],[-82.663287,36.593501],[-82.9847325,36.5937561],[-82.979024,36.600262],[-82.94125,36.614777],[-82.913783,36.632185],[-82.887844,36.637251],[-82.964383,36.696982],[-82.8534944,36.7758124],[-82.891619,36.805646],[-82.848203,36.831783],[-82.851176,36.870093],[-82.878639,36.893982],[-82.869184,36.974183],[-83.3632,37.125741],[-83.350269,37.486641],[-82.932488,37.353754],[-82.424447,37.802653],[-82.664866,38.264702],[-82.920234,38.280857],[-82.742641,38.482365],[-82.768177,38.521446],[-82.758205,38.554133],[-82.766064,38.56056],[-82.795649,38.561552],[-82.820162,38.572703],[-82.847187,38.595167],[-82.874892,38.682828],[-82.876892,38.698178],[-82.870392,38.722077],[-82.876193,38.748077],[-82.894193,38.756577],[-83.668111,38.628069],[-83.859028,38.756794],[-83.943979,38.783617],[-83.975486,38.787437],[-84.044487,38.770573],[-84.091526,38.774239],[-84.212905,38.805707],[-84.230182,38.826547],[-84.233265,38.842672],[-84.232343,38.884326],[-84.236564,38.896372],[-84.257011,38.923208],[-84.286837,38.953823],[-84.295076,38.968296],[-84.304699,39.006456],[-84.455343,39.120361],[-84.754449,39.146659],[-84.783992,39.118061],[-84.830882,39.102062],[-84.897171,39.052408],[-84.877029,38.909017],[-84.863744,38.898015],[-84.812047,38.89494],[-84.78458,38.87532],[-84.813636,38.78524],[-85.172968,38.687933],[-85.208008,38.69295],[-85.258846,38.737755],[-85.434066,38.729456],[-85.452114,38.709349],[-85.453924,38.679883],[-85.438743,38.65932],[-85.439198,38.608589],[-85.416177,38.564949],[-85.423077,38.531581],[-85.924793,38.024211],[-85.951468,38.005608],[-86.032469,37.9901],[-86.038189,37.95935],[-86.063021,37.972897],[-86.078737,38.000072],[-86.108156,38.013416],[-86.178984,38.011309],[-86.364194,38.19821],[-86.598108,37.867382],[-87.033444,37.906593],[-87.111133,37.782513],[-87.162319,37.84016],[-87.21912,37.848383],[-87.302789,37.898685],[-87.335398,37.907565],[-87.361639,37.921004],[-87.38084,37.93582],[-87.450602,37.941451],[-87.504333,37.90806],[-87.550334,37.92489],[-87.577916,37.971542],[-87.601417,37.972542],[-87.628416,37.92145],[-87.619215,37.905978],[-87.592214,37.887064],[-87.58873,37.860985],[-87.615399,37.831975],[-87.679188,37.836321],[-87.66282,37.881449],[-87.666883,37.896644],[-87.687689,37.903457],[-87.903623,37.925604],[-87.938366,37.890802],[-87.936229,37.867937],[-87.909906,37.842383],[-87.907314,37.80713],[-87.959004,37.772732],[-88.011255,37.801535],[-88.02803,37.799225]],[[-79.476638,38.457228],[-79.649075,38.591516],[-79.662875,38.570416],[-79.672975,38.528717],[-79.662074,38.515518],[-79.680075,38.510618],[-79.694507,38.494233],[-79.699424,38.474715],[-79.688882,38.458715],[-79.689675,38.43144],[-79.727053,38.362234],[-79.742772,38.353367],[-79.764175,38.356635],[-79.809935,38.304682],[-79.795448,38.290228],[-79.788945,38.268704],[-79.82101,38.248278],[-79.846261,38.24027],[-79.921027,38.179955],[-79.945158,38.132009],[-79.938952,38.111619],[-79.926331,38.107152],[-79.959845,38.063698],[-80.106891,38.055846],[-80.18798,38.039103],[-80.361694,37.689638],[-80.531975,37.861401],[-80.6818231,37.6018274],[-80.428725,37.6140245],[-80.3668555,37.6359929],[-80.3362231,37.6869601],[-80.296107,37.691791],[-80.220985,37.627767],[-80.25892,37.595499],[-80.328504,37.564315],[-80.330306,37.536245],[-80.309347,37.527381],[-80.222893,37.544759],[-79.785978,37.792912],[-79.571185,37.601701],[-79.209995,37.700523],[-79.043955,37.931662],[-79.258418,37.960018],[-79.245285,38.335886],[-79.476638,38.457228]]]]},"properties":{"name":"RFCW","gridLoss":{"display":"4.49%","value":0.0449},"fuelMixCategories":{"renewable":4.8,"non-renewable":95.2,"non-renewable (excluding nuclear)":67.6,"renewable (excluding hydro)":3.9,"nuclear":27.6,"hydro":0.9},"fullName":"RFC West","emissionFactor":{"co2EmissionRate":{"value":1243.4,"display":"1,243.4","units":"lb/MWh"},"noxEmissionRate":{"value":0.9,"display":"0.9","units":"lb/MWh"},"so2EmissionRate":{"value":1.2,"display":"1.2","units":"lb/MWh"}},"fuelMix":{"coal":49.8,"oil":0.4,"gas":16.7,"nuclear":27.6,"hydro":0.9,"biomass":0.6,"wind":3.2,"solar":0.1,"geothermal":0,"otherFossilFuel":0.7,"otherUnknownFuel":0.1}}}, -{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-102.86545,36.999591],[-102.986976,36.998524],[-103.002375,37.000204],[-103.250493,36.999578],[-103.625507,36.998629],[-104.000525,36.996217],[-105.029228,36.99273],[-105.1208,36.995428],[-105.66472,36.995875],[-106.591178,36.992923],[-107.635627,37.000004],[-108.047311,36.999729],[-108.058433,36.989292],[-108.106393,36.967392],[-108.100774,36.923174],[-108.190864,36.928894],[-108.191374,36.880589],[-108.242941,36.929082],[-108.250635,36.999562],[-109.045223,36.999085],[-109.051163,39.660473],[-108.55463,39.650166],[-108.618814,39.955592],[-108.217857,40.11346],[-108.621052,40.222371],[-108.511178,40.44939],[-108.778261,40.502479],[-108.846319,40.465111],[-109.050071,40.540437],[-109.04825,40.653601],[-109.123485,40.653779],[-109.123471,40.684127],[-109.161064,40.683817],[-109.203253,40.858642],[-110.000709,40.813751],[-110.001031,40.997658],[-109.5437204,40.998398],[-109.2514937,41.0011194],[-108.884138,41.000094],[-108.257751,41.000108],[-108.046539,41.002065],[-107.918422,41.002037],[-107.929737,41.659597],[-107.509721,41.657452],[-107.522723,42.261757],[-110.188772,42.270737],[-109.364427,42.930651],[-109.754717,43.4632],[-110.051571,43.464784],[-110.05318,44.008023],[-109.789901,43.803252],[-109.392425,44.333723],[-108.573679,44.461604],[-108.542036,44.77279],[-108.592614,44.74481],[-108.592276,44.871384],[-108.670615,44.882741],[-108.644368,44.897689],[-108.661966,44.953162],[-108.621535,44.947841],[-108.621313,45.000278],[-107.606992,45.000931],[-107.570086,44.969117],[-107.554931,44.96375],[-107.453568,44.967784],[-107.386376,44.907129],[-107.189027,44.91937],[-107.220335,44.819634],[-107.058696,44.824373],[-106.97974,44.912101],[-107.043112,44.937121],[-107.045313,44.95658],[-107.079714,44.969762],[-107.090158,44.997023],[-107.0555,44.996356],[-106.625612,44.994928],[-106.250587,44.993689],[-105.928185,44.993647],[-105.913383,45.000941],[-104.772766,44.999158],[-104.365938,44.998151],[-104.040303,44.997771],[-104.039958,45.212926],[-102.957726,45.212641],[-102.9644298,44.5028963],[-102.656953,44.473977],[-102.6085,43.99504],[-102.138938,43.820692],[-103.001051,43.603702],[-103.000897,43.000743],[-102.694193,42.999982],[-102.694594,42.914159],[-102.615994,42.871145],[-102.6178,42.792145],[-102.538368,42.785336],[-102.49162,42.36863],[-102.2772213,42.3644347],[-102.302292,42.529363],[-102.038169,42.443307],[-101.984631,41.394713],[-101.500449,41.395354],[-101.476703,40.698175],[-101.911987,40.56703],[-101.684635,40.523171],[-101.892394,40.349373],[-101.891917,40.20889],[-101.814853,40.175533],[-101.815789,40.149878],[-101.812807,40.002851],[-102.051744,40.003078],[-102.0423106,36.9931101],[-102.86545,36.999591]],[[-105.144867,41.656058],[-104.654107,41.813124],[-104.654497,42.189088],[-104.891316,42.12587],[-104.931667,42.4018],[-104.654956,42.412656],[-104.64127,43.025643],[-104.9769206,42.8895453],[-104.899941,43.499641],[-105.924895,43.525932],[-105.687922,43.255097],[-105.797526,42.557908],[-105.59942,42.297536],[-105.28391,42.431403],[-105.378625,41.701771],[-105.144867,41.656058]],[[-106.277989,43.282492],[-106.078069,43.494471],[-106.404184,43.49277],[-106.277989,43.282492]],[[-107.14314,44.558341],[-106.894846,44.621005],[-107.24854,44.661059],[-107.14314,44.558341]]]},"properties":{"name":"RMPA","gridLoss":{"display":"4.23%","value":0.0423},"fuelMixCategories":{"renewable":28.3,"non-renewable":71.7,"non-renewable (excluding nuclear)":71.7,"renewable (excluding hydro)":16.2,"nuclear":0,"hydro":12.1},"fullName":"WECC Rockies","emissionFactor":{"co2EmissionRate":{"value":1367.8,"display":"1,367.8","units":"lb/MWh"},"noxEmissionRate":{"value":1,"display":"1.0","units":"lb/MWh"},"so2EmissionRate":{"value":0.6,"display":"0.6","units":"lb/MWh"}},"fuelMix":{"coal":51.3,"oil":0,"gas":20.2,"nuclear":0,"hydro":12.1,"biomass":0.3,"wind":15.1,"solar":0.8,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0.1}}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-92.834918,39.085066],[-93.056095,39.238288],[-92.790369,39.343587],[-92.834918,39.085066]]],[[[-93.447694,37.275289],[-93.377839,36.904606],[-93.61246,36.849745],[-93.644907,37.141084],[-93.902818,37.175605],[-94.04382,36.960505],[-94.205451,37.022445],[-94.066376,36.830206],[-94.256064,36.617984],[-94.6177331,36.6243378],[-94.617921,36.998184],[-94.820108,36.998563],[-94.8129,36.987055],[-94.812589,36.94362],[-94.864362,36.923261],[-94.883298,36.931311],[-94.884854,36.998847],[-96.500288,36.998644],[-98.128165,36.998106],[-98.367151,37.210194],[-98.622249,36.998934],[-100.498885,37.00085],[-101.374338,36.996088],[-101.632234,36.994919],[-101.8660854,36.9937639],[-102.0423106,36.9931101],[-102.051744,40.003078],[-101.812807,40.002851],[-101.455314,40.002551],[-101.178884,40.002459],[-100.927279,40.002163],[-100.509528,40.001793],[-100.23181,40.001614],[-99.290687,40.001994],[-98.972379,40.002228],[-98.530258,40.002391],[-96.889293,40.0014785],[-95.97707,40.000582],[-95.592039,40.000218],[-95.3589364,39.9998927],[-95.255407,39.998679],[-95.16174,40.261402],[-94.933981,40.230331],[-95.049388,40.55455],[-94.708021,40.572242],[-94.326349,40.386657],[-94.580124,39.907557],[-94.338535,39.834466],[-94.431964,39.311454],[-93.871623,39.236089],[-93.915991,39.086053],[-93.505051,39.136733],[-93.645324,39.437945],[-92.863266,39.612994],[-92.873688,39.345443],[-93.10607,39.383725],[-93.303728,39.066975],[-93.7116799,38.993812],[-93.592728,38.587318],[-93.993868,38.386629],[-93.850265,38.184428],[-93.4366219,38.2035828],[-93.511421,37.927596],[-93.065199,38.062479],[-92.924718,37.684301],[-93.270767,37.353501],[-93.447694,37.275289]],[[-93.458966,37.73715],[-93.507001,37.541323],[-93.275234,37.477631],[-93.306859,37.887718],[-93.458966,37.73715]]]]},"properties":{"name":"SPNO","gridLoss":{"display":"4.49%","value":0.0449},"fuelMixCategories":{"renewable":20.2,"non-renewable":79.8,"non-renewable (excluding nuclear)":67.4,"renewable (excluding hydro)":19.9,"nuclear":12.4,"hydro":0.3},"fullName":"SPP North","emissionFactor":{"co2EmissionRate":{"value":1412.4,"display":"1,412.4","units":"lb/MWh"},"noxEmissionRate":{"value":0.8,"display":"0.8","units":"lb/MWh"},"so2EmissionRate":{"value":0.5,"display":"0.5","units":"lb/MWh"}},"fuelMix":{"coal":57.9,"oil":0.1,"gas":9.5,"nuclear":12.4,"hydro":0.3,"biomass":0.1,"wind":19.8,"solar":0,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0}}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-94.681297,31.843947],[-94.519128,31.744036],[-94.63623,31.618505],[-94.681297,31.843947]]],[[[-101.556887,33.394761],[-101.557192,33.241118],[-101.963946,33.370447],[-101.556887,33.394761]]],[[[-93.447694,37.275289],[-93.270767,37.353501],[-93.225291,37.224256],[-93.447694,37.275289]]],[[[-104.847758,32.00052],[-104.84237,32.76776],[-104.680417,32.798765],[-104.840609,32.963308],[-104.595026,33.291901],[-103.766177,33.139525],[-103.720743,33.569679],[-103.506823,33.657372],[-103.718836,33.640235],[-104.087759,34.112036],[-104.12941,34.779312],[-104.587624,34.881078],[-104.559329,35.216176],[-104.912005,35.695863],[-104.367312,35.781427],[-104.134093,36.218288],[-103.793983,36.173995],[-103.682076,35.940827],[-103.364971,36.086365],[-103.374973,35.740013],[-103.125799,35.739781],[-103.1608993,35.8906403],[-103.1427075,35.8993145],[-103.041168,35.899024],[-103.0419238,36.5004008],[-102.875478,36.500238],[-102.6431211,36.5004763],[-103.002206,36.66202],[-102.804987,36.719211],[-102.822162,36.961273],[-102.841004,36.986886],[-102.86545,36.999591],[-102.0423106,36.9931101],[-101.8660854,36.9937639],[-101.632234,36.994919],[-101.374338,36.996088],[-100.498885,37.00085],[-98.622249,36.998934],[-98.367151,37.210194],[-98.128165,36.998106],[-96.500288,36.998644],[-94.884854,36.998847],[-94.883298,36.931311],[-94.864362,36.923261],[-94.812589,36.94362],[-94.8129,36.987055],[-94.820108,36.998563],[-94.617921,36.998184],[-94.6177331,36.6243378],[-94.256064,36.617984],[-93.521129,36.498881],[-93.433743,36.743425],[-93.61246,36.849745],[-93.377839,36.904606],[-93.127128,36.707265],[-93.169908,36.583836],[-93.098295,36.52611],[-93.151045,36.497879],[-93.296074,36.498454],[-93.29576,36.457],[-93.385985,36.487215],[-93.492972,36.435791],[-93.344697,35.979347],[-93.714095,35.769118],[-94.337728,36.057493],[-94.494274,35.870668],[-94.462332,34.462982],[-94.301221,34.440738],[-94.485875,33.637867],[-94.37888,33.587173],[-94.368711,33.577818],[-94.397653,33.555243],[-94.381667,33.544036],[-94.353593,33.544005],[-94.352653,33.560612],[-94.274473,33.558652],[-94.257063,33.583263],[-94.191143,33.557987],[-94.184308,33.594577],[-94.162267,33.588906],[-94.16201,33.580877],[-94.131382,33.552935],[-94.120861,33.567052],[-94.082642,33.575493],[-94.072157,33.553864],[-94.043385,33.551815],[-94.0432054,33.3541049],[-94.04302,33.020386],[-94.041111,33.019147],[-93.814554,33.019373],[-93.827262,33.008019],[-93.814566,32.968471],[-93.841028,32.946107],[-93.783234,32.784361],[-93.819201,32.735955],[-93.6185,32.630335],[-93.61824,32.352186],[-93.213673,32.236064],[-92.982132,31.877354],[-92.795816,32.049282],[-92.344288,31.765612],[-91.51474,31.609413],[-91.486519,31.586566],[-91.462018,31.586666],[-91.422716,31.597066],[-91.403916,31.589766],[-91.512577,31.318427],[-91.518757,31.2883],[-91.552244,31.267732],[-91.585879,31.263721],[-91.638373,31.283421],[-91.70143,31.549032],[-91.855908,31.496005],[-91.661373,30.857099],[-91.51562,30.861348],[-91.838333,30.480955],[-91.463833,30.102494],[-91.13647,30.052934],[-90.991761,29.732728],[-91.264418,29.471031],[-91.281301,29.481548],[-91.332549,29.48464],[-91.356625,29.515192],[-91.420449,29.515746],[-91.422723,29.553217],[-91.545949,29.520053],[-91.553536,29.632766],[-91.637476,29.648936],[-91.61848,29.710816],[-91.621825,29.731098],[-91.632987,29.742534],[-91.667128,29.745822],[-91.718781,29.738413],[-91.735915,29.749028],[-91.859298,29.703281],[-91.879884,29.75793],[-91.857025,29.787458],[-91.826203,29.781826],[-91.822237,29.799612],[-91.882756,29.835126],[-91.955971,29.838302],[-92.119539,29.736426],[-92.201631,29.753701],[-92.166388,29.702167],[-92.101586,29.69971],[-92.106012,29.612833],[-92.038097,29.617075],[-92.308368,29.533075],[-92.295832,29.593265],[-92.255596,29.667463],[-92.240921,29.751008],[-92.372317,29.849996],[-92.0755,30.027523],[-92.116428,30.239801],[-92.395508,30.078754],[-92.62514,30.301336],[-92.598397,30.68333],[-92.866669,30.685605],[-92.705645,30.899192],[-92.972215,31.15899],[-92.879756,31.317374],[-93.567271,31.178781],[-93.589119,31.16589],[-93.620829,31.271299],[-93.687512,31.310813],[-93.719708,31.50584],[-93.839384,31.599076],[-93.822599,31.773559],[-93.874837,31.822314],[-93.872989,31.836697],[-93.882879,31.854672],[-93.881679,31.868582],[-93.902069,31.879105],[-93.900616,31.896789],[-94.04272,31.999266],[-94.0426504,32.1669115],[-94.07049,32.17283],[-94.109291,32.165089],[-94.127205,32.173975],[-94.163035,32.234749],[-94.207994,32.194682],[-94.332872,32.236858],[-94.985298,32.157201],[-95.083237,32.356552],[-95.594301,32.479859],[-95.515696,33.104359],[-94.918249,33.387565],[-94.7369994,33.2946641],[-94.897765,33.654871],[-94.758809,33.618904],[-94.753069,33.710754],[-94.732367,33.72194],[-94.816388,33.763964],[-94.827931,33.741054],[-94.849297,33.739586],[-94.869804,33.746054],[-94.953558,33.816012],[-94.943602,33.828065],[-94.968792,33.860886],[-94.992164,33.852035],[-95.0083828,33.866033],[-95.022325,33.859814],[-95.049025,33.864091],[-95.062354,33.903532],[-95.0763,33.902164],[-95.082408,33.879883],[-95.10074,33.895209],[-95.081816,33.907546],[-95.09011,33.920949],[-95.117593,33.904613],[-95.131643,33.916027],[-95.124701,33.934675],[-95.166686,33.939728],[-95.219359,33.961568],[-95.253536,33.894198],[-95.285302,33.898102],[-95.282179,33.875845],[-95.29536,33.872634],[-95.531527,33.881894],[-95.552388,33.889521],[-95.549146,33.90795],[-95.561887,33.931874],[-95.595562,33.941643],[-96.149226,33.837092],[-96.17691,33.813934],[-96.168293,33.802977],[-96.1652,33.780131],[-96.17806,33.760518],[-96.294867,33.764772],[-96.355947,33.687156],[-96.625877,33.84404],[-96.629205,33.850893],[-96.611635,33.869253],[-96.597349,33.875101],[-96.585361,33.888949],[-96.592949,33.895617],[-96.673449,33.912279],[-96.681494,33.894675],[-96.684727,33.862906],[-96.690708,33.849959],[-96.761588,33.824406],[-96.866438,33.85315],[-96.895729,33.896415],[-96.907486,33.950136],[-96.921564,33.959611],[-96.971891,33.936119],[-96.987801,33.954703],[-96.995678,33.936988],[-96.984939,33.904866],[-96.98377,33.890038],[-97.020727,33.847035],[-97.041615,33.837614],[-97.055534,33.855107],[-97.086033,33.854553],[-97.084143,33.840537],[-97.054159,33.834646],[-97.050211,33.816682],[-97.125951,33.717198],[-97.154368,33.724028],[-97.170137,33.735719],[-97.174802,33.747252],[-97.192993,33.759229],[-97.201007,33.912533],[-97.248238,33.90493],[-97.254185,33.865149],[-97.305733,33.886458],[-97.31342,33.865956],[-97.337293,33.861657],[-97.358662,33.829306],[-97.373792,33.819091],[-97.415913,33.817925],[-97.463618,33.842331],[-97.451553,33.875857],[-97.452232,33.89267],[-97.463346,33.905007],[-97.500961,33.919644],[-97.5246113,33.9118995],[-97.551542,33.897947],[-97.589255,33.903923],[-97.59698,33.920228],[-97.595421,33.941437],[-97.588828,33.951883],[-97.66149,33.990818],[-97.687694,33.98718],[-97.697565,33.978316],[-97.712349,33.951906],[-97.731138,33.9371138],[-97.763044,33.934146],[-97.805972,33.876572],[-97.865765,33.849393],[-97.957093,33.878859],[-97.984374,33.898024],[-97.957156,33.914455],[-97.946803,33.990893],[-97.97167,34.005435],[-98.041118,33.993457],[-98.084435,34.002894],[-98.103618,34.029208],[-98.083839,34.04172],[-98.120839,34.0845225],[-98.101938,34.14683],[-98.360018,34.15642],[-98.376862,34.147851],[-98.396218,34.119879],[-98.403593,34.089692],[-98.480276,34.06354],[-98.5558,34.136957],[-98.576244,34.144447],[-98.601407,34.16024],[-98.643224,34.164532],[-98.671529,34.148893],[-98.6901817,34.1330639],[-98.735472,34.135209],[-98.759529,34.115491],[-98.767549,33.975369],[-98.837273,33.994483],[-98.808713,33.818792],[-99.475606,33.834056],[-99.3282581,34.3948748],[-99.694528,34.378218],[-100.000382,34.560509],[-100.0003842,34.7969067],[-100.000385,35.125053],[-100.000389,35.465823],[-100.004444,35.461771],[-100.0408716,35.4614682],[-100.040779,35.447792],[-100.290027,35.499313],[-100.340019,35.619486],[-100.540198,35.619308],[-100.540222,36.056492],[-101.085708,36.057573],[-101.044538,35.357351],[-101.622942,35.183117],[-101.628443,34.807245],[-102.140311,34.747513],[-102.122947,33.623309],[-101.688612,33.536682],[-102.181906,33.553165],[-102.318018,33.388839],[-102.07593,33.389588],[-102.076215,32.959703],[-101.691284,32.961838],[-101.688753,32.52524],[-102.211028,32.523052],[-102.211255,32.086938],[-102.799087,32.085795],[-102.79894,31.651782],[-103.129091,31.835781],[-103.616431,31.651132],[-103.979829,32.00011],[-104.460846,32.000111],[-104.847758,32.00052]],[[-95.078303,35.638698],[-94.829207,35.638616],[-94.949681,35.870874],[-95.078303,35.638698]]]]},"properties":{"name":"SPSO","gridLoss":{"display":"4.49%","value":0.0449},"fuelMixCategories":{"renewable":22.3,"non-renewable":77.7,"non-renewable (excluding nuclear)":77.7,"renewable (excluding hydro)":18.7,"nuclear":0,"hydro":3.6},"fullName":"SPP South","emissionFactor":{"co2EmissionRate":{"value":1248.3,"display":"1,248.3","units":"lb/MWh"},"noxEmissionRate":{"value":0.8,"display":"0.8","units":"lb/MWh"},"so2EmissionRate":{"value":1.7,"display":"1.7","units":"lb/MWh"}},"fuelMix":{"coal":34.8,"oil":1.9,"gas":40.7,"nuclear":0,"hydro":3.6,"biomass":1.5,"wind":17.1,"solar":0.1,"geothermal":0,"otherFossilFuel":0.2,"otherUnknownFuel":0.1}}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-91.8212985,29.4749605],[-92.0194464,29.5888901],[-91.7083,29.558923],[-91.8212985,29.4749605]]],[[[-93.567271,31.178781],[-92.879756,31.317374],[-92.972215,31.15899],[-92.705645,30.899192],[-92.866669,30.685605],[-92.598397,30.68333],[-92.62514,30.301336],[-92.395508,30.078754],[-92.116428,30.239801],[-92.0755,30.027523],[-92.372317,29.849996],[-92.240921,29.751008],[-92.255596,29.667463],[-92.295832,29.593265],[-92.308368,29.533075],[-92.336829,29.537357],[-92.397603,29.550832],[-92.416349,29.551708],[-92.473585,29.561082],[-92.536209,29.56709],[-92.607248,29.577609],[-92.623937,29.585057],[-92.738723,29.619848],[-92.984926,29.721766],[-93.176076,29.770033],[-93.231269,29.777757],[-93.836062,29.694663],[-93.904488,29.794731],[-93.78485,29.850235],[-93.756717,29.969123],[-93.777942,29.978626],[-93.794744,29.99802],[-93.92938,29.858994],[-93.938073,29.78146],[-93.872881,29.733002],[-93.840435,29.68676],[-93.864422,29.677607],[-93.946963,29.682784],[-94.044886,29.674287],[-94.142726,29.643003],[-94.457132,29.522016],[-94.489521,29.516206],[-94.54578,29.572377],[-94.56912,29.572798],[-94.602939,29.558962],[-94.686545,29.538197],[-94.709017,29.537433],[-94.740943,29.526682],[-94.779557,29.530215],[-94.788047,29.547395],[-94.749053,29.55418],[-94.753644,29.561128],[-94.735828,29.576369],[-94.706102,29.628521],[-94.698358,29.65248],[-94.689066,29.75129],[-94.725184,29.788119],[-94.979664,29.67827],[-95.170434,30.091763],[-95.7815971,30.0370142],[-95.76035,29.701897],[-95.9292311,29.6385625],[-96.305321,29.69573],[-95.8206608,30.4666945],[-96.12634,30.449278],[-96.201604,30.937842],[-96.54808,30.919713],[-96.490488,31.188354],[-96.731041,31.444669],[-96.359203,31.438086],[-96.333293,31.757827],[-95.961342,31.672382],[-95.601005,32.061483],[-95.099989,31.518982],[-95.2302325,31.1988698],[-94.865801,31.526957],[-94.554839,31.435123],[-94.357632,31.259591],[-94.4433443,31.036513],[-93.731372,31.168403],[-93.870567,30.789456],[-93.705081,30.726793],[-93.553626,30.83514],[-93.57784,31.00106],[-93.565458,31.012678],[-93.540355,31.008135],[-93.533415,31.018956],[-93.508893,31.029332],[-93.567271,31.178781]]],[[[-91.264418,29.471031],[-90.991761,29.732728],[-91.13647,30.052934],[-91.463833,30.102494],[-91.838333,30.480955],[-91.51562,30.861348],[-91.661373,30.857099],[-91.855908,31.496005],[-91.70143,31.549032],[-91.638373,31.283421],[-91.585879,31.263721],[-91.552244,31.267732],[-91.518757,31.2883],[-91.512577,31.318427],[-91.508859,31.291644],[-91.518578,31.275284],[-91.558685,31.262176],[-91.574494,31.26129],[-91.621359,31.267812],[-91.641253,31.266917],[-91.654027,31.255753],[-91.636942,30.999417],[-91.497391,30.999007],[-91.250109,30.999272],[-91.237914,31.020618],[-91.244891,31.032735],[-91.235097,31.05278],[-91.20364,31.046735],[-91.233464,31.08701],[-91.196401,31.173713],[-90.869887,31.169729],[-91.042066,31.336082],[-90.940168,31.610553],[-90.6948847,31.4974336],[-90.680279,31.188344],[-90.691875,31.63964],[-90.112502,31.769705],[-90.907741,32.131888],[-91.338414,31.851261],[-91.51474,31.609413],[-92.344288,31.765612],[-92.795816,32.049282],[-92.982132,31.877354],[-93.213673,32.236064],[-93.61824,32.352186],[-93.6185,32.630335],[-93.819201,32.735955],[-93.783234,32.784361],[-93.841028,32.946107],[-93.814566,32.968471],[-93.827262,33.008019],[-93.814554,33.019373],[-94.041111,33.019147],[-94.04302,33.020386],[-94.0432054,33.3541049],[-94.043385,33.551815],[-94.072157,33.553864],[-94.082642,33.575493],[-94.120861,33.567052],[-94.131382,33.552935],[-94.16201,33.580877],[-94.162267,33.588906],[-94.184308,33.594577],[-94.191143,33.557987],[-94.257063,33.583263],[-94.274473,33.558652],[-94.352653,33.560612],[-94.353593,33.544005],[-94.381667,33.544036],[-94.397653,33.555243],[-94.368711,33.577818],[-94.37888,33.587173],[-94.485875,33.637867],[-94.301221,34.440738],[-94.462332,34.462982],[-94.494274,35.870668],[-94.337728,36.057493],[-93.714095,35.769118],[-93.344697,35.979347],[-93.492972,36.435791],[-93.385985,36.487215],[-93.29576,36.457],[-93.296074,36.498454],[-93.151045,36.497879],[-91.672344,36.499463],[-91.456194,36.646885],[-91.449998,36.497833],[-90.154611,36.497972],[-89.889931,36.386376],[-89.959267,36.146723],[-90.37789,35.995683],[-89.733096,36.000608],[-89.718801,35.985015],[-89.71304,35.961645],[-89.644838,35.904352],[-89.765689,35.8913],[-89.704388,35.819607],[-89.821217,35.756716],[-89.846344,35.755732],[-89.872846,35.741299],[-89.905539,35.759064],[-89.950279,35.738493],[-89.957924,35.585499],[-89.942877,35.557922],[-89.896503,35.54692],[-89.791418,35.622573],[-89.699755,35.364192],[-90.095137,35.180615],[-90.137074,35.07491],[-90.051829,35.101413],[-90.037237,35.012404],[-90.043036,34.994964],[-90.309297,34.995695],[-90.29535,34.975731],[-90.251993,34.950914],[-90.244477,34.937596],[-90.323051,34.84643],[-90.340236,34.860348],[-90.35548,34.852068],[-90.414864,34.831847],[-90.483969,34.877176],[-90.451758,34.741905],[-90.568082,34.724802],[-90.473636,34.700319],[-90.463734,34.691094],[-90.466041,34.674313],[-90.479719,34.659934],[-90.517169,34.630929],[-90.588419,34.670963],[-90.540952,34.550854],[-90.589921,34.484793],[-90.586011,34.462347],[-90.565809,34.435401],[-90.564588,34.415667],[-90.593372,34.371787],[-90.381972,34.423965],[-90.576003,34.015955],[-90.451644,33.811378],[-89.927475,33.676473],[-89.7852534,33.4867529],[-89.795588,33.6767],[-89.506921,33.684923],[-89.6631949,33.4531686],[-89.523466,33.285862],[-89.909572,33.32897],[-89.640516,32.954593],[-90.247659,32.030968],[-89.322692,32.223472],[-89.487882,31.771017],[-89.967812,31.682739],[-90.040451,31.359087],[-90.244515,31.487904],[-90.383568,31.308648],[-89.731673,31.004818],[-89.842876,30.66422],[-89.524504,30.180754],[-89.555591,30.180522],[-89.585951,30.151241],[-89.6861,30.178618],[-89.718086,30.16744],[-90.018018,30.320527],[-90.117383,30.366638],[-90.123813,30.3674],[-90.243828,30.363498],[-90.368007,30.055809],[-90.031474,30.034073],[-89.880839,30.147905],[-89.834428,30.096798],[-89.684704,30.172343],[-89.629469,30.143772],[-89.679034,30.106196],[-89.683233,30.076411],[-89.721913,30.065958],[-89.716378,30.026223],[-89.733324,30.022055],[-89.765078,30.043846],[-89.816998,30.045873],[-89.843609,30.023],[-89.859626,30.002101],[-89.836571,29.943738],[-89.805542,29.932405],[-89.775459,29.937417],[-89.748493,29.945831],[-89.730011,29.95846],[-89.713279,29.946029],[-89.747352,29.928838],[-89.742479,29.908171],[-89.713155,29.878692],[-89.690217,29.868104],[-89.641654,29.86345],[-89.593623,29.886038],[-89.5928695,29.9166493],[-89.5819111,29.9294529],[-89.581097,29.950979],[-89.5707078,29.9765011],[-89.581213,29.993308],[-89.555895,30.000026],[-89.5327025,30.0159801],[-89.489624,30.040622],[-89.494198,30.071521],[-89.393605,30.036206],[-89.409301,30.020266],[-89.427385,30.028057],[-89.446338,30.022216],[-89.463407,30.011023],[-89.356707,29.867898],[-89.414537,29.821446],[-89.372304,29.802074],[-89.345407,29.799106],[-89.337076,29.786897],[-89.293424,29.796338],[-89.28944,29.759703],[-89.388779,29.791178],[-89.416911,29.777715],[-89.453041,29.786234],[-89.706894,29.542915],[-89.677347,29.531738],[-89.696405,29.510924],[-89.676545,29.490438],[-89.644157,29.492495],[-89.548664,29.423735],[-89.576947,29.407791],[-89.521621,29.369773],[-89.264564,29.29513],[-89.203329,29.149019],[-89.648635,29.411937],[-89.629329,29.321636],[-89.677556,29.298605],[-89.691563,29.312462],[-89.71469,29.302701],[-89.78573,29.311247],[-89.819859,29.310242],[-89.837821,29.453466],[-89.814688,29.456401],[-89.762481,29.450233],[-89.758418,29.465393],[-89.904212,29.513237],[-90.105492,29.466381],[-90.055153,29.380495],[-90.162187,29.369185],[-90.096642,29.207606],[-90.082943,29.193684],[-90.063043,29.208861],[-90.061709,29.182836],[-90.129968,29.137275],[-90.222149,29.085863],[-90.275391,29.169759],[-90.269823,29.204811],[-90.284301,29.220278],[-90.292543,29.246262],[-90.308098,29.271916],[-90.303908,29.286364],[-90.361201,29.353453],[-90.554656,29.418215],[-90.608259,29.360879],[-90.584573,29.319557],[-90.59779,29.2923],[-90.580513,29.274137],[-90.587956,29.25771],[-90.583924,29.242887],[-90.564621,29.241902],[-90.570839,29.207263],[-90.609223,29.205057],[-90.625,29.237379],[-90.648913,29.258039],[-90.66838,29.205262],[-90.663546,29.17908],[-90.694449,29.119454],[-90.743018,29.144105],[-90.776763,29.135658],[-90.837271,29.102178],[-90.877584,29.104891],[-91.264418,29.471031]],[[-90.902366,33.659989],[-90.920651,33.530295],[-90.606102,33.602555],[-90.902366,33.659989]]]]},"properties":{"name":"SRMV","gridLoss":{"display":"4.49%","value":0.0449},"fuelMixCategories":{"renewable":3.3,"non-renewable":96.7,"non-renewable (excluding nuclear)":75.5,"renewable (excluding hydro)":1.8,"nuclear":21.2,"hydro":1.4},"fullName":"SERC Mississippi Valley","emissionFactor":{"co2EmissionRate":{"value":838.9,"display":"838.9","units":"lb/MWh"},"noxEmissionRate":{"value":0.8,"display":"0.8","units":"lb/MWh"},"so2EmissionRate":{"value":0.7,"display":"0.7","units":"lb/MWh"}},"fuelMix":{"coal":14,"oil":1.1,"gas":58.7,"nuclear":21.2,"hydro":1.4,"biomass":1.8,"wind":0,"solar":0,"geothermal":0,"otherFossilFuel":1.4,"otherUnknownFuel":0.4}}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-95.078303,35.638698],[-94.949681,35.870874],[-94.829207,35.638616],[-95.078303,35.638698]]],[[[-94.256064,36.617984],[-94.066376,36.830206],[-94.205451,37.022445],[-94.04382,36.960505],[-93.902818,37.175605],[-93.644907,37.141084],[-93.61246,36.849745],[-93.433743,36.743425],[-93.521129,36.498881],[-94.256064,36.617984]]],[[[-93.458966,37.73715],[-93.306859,37.887718],[-93.275234,37.477631],[-93.507001,37.541323],[-93.458966,37.73715]]],[[[-93.151045,36.497879],[-93.098295,36.52611],[-93.169908,36.583836],[-93.127128,36.707265],[-93.377839,36.904606],[-93.447694,37.275289],[-93.225291,37.224256],[-93.270767,37.353501],[-92.924718,37.684301],[-93.065199,38.062479],[-93.511421,37.927596],[-93.4366219,38.2035828],[-93.850265,38.184428],[-93.993868,38.386629],[-93.592728,38.587318],[-93.7116799,38.993812],[-93.303728,39.066975],[-93.10607,39.383725],[-92.873688,39.345443],[-92.863266,39.612994],[-93.645324,39.437945],[-93.505051,39.136733],[-93.915991,39.086053],[-93.871623,39.236089],[-94.431964,39.311454],[-94.338535,39.834466],[-94.580124,39.907557],[-94.326349,40.386657],[-94.708021,40.572242],[-94.537063,40.570795],[-94.213248,40.572005],[-94.03422,40.573587],[-93.816118,40.577128],[-93.720185,40.577542],[-93.552385,40.580335],[-93.39854,40.580235],[-93.4421522,40.6813899],[-93.556496,40.673538],[-93.556325,40.754179],[-93.189269,41.452544],[-92.5107515,41.1367921],[-92.410678,41.267266],[-92.042749,41.163436],[-91.715021,41.438603],[-91.582269,41.163291],[-91.331746,41.175969],[-91.295474,40.775014],[-91.111941,40.697019],[-91.090073,40.824639],[-90.962916,40.924958],[-90.951967,40.958238],[-90.958142,40.979768],[-90.945949,41.006495],[-90.942254,41.034703],[-90.946627,41.096633],[-90.989663,41.155716],[-91.009594,41.166239],[-91.041856,41.166461],[-91.112334,41.239003],[-91.114186,41.25003],[-91.08688,41.294372],[-91.073553,41.310481],[-91.071553,41.339651],[-91.065058,41.369102],[-91.051934,41.384483],[-91.045063,41.414873],[-90.781608,41.451995],[-90.781729,41.439766],[-90.810514,41.435991],[-90.791427,41.39856],[-90.849682,41.362591],[-90.821338,41.301409],[-90.494115,41.355118],[-90.34111,41.221413],[-90.254106,41.522531],[-89.895354,41.723942],[-89.747262,41.58441],[-88.4343959,41.716815],[-88.31451,41.577984],[-88.63504,41.471294],[-88.627265,41.270492],[-89.162265,41.103988],[-89.066934,40.926084],[-88.13074,40.93922],[-88.164646,41.130361],[-87.963534,41.001047],[-87.526642,41.12145],[-87.658747,39.135997],[-87.513347,38.956001],[-87.552028,38.860318],[-87.525894,38.848795],[-87.526816,38.81737],[-87.4956898,38.7844493],[-87.496282,38.766313],[-87.506172,38.733726],[-87.519511,38.710485],[-87.522039,38.693351],[-87.534484,38.68172],[-87.597248,38.665314],[-87.62098,38.637655],[-87.670071,38.545237],[-87.656145,38.521668],[-87.645372,38.513836],[-87.652366,38.50322],[-87.669811,38.507179],[-87.714047,38.47988],[-87.744639,38.477271],[-87.75618,38.462538],[-87.730821,38.449228],[-87.743772,38.413116],[-87.836496,38.285487],[-87.878303,38.30785],[-87.906842,38.269634],[-87.919292,38.275909],[-87.908915,38.290479],[-87.915554,38.300455],[-87.93733,38.292432],[-87.984781,38.228743],[-88.02803,37.799225],[-88.038769,37.784308],[-88.05097,37.7526],[-88.063802,37.738646],[-88.125034,37.707095],[-88.159373,37.661847],[-88.133393,37.574235],[-88.105586,37.55618],[-88.091037,37.537642],[-88.069019,37.525297],[-88.068117,37.481594],[-88.095819,37.473025],[-88.278499,37.453271],[-88.312586,37.440591],[-88.330623,37.429317],[-88.348405,37.410727],[-88.363888,37.401958],[-88.397341,37.421644],[-88.410076,37.425241],[-88.476592,37.386876],[-88.515939,37.284044],[-88.447765,37.203527],[-88.432376,37.161645],[-88.424382,37.152424],[-88.458949,37.073797],[-88.504438,37.065265],[-88.545404,37.070004],[-88.853851,37.20349],[-88.858267,37.196195],[-88.831936,37.185444],[-88.825379,37.143845],[-88.789937,37.138073],[-88.797935,37.037363],[-88.883654,36.961325],[-88.886571,37.038391],[-88.95016,37.073876],[-88.931623,37.116933],[-88.951878,37.122908],[-88.944789,37.167647],[-88.967534,37.172235],[-88.97879,37.197773],[-89.154505,37.088907],[-89.179046,37.02108],[-89.166447,37.003338],[-89.132686,36.9822],[-89.118301,36.981879],[-89.0994937,36.9639978],[-89.1591026,36.6663964],[-89.2272026,36.5694897],[-89.258319,36.564948],[-89.3262042,36.6319806],[-89.356511,36.628439],[-89.453082,36.461285],[-89.566818,36.564216],[-89.733096,36.000608],[-90.37789,35.995683],[-89.959267,36.146723],[-89.889931,36.386376],[-90.154611,36.497972],[-91.449998,36.497833],[-91.456194,36.646885],[-91.672344,36.499463],[-93.151045,36.497879]],[[-92.834918,39.085066],[-92.790369,39.343587],[-93.056095,39.238288],[-92.834918,39.085066]]]]},"properties":{"name":"SRMW","gridLoss":{"display":"4.49%","value":0.0449},"fuelMixCategories":{"renewable":4.9,"non-renewable":95.1,"non-renewable (excluding nuclear)":80,"renewable (excluding hydro)":3.6,"nuclear":15.1,"hydro":1.2},"fullName":"SERC Midwest","emissionFactor":{"co2EmissionRate":{"value":1612.6,"display":"1,612.6","units":"lb/MWh"},"noxEmissionRate":{"value":1.1,"display":"1.1","units":"lb/MWh"},"so2EmissionRate":{"value":2.4,"display":"2.4","units":"lb/MWh"}},"fuelMix":{"coal":71.4,"oil":0.1,"gas":8.3,"nuclear":15.1,"hydro":1.2,"biomass":0.1,"wind":3.5,"solar":0,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0.2}}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-85.4309192,29.9500295],[-85.482163,29.963587],[-85.4863802,29.9781767],[-85.526732,30.006543],[-85.551759,30.030244],[-85.686991,30.120875],[-85.391448,30.025415],[-85.389816,29.95906],[-85.421959,29.966564],[-85.4309192,29.9500295]]],[[[-91.512577,31.318427],[-91.403916,31.589766],[-91.422716,31.597066],[-91.462018,31.586666],[-91.486519,31.586566],[-91.51474,31.609413],[-91.338414,31.851261],[-90.907741,32.131888],[-90.112502,31.769705],[-90.691875,31.63964],[-90.680279,31.188344],[-90.6948847,31.4974336],[-90.940168,31.610553],[-91.042066,31.336082],[-90.869887,31.169729],[-91.196401,31.173713],[-91.233464,31.08701],[-91.20364,31.046735],[-91.235097,31.05278],[-91.244891,31.032735],[-91.237914,31.020618],[-91.250109,30.999272],[-91.497391,30.999007],[-91.636942,30.999417],[-91.654027,31.255753],[-91.641253,31.266917],[-91.621359,31.267812],[-91.574494,31.26129],[-91.558685,31.262176],[-91.518578,31.275284],[-91.508859,31.291644],[-91.512577,31.318427]]],[[[-90.902366,33.659989],[-90.606102,33.602555],[-90.920651,33.530295],[-90.902366,33.659989]]],[[[-83.352486,34.715994],[-83.551766,34.834252],[-83.323927,34.789542],[-83.352486,34.715994]]],[[[-89.927475,33.676473],[-89.795588,33.6767],[-89.7852534,33.4867529],[-89.927475,33.676473]]],[[[-85.616044,30.134255],[-85.646311,30.26179],[-85.842166,30.286105],[-85.849188,30.23184],[-85.743133,30.211586],[-85.751839,30.170958],[-85.709571,30.147151],[-85.733052,30.123177],[-85.786401,30.163451],[-85.8400946,30.1950833],[-85.922584,30.237926],[-86.085024,30.302118],[-86.281681,30.359286],[-86.34612,30.371658],[-86.4338159,30.3824836],[-86.5036914,30.3824072],[-86.5157627,30.3968775],[-86.119112,30.379095],[-86.21144,30.481813],[-87.189596,30.35072],[-86.927725,30.460658],[-86.999419,30.584465],[-87.2671131,30.3441234],[-87.447037,30.317795],[-87.373629,30.459225],[-87.396659,30.453957],[-87.399813,30.42387],[-87.429948,30.417641],[-87.46272,30.362495],[-87.539801,30.306091],[-87.599182,30.343837],[-87.573012,30.270718],[-87.6559025,30.2500797],[-87.688688,30.247215],[-87.720928,30.254598],[-87.760478,30.249674],[-87.833619,30.227854],[-88.008611,30.223999],[-87.756008,30.277499],[-87.771094,30.310381],[-87.800447,30.326412],[-87.828114,30.352082],[-87.836542,30.365801],[-87.834836,30.412977],[-87.907454,30.411923],[-87.975962,30.715333],[-88.055699,30.656191],[-88.100857,30.510131],[-88.103029,30.491128],[-88.097137,30.471881],[-88.106964,30.453747],[-88.103865,30.425058],[-88.107169,30.378412],[-88.111657,30.36425],[-88.128053,30.33851],[-88.155085,30.327495],[-88.191965,30.317094],[-88.187132,30.360661],[-88.209887,30.359879],[-88.224781,30.371061],[-88.282658,30.388778],[-88.299787,30.385941],[-88.337484,30.404848],[-88.359315,30.405415],[-88.380748,30.398794],[-88.412001,30.383638],[-88.406118,30.3618],[-88.429585,30.354263],[-88.44492,30.354156],[-88.446626,30.337671],[-88.456082,30.328068],[-88.478558,30.318506],[-88.722577,30.342002],[-88.74494,30.346876],[-88.773658,30.366791],[-88.812205,30.385538],[-88.849708,30.431352],[-88.928501,30.432977],[-89.524504,30.180754],[-89.842876,30.66422],[-89.731673,31.004818],[-90.383568,31.308648],[-90.244515,31.487904],[-90.040451,31.359087],[-89.967812,31.682739],[-89.487882,31.771017],[-89.322692,32.223472],[-88.9260077,32.2241617],[-88.911018,31.875149],[-88.699962,32.018133],[-88.65426,31.950088],[-88.630915,31.964626],[-88.603352,31.939439],[-88.60332,31.954848],[-88.532602,31.928868],[-88.500304,31.931387],[-88.488827,31.925122],[-88.468792,31.930355],[-88.354292,32.87513],[-88.331014,33.07251],[-88.27886,33.500118],[-88.217479,33.978845],[-88.194901,33.981798],[-88.191193,33.933115],[-88.18683,34.019067],[-87.889228,34.112252],[-87.863902,33.812155],[-87.019574,34.129522],[-87.064067,33.841072],[-86.686296,33.797345],[-86.979894,33.703858],[-86.990907,33.238251],[-86.2187596,33.9855594],[-85.9691718,33.9145963],[-86.145563,33.679098],[-85.920884,33.596918],[-85.3848187,33.8919056],[-85.561311,34.749589],[-85.59711,34.933885],[-85.605166,34.984679],[-84.714639,34.988024],[-84.713785,34.966293],[-84.7431772,34.9397836],[-84.675458,34.929689],[-84.724582,34.832396],[-84.616784,34.800769],[-84.582345,34.82398],[-84.622829,34.857155],[-84.621483,34.98833],[-84.359363,34.988269],[-84.231585,34.779039],[-83.9632418,34.987434],[-83.638203,34.622165],[-83.338384,34.686995],[-83.304642,34.669562],[-83.293183,34.654296],[-83.255282,34.637697],[-83.232581,34.611598],[-83.208832,34.610706],[-83.19738,34.603198],[-83.172579,34.607798],[-83.140777,34.5627],[-83.122901,34.56013],[-83.084856,34.530968],[-83.072746,34.50435],[-83.034712,34.483495],[-82.995857,34.47229],[-82.97957,34.482702],[-82.954668,34.477302],[-82.940867,34.486103],[-82.922866,34.481403],[-82.902666,34.485903],[-82.882865,34.479003],[-82.755029,34.276067],[-82.742909,34.250926],[-82.740651,34.207624],[-82.717508,34.150504],[-82.557392,33.9461485],[-82.5428989,33.9410901],[-82.5250426,33.9434558],[-82.51295,33.93697],[-82.494812,33.911712],[-82.4560724,33.882392],[-82.429165,33.865844],[-82.4082166,33.8661835],[-82.346933,33.834299],[-82.299281,33.798939],[-82.2488268,33.7540027],[-82.196583,33.630583],[-81.934137,33.468337],[-81.913726,33.441453],[-81.931389,33.428475],[-81.925069,33.412348],[-81.935085,33.397244],[-81.924979,33.375141],[-81.940044,33.347394],[-81.7442683,33.1419545],[-81.7048399,33.1165922],[-81.6794852,33.1117391],[-81.645933,33.094352],[-81.6105542,33.0934442],[-81.5132675,33.0286908],[-81.49868,33.011337],[-81.5006862,32.9329838],[-81.483168,32.920964],[-81.4801736,32.8981357],[-81.451351,32.868584],[-81.457062,32.85039],[-81.426476,32.840773],[-81.418497,32.815664],[-81.427506,32.702243],[-81.393034,32.651544],[-81.41866,32.629393],[-81.406494,32.613047],[-81.381,32.589652],[-81.358523,32.582322],[-81.355619,32.571408],[-81.281257,32.549071],[-81.279694,32.536386],[-81.249828,32.517541],[-81.201429,32.469086],[-81.205356,32.451993],[-81.204925,32.422725],[-81.1724,32.362236],[-81.155133,32.350001],[-81.128643,32.34086],[-81.123634,32.294597],[-81.132334,32.269898],[-81.145235,32.263998],[-81.155483,32.240407],[-81.117234,32.117605],[-80.9081922,32.046921],[-80.892674,32.044074],[-80.866651,32.018505],[-80.8418237,32.0234346],[-80.847839,31.9877332],[-80.992276,31.858199],[-81.002282,31.867671],[-81.018808,31.868489],[-81.046592,31.877369],[-81.070157,31.87635],[-81.08835,31.882013],[-81.264296,31.531264],[-81.1993117,31.5367823],[-81.176084,31.516131],[-81.191973,31.501071],[-81.20358,31.476681],[-81.250037,31.421867],[-81.263365,31.391783],[-81.278137,31.378601],[-81.317772,31.411111],[-81.286578,31.323753],[-81.3961662,31.3111045],[-81.436058,31.227134],[-81.444124,30.709714],[-81.949981,30.827831],[-81.964064,30.818038],[-81.962682,30.796062],[-81.977809,30.776694],[-81.995312,30.786775],[-82.015802,30.791669],[-82.023825,30.783247],[-82.011141,30.763752],[-82.045386,30.728327],[-82.035829,30.384938],[-82.16551,30.357943],[-82.2147951,30.5684331],[-82.499849,30.586802],[-82.749855,30.601156],[-83.49954,30.645653],[-84.046606,30.674201],[-84.47441,30.692794],[-84.634212,30.701511],[-84.864694,30.711543],[-84.920023,30.765791],[-84.936824,30.81849],[-84.935824,30.83379],[-84.925724,30.843789],[-85.001901,31.000681],[-85.243632,31.000884],[-85.322617,30.998601],[-85.616044,30.134255]]]]},"properties":{"name":"SRSO","gridLoss":{"display":"4.49%","value":0.0449},"fuelMixCategories":{"renewable":5.7,"non-renewable":94.3,"non-renewable (excluding nuclear)":76.1,"renewable (excluding hydro)":3.8,"nuclear":18.2,"hydro":2},"fullName":"SERC South","emissionFactor":{"co2EmissionRate":{"value":1089.4,"display":"1,089.4","units":"lb/MWh"},"noxEmissionRate":{"value":0.5,"display":"0.5","units":"lb/MWh"},"so2EmissionRate":{"value":0.4,"display":"0.4","units":"lb/MWh"}},"fuelMix":{"coal":28.9,"oil":0.1,"gas":47,"nuclear":18.2,"hydro":2,"biomass":3.5,"wind":0,"solar":0.3,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0}}}, -{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-89.322692,32.223472],[-90.247659,32.030968],[-89.640516,32.954593],[-89.909572,33.32897],[-89.523466,33.285862],[-89.6631949,33.4531686],[-89.506921,33.684923],[-89.795588,33.6767],[-89.927475,33.676473],[-90.451644,33.811378],[-90.576003,34.015955],[-90.381972,34.423965],[-90.593372,34.371787],[-90.564588,34.415667],[-90.565809,34.435401],[-90.586011,34.462347],[-90.589921,34.484793],[-90.540952,34.550854],[-90.588419,34.670963],[-90.517169,34.630929],[-90.479719,34.659934],[-90.466041,34.674313],[-90.463734,34.691094],[-90.473636,34.700319],[-90.568082,34.724802],[-90.451758,34.741905],[-90.483969,34.877176],[-90.414864,34.831847],[-90.35548,34.852068],[-90.340236,34.860348],[-90.323051,34.84643],[-90.244477,34.937596],[-90.251993,34.950914],[-90.29535,34.975731],[-90.309297,34.995695],[-90.043036,34.994964],[-90.037237,35.012404],[-90.051829,35.101413],[-90.137074,35.07491],[-90.095137,35.180615],[-89.699755,35.364192],[-89.791418,35.622573],[-89.896503,35.54692],[-89.942877,35.557922],[-89.957924,35.585499],[-89.950279,35.738493],[-89.905539,35.759064],[-89.872846,35.741299],[-89.846344,35.755732],[-89.821217,35.756716],[-89.704388,35.819607],[-89.765689,35.8913],[-89.644838,35.904352],[-89.71304,35.961645],[-89.718801,35.985015],[-89.733096,36.000608],[-89.566818,36.564216],[-89.453082,36.461285],[-89.356511,36.628439],[-89.3262042,36.6319806],[-89.258319,36.564948],[-89.2272026,36.5694897],[-89.1591026,36.6663964],[-89.0994937,36.9639978],[-89.118301,36.981879],[-89.132686,36.9822],[-89.166447,37.003338],[-89.179046,37.02108],[-89.154505,37.088907],[-88.97879,37.197773],[-88.967534,37.172235],[-88.944789,37.167647],[-88.951878,37.122908],[-88.931623,37.116933],[-88.95016,37.073876],[-88.886571,37.038391],[-88.883654,36.961325],[-88.797935,37.037363],[-88.789937,37.138073],[-88.825379,37.143845],[-88.831936,37.185444],[-88.858267,37.196195],[-88.853851,37.20349],[-88.545404,37.070004],[-88.504438,37.065265],[-88.458949,37.073797],[-88.424382,37.152424],[-88.432376,37.161645],[-88.447765,37.203527],[-88.515939,37.284044],[-88.476592,37.386876],[-88.410076,37.425241],[-88.397341,37.421644],[-88.363888,37.401958],[-88.348405,37.410727],[-88.330623,37.429317],[-88.312586,37.440591],[-88.278499,37.453271],[-88.095819,37.473025],[-88.068117,37.481594],[-88.069019,37.525297],[-88.091037,37.537642],[-88.105586,37.55618],[-88.133393,37.574235],[-88.159373,37.661847],[-88.125034,37.707095],[-88.063802,37.738646],[-88.05097,37.7526],[-88.038769,37.784308],[-88.02803,37.799225],[-88.011255,37.801535],[-87.959004,37.772732],[-87.907314,37.80713],[-87.909906,37.842383],[-87.936229,37.867937],[-87.938366,37.890802],[-87.903623,37.925604],[-87.687689,37.903457],[-87.666883,37.896644],[-87.66282,37.881449],[-87.679188,37.836321],[-87.615399,37.831975],[-87.58873,37.860985],[-87.592214,37.887064],[-87.619215,37.905978],[-87.628416,37.92145],[-87.601417,37.972542],[-87.577916,37.971542],[-87.550334,37.92489],[-87.504333,37.90806],[-87.450602,37.941451],[-87.38084,37.93582],[-87.361639,37.921004],[-87.335398,37.907565],[-87.302789,37.898685],[-87.21912,37.848383],[-87.162319,37.84016],[-87.111133,37.782513],[-87.033444,37.906593],[-86.598108,37.867382],[-86.364194,38.19821],[-86.178984,38.011309],[-86.108156,38.013416],[-86.078737,38.000072],[-86.063021,37.972897],[-86.038189,37.95935],[-86.032469,37.9901],[-85.951468,38.005608],[-85.924793,38.024211],[-85.423077,38.531581],[-85.416177,38.564949],[-85.439198,38.608589],[-85.438743,38.65932],[-85.453924,38.679883],[-85.452114,38.709349],[-85.434066,38.729456],[-85.258846,38.737755],[-85.208008,38.69295],[-85.172968,38.687933],[-84.813636,38.78524],[-84.78458,38.87532],[-84.812047,38.89494],[-84.863744,38.898015],[-84.877029,38.909017],[-84.897171,39.052408],[-84.830882,39.102062],[-84.783992,39.118061],[-84.754449,39.146659],[-84.455343,39.120361],[-84.304699,39.006456],[-84.295076,38.968296],[-84.286837,38.953823],[-84.257011,38.923208],[-84.236564,38.896372],[-84.232343,38.884326],[-84.233265,38.842672],[-84.230182,38.826547],[-84.212905,38.805707],[-84.091526,38.774239],[-84.044487,38.770573],[-83.975486,38.787437],[-83.943979,38.783617],[-83.859028,38.756794],[-83.668111,38.628069],[-82.894193,38.756577],[-82.876193,38.748077],[-82.870392,38.722077],[-82.876892,38.698178],[-82.874892,38.682828],[-82.847187,38.595167],[-82.820162,38.572703],[-82.795649,38.561552],[-82.766064,38.56056],[-82.758205,38.554133],[-82.768177,38.521446],[-82.742641,38.482365],[-82.920234,38.280857],[-82.664866,38.264702],[-82.424447,37.802653],[-82.932488,37.353754],[-83.350269,37.486641],[-83.3632,37.125741],[-82.869184,36.974183],[-82.878639,36.893982],[-82.851176,36.870093],[-82.848203,36.831783],[-82.891619,36.805646],[-82.8534944,36.7758124],[-82.964383,36.696982],[-82.887844,36.637251],[-82.913783,36.632185],[-82.94125,36.614777],[-82.979024,36.600262],[-82.9847325,36.5937561],[-82.663287,36.593501],[-82.480689,36.595702],[-82.466614,36.594482],[-82.221458,36.596179],[-81.934145,36.594214],[-81.922645,36.616214],[-81.646901,36.611918],[-81.677535,36.588118],[-81.677337,36.570319],[-81.689537,36.560919],[-81.707772,36.52395],[-81.694533,36.473283],[-81.715356,36.457653],[-81.71492,36.436869],[-81.720734,36.422538],[-81.741715,36.412389],[-81.717406,36.34778],[-81.797545,36.358428],[-81.832925,36.347429],[-81.855095,36.337187],[-81.908137,36.302014],[-82.033141,36.120423],[-82.213852,36.159112],[-82.245053,36.131011],[-82.264254,36.127211],[-82.288955,36.13571],[-82.336057,36.11501],[-82.355658,36.11531],[-82.410159,36.082709],[-82.460658,36.007809],[-82.557544,35.953161],[-82.582483,35.956224],[-82.579933,35.774743],[-82.881372,35.680787],[-82.89463,35.5114],[-83.047336,35.694612],[-83.008707,35.027519],[-83.108226,35.000773],[-83.129887,34.931916],[-83.15891,34.929202],[-83.183012,34.902305],[-83.202713,34.894085],[-83.201238,34.884446],[-83.2296269,34.8798339],[-83.323927,34.789542],[-83.551766,34.834252],[-83.352486,34.715994],[-83.338384,34.686995],[-83.638203,34.622165],[-83.9632418,34.987434],[-84.231585,34.779039],[-84.359363,34.988269],[-84.621483,34.98833],[-84.622829,34.857155],[-84.582345,34.82398],[-84.616784,34.800769],[-84.724582,34.832396],[-84.675458,34.929689],[-84.7431772,34.9397836],[-84.713785,34.966293],[-84.714639,34.988024],[-85.605166,34.984679],[-85.59711,34.933885],[-85.561311,34.749589],[-85.3848187,33.8919056],[-85.920884,33.596918],[-86.145563,33.679098],[-85.9691718,33.9145963],[-86.2187596,33.9855594],[-86.990907,33.238251],[-86.979894,33.703858],[-86.686296,33.797345],[-87.064067,33.841072],[-87.019574,34.129522],[-87.863902,33.812155],[-87.889228,34.112252],[-88.18683,34.019067],[-88.191193,33.933115],[-88.194901,33.981798],[-88.217479,33.978845],[-88.27886,33.500118],[-88.331014,33.07251],[-88.354292,32.87513],[-88.468792,31.930355],[-88.488827,31.925122],[-88.500304,31.931387],[-88.532602,31.928868],[-88.60332,31.954848],[-88.603352,31.939439],[-88.630915,31.964626],[-88.65426,31.950088],[-88.699962,32.018133],[-88.911018,31.875149],[-88.9260077,32.2241617],[-89.322692,32.223472]]]},"properties":{"name":"SRTV","gridLoss":{"display":"4.49%","value":0.0449},"fuelMixCategories":{"renewable":7.2,"non-renewable":92.8,"non-renewable (excluding nuclear)":67.7,"renewable (excluding hydro)":0.8,"nuclear":25.1,"hydro":6.4},"fullName":"SERC Tennessee Valley","emissionFactor":{"co2EmissionRate":{"value":1185.4,"display":"1,185.4","units":"lb/MWh"},"noxEmissionRate":{"value":0.7,"display":"0.7","units":"lb/MWh"},"so2EmissionRate":{"value":1,"display":"1.0","units":"lb/MWh"}},"fuelMix":{"coal":43.7,"oil":0.6,"gas":23.4,"nuclear":25.1,"hydro":6.4,"biomass":0.8,"wind":0,"solar":0.1,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0}}}, -{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-79.476638,38.457228],[-79.245285,38.335886],[-79.258418,37.960018],[-79.043955,37.931662],[-79.209995,37.700523],[-79.571185,37.601701],[-79.785978,37.792912],[-80.222893,37.544759],[-80.309347,37.527381],[-80.330306,37.536245],[-80.328504,37.564315],[-80.25892,37.595499],[-80.220985,37.627767],[-80.296107,37.691791],[-80.3362231,37.6869601],[-80.3668555,37.6359929],[-80.428725,37.6140245],[-80.6818231,37.6018274],[-80.531975,37.861401],[-80.361694,37.689638],[-80.18798,38.039103],[-80.106891,38.055846],[-79.959845,38.063698],[-79.926331,38.107152],[-79.938952,38.111619],[-79.945158,38.132009],[-79.921027,38.179955],[-79.846261,38.24027],[-79.82101,38.248278],[-79.788945,38.268704],[-79.795448,38.290228],[-79.809935,38.304682],[-79.764175,38.356635],[-79.742772,38.353367],[-79.727053,38.362234],[-79.689675,38.43144],[-79.688882,38.458715],[-79.699424,38.474715],[-79.694507,38.494233],[-79.680075,38.510618],[-79.662074,38.515518],[-79.672975,38.528717],[-79.662875,38.570416],[-79.649075,38.591516],[-79.476638,38.457228]]],[[[-75.749608,35.189439],[-75.5195217,35.2778472],[-75.5214147,35.7731084],[-75.4600257,35.5917523],[-75.5246412,35.2213736],[-75.749608,35.189439]]],[[[-80.9081922,32.046921],[-81.117234,32.117605],[-81.155483,32.240407],[-81.145235,32.263998],[-81.132334,32.269898],[-81.123634,32.294597],[-81.128643,32.34086],[-81.155133,32.350001],[-81.1724,32.362236],[-81.204925,32.422725],[-81.205356,32.451993],[-81.201429,32.469086],[-81.249828,32.517541],[-81.279694,32.536386],[-81.281257,32.549071],[-81.355619,32.571408],[-81.358523,32.582322],[-81.381,32.589652],[-81.406494,32.613047],[-81.41866,32.629393],[-81.393034,32.651544],[-81.427506,32.702243],[-81.418497,32.815664],[-81.426476,32.840773],[-81.457062,32.85039],[-81.451351,32.868584],[-81.4801736,32.8981357],[-81.483168,32.920964],[-81.5006862,32.9329838],[-81.49868,33.011337],[-81.5132675,33.0286908],[-81.6105542,33.0934442],[-81.645933,33.094352],[-81.6794852,33.1117391],[-81.7048399,33.1165922],[-81.7442683,33.1419545],[-81.940044,33.347394],[-81.924979,33.375141],[-81.935085,33.397244],[-81.925069,33.412348],[-81.931389,33.428475],[-81.913726,33.441453],[-81.934137,33.468337],[-82.196583,33.630583],[-82.2488268,33.7540027],[-82.299281,33.798939],[-82.346933,33.834299],[-82.4082166,33.8661835],[-82.429165,33.865844],[-82.4560724,33.882392],[-82.494812,33.911712],[-82.51295,33.93697],[-82.5250426,33.9434558],[-82.5428989,33.9410901],[-82.557392,33.9461485],[-82.717508,34.150504],[-82.740651,34.207624],[-82.742909,34.250926],[-82.755029,34.276067],[-82.882865,34.479003],[-82.902666,34.485903],[-82.922866,34.481403],[-82.940867,34.486103],[-82.954668,34.477302],[-82.97957,34.482702],[-82.995857,34.47229],[-83.034712,34.483495],[-83.072746,34.50435],[-83.084856,34.530968],[-83.122901,34.56013],[-83.140777,34.5627],[-83.172579,34.607798],[-83.19738,34.603198],[-83.208832,34.610706],[-83.232581,34.611598],[-83.255282,34.637697],[-83.293183,34.654296],[-83.304642,34.669562],[-83.338384,34.686995],[-83.352486,34.715994],[-83.323927,34.789542],[-83.2296269,34.8798339],[-83.201238,34.884446],[-83.202713,34.894085],[-83.183012,34.902305],[-83.15891,34.929202],[-83.129887,34.931916],[-83.108226,35.000773],[-83.008707,35.027519],[-83.047336,35.694612],[-82.89463,35.5114],[-82.881372,35.680787],[-82.579933,35.774743],[-82.582483,35.956224],[-82.557544,35.953161],[-82.460658,36.007809],[-82.410159,36.082709],[-82.355658,36.11531],[-82.336057,36.11501],[-82.288955,36.13571],[-82.264254,36.127211],[-82.245053,36.131011],[-82.213852,36.159112],[-82.033141,36.120423],[-81.908137,36.302014],[-81.855095,36.337187],[-81.832925,36.347429],[-81.797545,36.358428],[-81.717406,36.34778],[-81.741715,36.412389],[-81.720734,36.422538],[-81.71492,36.436869],[-81.715356,36.457653],[-81.694533,36.473283],[-81.707772,36.52395],[-81.689537,36.560919],[-81.677337,36.570319],[-81.677535,36.588118],[-78.8807084,36.5420422],[-78.881811,36.611028],[-79.178188,36.708887],[-78.810238,36.721456],[-78.8371378,36.8762389],[-79.198127,36.769038],[-79.4984508,37.0604758],[-79.20683,37.190729],[-78.995267,37.038296],[-78.870948,37.242973],[-78.395595,37.159218],[-78.185321,37.444538],[-77.846931,37.414113],[-77.720342,37.587466],[-78.195889,37.953517],[-78.022372,38.141463],[-78.272625,38.207178],[-78.394662,38.009079],[-78.592814,38.292054],[-78.8114417,38.1579762],[-78.704207,38.494586],[-78.9338772,38.3745169],[-79.020527,38.579829],[-78.5392626,38.4768197],[-78.641034,38.60616],[-78.395431,38.915862],[-78.436659,39.141692],[-78.2575467,39.2758981],[-78.298154,39.310901],[-78.278439,39.321135],[-78.276729,39.372069],[-78.257624,39.394801],[-78.245363,39.402714],[-77.828806,39.132773],[-77.7349,39.31241],[-77.7189303,39.3212857],[-77.674908,39.324252],[-77.568018,39.306448],[-77.46021,39.228359],[-77.527411,39.146635],[-77.524653,39.127804],[-77.503682,39.115185],[-77.452831,39.072468],[-77.38568,39.061987],[-77.340904,39.063082],[-77.254614,39.029792],[-77.244905,39.019413],[-77.255674,39.00161],[-77.244858,38.982601],[-77.197494,38.966958],[-77.181645,38.968889],[-77.146601,38.964211],[-77.0328493,38.8550577],[-77.042794,38.718672],[-77.052739,38.709894],[-77.073995,38.711899],[-77.121101,38.686616],[-77.130201,38.635018],[-77.246404,38.593419],[-77.309648,38.495621],[-77.323297,38.46597],[-77.325605,38.443196],[-77.279634,38.339444],[-77.164636,38.345283],[-77.137734,38.368024],[-77.084933,38.368417],[-77.041506,38.400694],[-77.030683,38.311623],[-76.9616788,38.2558306],[-76.962376,38.230094],[-76.948924,38.208261],[-76.910833,38.197074],[-76.875272,38.172208],[-76.838796,38.163477],[-76.6103562,38.148513],[-76.236743,37.888644],[-76.311173,37.833422],[-76.30682,37.79859],[-76.315112,37.783231],[-76.306688,37.765793],[-76.320587,37.73601],[-76.302545,37.689],[-76.3440424,37.6627361],[-76.279204,37.617422],[-76.359531,37.521425],[-76.353629,37.505569],[-76.327388,37.485706],[-76.304108,37.488721],[-76.262055,37.452506],[-76.252049,37.43641],[-76.246307,37.387313],[-76.247853,37.375742],[-76.279131,37.356486],[-76.272456,37.31652],[-76.308487,37.329607],[-76.312155,37.34471],[-76.337446,37.366305],[-76.415168,37.402134],[-76.445311,37.366462],[-76.415385,37.339999],[-76.411126,37.309216],[-76.393757,37.313073],[-76.378157,37.28735],[-76.373119,37.271208],[-76.383742,37.265026],[-76.412444,37.264828],[-76.463958,37.250022],[-76.48162,37.255053],[-76.505998,37.247385],[-76.737023,37.485999],[-76.806379,37.506426],[-76.615792,37.300162],[-76.470411,37.215502],[-76.4224,37.22068],[-76.413413,37.160269],[-76.349936,37.149926],[-76.308776,37.137018],[-76.294355,37.127062],[-76.270218,37.086625],[-76.294596,37.030233],[-76.304181,37.001478],[-76.410463,36.924213],[-76.255939,36.958631],[-76.09499,36.908558],[-76.044256,36.9296901],[-76.009292,36.929517],[-75.9891213,36.9098237],[-75.545302,35.806774],[-75.729428,36.007041],[-75.6838732,36.0271834],[-75.737762,36.041488],[-75.756851,36.178978],[-75.820789,36.294578],[-75.842857,36.424071],[-75.856112,36.424364],[-75.874832,36.474569],[-75.876735,36.529914],[-75.885535,36.542381],[-75.886283,36.572081],[-75.89587,36.608147],[-75.952183,36.722367],[-75.993614,36.571735],[-75.921061,36.564414],[-75.92218,36.549863],[-75.909264,36.538389],[-75.912127,36.486906],[-75.962035,36.495414],[-76.022133,36.466345],[-76.013573,36.44839],[-75.988246,36.431628],[-75.99557,36.409348],[-75.978809,36.399783],[-75.95905,36.381494],[-75.952037,36.365039],[-75.923803,36.424233],[-75.789455,36.078671],[-75.850073,36.105259],[-75.875465,36.183796],[-75.91013,36.212336],[-75.917566,36.237608],[-75.943312,36.256801],[-75.9472,36.279324],[-75.965969,36.295367],[-75.969362,36.316505],[-76.01867,36.346846],[-75.951226,36.275488],[-75.969376,36.266417],[-75.957568,36.202055],[-75.94179,36.181687],[-75.918092,36.173069],[-75.923961,36.163691],[-75.994709,36.178224],[-76.02148,36.190166],[-76.031183,36.20606],[-76.056526,36.210612],[-76.076681,36.200632],[-76.079237,36.186254],[-76.059267,36.151251],[-76.071857,36.140689],[-76.222285,36.09704],[-76.239583,36.099822],[-76.284103,36.114768],[-76.301995,36.113821],[-76.304306,36.094306],[-76.404312,36.079021],[-76.453912,36.037529],[-76.460332,36.025099],[-76.516686,36.007421],[-76.6841226,36.0540219],[-76.727116,35.941997],[-76.398765,35.982734],[-76.370688,35.9351],[-76.062373,35.990883],[-76.04331,35.64795],[-75.986011,35.888881],[-75.835101,35.925153],[-75.857611,35.945531],[-75.856531,35.957201],[-75.8341,35.969349],[-75.809433,35.958955],[-75.810522,35.94904],[-75.784222,35.934405],[-75.781864,35.918376],[-75.769144,35.909828],[-75.764396,35.891515],[-75.748937,35.883754],[-75.729186,35.825114],[-75.716369,35.6919],[-75.73141,35.681337],[-75.75216,35.704595],[-75.76679,35.7061],[-75.779794,35.686703],[-75.730453,35.626536],[-76.150413,35.336955],[-76.532869,35.401295],[-76.476669,35.564916],[-76.575084,35.38823],[-77.041313,35.536287],[-76.486169,35.313954],[-76.71635,35.135184],[-76.565449,35.171019],[-76.699037,35.02108],[-76.483866,34.987934],[-76.49754,35.008138],[-76.483088,35.043777],[-76.459135,35.024251],[-76.472069,35.061552],[-76.454748,35.069479],[-76.432549,35.048733],[-76.42315,34.97796],[-76.461867,34.942736],[-76.422764,34.951007],[-76.382641,34.930501],[-76.332759,34.920867],[-76.313288,34.906157],[-76.346123,34.873798],[-76.36798,34.874279],[-76.382328,34.861807],[-76.404474,34.887125],[-76.515604,34.718072],[-77.130961,34.678843],[-77.177983,34.617994],[-77.217494,34.600773],[-77.26626,34.572297],[-77.314503,34.53997],[-77.3416414,34.5257949],[-77.391613,34.504558],[-77.46471,34.47047],[-77.5540276,34.4193035],[-77.5852592,34.398749],[-77.687227,34.320445],[-77.741103,34.271727],[-77.829182,34.175691],[-77.943302,33.919356],[-77.956882,33.877791],[-77.959674,33.839902],[-78.019563,33.886963],[-78.089706,33.905011],[-78.342796,33.905963],[-78.453822,33.881676],[-78.515643,33.862576],[-78.549092,33.847023],[-78.584123,33.844314],[-78.658914,33.821699],[-78.7949393,33.7560357],[-78.933871,33.64437],[-78.995686,33.579348],[-79.023711,33.545642],[-79.028247,33.562381],[-79.049367,33.539645],[-79.138267,33.408698],[-79.152797,33.35052],[-79.163125,33.320924],[-79.179945,33.249713],[-79.181282,33.208388],[-79.289225,33.340465],[-79.282182,33.279001],[-79.212563,33.245625],[-79.204054,33.197929],[-79.181706,33.190632],[-79.190507,33.169938],[-79.246076,33.124784],[-79.992685,32.607977],[-80.036821,32.609342],[-80.081362,32.602192],[-80.162648,32.560787],[-80.185573,32.568694],[-80.332575,32.478027],[-80.472068,32.496964],[-80.9081922,32.046921]]]]},"properties":{"name":"SRVC","gridLoss":{"display":"4.49%","value":0.0449},"fuelMixCategories":{"renewable":5.6,"non-renewable":94.4,"non-renewable (excluding nuclear)":54.8,"renewable (excluding hydro)":4.1,"nuclear":39.6,"hydro":1.5},"fullName":"SERC Virginia/Carolina","emissionFactor":{"co2EmissionRate":{"value":805.3,"display":"805.3","units":"lb/MWh"},"noxEmissionRate":{"value":0.5,"display":"0.5","units":"lb/MWh"},"so2EmissionRate":{"value":0.3,"display":"0.3","units":"lb/MWh"}},"fuelMix":{"coal":24.9,"oil":0.2,"gas":29.5,"nuclear":39.6,"hydro":1.5,"biomass":2.8,"wind":0.2,"solar":1.1,"geothermal":0,"otherFossilFuel":0.1,"otherUnknownFuel":0.1}}} +{"type":"Feature","geometry":null,"properties":{"name":"National","fullName":"National","fuelMix":{"gas":35.1,"coal":27.5,"nuclear":19.4,"hydro":6.9,"wind":6.5,"biomass":1.6,"solar":1.5,"oil":0.6,"geothermal":0.4,"otherFossilFuel":0.3,"otherUnknownFuel":0.1},"fuelMixCategories":{"renewable":17,"non-renewable":83,"non-renewable (excluding nuclear)":63.6,"renewable (excluding hydro)":10.1,"nuclear":19.4,"hydro":6.9},"emissionFactor":{"noxEmissionRate":{"units":"lb/MWh","display":"0.6","value":0.6},"so2EmissionRate":{"units":"lb/MWh","display":"0.7","value":0.7},"co2EmissionRate":{"units":"lb/MWh","display":"947.2","value":947.2}},"gridLoss":{"display":"4.87%","value":0.0487}}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-145.971896,66.244338],[-146.619076,66.468736],[-144.892186,66.636334],[-144.921862,66.468349],[-145.270215,66.558564],[-145.740791,66.35673],[-145.509582,66.251891],[-145.971896,66.244338]]],[[[-151.740029,60.922784],[-151.827951,61.147883],[-152.70309,61.208243],[-153.002181,61.425686],[-153.001339,62.72744],[-152.434244,63.169824],[-152.853432,63.651711],[-152.529193,63.94101],[-151.300774,64.010019],[-150.750056,64.365202],[-149.310686,64.35844],[-148.6451156,64.6014469],[-148.663844,65.211355],[-148.13865,65.211281],[-148.324709,65.326328],[-147.682961,65.550911],[-147.82864,65.410283],[-147.197831,65.286346],[-145.995111,65.406472],[-145.64925,65.033179],[-143.891217,65.091284],[-144.072624,64.652067],[-146.355747,64.279714],[-147.571949,64.260022],[-147.685965,63.787237],[-147.255383,63.625435],[-147.686211,63.472155],[-146.489541,63.482913],[-146.426456,62.247209],[-146.984765,62.242473],[-146.977259,61.6610744],[-147.2665737,61.8303826],[-149.037853,61.672414],[-149.009035,61.890762],[-149.469924,61.498779],[-149.984043,61.238099],[-150.665097,61.287148],[-151.166606,61.046405],[-151.480301,61.010903],[-151.740029,60.922784]]],[[[-149.237607,61.47912],[-148.460084,61.426973],[-148.655767,60.727256],[-148.656481,60.667051],[-148.656061,60.498221],[-148.665169,60.458154],[-148.564513,60.128071],[-148.5836031,59.9614235],[-148.59917,59.950889],[-148.635891,59.939662],[-148.680067,59.9437972],[-148.8650752,59.9240504],[-148.8866452,59.9319972],[-148.917788,59.971825],[-148.9565163,59.9732536],[-148.9915281,59.9552953],[-149.0157712,59.9489513],[-149.1018122,59.9617384],[-149.116781,59.990077],[-149.0681093,60.0262118],[-149.030727,60.042929],[-149.058235,60.055645],[-149.133184,60.044919],[-149.156302,60.032346],[-149.182118,60.006251],[-149.208258,59.998784],[-149.2975128,59.8829061],[-149.298021,59.967326],[-149.3223251,59.9706676],[-149.318047,59.996876],[-149.333351,60.007299],[-149.341622,60.076763],[-149.367695,60.094712],[-149.36184,60.114169],[-149.4386466,60.1204159],[-149.439135,60.030954],[-149.392857,60.003098],[-149.409546,59.986651],[-149.430566,59.978895],[-149.459405,59.921756],[-149.566927,59.9019171],[-149.5530365,59.8904752],[-149.5757066,59.8796321],[-149.5919793,59.8450211],[-149.6254577,59.8184553],[-149.5353645,59.7577401],[-149.6514753,59.7705493],[-149.6169692,59.7895524],[-149.6506082,59.8090414],[-149.6374465,59.8317163],[-149.6660965,59.8349535],[-149.690071,59.951902],[-149.8412369,59.8508998],[-149.7673377,59.7976625],[-149.7885008,59.7823665],[-149.7670984,59.7728623],[-149.7723412,59.7577409],[-149.7468958,59.7236324],[-149.7459939,59.7090783],[-149.7251306,59.6931738],[-149.7731544,59.6595979],[-149.8006421,59.7085669],[-149.8406051,59.7157332],[-149.8452146,59.7392547],[-150.0782863,59.8426577],[-149.9371518,59.6668058],[-150.0834054,59.6643312],[-150.091423,59.582993],[-150.2134141,59.5779988],[-150.180094,59.535111],[-150.271718,59.527979],[-150.244745,59.511762],[-150.237754,59.497823],[-150.400379,59.387271],[-150.426762,59.409347],[-150.399925,59.445195],[-150.343655,59.442166],[-150.389761,59.4757162],[-150.3501538,59.4718322],[-150.369082,59.515662],[-150.2624355,59.6296018],[-150.237493,59.737637],[-150.4785491,59.4592169],[-150.5204969,59.6069624],[-150.664455,59.546644],[-150.604965,59.4250383],[-150.6631545,59.4170057],[-150.6919415,59.429976],[-150.7384678,59.4222885],[-150.7724067,59.3737609],[-150.803512,59.3616059],[-150.836547,59.355834],[-150.877448,59.318122],[-150.938593,59.310739],[-150.942213,59.233136],[-151.748752,59.159466],[-151.886513,59.421033],[-151.301106,59.410778],[-150.978083,59.764587],[-151.063751,59.793147],[-151.329812,59.683645],[-151.435844,59.667054],[-151.443831,59.650506],[-151.501064,59.633677],[-151.869468,59.76916],[-151.85734,59.791145],[-151.83334,59.81413],[-151.813598,59.844292],[-151.803021,59.878571],[-151.757693,59.917637],[-151.702284,60.032804],[-151.42166,60.212996],[-151.2955963,60.3937743],[-151.40927,60.720558],[-150.372036,61.038532],[-149.010589,60.83664],[-150.0745906,61.1570721],[-149.237607,61.47912]]],[[[-141.001696,59.769829],[-141.163882,59.818416],[-141.372808,59.864848],[-141.38661,59.861788],[-141.443477,59.877269],[-141.416713,59.901331],[-141.275534,59.93039],[-141.153446,60.167269],[-141.671838,59.948839],[-141.992136,60.021844],[-142.327081,60.058025],[-142.393857,60.061853],[-142.43108,60.061146],[-142.538423,60.081812],[-142.590977,60.086153],[-142.699423,60.091489],[-142.809476,60.093511],[-142.905184,60.088649],[-143.118989,60.060212],[-143.176581,60.06018],[-143.492898,60.04328],[-143.582269,60.032077],[-143.610866,60.034016],[-143.889372,59.991045],[-143.930524,59.993369],[-144.209649,60.023811],[-144.013562,60.042045],[-144.091097,60.081796],[-144.124058,60.108843],[-144.267842,60.153182],[-144.255558,60.181662],[-144.382673,60.189076],[-144.4127,60.170506],[-144.448844,60.164027],[-144.485609,60.182758],[-144.499505,60.205471],[-144.527666,60.204861],[-144.533686,60.190825],[-144.566114,60.17865],[-144.604145,60.182472],[-144.948819,60.291012],[-144.894828,60.352984],[-144.93406,60.380243],[-144.854841,60.42045],[-144.838741,60.445189],[-144.853511,60.45668],[-145.149514,60.424627],[-145.158031,60.401221],[-145.199885,60.395865],[-145.208719,60.374989],[-145.246821,60.355201],[-145.326912,60.336302],[-145.937623,60.456164],[-145.963784,60.470353],[-145.8030879,60.5211588],[-145.791719,60.537413],[-145.752761,60.569058],[-145.721409,60.583355],[-145.673105,60.632889],[-145.624334,60.651303],[-145.850465,60.613154],[-145.859528,60.689045],[-145.899667,60.672468],[-145.923273,60.653815],[-145.931193,60.639009],[-145.954386,60.622209],[-146.0101217,60.6280797],[-146.001755,60.644844],[-145.96988,60.673255],[-145.933531,60.684898],[-145.931718,60.702144],[-146.040746,60.665917],[-146.132468,60.64205],[-146.148947,60.63426],[-146.258506,60.629376],[-146.269783,60.650992],[-146.216076,60.668092],[-146.188444,60.689967],[-146.158402,60.698124],[-146.140947,60.710095],[-146.073764,60.730539],[-146.041405,60.796651],[-146.16521,60.72497],[-146.331873,60.742479],[-146.367222,60.719154],[-146.39065,60.717019],[-146.41525,60.693916],[-146.474689,60.677668],[-146.619067,60.684562],[-146.56953,60.711471],[-146.513835,60.721236],[-146.386642,60.750472],[-146.24544,60.798837],[-146.06372,60.808499],[-145.915058,60.949125],[-145.698157,60.8992],[-145.36147,61.157831],[-144.413015,61.214045],[-144.424139,61.040583],[-143.716827,61.031627],[-143.717036,60.845415],[-142.861915,60.75853],[-142.861805,60.590932],[-141.001854,60.390438],[-141.001841,60.306105],[-141.001696,59.769829]]]]},"properties":{"name":"AKGD","fullName":"ASCC Alaska Grid","emissionFactor":{"co2EmissionRate":{"value":1039.6,"display":"1,039.6","units":"lb/MWh"},"noxEmissionRate":{"value":5.5,"display":"5.5","units":"lb/MWh"},"so2EmissionRate":{"value":1.1,"display":"1.1","units":"lb/MWh"}},"fuelMix":{"coal":13.5,"oil":8.3,"gas":61,"nuclear":0,"hydro":13.6,"biomass":0.9,"wind":2.6,"solar":0,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0},"gridLoss":{"display":"5.12%","value":0.0512},"fuelMixCategories":{"renewable":17.2,"non-renewable":82.8,"non-renewable (excluding nuclear)":82.8,"renewable (excluding hydro)":3.5,"nuclear":0,"hydro":13.6}}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[179.248954,51.35131],[178.651226,51.659621],[179.457391,51.370628],[179.248954,51.35131]]],[[[-176.930434,51.593417],[-176.789559,51.957212],[-176.579975,52.003239],[-176.544867,51.927245],[-176.616377,51.902622],[-176.626495,51.864193],[-176.424204,51.744922],[-176.51048,51.762976],[-176.530468,51.746283],[-176.53062,51.734334],[-176.546945,51.712192],[-176.576179,51.689172],[-176.72267,51.683518],[-176.719642,51.627264],[-176.806345,51.611543],[-176.837605,51.682604],[-176.820699,51.695407],[-176.825767,51.716496],[-176.865803,51.682199],[-176.86568,51.664765],[-176.883106,51.660529],[-176.930434,51.593417]]],[[[-177.905832,51.598151],[-178.197548,51.903474],[-177.63389,51.849011],[-177.905832,51.598151]]],[[[-177.635883,51.659542],[-177.054769,51.908945],[-177.148655,51.707044],[-177.635883,51.659542]]],[[[173.65629,52.35779],[173.360953,52.403653],[173.769507,52.512073],[173.65629,52.35779]]],[[[172.921509,52.749064],[172.45595,52.925117],[172.499803,52.941971],[172.506522,52.951905],[172.548424,52.958849],[172.555656,52.969813],[172.618789,52.991581],[172.643268,53.00498],[172.772497,53.013467],[172.797249,53.004916],[172.837137,52.999576],[172.867905,53.000584],[172.902912,52.994283],[172.9018699,52.9805207],[172.953345,52.971717],[173.107244,52.993228],[173.405895,52.846682],[173.058076,52.831852],[173.01211,52.816451],[172.998464,52.79698],[172.962466,52.777614],[172.942596,52.755839],[172.921509,52.749064]]],[[[-173.485549,52.027534],[-174.042927,52.135291],[-172.962704,52.09445],[-173.485549,52.027534]]],[[[-175.08429,52.010875],[-175.296306,52.021044],[-174.335636,52.190956],[-174.459093,52.316941],[-174.185347,52.417788],[-173.985204,52.317601],[-174.098969,52.099438],[-175.08429,52.010875]]],[[[-165.871194,54.048131],[-165.983201,54.221176],[-165.655574,54.1191],[-165.871194,54.048131]]],[[[-167.852333,53.315599],[-167.146404,53.47438],[-167.176275,53.48533],[-167.176588,53.494088],[-167.157332,53.507967],[-167.181014,53.526392],[-167.128277,53.520411],[-167.080974,53.511424],[-167.096601,53.53867],[-167.131239,53.547268],[-167.163197,53.613814],[-167.140431,53.626968],[-167.091378,53.633438],[-167.039043,53.611],[-167.022385,53.715468],[-166.785233,53.629777],[-166.711169,53.729128],[-167.024982,53.757241],[-167.051537,53.801631],[-167.092252,53.820576],[-167.149291,53.82875],[-167.013614,53.961897],[-166.746095,54.016936],[-166.728732,54.003285],[-166.740592,53.976937],[-166.720692,53.969136],[-166.712038,53.994099],[-166.684483,54.015588],[-166.636936,54.012],[-166.599948,53.983696],[-166.587394,53.959831],[-166.634485,53.874914],[-166.578358,53.8476962],[-166.4486084,53.9021345],[-166.4386657,53.9537313],[-166.4106254,53.9468283],[-166.4133373,53.9747126],[-166.367461,54.008904],[-166.264519,53.977551],[-166.217434,53.934771],[-166.211208,53.912334],[-166.247001,53.900349],[-166.236513,53.881343],[-166.591512,53.715602],[-166.263037,53.700395],[-166.665332,53.578353],[-166.637078,53.522244],[-166.716323,53.537122],[-166.668686,53.520461],[-166.646225,53.500281],[-166.656234,53.487119],[-167.658005,53.240008],[-167.852333,53.315599]]],[[[-169.09569,52.830348],[-168.862875,52.940988],[-168.799743,53.141344],[-168.766444,53.180241],[-168.722027,53.204802],[-168.703745,53.207985],[-168.684847,53.231867],[-168.661344,53.230088],[-168.604049,53.277978],[-168.524988,53.252312],[-168.479907,53.273241],[-168.45549,53.273021],[-168.437177,53.253816],[-168.343994,53.26215],[-168.340516,53.29393],[-168.367129,53.292931],[-168.388283,53.32052],[-168.433667,53.325381],[-168.408208,53.419529],[-168.233863,53.528334],[-168.014542,53.564612],[-167.982895,53.562644],[-167.962723,53.554069],[-167.938981,53.526908],[-167.791026,53.521076],[-167.842329,53.386491],[-167.872879,53.367361],[-167.897988,53.364899],[-168.039762,53.304284],[-168.106955,53.28919],[-168.124364,53.27457],[-168.270745,53.242811],[-168.346106,53.157364],[-168.376269,53.165629],[-168.361394,53.133456],[-168.455922,53.057412],[-168.484094,53.047247],[-168.514829,53.047056],[-168.517179,53.037998],[-168.578897,53.029914],[-168.723816,52.943805],[-168.787026,52.948104],[-168.756287,52.907541],[-169.09569,52.830348]]],[[[-133.714704,55.90082],[-133.613583,56.142019],[-133.518849,56.117768],[-133.461446,56.136783],[-133.451802,56.15083],[-133.411086,56.162948],[-133.284773,56.14718],[-133.288303,56.01614],[-133.368722,55.995253],[-133.374004,56.024809],[-133.429824,56.014827],[-133.45827,56.005336],[-133.491996,56.016481],[-133.714704,55.90082]]],[[[-132.34217,55.918044],[-132.722096,56.144859],[-132.717497,56.216643],[-132.689497,56.237544],[-132.644364,56.231433],[-132.602155,56.238513],[-132.583173,56.283772],[-132.531413,56.336601],[-132.444954,56.351404],[-132.425299,56.346399],[-132.383547,56.305235],[-132.385254,56.25512],[-132.477424,56.19664],[-132.107977,56.10663],[-132.224605,56.067751],[-132.218186,55.936143],[-132.242124,55.923021],[-132.278904,55.934689],[-132.297185,55.91971],[-132.34217,55.918044]]],[[[-132.861903,56.232241],[-133.066204,56.348092],[-132.735291,56.457],[-132.861903,56.232241]]],[[[-134.1259897,56.0003207],[-134.285696,56.348915],[-134.232146,56.378861],[-134.221087,56.416028],[-134.176559,56.409747],[-134.182785,56.443949],[-134.037296,56.360419],[-134.036335,56.496777],[-134.415466,56.829385],[-134.13882,56.850465],[-134.146343,56.877069],[-134.214924,56.893864],[-134.269093,56.924674],[-134.245226,56.928534],[-134.219804,56.923752],[-134.17021,56.904977],[-134.150122,56.907966],[-134.038558,56.871596],[-134.017823,56.871162],[-133.943435,56.795963],[-133.986855,56.627115],[-133.867678,56.7317285],[-133.869918,56.760722],[-133.865248,56.779842],[-133.887617,56.805942],[-133.730188,56.774283],[-133.769207,56.684149],[-133.690733,56.599399],[-133.773671,56.557443],[-133.793365,56.571315],[-133.791259,56.582354],[-133.834897,56.595707],[-133.831508,56.606213],[-133.898153,56.607045],[-133.967197,56.497243],[-133.950084,56.487072],[-133.894009,56.487859],[-133.864011,56.46963],[-133.871888,56.395279],[-133.891114,56.38932],[-133.912409,56.401922],[-133.927416,56.373467],[-133.904201,56.371083],[-133.888577,56.359723],[-133.844326,56.345953],[-133.830711,56.318617],[-133.868153,56.275981],[-133.902699,56.300631],[-133.945514,56.343157],[-133.982192,56.342248],[-133.984083,56.275138],[-133.912431,56.275941],[-133.877758,56.223007],[-133.984434,56.081894],[-134.036378,56.116652],[-134.018712,56.148667],[-134.016638,56.166246],[-134.075808,56.30978],[-134.08924,56.191725],[-134.133488,56.164921],[-134.193838,56.178415],[-134.1259897,56.0003207]]],[[[-132.81635,56.4934937],[-132.947551,56.506834],[-132.960155,56.526265],[-132.9432427,56.8224283],[-132.550007,56.606502],[-132.544361,56.581675],[-132.81635,56.4934937]]],[[[-164.084894,54.620131],[-164.328537,54.539693],[-164.336042,54.48451],[-164.352704,54.465024],[-164.41682,54.431714],[-164.640458,54.391167],[-164.743977,54.394216],[-164.805774,54.404896],[-164.844932,54.417584],[-164.944637,54.532903],[-164.939664,54.559447],[-164.94879,54.579878],[-164.918761,54.605307],[-164.709466,54.661519],[-164.56405,54.87554],[-164.550256,54.888786],[-164.517053,54.894669],[-164.507502,54.912157],[-164.486781,54.922442],[-164.435281,54.933126],[-164.373441,54.91535],[-164.343535,54.894139],[-164.223329,54.898243],[-164.125616,54.971743],[-164.030708,54.969819],[-163.981192,54.988823],[-163.894695,55.039116],[-163.77867,55.055673],[-163.533736,55.053617],[-163.540022,55.038968],[-163.529614,55.012233],[-163.418042,54.938499],[-163.415045,54.861082],[-163.372807,54.790937],[-163.32285,54.750281],[-163.046491,54.670981],[-163.352695,54.751318],[-163.422913,54.654135],[-163.502228,54.650442],[-163.50766,54.636136],[-163.571045,54.627415],[-163.596924,54.614231],[-164.084894,54.620131]]],[[[-131.607862,54.998367],[-131.597838,55.27654],[-131.357607,55.071149],[-131.607862,54.998367]]],[[[-132.142211,54.695659],[-132.390607,55.087867],[-132.419329,54.915801],[-132.492817,55.000681],[-132.605758,54.966815],[-132.493641,55.050774],[-132.570784,55.131132],[-132.593091,55.113448],[-132.611859,55.083992],[-132.639202,55.077179],[-132.628825,55.11119],[-132.608683,55.145095],[-132.589795,55.159483],[-132.655371,55.26969],[-132.600352,55.290907],[-132.67127,55.279189],[-132.631997,55.180488],[-132.637552,55.155525],[-132.676005,55.147622],[-132.700022,55.147401],[-133.240652,55.289726],[-133.225864,55.383881],[-133.004463,55.346377],[-132.989446,55.356958],[-132.919096,55.347156],[-132.919065,55.360636],[-133.051369,55.612822],[-133.406521,55.645843],[-133.366931,55.682854],[-133.389393,55.699797],[-133.387445,55.733035],[-133.347398,55.7076],[-133.341071,55.749032],[-133.295735,55.733788],[-133.259797,55.745178],[-133.236495,55.758929],[-133.224571,55.787957],[-133.15619,55.819123],[-133.1565,55.834871],[-133.265544,56.146236],[-133.293745,56.161935],[-133.445913,56.16412],[-133.467281,56.174515],[-133.532194,56.187587],[-133.584808,56.180664],[-133.660231,56.309222],[-133.620118,56.336353],[-133.6375981,56.3459736],[-133.62195,56.355936],[-133.346931,56.299343],[-133.326071,56.298304],[-133.272115,56.333233],[-133.174759,56.327284],[-133.151473,56.305746],[-133.168593,56.29862],[-133.155622,56.26946],[-133.139507,56.277647],[-133.112681,56.245419],[-133.075479,56.244702],[-133.037756,56.182566],[-133.048082,56.153512],[-133.088915,56.129944],[-133.088628,56.106111],[-133.134415,56.101528],[-133.098514,56.048271],[-132.971065,56.006067],[-132.923596,56.012625],[-132.845078,56.035798],[-132.731551,55.978692],[-132.481174,55.792759],[-132.475906,55.777007],[-132.491523,55.760885],[-132.447729,55.717321],[-132.464536,55.68377],[-132.564271,55.683487],[-132.445985,55.642841],[-132.419225,55.668095],[-132.386724,55.666251],[-132.171726,55.491316],[-132.169222,55.452956],[-132.251834,55.494498],[-132.294895,55.508268],[-132.384404,55.533],[-132.419723,55.539764],[-132.473357,55.562063],[-132.534081,55.60641],[-132.694248,55.458744],[-132.425538,55.516421],[-132.527065,55.368531],[-132.277528,55.420775],[-132.230742,55.376837],[-132.195795,55.373526],[-132.158689,55.348229],[-132.15466,55.313676],[-132.102289,55.268565],[-132.145959,55.241374],[-132.371458,55.263825],[-132.35951,55.136516],[-132.282983,55.234087],[-132.128133,55.196368],[-132.065241,55.26421],[-132.031917,55.281154],[-132.001308,55.265974],[-132.002106,55.246628],[-131.989804,55.22981],[-131.995755,55.213376],[-131.980894,55.185887],[-131.989561,55.172741],[-132.015012,55.164036],[-132.036775,55.12955],[-131.999388,55.113292],[-132.275276,55.028073],[-132.210722,54.926042],[-131.983207,55.039073],[-132.142211,54.695659]]],[[[-160.8175702,55.1224151],[-160.797147,55.381522],[-160.517513,55.379378],[-160.522441,55.134975],[-160.8175702,55.1224151]]],[[[-131.2164588,55.1962026],[-131.239902,55.199909],[-131.300179,55.230668],[-131.325704,55.249735],[-131.209275,55.3902],[-131.48304,55.305974],[-131.353012,55.594481],[-131.5291397,55.297272],[-131.839682,55.456841],[-131.656084,55.561641],[-131.723457,55.749544],[-131.51106,55.785396],[-131.717203,55.83564],[-131.260184,55.96943],[-130.948479,55.623818],[-130.979388,55.395925],[-131.047625,55.402646],[-131.072979,55.263175],[-131.16096,55.23155],[-131.156412,55.21234],[-131.192492,55.196384],[-131.2164588,55.1962026]]],[[[-133.505598,55.703356],[-133.649423,55.823724],[-133.311424,55.795886],[-133.505598,55.703356]]],[[[-130.70945,54.77162],[-131.01663,55.033452],[-130.707641,55.055416],[-130.553267,55.270988],[-130.753765,55.10519],[-130.831494,55.156699],[-131.005068,55.090604],[-131.034244,55.098163],[-131.045111,55.117245],[-131.079597,55.130625],[-131.1008028,55.1851462],[-131.084513,55.204964],[-130.959395,55.279717],[-130.961561,55.295159],[-130.671009,55.345469],[-130.881119,55.316262],[-130.87347,55.717634],[-131.221031,55.981262],[-131.068103,56.070554],[-131.904398,55.870737],[-131.768717,55.814278],[-131.890567,55.602421],[-131.999726,55.648313],[-131.943242,55.592701],[-131.941074,55.535748],[-131.963932,55.533787],[-131.969516,55.512227],[-131.99097,55.501661],[-132.187993,55.58958],[-132.2867869,55.7605991],[-132.2681608,55.7648221],[-132.2351023,55.744059],[-132.1955408,55.7310351],[-132.075206,55.808843],[-131.97331,56.1727],[-131.507585,56.228204],[-131.978769,56.380195],[-132.026805,56.137001],[-132.332732,56.233972],[-132.367127,56.279942],[-132.3431043,56.339163],[-132.3577,56.343762],[-132.367802,56.367491],[-132.34493,56.411583],[-132.37699,56.434532],[-132.3941195,56.4837818],[-132.3620979,56.4858548],[-132.3497284,56.4752929],[-132.318974,56.463535],[-132.257754,56.446156],[-132.174229,56.348269],[-132.112616,56.359053],[-132.209873,56.456785],[-132.295567,56.483754],[-132.311682,56.502316],[-132.340155,56.512677],[-132.365975,56.530681],[-132.368878,56.593426],[-132.32783,56.605093],[-132.236644,56.685006],[-132.053196,56.695651],[-131.834627,56.593367],[-131.582913,56.605919],[-130.470488,56.231571],[-130.429441,56.13075],[-130.106505,56.110601],[-130.020404,56.011407],[-130.017428,55.911878],[-130.043903,55.897606],[-130.093499,55.836654],[-130.153283,55.81689],[-130.188101,55.716296],[-130.013231,55.284499],[-130.70945,54.77162]]],[[[-172.568605,60.315976],[-173.041847,60.611497],[-172.254821,60.326467],[-172.568605,60.315976]]],[[[-166.078038,59.751817],[-166.13567,59.747893],[-166.173115,59.78735],[-166.252204,59.819],[-166.297446,59.823978],[-166.284462,59.85672],[-166.334144,59.867802],[-166.455067,59.842835],[-166.530691,59.844974],[-166.566018,59.850278],[-166.616566,59.850624],[-167.111792,59.989335],[-167.33911,60.07016],[-167.33405,60.08861],[-167.343303,60.123182],[-167.442716,60.204224],[-167.31891,60.237779],[-167.287813,60.237969],[-167.276101,60.226673],[-167.248742,60.222218],[-167.227319,60.238315],[-167.16134,60.233829],[-167.161852,60.2235],[-167.106902,60.238621],[-167.045821,60.219088],[-166.95129,60.227796],[-166.937971,60.205871],[-166.894951,60.208701],[-166.860768,60.204821],[-166.811924,60.229389],[-166.811968,60.261933],[-166.839044,60.272221],[-166.746506,60.312608],[-166.15766,60.422355],[-165.787371,60.327637],[-165.516935,59.914105],[-166.078038,59.751817]]],[[[-146.617621,60.241085],[-146.620819,60.484165],[-146.136127,60.43507],[-146.617621,60.241085]]],[[[-147.852553,59.786652],[-147.211618,60.346269],[-146.918441,60.314582],[-147.852553,59.786652]]],[[[-148.680067,59.9437972],[-148.635891,59.939662],[-148.59917,59.950889],[-148.5836031,59.9614235],[-148.564513,60.128071],[-148.665169,60.458154],[-148.248003,60.445342],[-148.114947,60.596029],[-148.085181,60.525965],[-148.031372,60.546612],[-148.016151,60.517454],[-147.979204,60.519147],[-147.963794,60.50275],[-147.976434,60.481225],[-148.003272,60.471238],[-148.054315,60.461919],[-148.057556,60.450474],[-148.011082,60.456331],[-148.002739,60.443179],[-147.970613,60.449911],[-147.94186,60.444029],[-147.958269,60.42122],[-147.992316,60.416635],[-148.01129,60.402115],[-148.040164,60.39307],[-148.078296,60.400961],[-148.097877,60.372556],[-148.14147,60.377748],[-148.129704,60.35303],[-148.170793,60.335252],[-148.221551,60.349058],[-148.235636,60.359194],[-148.258411,60.353816],[-148.249152,60.281266],[-148.409014,60.263533],[-148.354795,60.194537],[-148.275874,60.249271],[-148.216981,60.260007],[-148.188408,60.248575],[-148.200886,60.236712],[-148.250147,60.232843],[-148.294361,60.213338],[-148.221177,60.153697],[-148.184967,60.165547],[-148.153135,60.235526],[-148.139969,60.241082],[-148.13525,60.164531],[-148.212508,60.128329],[-148.246187,60.117883],[-148.303095,60.11599],[-148.331717,60.170571],[-148.449182,60.028567],[-148.401249,59.997606],[-148.421772,59.987508],[-148.429143,59.969161],[-148.470246,59.973708],[-148.467731,59.994628],[-148.544196,60.00281],[-148.543125,59.970367],[-148.5636677,59.9463298],[-148.6139354,59.9229566],[-148.680067,59.9437972]]],[[[-164.739332,60.291991],[-164.97128,60.539558],[-165.257774,60.492852],[-165.309528,60.505753],[-165.355996,60.506293],[-165.37756,60.513164],[-165.415194,60.55816],[-165.2895257,60.5745429],[-165.2303738,60.6171765],[-165.191998,60.618487],[-165.063149,60.688646],[-165.027536,60.686009],[-164.971251,60.711434],[-165.040844,60.772661],[-164.862285,60.839831],[-164.939497,60.924775],[-164.828201,60.862982],[-164.653102,60.904211],[-164.647541,60.816976],[-164.264164,60.789629],[-164.199633,60.677201],[-164.739332,60.291991]]],[[[-148.656061,60.498221],[-148.656481,60.667051],[-148.405705,60.780301],[-148.192735,60.609891],[-148.656061,60.498221]]],[[[-169.637764,62.941672],[-169.750169,62.955592],[-169.716141,63.046802],[-169.770426,63.05959],[-169.767298,63.07415],[-169.790475,63.093792],[-169.865488,63.129023],[-169.914803,63.145717],[-169.966765,63.141536],[-170.024668,63.14909],[-170.12782,63.183251],[-170.260562,63.177793],[-170.307109,63.238273],[-170.368292,63.285175],[-170.434148,63.31386],[-170.762549,63.394771],[-170.971008,63.423286],[-171.104393,63.422972],[-171.272789,63.384932],[-171.291805,63.374378],[-171.280552,63.359301],[-171.331084,63.335013],[-171.436858,63.307118],[-171.467994,63.306454],[-171.514135,63.32603],[-171.561045,63.319275],[-171.569078,63.337829],[-171.74288,63.365642],[-171.852976,63.486569],[-171.7428556,63.7834702],[-171.569604,63.666388],[-171.603825,63.642232],[-171.661828,63.621388],[-170.950529,63.563679],[-170.914604,63.566813],[-170.885051,63.585371],[-170.635663,63.665473],[-170.594613,63.662038],[-170.552074,63.666767],[-170.538949,63.683598],[-170.47432,63.697304],[-170.348386,63.693807],[-170.116573,63.615834],[-170.044413,63.523001],[-170.063499,63.506827],[-170.06067,63.495087],[-170.030441,63.480292],[-169.561081,63.362206],[-169.235144,63.327642],[-169.159337,63.336136],[-169.125341,63.334668],[-169.055381,63.34274],[-168.939312,63.336524],[-168.696361,63.301901],[-168.706481,63.278314],[-168.735895,63.267634],[-168.720292,63.255936],[-168.728453,63.227997],[-168.786656,63.183751],[-168.82176,63.162844],[-168.862166,63.146578],[-168.893099,63.147327],[-168.966996,63.166721],[-169.109232,63.178416],[-169.371456,63.15193],[-169.44018,63.113186],[-169.538417,63.07396],[-169.535608,62.976972],[-169.637764,62.941672]]],[[[-153.281728,57.001035],[-153.348626,57.012743],[-153.322884,57.026119],[-153.32318,57.042026],[-153.360474,57.051156],[-153.303684,57.097489],[-153.4037,57.080538],[-153.276504,57.201353],[-153.090437,57.12777],[-153.055189,57.172851],[-152.975827,57.190394],[-152.947151,57.189736],[-152.944002,57.180062],[-152.917349,57.170798],[-152.892771,57.175094],[-152.912246,57.13559],[-153.005238,57.128243],[-153.027771,57.142098],[-153.179758,57.097357],[-153.215252,57.078038],[-153.198582,57.04508],[-153.281728,57.001035]]],[[[-135.813713,56.9839429],[-135.767109,57.339748],[-135.558836,57.1458],[-135.813713,56.9839429]]],[[[-133.521099,56.43496],[-133.658776,56.446287],[-133.655177,56.457075],[-133.668179,56.485808],[-133.661832,56.492995],[-133.673337,56.536812],[-133.648204,56.561587],[-133.683346,56.578723],[-133.648586,56.590083],[-133.653316,56.607441],[-133.689142,56.64054],[-133.70919,56.649995],[-133.725732,56.682986],[-133.711529,56.688139],[-133.692509,56.715462],[-133.694881,56.827557],[-133.770959,56.804541],[-133.870711,56.858274],[-133.77288,56.896124],[-134.0258164,57.0287284],[-134.025382,57.061217],[-133.949882,57.070723],[-133.914147,57.086814],[-133.885307,57.094794],[-132.952019,56.872059],[-133.011635,56.59656],[-133.369868,56.833371],[-133.089707,56.534193],[-133.137806,56.531569],[-133.139576,56.507337],[-133.121966,56.490499],[-133.20281,56.446184],[-133.521099,56.43496]]],[[[-134.664825,56.1644561],[-134.678775,56.204688],[-134.716196,56.221773],[-134.7643,56.215211],[-134.761981,56.226679],[-134.789387,56.229525],[-134.80169,56.238622],[-134.806186,56.337325],[-134.891682,56.318983],[-135.056853,56.535882],[-134.888265,56.670433],[-135.119805,56.595716],[-134.990904,56.748001],[-135.207564,56.665812],[-135.098993,56.787439],[-135.373751,56.826063],[-135.135796,56.991966],[-135.278836,57.171396],[-135.392979,57.141687],[-135.346453,57.23914],[-135.470744,57.254759],[-135.493479,57.253407],[-135.534321,57.234864],[-135.688513,57.363083],[-135.651441,57.371202],[-135.489018,57.353129],[-135.596641,57.40736],[-135.528283,57.447871],[-135.5429242,57.5069012],[-135.52168,57.507645],[-135.440183,57.554037],[-135.290032,57.506796],[-135.304088,57.490727],[-135.363656,57.473656],[-135.414116,57.449709],[-135.391542,57.429198],[-135.346063,57.469993],[-135.293486,57.479345],[-135.281884,57.471745],[-135.222804,57.486465],[-134.829348,57.408168],[-134.807886,57.297341],[-134.948953,57.339745],[-135.020807,57.348485],[-135.073647,57.340104],[-134.947055,57.325074],[-135.012081,57.260633],[-134.960614,57.30565],[-134.914895,57.256036],[-134.858016,57.26772],[-134.840413,57.250155],[-134.625866,56.717793],[-134.624989,56.561669],[-134.668662,56.561837],[-134.666062,56.537137],[-134.724239,56.54697],[-134.63903,56.479502],[-134.653063,56.278718],[-134.618368,56.253138],[-134.664825,56.1644561]]],[[[-141.001696,59.769829],[-141.001841,60.306105],[-140.003057,60.1866],[-139.709302,60.341309],[-139.090333,60.358992],[-139.087148,60.325163],[-139.215384,60.091928],[-138.715827,59.912058],[-138.63096,59.771571],[-138.564943,59.739909],[-138.255929,59.582349],[-138.004052,59.453905],[-137.604426,59.244753],[-137.503269,59.00313],[-137.497721,58.987689],[-137.525484,58.907532],[-137.4461874,58.910322],[-136.8238376,59.1608028],[-136.578282,59.167523],[-136.463332,59.287515],[-136.471265,59.468065],[-136.3644396,59.4522769],[-136.298212,59.468221],[-136.230519,59.52911],[-136.233051,59.563176],[-136.346355,59.603682],[-135.470239,59.80308],[-134.955397,59.283112],[-134.698109,59.250981],[-134.479097,59.130886],[-134.251178,58.859688],[-133.844558,58.729492],[-133.729226,58.627223],[-133.705696,58.608455],[-133.385632,58.428486],[-132.255094,57.210973],[-132.373798,57.091569],[-132.053693,57.045676],[-132.127591,56.87047],[-131.873482,56.798749],[-131.852729,56.660455],[-131.896053,56.643497],[-132.081275,56.714312],[-132.454423,56.669523],[-132.831519,57.097829],[-132.89892,57.023362],[-133.164764,57.172283],[-133.28838,57.106532],[-133.361345,57.11728],[-133.56261,57.187211],[-133.528916,57.189401],[-133.504197,57.201851],[-133.474726,57.293455],[-133.056576,57.35085],[-133.451358,57.352618],[-133.347935,57.594388],[-133.479542,57.583667],[-133.563691,57.56081],[-133.617968,57.576863],[-133.653665,57.706817],[-133.621182,57.711823],[-133.584853,57.709031],[-133.570932,57.714094],[-133.223495,57.600503],[-133.077124,57.510463],[-132.896755,57.494243],[-133.576482,57.914101],[-133.152685,57.856955],[-133.586925,57.924449],[-133.701027,57.790745],[-134.009517,58.390857],[-134.1507868,58.2833284],[-134.103389,58.235733],[-134.1489444,58.2042325],[-134.1852145,58.2085956],[-134.21696,58.20448],[-134.2707995,58.2302098],[-134.318286,58.256111],[-134.4068952,58.2991917],[-134.4258107,58.3008981],[-134.5165854,58.355729],[-134.6360823,58.3405856],[-134.6459384,58.3861417],[-134.7070115,58.375372],[-134.7371904,58.3758055],[-134.7775785,58.3941792],[-134.9888764,58.6739081],[-134.973983,58.680433],[-134.933006,58.681453],[-134.929319,58.775803],[-135.148422,58.857458],[-135.3354935,59.4789059],[-135.297037,59.095034],[-135.588613,59.251089],[-135.3226381,59.0646598],[-135.397961,58.970114],[-135.138394,58.618879],[-135.236663,58.620297],[-135.056545,58.350613],[-135.047716,58.310388],[-135.120598,58.222347],[-135.277341,58.233558],[-135.345076,58.270872],[-135.369744,58.312216],[-135.398331,58.327942],[-135.452167,58.45434],[-135.499637,58.509636],[-135.477218,58.376565],[-135.6206,58.428903],[-135.91847,58.381085],[-136.087739,58.817481],[-135.785019,58.891361],[-136.192367,59.070129],[-136.212647,58.752598],[-136.928255,58.926917],[-136.084209,58.569222],[-136.035742,58.381942],[-136.466966,58.402012],[-136.369358,58.300229],[-136.646479,58.340261],[-136.562509,58.260976],[-136.564288,58.244909],[-136.5847,58.236857],[-136.594097,58.215475],[-136.653337,58.208845],[-137.679954,58.620934],[-137.928151,58.78008],[-137.924721,58.843823],[-137.932924,58.868499],[-137.9629577,58.8939614],[-138.172985,59.003598],[-138.034389,59.010741],[-138.114879,59.043676],[-138.1858715,59.0181525],[-138.416482,59.104121],[-138.428289,59.09663],[-138.475681,59.108578],[-138.519867,59.105573],[-138.566649,59.116394],[-138.517029,59.117727],[-138.499998,59.127476],[-138.496383,59.191665],[-138.634119,59.165981],[-138.661555,59.140804],[-138.767322,59.191117],[-138.87721,59.233905],[-139.111392,59.298144],[-139.212276,59.319139],[-139.341327,59.351241],[-139.427505,59.376888],[-139.878136,59.541398],[-139.537179,59.678401],[-139.533094,59.714434],[-139.609784,59.719398],[-139.592539,59.736132],[-139.57429,59.741196],[-139.545697,59.73546],[-139.650473,59.878167],[-139.517114,59.993794],[-139.309735,59.56324],[-139.311168,59.822765],[-138.9087,59.817873],[-139.531403,60.061534],[-139.625942,59.956339],[-139.735133,59.925285],[-139.795149,59.838363],[-139.856396,59.815223],[-139.938365,59.797995],[-139.988841,59.790304],[-140.149953,59.878241],[-140.342806,59.789635],[-140.007151,59.785421],[-140.16617,59.744395],[-140.234287,59.712906],[-140.27839,59.700572],[-140.315594,59.695145],[-140.409145,59.697353],[-140.647431,59.710194],[-140.900916,59.73502],[-140.948925,59.753831],[-141.001696,59.769829]]],[[[-154.121806,56.744311],[-154.149443,56.745736],[-154.138399,56.764744],[-154.105774,56.797144],[-154.08797,56.824229],[-154.056206,56.850666],[-153.83116,56.962356],[-153.965698,56.996272],[-153.789541,57.163739],[-154.095956,56.968526],[-153.976508,57.119164],[-154.22607,57.164246],[-154.464558,57.13197],[-154.096151,57.123291],[-154.159196,56.945342],[-154.259007,56.936043],[-154.212154,56.90647],[-154.261356,56.903542],[-154.254545,56.881802],[-154.281723,56.870905],[-154.288563,56.889396],[-154.283702,56.911949],[-154.298725,56.914888],[-154.295546,56.860055],[-154.275186,56.862773],[-154.242244,56.885338],[-154.23241,56.872065],[-154.255367,56.865427],[-154.303256,56.843808],[-154.298271,56.863208],[-154.305643,56.913062],[-154.352272,56.939813],[-154.273581,56.957936],[-154.522335,56.992144],[-154.570658,57.248294],[-154.619511,57.278637],[-154.67263,57.277642],[-154.679788,57.289263],[-154.701956,57.29036],[-154.773924,57.28471],[-154.623976,57.521273],[-154.336224,57.648966],[-154.270843,57.6514],[-154.229635,57.671623],[-154.011313,57.652679],[-153.634607,57.275499],[-153.877394,57.654198],[-153.565383,57.602895],[-153.922894,57.723196],[-153.940618,57.741579],[-153.933696,57.758796],[-153.937132,57.818198],[-153.85531,57.8776],[-153.725728,57.907497],[-153.715006,57.895696],[-153.660528,57.889314],[-153.624621,57.891948],[-153.501631,57.63242],[-153.478517,57.849527],[-153.193941,57.709208],[-153.086267,57.849316],[-153.203767,57.945673],[-153.233659,57.950684],[-153.27091,57.963592],[-153.286302,57.99827],[-152.802693,57.917939],[-152.796342,57.906803],[-152.88736,57.851519],[-152.910482,57.811691],[-152.845645,57.733159],[-152.82314,57.847273],[-152.729694,57.822348],[-152.691225,57.878295],[-152.628017,57.859912],[-152.621195,57.879326],[-152.640006,57.901413],[-152.637949,57.917457],[-152.609695,57.921325],[-152.467604,57.894911],[-152.325453,57.822462],[-152.379017,57.793057],[-152.449591,57.776255],[-152.478921,57.745751],[-152.568394,57.707736],[-152.468952,57.599257],[-152.428998,57.592877],[-152.406434,57.608471],[-152.369515,57.618817],[-152.271307,57.627168],[-152.151147,57.616657],[-152.318495,57.43158],[-152.341859,57.422316],[-152.375811,57.431792],[-152.44997,57.433771],[-152.488606,57.466737],[-152.515859,57.432188],[-152.95534,57.522106],[-152.620615,57.401099],[-152.601351,57.381702],[-152.611317,57.356925],[-152.631357,57.347226],[-152.630888,57.325051],[-152.652801,57.308911],[-152.810936,57.270185],[-152.846647,57.274292],[-152.840375,57.294622],[-152.900944,57.302178],[-152.876325,57.349119],[-153.145609,57.320217],[-152.943625,57.256069],[-153.539124,57.177917],[-153.498216,57.065113],[-153.689773,57.064991],[-153.595452,57.055941],[-153.609412,57.009935],[-153.543162,56.998758],[-153.550986,56.975937],[-153.599414,56.935399],[-153.628707,56.937056],[-153.668962,56.932337],[-153.708593,56.94382],[-153.784815,56.86957],[-153.761616,56.860329],[-153.69519,56.881417],[-153.691065,56.863481],[-153.76484,56.8433],[-153.815664,56.848676],[-153.84384,56.838458],[-153.848857,56.81915],[-153.898389,56.792019],[-153.908748,56.766413],[-153.97049,56.744806],[-154.121806,56.744311]]],[[[-141.001854,60.390438],[-142.861805,60.590932],[-142.861915,60.75853],[-143.717036,60.845415],[-143.716827,61.031627],[-144.424139,61.040583],[-144.413015,61.214045],[-145.36147,61.157831],[-145.698157,60.8992],[-145.915058,60.949125],[-146.06372,60.808499],[-146.24544,60.798837],[-146.386642,60.750472],[-146.513835,60.721236],[-146.56953,60.711471],[-146.619067,60.684562],[-146.693669,60.747045],[-146.618509,60.728265],[-146.603003,60.761469],[-146.568064,60.741865],[-146.512912,60.758852],[-146.513752,60.774633],[-146.330879,60.789649],[-146.24319,60.842927],[-146.120327,60.848746],[-146.234241,60.885642],[-146.548583,60.811238],[-146.584371,60.855113],[-146.604333,60.843873],[-146.615648,60.825276],[-146.633684,60.829482],[-146.632155,60.849392],[-146.61138,60.86405],[-146.629346,60.887521],[-146.6765581,60.8601042],[-146.734896,60.91253],[-146.736407,60.938799],[-146.755847,60.961222],[-146.585232,60.938249],[-146.65806,61.034622],[-146.540414,61.015898],[-146.653549,61.067968],[-146.272244,61.113176],[-146.59122,61.129941],[-146.731885,61.048405],[-146.788155,61.071996],[-146.790297,61.031201],[-146.855041,60.992833],[-146.858621,60.977906],[-146.879387,60.965135],[-146.935235,60.943281],[-147.055628,60.945532],[-147.01258,60.959946],[-146.988535,60.972953],[-146.976575,61.00013],[-147.101941,61.012327],[-147.14679,60.977361],[-147.135728,60.946249],[-147.171823,60.932878],[-147.215519,60.948077],[-147.226743,60.962161],[-147.214137,60.998669],[-147.363728,60.884751],[-147.445675,60.989949],[-147.549999,60.908009],[-147.5202,61.155083],[-147.682748,60.959739],[-147.594712,60.949069],[-147.613694,60.919743],[-147.58891,60.879441],[-147.602644,60.849979],[-147.672157,60.845283],[-147.659576,60.862362],[-147.675665,60.890486],[-147.726676,60.882967],[-147.709188,60.939779],[-147.7527,60.936077],[-147.797549,60.857728],[-147.773208,60.85877],[-147.750087,60.828585],[-147.777374,60.81102],[-147.836289,60.823748],[-147.799976,60.845045],[-147.811097,60.850346],[-147.856124,60.820883],[-147.880265,60.827151],[-147.911096,60.851824],[-147.920756,60.89118],[-148.065299,60.937963],[-147.725074,61.277177],[-148.655767,60.727256],[-148.460084,61.426973],[-149.237607,61.47912],[-149.469924,61.498779],[-149.009035,61.890762],[-149.037853,61.672414],[-147.2665737,61.8303826],[-146.977259,61.6610744],[-146.984765,62.242473],[-146.426456,62.247209],[-146.489541,63.482913],[-147.686211,63.472155],[-147.255383,63.625435],[-147.685965,63.787237],[-147.571949,64.260022],[-146.355747,64.279714],[-144.072624,64.652067],[-143.891217,65.091284],[-145.64925,65.033179],[-145.995111,65.406472],[-147.197831,65.286346],[-147.82864,65.410283],[-147.682961,65.550911],[-148.324709,65.326328],[-148.13865,65.211281],[-148.663844,65.211355],[-148.6451156,64.6014469],[-149.310686,64.35844],[-150.750056,64.365202],[-151.300774,64.010019],[-152.529193,63.94101],[-152.853432,63.651711],[-152.434244,63.169824],[-153.001339,62.72744],[-153.002181,61.425686],[-152.70309,61.208243],[-151.827951,61.147883],[-151.740029,60.922784],[-151.800265,60.853673],[-151.777311,60.810462],[-151.751818,60.788729],[-151.703803,60.732376],[-151.712857,60.710958],[-152.309221,60.506384],[-152.234199,60.393889],[-152.307616,60.36649],[-152.315856,60.359071],[-152.366213,60.353304],[-152.386335,60.327889],[-152.392009,60.302108],[-152.411282,60.287865],[-152.556756,60.224218],[-152.613156,60.218943],[-152.640673,60.225898],[-152.660056,60.242005],[-152.721047,60.243576],[-152.787319,60.226503],[-152.896938,60.292566],[-153.001596,60.298069],[-152.935548,60.287426],[-152.895454,60.223194],[-152.683853,60.161508],[-152.687487,60.140306],[-152.65842,60.121592],[-152.601313,60.103661],[-152.569121,60.071749],[-152.604187,60.011938],[-152.679402,59.968055],[-152.693676,59.932774],[-152.706432,59.915285],[-152.745083,59.904232],[-152.793584,59.89672],[-152.811159,59.880709],[-152.861084,59.875007],[-152.882747,59.881969],[-152.920419,59.877741],[-153.002521,59.886727],[-153.173908,59.861669],[-153.245145,59.896533],[-153.257743,59.81081],[-153.081811,59.833957],[-153.021946,59.834135],[-152.994176,59.814203],[-153.048723,59.695353],[-153.100123,59.680337],[-153.129357,59.682017],[-153.143297,59.662954],[-153.214157,59.634272],[-153.262741,59.643426],[-153.275176,59.667304],[-153.314002,59.666336],[-153.301921,59.647274],[-153.302757,59.627679],[-153.342938,59.621313],[-153.409408,59.636326],[-153.415507,59.650919],[-153.367185,59.693564],[-153.436964,59.78037],[-154.136181,59.374461],[-154.106203,59.344013],[-154.060082,59.346831],[-154.033616,59.354282],[-153.969401,59.353034],[-154.019146,59.329232],[-154.054756,59.320793],[-154.113577,59.299627],[-154.13684,59.262666],[-154.134886,59.241361],[-154.141192,59.216599],[-154.122821,59.205533],[-154.177483,59.190508],[-154.16502,59.178702],[-154.188648,59.168276],[-154.22194,59.169324],[-154.214722,59.151646],[-154.263291,59.138462],[-154.171462,59.021964],[-154.063489,59.07214],[-153.845358,59.05295],[-153.793972,59.071417],[-153.769598,59.061776],[-153.724337,59.067111],[-153.704162,59.07578],[-153.624727,59.012937],[-153.547283,58.983717],[-153.505618,58.981734],[-153.479939,58.995287],[-153.398479,58.966057],[-153.319469,58.921946],[-153.335293,58.858798],[-153.262072,58.85154],[-153.344831,58.846954],[-153.369389,58.821255],[-153.370731,58.799302],[-153.385127,58.766173],[-153.402473,58.742608],[-153.445002,58.70931],[-153.577544,58.670533],[-153.591515,58.633942],[-153.677598,58.611603],[-153.771636,58.60564],[-153.832838,58.611671],[-153.897225,58.606127],[-153.999323,58.376373],[-154.35245,58.282126],[-154.184421,58.321575],[-154.149074,58.31454],[-154.136137,58.292065],[-154.106983,58.275999],[-154.222468,58.132566],[-154.3407,58.082133],[-154.343409,58.097366],[-154.436518,58.148294],[-154.432333,58.173199],[-154.469316,58.19185],[-154.449213,58.093218],[-154.525454,58.104125],[-154.559297,58.082291],[-154.536587,58.065426],[-154.568627,58.025787],[-154.64396,58.033148],[-154.653381,58.064038],[-154.679458,58.065727],[-154.721884,58.050544],[-154.737543,58.01295],[-154.765283,58.00371],[-154.819516,58.003495],[-154.82823,58.018849],[-154.868916,58.02726],[-154.912798,58.023985],[-154.929791,58.033737],[-154.963899,58.01363],[-155.022465,58.025677],[-155.122712,57.964366],[-155.094747,57.935438],[-155.063276,57.918978],[-155.069805,57.900577],[-155.098992,57.884048],[-155.153168,57.871431],[-155.240223,57.881168],[-155.21769,57.85666],[-155.238771,57.838759],[-155.263013,57.833677],[-155.327957,57.841023],[-155.342925,57.830447],[-155.326943,57.82006],[-155.337228,57.795031],[-155.292679,57.743566],[-155.30686,57.730979],[-155.379138,57.71529],[-155.424098,57.753107],[-155.463783,57.75265],[-155.546279,57.789395],[-155.618762,57.787611],[-155.612714,57.745421],[-155.630895,57.72728],[-155.634574,57.706551],[-155.58001,57.672474],[-155.734337,57.546785],[-155.81696,57.576923],[-155.915037,57.535017],[-155.967902,57.542634],[-156.011112,57.570154],[-156.044858,57.563039],[-156.024759,57.523327],[-156.049751,57.497489],[-156.023553,57.438026],[-156.092883,57.437689],[-156.135168,57.46939],[-156.184493,57.480419],[-156.211172,57.473175],[-156.220565,57.444175],[-156.335024,57.418716],[-156.354012,57.401627],[-156.407683,57.368111],[-156.535159,57.326783],[-156.552437,57.289086],[-156.355282,57.320766],[-156.345651,57.298432],[-156.320878,57.292663],[-156.33116,57.264613],[-156.346413,57.249226],[-156.40699,57.223833],[-156.338566,57.19024],[-156.340423,57.174757],[-156.357209,57.157823],[-156.576622,57.046286],[-156.546292,56.989802],[-156.661237,57.001301],[-156.703832,57.033746],[-156.72577,57.040137],[-156.745726,57.03528],[-156.774208,57.040851],[-157.199799,56.775406],[-157.384324,56.869642],[-157.434714,56.866605],[-157.595022,56.740685],[-157.574692,56.716399],[-157.558957,56.719286],[-157.545985,56.696658],[-157.47664,56.685426],[-157.455463,56.642839],[-157.666893,56.633986],[-157.694586,56.647696],[-157.730347,56.698627],[-157.747368,56.702118],[-157.909572,56.672896],[-158.133853,56.534444],[-157.899967,56.604714],[-157.824825,56.575181],[-157.817895,56.545929],[-157.853365,56.507548],[-158.498837,56.38011],[-158.618231,56.259568],[-158.558186,56.252636],[-158.538109,56.30898],[-158.464991,56.342147],[-158.429621,56.343124],[-158.152577,56.227497],[-158.410992,56.007491],[-158.505542,56.038018],[-158.499026,55.981698],[-158.516291,55.989604],[-158.551197,56.021678],[-158.557116,56.036128],[-158.496363,56.058216],[-158.598368,56.048823],[-158.606551,56.200709],[-158.717315,56.053415],[-158.63669,56.005007],[-158.689849,55.984483],[-158.653213,55.958615],[-159.411506,55.788912],[-159.470217,55.828912],[-159.471978,55.843507],[-159.461028,55.86667],[-159.473006,55.8739],[-159.456716,55.897561],[-159.528345,55.888459],[-159.550818,55.870133],[-159.541609,55.854378],[-159.512018,55.845413],[-159.494689,55.763451],[-159.630707,55.581087],[-159.618178,55.812995],[-159.712817,55.846393],[-159.811074,55.85657],[-160.429727,55.658047],[-160.433023,55.63998],[-160.394388,55.629986],[-160.354442,55.60944],[-160.501346,55.478518],[-161.234221,55.355904],[-161.318524,55.358241],[-161.31495,55.379231],[-161.346081,55.385783],[-161.507657,55.362787],[-161.489626,55.488178],[-161.13961,55.540969],[-161.587047,55.62006],[-161.960867,55.106735],[-162.471365,55.051933],[-162.645868,55.30318],[-162.7247402,55.222481],[-162.579766,55.13694],[-162.642477,55.06506],[-162.607474,55.089376],[-162.572406,55.019856],[-162.568648,54.956156],[-162.61516,54.987841],[-162.646473,54.997164],[-162.696005,54.994607],[-162.708453,54.958481],[-162.739918,54.951498],[-162.745563,54.943236],[-162.776843,54.932186],[-162.88164,54.934786],[-162.906757,54.949747],[-162.919941,54.950457],[-162.920103,54.971017],[-162.966788,55.004313],[-162.913748,55.021022],[-163.00155,55.080044],[-163.198546,55.134401],[-163.045461,54.949122],[-163.353124,54.810171],[-163.240009,54.962885],[-163.33053,55.089957],[-163.310694,55.105612],[-163.300046,55.132613],[-163.02811,55.230552],[-163.014803,55.218765],[-163.038973,55.21311],[-163.07895,55.186155],[-163.070495,55.174115],[-162.867553,55.182336],[-162.843172,55.242564],[-162.893709,55.242289],[-162.8880414,55.2704489],[-162.64991,55.364152],[-162.624092,55.367661],[-162.594765,55.360674],[-162.57395,55.348444],[-162.51853,55.360583],[-162.483406,55.386974],[-162.488526,55.455135],[-162.522717,55.455541],[-162.560437,55.441723],[-162.575651,55.446999],[-162.504042,55.482556],[-162.483688,55.495237],[-162.246972,55.680013],[-162.076139,55.770815],[-161.898956,55.833465],[-161.85843,55.865403],[-161.807833,55.891954],[-161.695132,55.907467],[-161.66614,55.904706],[-161.650057,55.91799],[-161.585605,55.937324],[-161.531711,55.94281],[-161.394106,55.963291],[-161.295566,55.981832],[-161.375674,55.956318],[-161.392333,55.915874],[-161.361146,55.952244],[-161.230445,55.947468],[-161.192871,55.961448],[-161.138544,55.953369],[-161.102244,55.96447],[-161.076384,55.94208],[-160.86325,55.996238],[-161.017117,55.911014],[-160.940847,55.822529],[-160.908954,55.802853],[-160.895211,55.807846],[-160.787046,55.726783],[-160.771538,55.885985],[-160.256264,55.766022],[-160.244275,55.852487],[-160.548059,55.943661],[-160.529292,55.986103],[-160.568357,56.004063],[-160.540647,56.023427],[-160.45566,56.118804],[-160.450778,56.150544],[-160.411382,56.194139],[-160.392677,56.237673],[-160.357156,56.279583],[-160.340249,56.291271],[-159.82805,56.543936],[-159.324421,56.670357],[-159.237876,56.730242],[-159.047729,56.806755],[-158.996708,56.798529],[-158.950489,56.83878],[-158.617907,56.758887],[-158.456276,57.196329],[-158.010613,57.401376],[-157.957241,57.450055],[-157.933111,57.47713],[-157.773275,57.547553],[-157.70435,57.563331],[-157.685264,57.55769],[-157.625955,57.492811],[-157.573351,57.515968],[-157.60046,57.606806],[-157.692112,57.610334],[-157.711499,57.639189],[-157.704749,57.720296],[-157.671876,57.772086],[-157.641978,57.869249],[-157.612284,57.97347],[-157.607199,58.034621],[-157.593771,58.08376],[-157.577566,58.12547],[-157.548819,58.137626],[-157.533361,58.160166],[-157.352285,58.220089],[-157.425085,58.210287],[-157.472777,58.230819],[-157.516335,58.255232],[-157.538671,58.272611],[-157.525401,58.4138],[-157.463575,58.497753],[-157.443085,58.50205],[-157.399449,58.525392],[-157.382317,58.52268],[-157.360349,58.532419],[-157.068045,58.708218],[-156.883078,58.983015],[-157.11639,58.867547],[-157.215672,58.841538],[-157.259663,58.835665],[-157.301303,58.837105],[-157.532555,58.772669],[-157.550655,58.754517],[-158.038122,58.633547],[-158.141929,58.612882],[-158.216373,58.612607],[-158.334351,58.662907],[-158.334351,58.684636],[-158.351123,58.726566],[-158.376512,58.747329],[-158.5644,58.804323],[-158.4324376,59.0596162],[-158.769202,58.864824],[-158.802176,58.734152],[-158.893774,58.720179],[-158.855515,58.693063],[-158.827157,58.64536],[-158.827187,58.628802],[-158.797107,58.583133],[-158.767666,58.563397],[-158.741332,58.495374],[-158.693941,58.485407],[-158.886394,58.394502],[-159.047944,58.427012],[-159.038962,58.436892],[-159.073195,58.474626],[-159.385323,58.764589],[-159.497884,58.825713],[-159.528694,58.834859],[-159.586787,58.841783],[-159.595915,58.834676],[-159.634056,58.847933],[-159.631671,58.856347],[-159.582976,58.900573],[-159.616106,58.932591],[-159.717038,58.930748],[-159.766263,58.875067],[-159.752608,58.843096],[-159.795444,58.83072],[-159.786585,58.821621],[-159.793415,58.805632],[-159.898701,58.776334],[-159.936766,58.802813],[-159.970165,58.834813],[-159.989786,58.837625],[-160.008386,58.880705],[-160.162501,58.867501],[-160.15457,58.90435],[-160.181764,58.913879],[-160.224954,58.903225],[-160.244624,58.890979],[-160.329547,58.947756],[-160.291931,58.977727],[-160.252977,58.988589],[-160.3353537,59.074479],[-160.676505,58.943743],[-160.75002,58.904319],[-160.783192,58.876343],[-160.805821,58.84365],[-160.830743,58.863348],[-160.823384,58.870998],[-160.870617,58.884086],[-160.956165,58.875965],[-161.288688,58.765996],[-161.289085,58.756212],[-161.337241,58.735423],[-161.363268,58.706736],[-161.359986,58.659197],[-161.677548,58.563588],[-162.134208,58.637557],[-161.97521,58.680245],[-161.935922,58.648283],[-161.886635,58.65334],[-161.692396,58.760986],[-161.842105,59.0345911],[-161.515905,59.106499],[-161.885179,59.077711],[-161.913411,59.08664],[-161.975428,59.135768],[-161.997115,59.167398],[-162.021773,59.214999],[-161.938177,59.257459],[-161.958085,59.288701],[-161.95005,59.353011],[-161.942812,59.37396],[-161.882512,59.39273],[-161.789962,59.473229],[-161.738385,59.46823],[-161.714145,59.479976],[-161.704048,59.501536],[-162.318433,60.406351],[-162.5832,60.299113],[-162.445728,60.176449],[-162.461917,60.06974],[-162.477884,60.040274],[-162.501812,60.010958],[-162.516982,59.981034],[-162.561429,59.960314],[-163.30857,59.804282],[-163.722124,59.779955],[-164.086229,59.821659],[-164.131023,59.849825],[-164.173204,59.901565],[-164.17682,59.933992],[-164.092408,59.975379],[-164.658968,60.315389],[-164.031675,60.759703],[-163.698324,60.575187],[-163.36356,60.844303],[-163.873911,60.844086],[-163.533732,60.903646],[-163.746222,60.995185],[-164.104043,60.868401],[-163.977494,61.053095],[-164.121655,60.869515],[-164.53357,60.847008],[-164.631698,60.928475],[-164.80398,60.894991],[-164.866592,60.944787],[-164.950056,60.942788],[-165.007097,60.922059],[-165.03242,60.90374],[-165.108287,60.913883],[-165.178971,60.948363],[-165.194964,60.979916],[-164.86818,61.096368],[-165.307976,61.181823],[-165.343443,61.070564],[-165.403008,61.067061],[-165.442047,61.07641],[-165.475688,61.076629],[-165.549613,61.088163],[-165.589471,61.108895],[-165.614992,61.155367],[-165.621246,61.176767],[-165.603086,61.189678],[-165.629399,61.243568],[-165.598664,61.250808],[-165.627138,61.288125],[-165.649251,61.29548],[-165.70572,61.296132],[-165.751875,61.308858],[-165.816435,61.303364],[-165.879599,61.335045],[-165.871741,61.430187],[-165.79157,61.449989],[-165.746146,61.417918],[-165.694588,61.437537],[-165.756806,61.502973],[-165.807731,61.533878],[-165.840645,61.532583],[-165.891976,61.550025],[-165.930485,61.556682],[-166.124203,61.504645],[-166.167668,61.641428],[-166.134939,61.633093],[-166.04138,61.638846],[-165.785597,61.677629],[-165.788278,61.690182],[-165.850797,61.68647],[-165.856539,61.700716],[-165.901082,61.699919],[-165.946486,61.709382],[-165.951647,61.722202],[-166.00772,61.723597],[-166.094312,61.813859],[-165.783079,61.814719],[-165.730439,61.842075],[-165.696039,61.847056],[-165.640217,61.848042],[-165.600098,61.859603],[-165.62213,61.877581],[-165.703482,61.921572],[-165.756807,62.006337],[-165.707335,62.106367],[-165.675605,62.135591],[-165.645367,62.150269],[-165.620747,62.172616],[-165.583642,62.184168],[-165.534239,62.229958],[-165.348413,62.357642],[-165.317354,62.361691],[-165.294963,62.403354],[-165.269271,62.427353],[-165.04724,62.540053],[-164.936156,62.650087],[-164.850878,62.692197],[-164.833648,62.716242],[-164.850421,62.724661],[-164.857182,62.76883],[-164.877245,62.784169],[-164.874259,62.808254],[-164.788212,62.941573],[-164.716721,63.006243],[-164.668161,63.027574],[-164.44346,63.036149],[-164.45207,63.068854],[-164.48647,63.0853],[-164.515639,63.11486],[-164.502218,63.124246],[-164.531738,63.135503],[-164.545384,63.153282],[-164.418975,63.213961],[-164.209476,63.251472],[-164.1592,63.256597],[-164.036565,63.261204],[-163.934597,63.237005],[-163.885059,63.222309],[-163.838079,63.223916],[-163.795277,63.216334],[-163.755284,63.217462],[-163.725805,63.210621],[-163.725866,63.197176],[-163.616272,63.141214],[-163.590122,63.146091],[-163.559698,63.136315],[-163.529939,63.1354],[-163.417684,63.083875],[-163.364979,63.055806],[-163.363587,63.034587],[-163.115661,63.050613],[-163.040501,63.062152],[-162.963277,63.111942],[-162.901644,63.125597],[-162.84384,63.15532],[-162.834927,63.164622],[-162.840188,63.18758],[-162.821122,63.205597],[-162.769537,63.217069],[-162.724081,63.214616],[-162.667915,63.227129],[-162.43217,63.382607],[-162.428745,63.401055],[-162.388736,63.432729],[-162.27109,63.487711],[-162.301643,63.537221],[-162.013382,63.48476],[-162.045709,63.475434],[-162.075308,63.448584],[-162.108539,63.442398],[-162.083471,63.43129],[-161.999896,63.448422],[-161.968756,63.431691],[-161.954001,63.450925],[-161.813048,63.439482],[-161.75304,63.456619],[-161.728119,63.455444],[-161.705631,63.464062],[-161.651148,63.461749],[-161.591633,63.454245],[-161.583774,63.447858],[-161.521452,63.453272],[-161.510483,63.468461],[-161.470646,63.466523],[-161.433061,63.457721],[-161.142798,63.502774],[-161.133785,63.528506],[-161.101873,63.536015],[-161.0995587,63.5545035],[-161.036049,63.579566],[-161.013798,63.62396],[-160.984701,63.614176],[-160.935155,63.636776],[-160.783304,63.752893],[-160.76556,63.773553],[-160.764067,63.81719],[-160.9759775,64.2356867],[-161.0726248,64.2881766],[-161.088082,64.293913],[-161.167902,64.33847],[-161.231159,64.370946],[-161.150133,64.371025],[-161.2616,64.387916],[-161.21997,64.410557],[-161.410382,64.422107],[-160.802049,64.610352],[-160.791616,64.623055],[-160.783398,64.717161],[-160.87185,64.806344],[-161.149656,64.911986],[-160.974852,64.929001],[-161.170579,64.929114],[-161.548826,64.745006],[-161.733168,64.84773],[-162.539996,64.530931],[-162.78306,64.326843],[-162.848918,64.496629],[-162.9199,64.519976],[-162.940777,64.542417],[-163.014838,64.553353],[-163.038051,64.585603],[-163.133431,64.607789],[-163.12354,64.647204],[-163.377338,64.604463],[-163.028887,64.511908],[-163.043436,64.485416],[-163.100952,64.45583],[-163.107459,64.409193],[-163.150789,64.39725],[-163.597834,64.563356],[-165.001962,64.433918],[-165.214182,64.469726],[-165.411452,64.497573],[-166.236939,64.583558],[-166.421644,64.914356],[-166.460007,64.912172],[-166.518715,64.945806],[-166.544246,64.945498],[-166.636843,64.968114],[-166.690815,64.985373],[-166.941033,65.144901],[-166.86866,65.275717],[-166.725945,65.109251],[-166.67032,65.10972],[-166.595418,65.118353],[-166.521701,65.137376],[-166.362257,65.265976],[-165.655059,65.047385],[-165.238778,65.161216],[-165.874934,65.145046],[-166.252634,65.305059],[-166.37002,65.297107],[-166.42259,65.314182],[-166.496216,65.332864],[-166.593184,65.33731],[-166.625987,65.325122],[-166.679717,65.326857],[-167.474025,65.412744],[-168.075201,65.576355],[-168.12742,65.624423],[-168.128081,65.657975],[-168.089712,65.692699],[-167.845319,65.75693],[-167.897311,65.728311],[-167.943656,65.708591],[-168.033326,65.685037],[-168.036383,65.625936],[-167.585763,65.708678],[-166.285387,66.163459],[-165.599804,66.117687],[-165.756611,66.314282],[-165.005078,66.392986],[-164.892643,66.467615],[-164.736215,66.510867],[-164.662527,66.549588],[-164.409931,66.580858],[-163.754171,66.551285],[-163.730248,66.491373],[-163.761968,66.454875],[-163.844221,66.418978],[-163.873107,66.389016],[-163.880031,66.323226],[-163.843569,66.306108],[-163.830078,66.272001],[-163.929883,66.216014],[-163.897871,66.191224],[-163.861406,66.136666],[-163.847402,66.122106],[-163.768848,66.081329],[-163.777159,66.066186],[-163.729553,66.061638],[-163.695386,66.069269],[-163.63576,66.057876],[-163.588154,66.069166],[-163.546504,66.068726],[-163.495845,66.085388],[-163.398834,66.085158],[-163.326114,66.079308],[-163.287769,66.06923],[-163.186893,66.064712],[-163.168568,66.05929],[-163.093003,66.06296],[-162.997473,66.076846],[-162.958046,66.088885],[-162.763513,66.095193],[-162.735168,66.081065],[-162.685268,66.070719],[-162.628863,66.038131],[-162.391893,66.028725],[-162.227454,66.050104],[-162.142691,66.078133],[-161.98789,66.071232],[-161.893309,66.036437],[-161.88732,66.008386],[-161.873816,66.002648],[-161.903536,65.974473],[-161.87985,65.961728],[-161.791863,65.967536],[-161.756033,66.083614],[-161.636927,66.160505],[-161.61755,66.188775],[-161.558415,66.238535],[-161.488651,66.268011],[-161.385779,66.263079],[-161.348785,66.265311],[-161.263045,66.219555],[-161.064844,66.237852],[-161.065711,66.188507],[-160.997997,66.256279],[-161.10165,66.331182],[-161.162295,66.346491],[-161.220528,66.352667],[-161.363366,66.379118],[-161.532657,66.3991],[-161.917101,66.268102],[-161.880909,66.513709],[-162.620399,66.84928],[-162.6225116,66.8764307],[-162.6024541,66.8974954],[-162.51246,66.904492],[-162.467411,66.948774],[-162.32774,66.943509],[-162.284146,66.925992],[-162.270273,66.900988],[-162.227356,66.863092],[-162.096003,66.783664],[-162.013661,66.774511],[-161.918338,66.554113],[-161.774254,66.497894],[-161.676619,66.474171],[-161.631624,66.451833],[-161.580618,66.440554],[-161.524787,66.44372],[-161.440928,66.455871],[-161.32974,66.47935],[-161.242229,66.52093],[-160.741749,66.366165],[-159.654605,66.417468],[-160.821178,66.65428],[-161.493714,66.527098],[-161.539277,66.581096],[-161.666504,66.611212],[-161.707862,66.628035],[-161.732144,66.64698],[-161.793662,66.669916],[-161.882361,66.716161],[-161.811963,67.047809],[-162.414089,66.982292],[-162.947253,67.032796],[-162.848448,66.995015],[-163.738191,67.128557],[-163.734157,67.185143],[-163.737469,67.210792],[-163.813961,67.346024],[-163.766903,67.398711],[-164.106541,67.602599],[-165.4179747,68.0454877],[-165.8588221,68.1076215],[-165.9602863,68.134703],[-166.2490579,68.2764931],[-166.7964271,68.3431362],[-166.5314964,68.338942],[-166.5507846,68.3627484],[-166.4658428,68.3743309],[-166.406671,68.397653],[-166.367957,68.426176],[-166.334643,68.442155],[-166.207311,68.675914],[-166.196539,68.77289],[-166.212918,68.805984],[-166.234284,68.865471],[-166.222477,68.872248],[-165.994448,68.862291],[-165.812266,68.859198],[-165.795802,68.856381],[-165.559934,68.854803],[-165.196651,68.866161],[-164.252412,68.926266],[-163.965971,68.986044],[-163.582264,69.121488],[-163.510245,69.161613],[-163.467708,69.191586],[-163.273967,69.288048],[-163.171373,69.361668],[-163.221803,69.311025],[-163.249494,69.29454],[-163.229849,69.28285],[-163.094416,69.38219],[-163.076244,69.462801],[-163.087304,69.482947],[-163.040351,69.487822],[-163.025463,69.544764],[-163.110266,69.584666],[-163.073859,69.606031],[-163.002474,69.610256],[-163.026218,69.649338],[-163.054963,69.655607],[-163.035101,69.667626],[-162.987747,69.667975],[-162.926886,69.694821],[-162.965871,69.71596],[-163.032831,69.728179],[-163.015146,69.754552],[-162.98939,69.75736],[-162.963612,69.780371],[-162.933312,69.783937],[-162.909341,69.800432],[-162.84719,69.809993],[-162.834065,69.830412],[-162.622806,69.915765],[-162.60032,69.913176],[-162.511172,69.961242],[-162.476814,69.982759],[-162.466934,70.041482],[-162.398227,70.044296],[-162.335326,70.040384],[-162.325092,70.050674],[-162.353732,70.058727],[-162.359362,70.076149],[-162.314609,70.077566],[-162.314528,70.109109],[-161.924193,70.292127],[-161.855784,70.298135],[-161.8189,70.288541],[-161.835325,70.27132],[-161.80241,70.2588],[-161.661279,70.244345],[-161.844874,70.150414],[-161.630127,70.239596],[-161.315491,70.244033],[-160.83656,70.342988],[-160.598341,70.414407],[-160.158782,70.583753],[-159.901303,70.586132],[-159.842749,70.247928],[-159.37533,70.497396],[-160.059548,70.627664],[-159.660353,70.785528],[-159.597529,70.79986],[-159.486097,70.820231],[-159.326293,70.842708],[-159.160415,70.84732],[-159.162188,70.817468],[-159.302564,70.807257],[-159.348901,70.795309],[-159.342173,70.786778],[-159.408249,70.767017],[-159.259954,70.712336],[-157.88248,70.853522],[-157.499116,70.948925],[-157.386815,70.987974],[-157.239646,71.052417],[-157.075051,71.150265],[-157.059571,71.154315],[-156.957958,71.213245],[-156.812238,71.286536],[-156.63839,71.34024],[-156.076578,71.242659],[-156.09185,71.224866],[-156.026048,71.202573],[-156.08611,71.16992],[-155.563643,71.164186],[-155.980316,70.746565],[-155.061226,71.133825],[-155.064342,71.005743],[-154.98918,71.100267],[-154.863869,71.097909],[-154.843713,71.078762],[-154.772316,71.085248],[-154.572939,70.990675],[-154.597906,70.978409],[-154.615627,70.952926],[-154.605208,70.911252],[-154.776572,70.890376],[-154.563762,70.825258],[-154.353202,70.836893],[-154.258128,70.816898],[-154.217488,70.797328],[-154.231369,70.782722],[-154.16414,70.770118],[-153.988739,70.822463],[-153.928807,70.870631],[-153.886033,70.886533],[-153.240243,70.925247],[-152.758048,70.888488],[-152.699875,70.854701],[-152.667573,70.801001],[-152.610901,70.840381],[-152.620187,70.861994],[-152.677011,70.887032],[-152.593122,70.886313],[-152.411507,70.856199],[-152.376325,70.84637],[-152.267365,70.835804],[-152.231144,70.824874],[-152.196061,70.790894],[-152.296579,70.777616],[-152.376916,70.727929],[-152.383866,70.713202],[-152.470366,70.685612],[-152.460413,70.643538],[-152.41891,70.610627],[-151.747486,70.555912],[-151.772879,70.486206],[-151.821291,70.484932],[-151.85834,70.476286],[-151.915683,70.473609],[-151.952356,70.458042],[-151.878014,70.431314],[-151.215037,70.36455],[-151.170764,70.435212],[-150.842176,70.463685],[-150.791225,70.481336],[-150.794833,70.495316],[-150.685467,70.499394],[-150.65443,70.497293],[-150.583464,70.505464],[-150.368297,70.498076],[-150.114538,70.434054],[-149.871891,70.517487],[-149.462393,70.518511],[-149.374527,70.483134],[-149.167549,70.48945],[-149.138431,70.474147],[-149.058854,70.464882],[-148.99919,70.436581],[-148.962398,70.424297],[-148.598645,70.403588],[-148.412641,70.304948],[-148.25473,70.333561],[-148.181738,70.325802],[-148.112212,70.341575],[-147.791799,70.27183],[-147.787663,70.217228],[-147.687016,70.200004],[-146.98678,70.149743],[-146.902345,70.175436],[-146.862999,70.181468],[-146.520307,70.191493],[-146.270379,70.179254],[-146.115897,70.158471],[-146.08944,70.145478],[-145.926578,70.147176],[-145.875679,70.134427],[-145.85907,70.168989],[-145.210682,70.026407],[-145.25217,69.998837],[-144.953059,69.968688],[-144.852112,69.978117],[-144.847549,69.989096],[-144.629527,69.970779],[-144.402064,70.033079],[-144.317117,70.029746],[-144.153199,70.039588],[-144.123224,70.058356],[-144.010516,70.048866],[-143.732175,70.104717],[-143.640118,70.080725],[-143.596396,70.087032],[-143.566708,70.082312],[-143.521795,70.091214],[-143.38162,70.094228],[-143.350202,70.11002],[-143.225215,70.107753],[-143.132568,70.07971],[-143.010369,70.075493],[-143.01346,70.059567],[-142.772744,70.034263],[-142.232989,69.84701],[-142.074091,69.842827],[-141.987472,69.800524],[-141.897831,69.810205],[-141.872383,69.801652],[-141.779021,69.790104],[-141.693795,69.77209],[-141.537491,69.728265],[-141.470909,69.697892],[-141.37968,69.620444],[-141.266935,69.596946],[-141.212638,69.636033],[-141.232752,69.65164],[-141.207569,69.669519],[-141.206648,69.681582],[-141.002527,69.64666],[-141.002465,65.840075],[-141.001854,60.390438]],[[-145.971896,66.244338],[-145.509582,66.251891],[-145.740791,66.35673],[-145.270215,66.558564],[-144.921862,66.468349],[-144.892186,66.636334],[-146.619076,66.468736],[-145.971896,66.244338]]],[[[-135.705443,57.366468],[-135.837795,57.387935],[-135.853879,57.423149],[-135.868665,57.41728],[-135.91791,57.44975],[-135.963465,57.460889],[-136.016521,57.513266],[-136.00713,57.527493],[-135.826016,57.462014],[-136.122465,57.617987],[-136.181582,57.743],[-136.371506,57.832305],[-136.412648,57.817597],[-136.418453,57.848402],[-136.390642,57.879057],[-136.356729,57.930927],[-136.354538,57.997357],[-136.142932,57.888802],[-136.342225,58.221554],[-136.180724,58.080661],[-136.161287,58.218003],[-135.980189,58.178322],[-135.967629,58.210087],[-135.901079,58.24808],[-135.835422,58.269906],[-135.824141,58.283318],[-135.523348,58.185732],[-135.496736,58.169367],[-135.526577,58.154939],[-135.540337,58.101175],[-135.627574,58.049255],[-135.777626,58.056107],[-135.6429,57.991289],[-135.796645,57.98132],[-135.591967,57.989528],[-135.430743,58.09512],[-135.467582,58.132211],[-135.398396,58.143897],[-135.336806,58.120885],[-135.346935,58.110514],[-135.306897,58.099488],[-135.175789,58.086603],[-135.115259,58.090681],[-134.937206,58.024384],[-135.00159,57.882123],[-135.082394,57.910187],[-135.146255,57.927432],[-135.161181,57.936493],[-135.216707,57.951657],[-135.066774,57.773791],[-135.833948,57.987657],[-135.365931,57.724322],[-135.217516,57.70104],[-135.112323,57.76001],[-135.009777,57.747502],[-134.97814,57.763501],[-134.92727,57.757267],[-134.829536,57.511865],[-134.830374,57.486783],[-134.839968,57.47912],[-134.875359,57.503737],[-134.956491,57.518654],[-134.890613,57.486072],[-134.865855,57.464604],[-134.89783,57.457785],[-135.08,57.462745],[-135.11916,57.491262],[-135.210335,57.532533],[-135.826195,57.769192],[-135.81085,57.649335],[-135.707598,57.655563],[-135.646007,57.621843],[-135.562356,57.591975],[-135.554353,57.58147],[-135.583069,57.566915],[-135.611067,57.577733],[-135.660442,57.559782],[-135.646129,57.548813],[-135.609367,57.563846],[-135.591976,57.552209],[-135.561794,57.547036],[-135.562951,57.527909],[-135.573596,57.514453],[-135.560601,57.508176],[-135.544509,57.472413],[-135.551674,57.449608],[-135.591973,57.442273],[-135.59397,57.422343],[-135.618582,57.407662],[-135.662144,57.393683],[-135.705443,57.366468]]],[[[-134.6074081,57.0147631],[-134.598426,57.155499],[-134.635598,57.178597],[-134.65299,57.213985],[-134.646042,57.240133],[-134.60297,57.232359],[-134.572502,57.220624],[-134.489217,57.327574],[-134.57599,57.40142],[-134.431858,57.368961],[-134.577078,57.475016],[-134.342215,57.557928],[-134.57719,57.504637],[-134.60758,57.555734],[-134.633543,57.582229],[-134.671852,57.612956],[-134.701189,57.700443],[-134.727969,57.720981],[-134.701131,57.832583],[-134.762156,57.993779],[-134.786418,58.012042],[-134.808331,58.04448],[-134.783716,58.081838],[-134.768977,58.087654],[-134.754583,58.115249],[-134.761232,58.15889],[-134.725455,58.174276],[-134.7727134,58.1648489],[-134.7682551,58.1397169],[-134.777398,58.09884],[-134.80097,58.106115],[-134.819896,58.141724],[-134.897902,58.194957],[-134.917105,58.226261],[-134.958267,58.405192],[-134.698302,58.161212],[-134.556543,58.194581],[-134.516817,58.17516],[-134.443403,58.172855],[-134.410535,58.166763],[-134.367879,58.148116],[-134.313413,58.144604],[-134.2666959,58.1574424],[-134.2314621,58.1575571],[-134.2077148,58.1668997],[-134.1758597,58.1578441],[-134.166829,58.127003],[-134.190838,58.106757],[-134.187769,58.085759],[-134.091279,58.009677],[-134.088737,57.972918],[-134.000665,57.914248],[-133.974185,57.857458],[-133.931999,57.835883],[-133.918117,57.816114],[-133.901121,57.805406],[-133.803681,57.607715],[-133.812918,57.566355],[-133.836265,57.574785],[-133.85875,57.621611],[-133.908492,57.66128],[-133.973404,57.688671],[-134.205848,58.012173],[-134.157607,57.991165],[-134.311837,58.0925776],[-134.303754,57.829934],[-134.225111,57.858627],[-134.04541,57.673319],[-134.09571,57.656041],[-133.935462,57.611827],[-133.943193,57.559008],[-133.918991,57.527632],[-133.883167,57.502533],[-133.852547,57.461621],[-133.924197,57.49981],[-133.974539,57.47743],[-134.077553,57.511983],[-134.088411,57.463574],[-133.88858,57.413901],[-133.881152,57.390682],[-133.867205,57.379226],[-133.868028,57.356261],[-133.883065,57.346797],[-133.946231,57.327195],[-133.960639,57.304157],[-133.981088,57.301701],[-134.197982,57.389393],[-134.0924,57.280365],[-134.145555,57.262044],[-134.150981,57.206432],[-134.221579,57.169339],[-134.22879,57.181618],[-134.277386,57.174437],[-134.293346,57.217666],[-134.272834,57.148584],[-134.381501,57.130246],[-134.401889,57.10711],[-134.367889,57.088723],[-134.480806,57.030317],[-134.6074081,57.0147631]]],[[[-152.780046,57.994579],[-152.850639,57.994214],[-152.919489,58.011238],[-152.968149,58.040617],[-153.020589,58.045203],[-153.218587,58.158241],[-152.926249,58.169306],[-153.10241,58.260344],[-153.069874,58.276848],[-153.044868,58.306761],[-153.00439,58.300136],[-152.982357,58.287496],[-152.893909,58.271842],[-152.763306,58.282173],[-152.739953,58.343013],[-152.776776,58.368026],[-152.81033,58.368333],[-152.883108,58.400443],[-152.485245,58.46216],[-152.512088,58.427568],[-152.535124,58.411809],[-152.409337,58.305053],[-152.363911,58.325861],[-152.332978,58.413819],[-152.140337,58.386905],[-152.147237,58.23771],[-151.981446,58.344251],[-152.081084,58.154276],[-152.223176,58.194795],[-152.233249,58.251294],[-152.256937,58.247051],[-152.325688,58.247593],[-152.315675,58.217404],[-152.290112,58.201069],[-152.293418,58.178622],[-152.351003,58.200414],[-152.366091,58.189128],[-152.325955,58.178187],[-152.273607,58.12563],[-152.557237,58.086463],[-152.569595,58.114801],[-152.556136,58.177063],[-152.594167,58.204712],[-152.62868,58.076357],[-152.777907,58.050365],[-152.754107,58.025304],[-152.7577,58.012403],[-152.780046,57.994579]]],[[[-152.472383,58.47215],[-152.667813,58.5427],[-152.341126,58.637879],[-152.472383,58.47215]]]]},"properties":{"name":"AKMS","gridLoss":{"display":"5.12%","value":0.0512},"fuelMixCategories":{"renewable":66.6,"non-renewable":33.4,"non-renewable (excluding nuclear)":33.4,"renewable (excluding hydro)":2.2,"nuclear":0,"hydro":64.4},"fullName":"ASCC Miscellaneous","emissionFactor":{"co2EmissionRate":{"value":525.1,"display":"525.1","units":"lb/MWh"},"noxEmissionRate":{"value":7.7,"display":"7.7","units":"lb/MWh"},"so2EmissionRate":{"value":0.7,"display":"0.7","units":"lb/MWh"}},"fuelMix":{"coal":0,"oil":26.3,"gas":7.2,"nuclear":0,"hydro":64.4,"biomass":0.2,"wind":2.1,"solar":0,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0}}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-109.84831,34.7934],[-109.842904,35.170402],[-109.686091,35.170113],[-109.84831,34.7934]]],[[[-110.473457,35.740668],[-110.424985,36.09919],[-110.285957,36.035466],[-110.473457,35.740668]]],[[[-116.270935,32.605452],[-116.220089,32.828782],[-116.733665,32.995236],[-116.615196,33.194825],[-116.421951,33.134636],[-116.617688,33.427355],[-116.155189,33.427151],[-116.63485,33.903674],[-116.454588,34.083112],[-116.665006,34.275926],[-116.127542,34.251503],[-116.032907,34.421428],[-116.034823,34.219166],[-115.720332,34.295942],[-115.744258,34.552122],[-115.333517,34.0772242],[-114.43543,34.079727],[-114.4205,34.103466],[-114.405941,34.11154],[-114.229716,34.186929],[-114.164648,34.259699],[-114.13545,34.257886],[-114.138283,34.303231],[-114.176909,34.349306],[-114.339627,34.451435],[-114.371217,34.446992],[-114.386699,34.457911],[-114.378124,34.507288],[-114.380838,34.529724],[-114.47162,34.712966],[-114.51662,34.736746],[-114.552682,34.766872],[-114.628277,34.863597],[-114.636769,34.885705],[-114.630878,34.907263],[-114.629812,34.94481],[-114.634953,34.958918],[-114.629353,34.983175],[-114.633013,35.002086],[-115.21294,35.46594],[-115.6713727,35.8283258],[-115.898334,36.004289],[-115.8969248,36.8420849],[-114.956114,36.853405],[-114.836413,37.907901],[-114.051843,37.724001],[-114.052828,37.103962],[-114.046838,36.194069],[-114.15413,36.023862],[-114.27155,35.776008],[-114.054591,35.731031],[-113.903534,36.092851],[-113.419539,35.750823],[-113.313431,36.100001],[-112.630205,36.392017],[-112.200557,36.096912],[-111.762852,36.198265],[-111.746595,35.672162],[-111.318833,35.757117],[-111.243586,35.156355],[-110.750692,35.170175],[-110.750685,34.636651],[-110.524669,34.567585],[-110.1346026,34.7975452],[-109.422649,34.646499],[-109.324877,34.671809],[-109.165494,34.810624],[-109.066094,34.855174],[-109.0460701,34.8707326],[-109.046258,35.174725],[-108.910395,35.176678],[-108.841055,35.169409],[-108.843266,35.11104],[-108.681377,35.306862],[-108.206018,35.306412],[-108.214701,35.575309],[-107.434253,35.880864],[-107.308828,35.645966],[-106.955414,35.65323],[-106.885887,36.067443],[-107.62425,36.219799],[-107.780374,36.824606],[-107.705282,36.830587],[-107.704358,36.882192],[-107.67328,36.911808],[-107.675386,36.94408],[-107.651277,36.96912],[-107.648635,36.986631],[-107.635627,37.000004],[-106.591178,36.992923],[-105.66472,36.995875],[-105.1208,36.995428],[-105.029228,36.99273],[-104.000525,36.996217],[-103.625507,36.998629],[-103.250493,36.999578],[-103.002375,37.000204],[-102.986976,36.998524],[-102.86545,36.999591],[-102.841004,36.986886],[-102.822162,36.961273],[-102.804987,36.719211],[-103.002206,36.66202],[-102.6431211,36.5004763],[-102.875478,36.500238],[-103.0419238,36.5004008],[-103.041168,35.899024],[-103.1427075,35.8993145],[-103.1608993,35.8906403],[-103.125799,35.739781],[-103.374973,35.740013],[-103.364971,36.086365],[-103.682076,35.940827],[-103.793983,36.173995],[-104.134093,36.218288],[-104.367312,35.781427],[-104.912005,35.695863],[-104.559329,35.216176],[-104.587624,34.881078],[-104.12941,34.779312],[-104.087759,34.112036],[-103.718836,33.640235],[-103.506823,33.657372],[-103.720743,33.569679],[-103.766177,33.139525],[-104.595026,33.291901],[-104.840609,32.963308],[-104.680417,32.798765],[-104.84237,32.76776],[-104.847758,32.00052],[-105.998004,32.002328],[-105.997105,31.933234],[-105.482883,31.78147],[-105.491966,31.598005],[-104.06497,31.537521],[-104.102365,31.105175],[-104.500484,30.891663],[-104.625495,30.822791],[-104.779064,30.739298],[-104.9797397,30.6291637],[-105.395317,30.849273],[-105.5557129,30.9886927],[-105.581227,31.026716],[-105.5853178,31.0575272],[-105.5951476,31.0642225],[-105.606341,31.085214],[-105.627622,31.098609],[-105.640268,31.097656],[-105.649514,31.116152],[-105.709098,31.136191],[-105.741611,31.164423],[-105.772947,31.166724],[-105.8692304,31.2888281],[-105.9327821,31.3133056],[-105.9477562,31.3391733],[-105.9458111,31.3529387],[-105.9537009,31.3645652],[-105.9704308,31.3661217],[-106.0054562,31.3925895],[-106.0779276,31.3980208],[-106.199792,31.46238],[-106.2196628,31.4816229],[-106.2240552,31.4996815],[-106.2363674,31.512271],[-106.2459251,31.5407537],[-106.2813382,31.5631885],[-106.289,31.587687],[-106.3024221,31.6098703],[-106.308157,31.629746],[-106.35073,31.697894],[-106.374018,31.71475],[-106.38208,31.732727],[-106.528179,31.783861],[-106.734847,31.783818],[-107.031808,31.78362],[-107.375583,31.783669],[-107.613208,31.783684],[-107.865602,31.78367],[-108.208478,31.783664],[-108.208491,31.625104],[-108.208468,31.333375],[-108.768198,31.3321982],[-109.08933,31.332408],[-109.27849,31.333959],[-109.5613552,31.3340023],[-110.4493889,31.3327635],[-110.8460221,31.3336907],[-111.0749488,31.3322463],[-114.813679,32.494205],[-114.810678,32.622219],[-114.764921,32.643741],[-114.749252,32.662269],[-114.720352,32.718762],[-115.375929,32.67366],[-115.801995,32.641634],[-116.061548,32.622099],[-116.270935,32.605452]]]]},"properties":{"name":"AZNM","gridLoss":{"display":"4.80%","value":0.048},"fuelMixCategories":{"renewable":13.3,"non-renewable":86.7,"non-renewable (excluding nuclear)":67.9,"renewable (excluding hydro)":10,"nuclear":18.8,"hydro":3.4},"fullName":"WECC Southwest","emissionFactor":{"co2EmissionRate":{"value":1022.4,"display":"1,022.4","units":"lb/MWh"},"noxEmissionRate":{"value":0.7,"display":"0.7","units":"lb/MWh"},"so2EmissionRate":{"value":0.3,"display":"0.3","units":"lb/MWh"}},"fuelMix":{"coal":26.7,"oil":0,"gas":41.1,"nuclear":18.8,"hydro":3.4,"biomass":0.4,"wind":1.8,"solar":4.4,"geothermal":3.4,"otherFossilFuel":0,"otherUnknownFuel":0}}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-120.054946,34.037363],[-120.117018,33.893851],[-120.246513,33.999324],[-120.054946,34.037363]]],[[[-124.140134,41.685371],[-124.1207336,41.6996802],[-124.118965,41.740054],[-124.089659,41.73997],[-124.089235,41.758635],[-124.004076,41.74421],[-123.770249,41.380777],[-122.847358,41.294993],[-122.970967,41.090159],[-122.638011,40.985173],[-122.864469,40.825928],[-122.639498,40.845272],[-122.498376,41.182675],[-121.446495,41.183484],[-121.374484,41.811014],[-121.170744,41.184385],[-119.999867,41.183975],[-119.99986,40.999891],[-119.998479,40.749899],[-119.995926,40.499902],[-119.997624,39.960439],[-119.773646,39.835682],[-119.928983,39.628072],[-119.957604,39.644954],[-119.974959,39.648546],[-119.988544,39.636288],[-120.001238,39.643475],[-120.001015,38.999574],[-118.9497367,38.2689831],[-118.771867,38.141871],[-118.714313,38.102185],[-118.372402,37.855884],[-117.904625,37.515837],[-117.498548,37.219207],[-117.000896,36.847695],[-115.898334,36.004289],[-115.6713727,35.8283258],[-115.21294,35.46594],[-114.633013,35.002086],[-114.629353,34.983175],[-114.634953,34.958918],[-114.629812,34.94481],[-114.630878,34.907263],[-114.636769,34.885705],[-114.628277,34.863597],[-114.552682,34.766872],[-114.51662,34.736746],[-114.47162,34.712966],[-114.380838,34.529724],[-114.378124,34.507288],[-114.386699,34.457911],[-114.371217,34.446992],[-114.339627,34.451435],[-114.176909,34.349306],[-114.138283,34.303231],[-114.13545,34.257886],[-114.164648,34.259699],[-114.229716,34.186929],[-114.405941,34.11154],[-114.4205,34.103466],[-114.43543,34.079727],[-115.333517,34.0772242],[-115.744258,34.552122],[-115.720332,34.295942],[-116.034823,34.219166],[-116.032907,34.421428],[-116.127542,34.251503],[-116.665006,34.275926],[-116.454588,34.083112],[-116.63485,33.903674],[-116.155189,33.427151],[-116.617688,33.427355],[-116.421951,33.134636],[-116.615196,33.194825],[-116.733665,32.995236],[-116.220089,32.828782],[-116.270935,32.605452],[-117.124164,32.5343433],[-117.227181,32.6975861],[-117.098625,32.592989],[-117.1189126,32.6724566],[-117.176957,32.727374],[-117.2137806,32.7280426],[-117.2393496,32.6900681],[-117.253726,32.692333],[-117.257924,32.725223],[-117.2522259,32.756713],[-117.2324771,32.7824985],[-117.2520243,32.7888153],[-117.280763,32.822265],[-117.282432,32.84019],[-117.25614,32.8595],[-117.251572,32.876096],[-117.279758,33.01163],[-117.296609,33.037049],[-117.301682,33.056835],[-117.328642,33.122005],[-117.361662,33.16795],[-117.469703,33.29529],[-117.506676,33.333412],[-117.545704,33.362706],[-117.573216,33.378876],[-117.595149,33.385958],[-117.6067264,33.4048622],[-117.640497,33.437451],[-117.68126,33.46127],[-117.714768,33.459975],[-117.72779,33.483588],[-117.786898,33.542557],[-117.888582,33.60972],[-117.899888,33.609695],[-117.926993,33.620638],[-117.941762,33.620745],[-118.005059,33.656799],[-118.02938,33.676289],[-118.0875717,33.7328179],[-118.117273,33.740989],[-118.123128,33.761355],[-118.410807,33.742833],[-118.4423092,33.9932178],[-118.4680056,33.9783777],[-118.495427,34.007241],[-118.526438,34.03056],[-118.569875,34.041641],[-118.743983,34.03248],[-118.782576,34.022058],[-118.808603,34.001267],[-119.13057,34.10025],[-119.2005604,34.1433616],[-119.2165,34.14615],[-119.231295,34.165762],[-119.266205,34.234195],[-119.269508,34.253482],[-119.282277,34.27002],[-119.374345,34.321042],[-119.39131,34.318869],[-119.401341,34.331548],[-119.432262,34.355224],[-119.442988,34.355752],[-119.459151,34.373127],[-119.537504,34.396223],[-119.562884,34.414757],[-119.684038,34.412861],[-119.702444,34.397683],[-119.7289361,34.3960104],[-119.787062,34.416557],[-119.836112,34.415488],[-119.84375,34.405001],[-119.8788531,34.4071316],[-119.890489,34.418821],[-119.928711,34.435367],[-119.950046,34.434534],[-120.003096,34.458707],[-120.023195,34.457735],[-120.036346,34.463249],[-120.074837,34.460332],[-120.098204,34.462318],[-120.118028,34.469931],[-120.153419,34.473089],[-120.295791,34.470374],[-120.33717,34.459338],[-120.402517,34.45534],[-120.452821,34.44583],[-120.472526,34.44864],[-120.479548,34.478763],[-120.514478,34.52473],[-120.578135,34.55539],[-120.623749,34.554057],[-120.637005,34.563044],[-120.645794,34.579447],[-120.639655,34.604903],[-120.602075,34.700988],[-120.616461,34.733202],[-120.637073,34.757336],[-120.616543,34.86701],[-120.670301,34.901714],[-120.661056,34.937605],[-120.640059,35.003912],[-120.631137,35.052532],[-120.640418,35.132217],[-120.651098,35.147749],[-120.686762,35.159491],[-120.699674,35.171547],[-120.739065,35.178526],[-120.760493,35.15971],[-120.857179,35.207856],[-120.895478,35.245578],[-120.896247,35.270383],[-120.860215,35.325638],[-120.831434,35.339022],[-120.884695,35.430263],[-120.905842,35.448381],[-120.950519,35.447927],[-121.007257,35.463309],[-121.103815,35.552103],[-121.114312,35.576115],[-121.163892,35.632918],[-121.18839,35.643229],[-121.199017,35.637198],[-121.21991,35.651575],[-121.242271,35.652756],[-121.260767,35.664056],[-121.284834,35.66877],[-121.899087,36.307694],[-121.971008,36.569945],[-121.938984,36.632542],[-121.930031,36.637524],[-121.903237,36.621742],[-121.894099,36.604872],[-121.874631,36.603186],[-121.816115,36.677092],[-121.805888,36.745781],[-121.788595,36.804196],[-121.8064127,36.8437079],[-121.858623,36.926199],[-121.889987,36.957923],[-121.9373518,36.9783119],[-121.972618,36.954656],[-122.022529,36.96184],[-122.0259993,36.9511449],[-122.065876,36.948098],[-122.106522,36.956582],[-122.139347,36.974144],[-122.152978,36.976282],[-122.405684,37.195465],[-122.411273,37.227888],[-122.420844,37.242409],[-122.402792,37.361542],[-122.448084,37.47225],[-122.471246,37.501017],[-122.504766,37.506422],[-122.516724,37.52168],[-122.51996,37.536252],[-122.4760245,37.809595],[-122.360285,37.591995],[-122.318329,37.591234],[-122.306039,37.575336],[-122.251762,37.567542],[-122.0908652,37.4513031],[-121.946285,37.464577],[-122.105509,37.499235],[-122.162378,37.669935],[-122.261192,37.740351],[-122.214086,37.755169],[-122.322675,37.799707],[-122.299106,37.8371],[-122.302855,37.861563],[-122.324353,37.907203],[-122.41872,37.962239],[-122.382377,37.953352],[-122.368032,38.006551],[-122.300044,38.010276],[-122.282236,38.022544],[-122.262253,38.050905],[-122.243678,38.058137],[-121.909856,38.083247],[-122.479994,38.114457],[-122.487405,38.109771],[-122.484622,38.07253],[-122.498496,38.031512],[-122.498629,38.015609],[-122.462099,38.003527],[-122.447066,37.98558],[-122.494255,37.921738],[-122.43803,37.882279],[-122.498425,37.893658],[-122.478085,37.825728],[-122.5235676,37.8246617],[-122.548957,37.835688],[-122.562178,37.851925],[-122.601006,37.874443],[-122.620982,37.877686],[-122.682883,37.929794],[-122.683153,37.905525],[-122.701304,37.894157],[-122.726814,37.90365],[-122.736816,37.926],[-122.782454,37.950942],[-122.794481,37.97302],[-122.82185,37.996798],[-122.931575,38.035591],[-122.932824,38.064243],[-122.938452,38.033414],[-122.961127,38.027639],[-122.983036,37.997972],[-123.002791,37.992851],[-123.012467,38.00127],[-122.96554,38.100149],[-122.948425,38.154531],[-122.95587,38.178253],[-122.966322,38.183242],[-122.966447,38.199349],[-122.980261,38.213905],[-122.982812,38.233953],[-122.94813,38.195274],[-122.937298,38.19073],[-122.909381,38.159621],[-122.893915,38.132747],[-122.827266,38.092176],[-123.00306,38.295915],[-123.023675,38.30984],[-123.048248,38.332795],[-123.065224,38.305773],[-123.0684921,38.3589163],[-123.085279,38.390394],[-123.096554,38.394441],[-123.102408,38.413534],[-123.114361,38.421585],[-123.131004,38.452485],[-123.195293,38.490631],[-123.219781,38.498645],[-123.258311,38.518695],[-123.308681,38.555794],[-123.333257,38.56554],[-123.727479,38.91923],[-123.738808,38.954226],[-123.7257884,38.9583849],[-123.71137,38.974947],[-123.695928,39.003877],[-123.691195,39.051278],[-123.718914,39.13194],[-123.737327,39.149442],[-123.734839,39.158609],[-123.751473,39.174513],[-123.757844,39.187942],[-123.770485,39.194095],[-123.809808,39.303558],[-123.800218,39.318989],[-123.826537,39.349215],[-123.817195,39.361834],[-123.824114,39.369825],[-123.817386,39.387877],[-123.821522,39.40511],[-123.814674,39.446624],[-123.778755,39.520574],[-123.76695,39.55153],[-123.766983,39.564845],[-123.788715,39.59978],[-123.782608,39.614861],[-123.794424,39.69025],[-123.808893,39.710986],[-123.830419,39.723157],[-123.853625,39.833995],[-124.0792244,40.0299366],[-124.079927,40.066382],[-124.109762,40.10375],[-124.362764,40.260726],[-124.347612,40.315434],[-124.372717,40.392903],[-124.390111,40.406065],[-124.409716,40.438564],[-124.280711,40.691518],[-124.261194,40.697491],[-124.219106,40.68716],[-124.187292,40.794674],[-124.082694,40.832958],[-124.157585,40.855159],[-124.20045,40.781936],[-124.224472,40.759504],[-124.2323533,40.7639649],[-124.066586,41.418895],[-124.140134,41.685371]],[[-120.751239,40.838636],[-120.437628,40.775139],[-120.342515,40.98693],[-120.774473,40.970517],[-120.751239,40.838636]]]]},"properties":{"name":"CAMX","gridLoss":{"display":"4.80%","value":0.048},"fuelMixCategories":{"renewable":40.2,"non-renewable":59.8,"non-renewable (excluding nuclear)":50.7,"renewable (excluding hydro)":29.2,"nuclear":9.1,"hydro":11},"fullName":"WECC California","emissionFactor":{"co2EmissionRate":{"value":496.5,"display":"496.5","units":"lb/MWh"},"noxEmissionRate":{"value":0.5,"display":"0.5","units":"lb/MWh"},"so2EmissionRate":{"value":0,"display":"0.0","units":"lb/MWh"}},"fuelMix":{"coal":4.4,"oil":0,"gas":45.2,"nuclear":9.1,"hydro":11,"biomass":2.8,"wind":7.3,"solar":14.9,"geothermal":4.2,"otherFossilFuel":0.7,"otherUnknownFuel":0.3}}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-97.2893895,26.5643583],[-97.39007,27.157019],[-97.220144,27.632471],[-97.377001,27.101022],[-97.2893895,26.5643583]]],[[[-104.9797397,30.6291637],[-104.779064,30.739298],[-104.625495,30.822791],[-104.500484,30.891663],[-104.102365,31.105175],[-104.06497,31.537521],[-105.491966,31.598005],[-105.482883,31.78147],[-105.997105,31.933234],[-105.998004,32.002328],[-104.847758,32.00052],[-104.460846,32.000111],[-103.979829,32.00011],[-103.616431,31.651132],[-103.129091,31.835781],[-102.79894,31.651782],[-102.799087,32.085795],[-102.211255,32.086938],[-102.211028,32.523052],[-101.688753,32.52524],[-101.691284,32.961838],[-102.076215,32.959703],[-102.07593,33.389588],[-102.318018,33.388839],[-102.181906,33.553165],[-101.688612,33.536682],[-102.122947,33.623309],[-102.140311,34.747513],[-101.628443,34.807245],[-101.622942,35.183117],[-101.044538,35.357351],[-101.085708,36.057573],[-100.540222,36.056492],[-100.540198,35.619308],[-100.340019,35.619486],[-100.290027,35.499313],[-100.040779,35.447792],[-100.0408716,35.4614682],[-100.004444,35.461771],[-100.000389,35.465823],[-100.000385,35.125053],[-100.0003842,34.7969067],[-100.000382,34.560509],[-99.694528,34.378218],[-99.3282581,34.3948748],[-99.475606,33.834056],[-98.808713,33.818792],[-98.837273,33.994483],[-98.767549,33.975369],[-98.759529,34.115491],[-98.735472,34.135209],[-98.6901817,34.1330639],[-98.671529,34.148893],[-98.643224,34.164532],[-98.601407,34.16024],[-98.576244,34.144447],[-98.5558,34.136957],[-98.480276,34.06354],[-98.403593,34.089692],[-98.396218,34.119879],[-98.376862,34.147851],[-98.360018,34.15642],[-98.101938,34.14683],[-98.120839,34.0845225],[-98.083839,34.04172],[-98.103618,34.029208],[-98.084435,34.002894],[-98.041118,33.993457],[-97.97167,34.005435],[-97.946803,33.990893],[-97.957156,33.914455],[-97.984374,33.898024],[-97.957093,33.878859],[-97.865765,33.849393],[-97.805972,33.876572],[-97.763044,33.934146],[-97.731138,33.9371138],[-97.712349,33.951906],[-97.697565,33.978316],[-97.687694,33.98718],[-97.66149,33.990818],[-97.588828,33.951883],[-97.595421,33.941437],[-97.59698,33.920228],[-97.589255,33.903923],[-97.551542,33.897947],[-97.5246113,33.9118995],[-97.500961,33.919644],[-97.463346,33.905007],[-97.452232,33.89267],[-97.451553,33.875857],[-97.463618,33.842331],[-97.415913,33.817925],[-97.373792,33.819091],[-97.358662,33.829306],[-97.337293,33.861657],[-97.31342,33.865956],[-97.305733,33.886458],[-97.254185,33.865149],[-97.248238,33.90493],[-97.201007,33.912533],[-97.192993,33.759229],[-97.174802,33.747252],[-97.170137,33.735719],[-97.154368,33.724028],[-97.125951,33.717198],[-97.050211,33.816682],[-97.054159,33.834646],[-97.084143,33.840537],[-97.086033,33.854553],[-97.055534,33.855107],[-97.041615,33.837614],[-97.020727,33.847035],[-96.98377,33.890038],[-96.984939,33.904866],[-96.995678,33.936988],[-96.987801,33.954703],[-96.971891,33.936119],[-96.921564,33.959611],[-96.907486,33.950136],[-96.895729,33.896415],[-96.866438,33.85315],[-96.761588,33.824406],[-96.690708,33.849959],[-96.684727,33.862906],[-96.681494,33.894675],[-96.673449,33.912279],[-96.592949,33.895617],[-96.585361,33.888949],[-96.597349,33.875101],[-96.611635,33.869253],[-96.629205,33.850893],[-96.625877,33.84404],[-96.355947,33.687156],[-96.294867,33.764772],[-96.17806,33.760518],[-96.1652,33.780131],[-96.168293,33.802977],[-96.17691,33.813934],[-96.149226,33.837092],[-95.595562,33.941643],[-95.561887,33.931874],[-95.549146,33.90795],[-95.552388,33.889521],[-95.531527,33.881894],[-95.29536,33.872634],[-95.282179,33.875845],[-95.285302,33.898102],[-95.253536,33.894198],[-95.219359,33.961568],[-95.166686,33.939728],[-95.124701,33.934675],[-95.131643,33.916027],[-95.117593,33.904613],[-95.09011,33.920949],[-95.081816,33.907546],[-95.10074,33.895209],[-95.082408,33.879883],[-95.0763,33.902164],[-95.062354,33.903532],[-95.049025,33.864091],[-95.022325,33.859814],[-95.0083828,33.866033],[-94.992164,33.852035],[-94.968792,33.860886],[-94.943602,33.828065],[-94.953558,33.816012],[-94.869804,33.746054],[-94.849297,33.739586],[-94.827931,33.741054],[-94.816388,33.763964],[-94.732367,33.72194],[-94.753069,33.710754],[-94.758809,33.618904],[-94.897765,33.654871],[-94.7369994,33.2946641],[-94.918249,33.387565],[-95.515696,33.104359],[-95.594301,32.479859],[-95.083237,32.356552],[-94.985298,32.157201],[-94.332872,32.236858],[-94.207994,32.194682],[-94.163035,32.234749],[-94.127205,32.173975],[-94.109291,32.165089],[-94.07049,32.17283],[-94.0426504,32.1669115],[-94.04272,31.999266],[-93.900616,31.896789],[-93.902069,31.879105],[-93.881679,31.868582],[-93.882879,31.854672],[-93.872989,31.836697],[-93.874837,31.822314],[-93.822599,31.773559],[-93.839384,31.599076],[-93.719708,31.50584],[-93.687512,31.310813],[-93.620829,31.271299],[-93.589119,31.16589],[-93.567271,31.178781],[-93.508893,31.029332],[-93.533415,31.018956],[-93.540355,31.008135],[-93.565458,31.012678],[-93.57784,31.00106],[-93.553626,30.83514],[-93.705081,30.726793],[-93.870567,30.789456],[-93.731372,31.168403],[-94.4433443,31.036513],[-94.357632,31.259591],[-94.554839,31.435123],[-94.865801,31.526957],[-95.2302325,31.1988698],[-95.099989,31.518982],[-95.601005,32.061483],[-95.961342,31.672382],[-96.333293,31.757827],[-96.359203,31.438086],[-96.731041,31.444669],[-96.490488,31.188354],[-96.54808,30.919713],[-96.201604,30.937842],[-96.12634,30.449278],[-95.8206608,30.4666945],[-96.305321,29.69573],[-95.9292311,29.6385625],[-95.76035,29.701897],[-95.7815971,30.0370142],[-95.170434,30.091763],[-94.979664,29.67827],[-95.002307,29.662654],[-95.013062,29.646309],[-95.015064,29.632075],[-94.982912,29.601174],[-95.001326,29.582663],[-95.021621,29.551875],[-94.981406,29.512773],[-94.909738,29.495455],[-94.892391,29.314043],[-94.8999572,29.3019099],[-94.937505,29.313699],[-95.096654,29.178683],[-95.188832,29.214177],[-95.153875,29.152636],[-95.235935,29.0145],[-95.155447,29.070253],[-95.141379,29.067666],[-95.142106,29.055891],[-95.384099,28.864864],[-95.413602,28.860192],[-95.439993,28.859829],[-95.643237,28.75482],[-95.923762,28.7015],[-95.946137,28.680611],[-95.936817,28.670838],[-95.954681,28.653829],[-95.958462,28.625472],[-95.868297,28.649702],[-95.825345,28.679],[-95.682633,28.733535],[-95.813845,28.664505],[-96.220191,28.490821],[-95.994031,28.59912],[-95.980062,28.617764],[-95.987198,28.62583],[-95.985464,28.645169],[-96.39832,28.737689],[-96.472813,28.573487],[-96.645308,28.711724],[-96.617671,28.568296],[-96.567242,28.583912],[-96.42659,28.473691],[-96.402743,28.448885],[-96.403598,28.442517],[-96.667306,28.324556],[-96.687885,28.327844],[-96.706556,28.350125],[-96.706116,28.403919],[-96.802496,28.480497],[-96.764507,28.411055],[-96.85872,28.41761],[-96.791092,28.358048],[-96.788334,28.257639],[-96.800421,28.224627],[-96.826752,28.201648],[-96.874625,28.174256],[-96.931892,28.123654],[-96.957372,28.122455],[-96.928496,28.261773],[-96.9856827,28.1284196],[-97.18358,28.161199],[-97.146944,27.99983],[-97.020182,28.103734],[-97.188602,27.825681],[-97.550542,27.869433],[-97.254257,27.696802],[-97.412023,27.322324],[-97.732685,27.370559],[-97.423196,27.262399],[-97.560643,26.839629],[-97.474591,26.4562],[-97.308383,26.12676],[-97.2822592,26.0940059],[-97.24714,26.079962],[-97.207218,26.079038],[-97.193907,26.051877],[-97.219111,26.043411],[-97.230923,26.065119],[-97.245768,26.071122],[-97.259004,26.068657],[-97.255862,26.008755],[-97.191362,25.994873],[-97.152038,26.014237],[-97.146595,25.959562],[-97.174379,25.965581],[-97.190323,25.953863],[-97.206519,25.963228],[-97.247534,25.948174],[-97.276708,25.952148],[-97.278572,25.934978],[-97.336441,25.929297],[-97.368717,25.915399],[-97.367445,25.893789],[-97.3736823,25.8810124],[-97.362333,25.868802],[-97.372926,25.839917],[-97.426116,25.840867],[-97.455503,25.884068],[-97.485418,25.878441],[-97.523296,25.888818],[-97.545491,25.932624],[-97.582739,25.938112],[-97.58312,25.956091],[-97.602149,25.957381],[-97.62268,25.989579],[-97.633341,25.988723],[-97.639714,26.012144],[-97.675995,26.031233],[-97.875524,26.063863],[-98.031387,26.064686],[-98.038849,26.041411],[-98.070093,26.051092],[-98.075755,26.06567],[-98.091798,26.058764],[-98.105394,26.067666],[-98.137322,26.06151],[-98.149619,26.051652],[-98.180579,26.065971],[-98.192285,26.053317],[-98.248405,26.071788],[-98.267602,26.092523],[-98.284486,26.101026],[-98.272058,26.113026],[-98.291393,26.120863],[-98.309648,26.113866],[-98.323134,26.120207],[-98.335205,26.137618],[-98.335621,26.165921],[-98.358167,26.158598],[-98.386919,26.15796],[-98.406793,26.183242],[-98.44236,26.198975],[-98.43985,26.218373],[-98.458454,26.225627],[-98.622347,26.259818],[-98.633419,26.243255],[-98.664633,26.235351],[-98.678477,26.244269],[-98.679014,26.260622],[-98.718349,26.271475],[-98.704284,26.27729],[-98.754948,26.331358],[-98.775462,26.325199],[-98.788221,26.329989],[-98.79853,26.360742],[-98.824992,26.370702],[-98.895759,26.353239],[-98.903852,26.372201],[-98.956073,26.377113],[-98.978756,26.399922],[-99.011405,26.392431],[-99.02067,26.40627],[-99.03675,26.413526],[-99.062112,26.397434],[-99.081683,26.396602],[-99.109754,26.42501],[-99.099666,26.46146],[-99.091661,26.476219],[-99.105031,26.500336],[-99.171991,26.546023],[-99.26912,26.842208],[-99.443802,27.018488],[-99.44163,27.250108],[-99.463303,27.268503],[-99.480688,27.25999],[-99.495022,27.303937],[-99.538036,27.317091],[-99.504339,27.339039],[-99.487582,27.412855],[-99.495273,27.446793],[-99.478795,27.479256],[-99.489,27.495611],[-99.528327,27.499454],[-99.519313,27.552465],[-99.511471,27.564179],[-99.594559,27.638793],[-99.608949,27.641072],[-99.638942,27.626656],[-99.710556,27.657706],[-99.8403621,27.7651395],[-99.851762,27.794509],[-99.871528,27.794988],[-99.875927,27.837978],[-99.901709,27.864802],[-99.931071,27.979997],[-99.990176,27.993344],[-100.017389,28.063872],[-100.053003,28.084827],[-100.055829,28.102999],[-100.067377,28.113544],[-100.088765,28.147866],[-100.120237,28.155958],[-100.141246,28.168172],[-100.15862,28.167591],[-100.210978,28.193068],[-100.268131,28.251008],[-100.294103,28.284132],[-100.285972,28.309699],[-100.314198,28.34586],[-100.31815,28.359076],[-100.344385,28.389871],[-100.348951,28.404747],[-100.367766,28.475019],[-100.344575,28.486122],[-100.338519,28.501834],[-100.384682,28.513246],[-100.398575,28.585289],[-100.429981,28.596177],[-100.447607,28.609314],[-100.445584,28.63728],[-100.474495,28.647071],[-100.479205,28.655281],[-100.498086,28.659576],[-100.512083,28.706761],[-100.50668,28.716881],[-100.507561,28.740799],[-100.537558,28.779518],[-100.535832,28.806069],[-100.645604,28.940036],[-100.646278,28.990316],[-100.663145,29.046695],[-100.663708,29.074087],[-100.675315,29.101435],[-100.801495,29.250076],[-100.833886,29.261228],[-100.85548,29.275824],[-100.8783593,29.2811569],[-100.886158,29.307176],[-100.897497,29.309292],[-100.940414,29.333234],[-100.944898,29.344312],[-101.009952,29.368285],[-101.060357,29.45848],[-101.255011,29.520143],[-101.261076,29.537487],[-101.241543,29.564902],[-101.247488,29.618195],[-101.264062,29.630499],[-101.280233,29.612427],[-101.279316,29.588476],[-101.294356,29.572228],[-101.309963,29.586519],[-101.312252,29.612736],[-101.301277,29.646856],[-101.347964,29.662153],[-101.363019,29.652572],[-101.372642,29.678212],[-101.372957,29.699154],[-101.414247,29.743969],[-101.405606,29.772052],[-101.436816,29.750941],[-101.450096,29.751456],[-101.456176,29.77314],[-101.455388,29.78827],[-101.480411,29.783971],[-101.502354,29.764194],[-101.53929,29.760201],[-101.540465,29.808828],[-101.568029,29.798513],[-101.57454,29.788713],[-101.57411,29.770104],[-101.648531,29.755522],[-101.804813,29.780211],[-101.816894,29.81155],[-101.837843,29.793626],[-101.855442,29.807493],[-101.875437,29.793893],[-101.9103,29.798357],[-101.924625,29.784212],[-101.935736,29.799677],[-101.954786,29.7956],[-101.980608,29.815648],[-101.983821,29.80012],[-102.02338,29.80295],[-102.050045,29.78507],[-102.116888,29.793383],[-102.144052,29.803613],[-102.188622,29.848887],[-102.320297,29.879289],[-102.67704,29.741609],[-102.877056,29.354801],[-102.887335,29.311577],[-102.88798,29.293126],[-102.906322,29.261854],[-102.867376,29.223831],[-103.274351,28.981673],[-103.287642,29.001872],[-103.309928,29.003969],[-103.313629,29.026224],[-103.32603,29.016363],[-103.330809,29.043291],[-103.344745,29.045447],[-103.35943,29.018685],[-103.473901,29.070202],[-103.499709,29.11455],[-103.523689,29.121155],[-103.524679,29.137349],[-103.5564182,29.1558114],[-103.592361,29.150261],[-103.718646,29.180902],[-103.777082,29.220285],[-103.776584,29.243321],[-103.782947,29.264199],[-103.798893,29.258475],[-103.809422,29.272691],[-103.825879,29.26921],[-103.838016,29.278418],[-103.918597,29.284676],[-103.968254,29.299927],[-103.973548,29.295943],[-104.02037,29.312124],[-104.055469,29.330688],[-104.168507,29.396261],[-104.183945,29.416673],[-104.180683,29.425664],[-104.210754,29.449215],[-104.208944,29.480522],[-104.262193,29.513615],[-104.295075,29.523625],[-104.337183,29.519626],[-104.380203,29.542057],[-104.394948,29.556506],[-104.398663,29.571714],[-104.4676534,29.6113729],[-104.4773086,29.6285803],[-104.5184648,29.6492631],[-104.680033,29.9212146],[-104.7074497,30.0503496],[-104.6851489,30.0854133],[-104.695464,30.132577],[-104.686056,30.1456998],[-104.6871036,30.1789404],[-104.6973392,30.1918224],[-104.713136,30.237522],[-104.8594998,30.3905401],[-104.8989222,30.5705706],[-104.922394,30.603311],[-104.9348671,30.6000891],[-104.9601712,30.6107322],[-104.972011,30.6103324],[-104.9797397,30.6291637]],[[-94.681297,31.843947],[-94.63623,31.618505],[-94.519128,31.744036],[-94.681297,31.843947]],[[-101.556887,33.394761],[-101.963946,33.370447],[-101.557192,33.241118],[-101.556887,33.394761]]]]},"properties":{"name":"ERCT","gridLoss":{"display":"4.87%","value":0.0487},"fuelMixCategories":{"renewable":18.3,"non-renewable":81.7,"non-renewable (excluding nuclear)":71.7,"renewable (excluding hydro)":18,"nuclear":10,"hydro":0.2},"fullName":"ERCOT All","emissionFactor":{"co2EmissionRate":{"value":931.7,"display":"931.7","units":"lb/MWh"},"noxEmissionRate":{"value":0.5,"display":"0.5","units":"lb/MWh"},"so2EmissionRate":{"value":0.8,"display":"0.8","units":"lb/MWh"}},"fuelMix":{"coal":22.6,"oil":0,"gas":48.5,"nuclear":10,"hydro":0.2,"biomass":0.2,"wind":17,"solar":0.8,"geothermal":0,"otherFossilFuel":0.4,"otherUnknownFuel":0.1}}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-85.4309192,29.9500295],[-85.421959,29.966564],[-85.389816,29.95906],[-85.391448,30.025415],[-85.616044,30.134255],[-85.322617,30.998601],[-85.243632,31.000884],[-85.001901,31.000681],[-84.925724,30.843789],[-84.935824,30.83379],[-84.936824,30.81849],[-84.920023,30.765791],[-84.864694,30.711543],[-84.634212,30.701511],[-84.47441,30.692794],[-84.046606,30.674201],[-83.49954,30.645653],[-82.749855,30.601156],[-82.499849,30.586802],[-82.2147951,30.5684331],[-82.16551,30.357943],[-82.035829,30.384938],[-82.045386,30.728327],[-82.011141,30.763752],[-82.023825,30.783247],[-82.015802,30.791669],[-81.995312,30.786775],[-81.977809,30.776694],[-81.962682,30.796062],[-81.964064,30.818038],[-81.949981,30.827831],[-81.444124,30.709714],[-81.4571118,30.5130031],[-81.43241,30.486539],[-81.41081,30.482039],[-81.407444,30.429507],[-81.416948,30.410828],[-81.392984,30.397152],[-81.397873,30.362733],[-81.389961,30.294182],[-81.382996,30.262728],[-81.310648,29.976445],[-81.297678,29.935086],[-81.273817,29.889799],[-81.265407,29.859538],[-81.262413,29.815766],[-81.249825,29.766192],[-80.971213,29.156714],[-80.94177,29.106527],[-80.9100245,29.0694504],[-80.892642,29.033513],[-80.865146,28.989192],[-80.703661,28.748335],[-80.574903,28.585181],[-80.561675,28.532572],[-80.525675,28.458967],[-80.529256,28.448881],[-80.562272,28.438115],[-80.590748,28.408096],[-80.6036381,28.3581317],[-80.605854,28.272698],[-80.5920678,28.186635],[-80.447315,27.862457],[-80.612354,28.16858],[-80.639108,28.406591],[-80.592106,28.557361],[-80.684245,28.365694],[-80.62439,28.177584],[-80.837154,28.785177],[-80.744836,28.396215],[-80.374673,27.650251],[-80.314628,27.423926],[-80.121439,27.081484],[-80.095721,27.023499],[-80.067978,26.928097],[-80.047945,26.865919],[-80.032137,26.800916],[-80.031101,26.777522],[-80.037188,26.764482],[-80.033022,26.700759],[-80.036633,26.598689],[-80.080091,26.262555],[-80.0887441,26.2306016],[-80.1016493,26.1454052],[-80.1216372,25.9010639],[-80.17086,25.867665],[-80.188894,25.75836],[-80.238377,25.726971],[-80.249083,25.713427],[-80.309504,25.6035915],[-80.340776,25.498387],[-80.340168,25.470346],[-80.330233,25.44139],[-80.331483,25.346211],[-80.365475,25.326914],[-80.381184,25.312117],[-80.39391,25.288381],[-80.40481,25.286298],[-80.429987,25.257303],[-80.432109,25.230458],[-80.4126316,25.1956895],[-80.260221,25.324639],[-80.371119,25.137142],[-80.557261,24.97312],[-80.383906,25.167612],[-80.419065,25.198361],[-80.434085,25.225597],[-80.435462,25.240715],[-80.435406,25.134704],[-80.51916,25.222343],[-80.741481,25.142497],[-80.756266,25.160055],[-80.8252164,25.1607968],[-80.834701,25.173066],[-80.850177,25.177378],[-80.900627,25.160671],[-80.901389,25.139542],[-81.087776,25.116501],[-81.14169,25.157507],[-81.144049,25.326569],[-81.127329,25.331498],[-81.117859,25.320129],[-81.0938,25.305222],[-81.079096,25.278603],[-81.06507,25.285327],[-81.061468,25.262904],[-80.999933,25.250782],[-80.953161,25.211906],[-80.901756,25.245916],[-80.9735,25.33937],[-81.016962,25.329962],[-81.086749,25.353367],[-81.094695,25.370006],[-81.121942,25.379033],[-81.141585,25.381544],[-81.149767,25.388183],[-81.209681,25.50674],[-81.203892,25.533454],[-81.135201,25.578991],[-81.050056,25.550407],[-81.121647,25.61044],[-81.221949,25.554719],[-81.266144,25.800316],[-81.326577,25.784549],[-81.394831,25.854318],[-81.476748,25.892467],[-81.504674,25.88514],[-81.544322,25.918106],[-81.590865,25.896628],[-81.619036,25.946323],[-81.643279,25.939158],[-81.667263,25.951459],[-81.657683,25.969546],[-81.678268,25.968645],[-81.692574,25.973811],[-81.712918,25.971134],[-81.70976,25.98371],[-81.726311,25.984261],[-81.739954,26.015394],[-81.740836,26.033673],[-81.801869,26.095431],[-81.853779,26.44172],[-82.063683,26.566777],[-82.064262,26.883516],[-82.304734,26.858211],[-82.571391,27.402484],[-82.5808493,27.4148918],[-82.620685,27.427893],[-82.661183,27.457184],[-82.688691,27.467488],[-82.6888,27.478311],[-82.658216,27.466043],[-82.639773,27.473754],[-82.643486,27.502563],[-82.658533,27.501442],[-82.675144,27.510153],[-82.674948,27.519166],[-82.634017,27.538736],[-82.617269,27.535291],[-82.605038,27.525904],[-82.563556,27.570387],[-82.585559,27.56638],[-82.605832,27.577191],[-82.520423,27.690068],[-82.508383,27.700669],[-82.486118,27.711147],[-82.466792,27.715036],[-82.474617,27.726331],[-82.473749,27.741687],[-82.443032,27.755932],[-82.409888,27.811322],[-82.394001,27.814164],[-82.395249,27.842944],[-82.696557,28.035571],[-82.724352,27.949062],[-82.59719,27.864881],[-82.624876,27.852552],[-82.612282,27.831765],[-82.5968453,27.8231832],[-82.596804,27.814058],[-82.638184,27.704106],[-82.6906,27.710605],[-82.758541,27.816084],[-82.828906,27.822097],[-82.846461,27.852494],[-82.7824958,28.0556848],[-82.798035,28.187545],[-82.748399,28.245833],[-82.701456,28.40375],[-82.686762,28.409936],[-82.665308,28.455541],[-82.636636,28.698079],[-82.808261,29.159068],[-82.838286,29.159822],[-82.85466,29.168502],[-82.889586,29.163644],[-82.901516,29.171417],[-82.937444,29.167456],[-83.001481,29.177549],[-83.026594,29.167413],[-83.071147,29.20146],[-83.062608,29.215943],[-83.072119,29.22898],[-83.069534,29.240185],[-83.074914,29.2609],[-83.167084,29.301802],[-83.145251,29.334071],[-83.212809,29.424494],[-83.378084,29.504781],[-83.400076,29.658266],[-83.416296,29.672368],[-83.430356,29.676974],[-83.458505,29.678208],[-83.48191,29.689907],[-83.494622,29.713749],[-83.558275,29.744088],[-83.585227,29.817736],[-83.620476,29.851811],[-83.639294,29.887357],[-84.002549,30.100651],[-84.044512,30.103908],[-84.068047,30.100119],[-84.083822,30.092263],[-84.121139,30.093743],[-84.138276,30.088063],[-84.15985,30.072497],[-84.183231,30.078387],[-84.18689,30.094051],[-84.19919,30.106259],[-84.271776,30.104282],[-84.360765,30.0593],[-84.36004,30.044573],[-84.386732,30.025875],[-84.3486682,29.9690766],[-84.445238,29.9705],[-84.349067,29.896812],[-84.455624,29.928811],[-84.537247,29.909307],[-84.663675,29.835459],[-84.678811,29.836734],[-84.798315,29.768553],[-84.883484,29.731959],[-84.902822,29.73494],[-84.88637,29.765292],[-84.870583,29.781898],[-84.923017,29.782387],[-84.935284,29.758422],[-84.972573,29.760343],[-84.9805182,29.7249206],[-85.002375,29.713598],[-85.347506,29.6689625],[-85.4309192,29.9500295]]]},"properties":{"name":"FRCC","gridLoss":{"display":"4.88%","value":0.0488},"fuelMixCategories":{"renewable":3.7,"non-renewable":96.3,"non-renewable (excluding nuclear)":83.7,"renewable (excluding hydro)":3.6,"nuclear":12.6,"hydro":0.1},"fullName":"FRCC All","emissionFactor":{"co2EmissionRate":{"value":931.8,"display":"931.8","units":"lb/MWh"},"noxEmissionRate":{"value":0.4,"display":"0.4","units":"lb/MWh"},"so2EmissionRate":{"value":0.3,"display":"0.3","units":"lb/MWh"}},"fuelMix":{"coal":11.6,"oil":0.9,"gas":70.6,"nuclear":12.6,"hydro":0.1,"biomass":2.6,"wind":0,"solar":0.9,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0.6}}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-155.668916,18.91684],[-155.68085,18.910787],[-155.687534,18.939076],[-155.798812,19.01077],[-155.860857,19.024736],[-155.880989,19.035963],[-155.883461,19.052682],[-155.905924,19.078263],[-155.918058,19.114635],[-155.906166,19.202974],[-155.898352,19.211668],[-155.899829,19.253727],[-155.888116,19.296241],[-155.889936,19.323976],[-155.885541,19.344217],[-156.061116,19.728358],[-155.831566,19.974103],[-155.8225953,20.0231088],[-155.829258,20.036924],[-155.864453,20.076378],[-155.891493,20.124027],[-155.904813,20.196039],[-155.865984,20.266365],[-155.835084,20.2675],[-155.778107,20.242393],[-155.753141,20.235897],[-155.737934,20.221606],[-155.729362,20.202119],[-155.598352,20.123075],[-155.556979,20.127947],[-155.514801,20.111857],[-155.496458,20.111935],[-155.469837,20.10039],[-155.437728,20.091762],[-155.386876,20.064252],[-155.322083,20.033163],[-155.279605,20.018609],[-155.251552,20.00057],[-155.23878,19.987592],[-155.21441,19.97594],[-155.081763,19.847354],[-155.093229,19.807188],[-155.090751,19.734591],[-155.07872,19.723114],[-155.03998,19.738946],[-155.021278,19.732038],[-155.003259,19.736122],[-154.978696,19.687213],[-154.983258,19.672368],[-154.981288,19.638972],[-154.904733,19.569677],[-154.823695,19.534474],[-154.806172,19.517573],[-154.976143,19.346778],[-155.505035,19.134384],[-155.668916,18.91684]]],[[[-156.371446,20.574969],[-156.441037,20.604742],[-156.4389939,20.6219569],[-156.452814,20.636529],[-156.440824,20.652538],[-156.446677,20.7164072],[-156.455655,20.73398],[-156.462419,20.780874],[-156.485535,20.795298],[-156.502891,20.796459],[-156.523385,20.777201],[-156.538505,20.775362],[-156.62691,20.812501],[-156.687561,20.882403],[-156.639322,21.024816],[-156.587435,21.030779],[-156.545953,21.00161],[-156.526759,20.96666],[-156.497333,20.932201],[-156.491029,20.914497],[-156.47805,20.895096],[-156.448376,20.897037],[-156.4220608,20.9101345],[-156.3840213,20.91594],[-156.320967,20.946182],[-156.306587,20.939377],[-156.28162,20.945285],[-156.228542,20.927728],[-156.227847,20.915596],[-156.194215,20.89309],[-156.168164,20.872123],[-156.156492,20.858777],[-156.129381,20.854931],[-156.112553,20.824458],[-156.084313,20.82771],[-156.056989,20.80737],[-156.030458,20.805036],[-156.001143,20.791627],[-155.985183,20.773296],[-156.045628,20.65294],[-156.371446,20.574969]]],[[[-156.963706,20.732205],[-157.02326,20.926016],[-156.806601,20.822407],[-156.963706,20.732205]]],[[[-159.526604,21.882893],[-159.7606686,21.9806197],[-159.783241,22.06112],[-159.7444574,22.0989105],[-159.722771,22.150057],[-159.58058,22.223541],[-159.5118618,22.2034163],[-159.476963,22.230081],[-159.399469,22.23012],[-159.343755,22.20998],[-159.292925,22.141332],[-159.2974,22.103787],[-159.333923,22.04953],[-159.330774,21.95961],[-159.444402,21.868318],[-159.526604,21.882893]]],[[[-156.882004,21.046513],[-157.31016,21.101566],[-156.711106,21.15938],[-156.882004,21.046513]]]]},"properties":{"name":"HIMS","gridLoss":{"display":"5.14%","value":0.0514},"fuelMixCategories":{"renewable":26.9,"non-renewable":73.1,"non-renewable (excluding nuclear)":73.1,"renewable (excluding hydro)":23.4,"nuclear":0,"hydro":3.5},"fullName":"HICC Miscellaneous","emissionFactor":{"co2EmissionRate":{"value":1110.7,"display":"1,110.7","units":"lb/MWh"},"noxEmissionRate":{"value":7.6,"display":"7.6","units":"lb/MWh"},"so2EmissionRate":{"value":4,"display":"4.0","units":"lb/MWh"}},"fuelMix":{"coal":0,"oil":66.2,"gas":0,"nuclear":0,"hydro":3.5,"biomass":1.9,"wind":14.6,"solar":2.9,"geothermal":4,"otherFossilFuel":0,"otherUnknownFuel":6.9}}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-158.032971,21.304206],[-158.1015111,21.2951934],[-158.110873,21.299518],[-158.119674,21.317957],[-158.13629,21.369289],[-158.1589125,21.3930142],[-158.176204,21.400424],[-158.190348,21.446189],[-158.23141,21.482898],[-158.231564,21.537202],[-158.270071,21.575831],[-157.967256,21.709308],[-157.651041,21.298782],[-157.8185875,21.2576418],[-157.823301,21.271933],[-157.861105,21.290405],[-157.86419,21.303117],[-157.894884,21.325026],[-157.947672,21.303669],[-157.962903,21.387759],[-158.032971,21.304206]]]},"properties":{"name":"HIOA","gridLoss":{"display":"5.14%","value":0.0514},"fuelMixCategories":{"renewable":10.7,"non-renewable":89.3,"non-renewable (excluding nuclear)":89.3,"renewable (excluding hydro)":10.7,"nuclear":0,"hydro":0},"fullName":"HICC Oahu","emissionFactor":{"co2EmissionRate":{"value":1669.9,"display":"1,669.9","units":"lb/MWh"},"noxEmissionRate":{"value":3.5,"display":"3.5","units":"lb/MWh"},"so2EmissionRate":{"value":8,"display":"8.0","units":"lb/MWh"}},"fuelMix":{"coal":18.6,"oil":69.9,"gas":0,"nuclear":0,"hydro":0,"biomass":6.4,"wind":2.8,"solar":1.5,"geothermal":0,"otherFossilFuel":0.8,"otherUnknownFuel":0}}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.700377,43.767401],[-87.7092059,43.7373471],[-87.703012,43.708676],[-87.706403,43.67925],[-87.726667,43.649964],[-87.800123,43.761226],[-87.7649803,43.7610142],[-87.757047,43.768179],[-87.700377,43.767401]]],[[[-87.140645,45.676031],[-87.367734,45.985269],[-87.617009,45.985906],[-87.615914,46.246794],[-87.992021,46.246996],[-87.991505,46.506553],[-88.365907,46.42015],[-88.240845,46.592163],[-88.678849,46.592578],[-89.124731,46.601017],[-88.933258,47.031613],[-88.911823,47.073643],[-88.889141,47.100575],[-88.371601,47.392393],[-88.18186,47.457844],[-87.79517,47.471275],[-87.718227,47.40088],[-87.813207,47.385092],[-87.847854,47.394753],[-87.880224,47.395715],[-87.956995,47.387473],[-88.230404,47.198178],[-88.242631,47.174288],[-88.231708,47.146778],[-88.28171,47.138247],[-88.367628,47.019226],[-88.405439,46.981595],[-88.445037,46.970059],[-88.4995845,46.7612339],[-88.390761,46.866705],[-88.362658,46.856584],[-88.241304,46.931194],[-88.198406,46.944217],[-88.155741,46.964956],[-88.136915,46.962914],[-88.146975,46.9466],[-88.183421,46.9211],[-88.211533,46.908891],[-88.241197,46.886737],[-88.242403,46.860786],[-88.08187,46.920465],[-87.99368,46.90469],[-87.955739,46.909103],[-87.902238,46.909957],[-87.86892,46.889905],[-87.844716,46.883743],[-87.817485,46.891017],[-87.784504,46.880274],[-87.77215,46.862706],[-87.740983,46.865024],[-87.73297,46.832461],[-87.725639,46.825502],[-87.690602,46.828052],[-87.675238,46.838023],[-87.669079,46.81754],[-87.633627,46.812081],[-87.608295,46.78801],[-87.594079,46.782306],[-87.590548,46.75068],[-87.577105,46.723051],[-87.503292,46.647497],[-87.470413,46.635641],[-87.434074,46.590833],[-87.394467,46.584143],[-87.393795,46.532105],[-87.380606,46.516066],[-87.360733,46.50385],[-87.107221,46.495741],[-87.084728,46.510836],[-87.001775,46.533057],[-86.965086,46.516294],[-86.947964,46.484939],[-86.946718,46.471602],[-86.876292,46.437352],[-86.83388,46.434142],[-86.815363,46.437927],[-86.808253,46.460601],[-86.789237,46.477628],[-86.754313,46.479691],[-86.731525,46.472149],[-86.729517,46.4621],[-86.703594,46.439394],[-86.654961,46.441683],[-86.638463,46.411313],[-85.864414,46.689704],[-85.864866,46.120259],[-86.114419,46.331372],[-86.1166179,45.9650046],[-86.150832,45.953576],[-86.196786,45.963113],[-86.27604,45.943154],[-86.324035,45.906673],[-86.346145,45.82086],[-86.369528,45.789621],[-86.53763,45.745615],[-86.616973,45.621817],[-86.716114,45.683299],[-86.58054,45.777358],[-86.576814,45.801477],[-86.557279,45.808075],[-86.554172,45.832701],[-86.530453,45.849774],[-86.553308,45.896307],[-86.585039,45.897069],[-86.598736,45.877275],[-86.632747,45.860758],[-86.632637,45.844694],[-86.649395,45.835454],[-86.782068,45.860187],[-86.773222,45.811393],[-86.809272,45.792532],[-86.806873,45.77668],[-86.818957,45.772261],[-86.822318,45.756342],[-86.845018,45.737648],[-86.839092,45.722036],[-86.96677,45.670801],[-86.969714,45.691904],[-86.984542,45.705819],[-86.981976,45.79312],[-87.005034,45.831728],[-86.968055,45.910824],[-87.140645,45.676031]]],[[[-90.4371468,42.507235],[-91.051275,42.737001],[-91.05791,43.253968],[-90.666316,43.271838],[-90.9577409,43.4133305],[-90.683673,43.422455],[-90.741785,43.552644],[-90.531669,43.552821],[-90.6476871,43.3931316],[-90.4125507,43.247731],[-90.2141169,43.3311534],[-90.36716,43.47826],[-90.09505,43.695787],[-90.59561,43.793814],[-90.672675,44.15932],[-90.315785,44.467837],[-90.4346945,44.8427548],[-89.940234,44.778108],[-89.865085,45.105134],[-89.426109,45.119196],[-89.790797,45.301442],[-89.4874341,45.5462083],[-89.912053,45.696499],[-89.673488,45.81803],[-89.8394332,46.0696647],[-89.670291,45.938062],[-89.554937,46.113637],[-88.978711,45.982217],[-88.9461549,45.571817],[-88.592544,45.63666],[-88.6652389,45.8092302],[-88.059246,45.713063],[-88.0888123,45.54205],[-87.823804,45.538307],[-88.1174851,45.4630228],[-87.939989,45.265193],[-87.860365,45.264275],[-87.860181,45.278433],[-87.7836088,45.2775964],[-87.7771522,45.2807098],[-87.7006286,45.2795927],[-87.647768,45.340563],[-87.693956,45.389894],[-87.754104,45.349443],[-87.790325,45.353444],[-87.832613,45.35225],[-87.850418,45.347493],[-87.884855,45.362793],[-87.861698,45.434473],[-87.831218,45.457186],[-87.812884,45.464329],[-87.792769,45.499968],[-87.808367,45.544663],[-87.832968,45.559462],[-87.831689,45.568035],[-87.797536,45.562125],[-87.777494,45.593835],[-87.264469,45.550392],[-87.600279,45.14993],[-87.610295,45.114554],[-87.587022,45.087267],[-87.630067,44.983611],[-87.780529,44.962584],[-87.81315,44.953968],[-87.838127,44.932679],[-87.844169,44.916879],[-87.82804,44.889057],[-87.866238,44.840481],[-87.901138,44.827365],[-87.938181,44.756447],[-87.951561,44.753108],[-87.983494,44.720197],[-88.047538,44.564615],[-87.928388,44.536311],[-87.855255,44.620257],[-87.840154,44.619314],[-87.809348,44.636084],[-87.775727,44.639042],[-87.754473,44.650612],[-87.610047,44.838374],[-87.398384,44.844116],[-87.382661,44.855301],[-87.383876,44.886544],[-87.406205,44.90428],[-87.39339,44.934424],[-87.229796,45.173455],[-86.98272,45.294805],[-87.057489,45.087036],[-87.1224495,45.0671921],[-87.204564,44.875634],[-87.261162,44.850711],[-87.282648,44.814573],[-87.306085,44.803494],[-87.468093,44.551925],[-87.483942,44.51023],[-87.490153,44.476789],[-87.4989809,44.4608041],[-87.501881,44.435486],[-87.517828,44.394325],[-87.516956,44.378036],[-87.542863,44.32909],[-87.541153,44.293145],[-87.508643,44.230425],[-87.5084125,44.2037432],[-87.518792,44.1802246],[-87.5306879,44.1663245],[-87.646624,44.104667],[-87.699249,43.965307],[-88.599957,43.850457],[-88.60696,43.30556],[-88.882562,43.371917],[-89.166536,43.188549],[-89.1503176,43.0030354],[-88.94358,43.042169],[-88.987684,42.846946],[-88.663459,42.581855],[-88.511329,42.575324],[-88.525696,42.494917],[-90.4371468,42.507235]],[[-88.498253,44.855456],[-89.005153,44.400131],[-89.026819,44.068985],[-88.046361,44.080884],[-87.847157,44.247659],[-88.210587,44.593205],[-88.2547569,44.9754839],[-88.498253,44.855456]]]]},"properties":{"name":"MROE","gridLoss":{"display":"4.88%","value":0.0488},"fuelMixCategories":{"renewable":12.7,"non-renewable":87.3,"non-renewable (excluding nuclear)":87.3,"renewable (excluding hydro)":7.4,"nuclear":0,"hydro":5.3},"fullName":"MRO East","emissionFactor":{"co2EmissionRate":{"value":1678,"display":"1,678.0","units":"lb/MWh"},"noxEmissionRate":{"value":0.9,"display":"0.9","units":"lb/MWh"},"so2EmissionRate":{"value":0.9,"display":"0.9","units":"lb/MWh"}},"fuelMix":{"coal":64.1,"oil":0.5,"gas":22.6,"nuclear":0,"hydro":5.3,"biomass":4.3,"wind":3.1,"solar":0,"geothermal":0,"otherFossilFuel":0.1,"otherUnknownFuel":0.1}}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-107.14314,44.558341],[-107.24854,44.661059],[-106.894846,44.621005],[-107.14314,44.558341]]],[[[-94.708021,40.572242],[-95.049388,40.55455],[-94.933981,40.230331],[-95.16174,40.261402],[-95.255407,39.998679],[-95.3589364,39.9998927],[-95.592039,40.000218],[-95.97707,40.000582],[-96.889293,40.0014785],[-98.530258,40.002391],[-98.972379,40.002228],[-99.290687,40.001994],[-100.23181,40.001614],[-100.509528,40.001793],[-100.927279,40.002163],[-101.178884,40.002459],[-101.455314,40.002551],[-101.812807,40.002851],[-101.815789,40.149878],[-101.814853,40.175533],[-101.891917,40.20889],[-101.892394,40.349373],[-101.684635,40.523171],[-101.911987,40.56703],[-101.476703,40.698175],[-101.500449,41.395354],[-101.984631,41.394713],[-102.038169,42.443307],[-102.302292,42.529363],[-102.2772213,42.3644347],[-102.49162,42.36863],[-102.538368,42.785336],[-102.6178,42.792145],[-102.615994,42.871145],[-102.694594,42.914159],[-102.694193,42.999982],[-103.000897,43.000743],[-103.001051,43.603702],[-102.138938,43.820692],[-102.6085,43.99504],[-102.656953,44.473977],[-102.9644298,44.5028963],[-102.957726,45.212641],[-104.039958,45.212926],[-104.040284,45.336959],[-104.101866,45.35991],[-104.121878,45.341672],[-104.223981,45.35983],[-104.339271,45.482404],[-104.298601,45.595859],[-104.252176,45.566962],[-104.173415,45.567729],[-104.123069,45.53896],[-104.041504,45.539236],[-104.04403,45.881976],[-104.134663,45.882037],[-104.134716,45.968946],[-104.390877,45.970307],[-104.573029,46.194117],[-104.745054,46.187973],[-104.732854,46.612672],[-105.491935,46.624433],[-105.008511,46.861439],[-104.603767,46.86088],[-104.607017,46.684927],[-104.417784,46.684893],[-104.353874,46.641447],[-104.111733,46.641614],[-104.101677,46.656107],[-104.045338,46.657194],[-104.045496,46.745515],[-103.986739,46.738357],[-103.986501,46.803437],[-103.902639,46.803415],[-103.899328,47.00596],[-103.667006,47.095677],[-103.666723,47.329355],[-104.0443158,47.3301078],[-104.041461,47.862563],[-104.04412,47.996107],[-104.021983,47.988899],[-104.01157,47.971413],[-103.967638,47.985616],[-103.91979,47.955951],[-103.821324,47.979853],[-103.600934,48.133466],[-103.346168,48.031924],[-103.407041,48.459587],[-103.863427,48.459941],[-103.906941,48.402035],[-104.045444,48.402224],[-104.046767,48.389402],[-104.118949,48.389429],[-104.282218,48.230071],[-104.659663,48.230062],[-104.632151,48.110743],[-105.452845,47.998677],[-105.785505,47.708172],[-106.082464,47.775139],[-105.820529,47.954489],[-105.833932,48.493225],[-106.476067,48.440231],[-106.480121,48.871033],[-106.783768,48.912113],[-106.783752,48.966709],[-106.824003,48.978956],[-106.831879,48.999921],[-105.777996,48.999672],[-105.772642,48.983242],[-105.826607,48.975964],[-105.826489,48.925313],[-105.535659,48.809619],[-105.650065,48.708079],[-105.492733,48.563105],[-105.099283,48.563014],[-104.275105,48.606559],[-104.048043,48.707971],[-104.048885,48.877324],[-104.048737,48.999878],[-101.988772,48.998977],[-101.0171808,48.99922],[-100.526931,48.999218],[-100.182707,48.999205],[-99.940059,48.999051],[-99.701008,48.999101],[-97.461799,49.000481],[-97.2291475,49.0006824],[-96.93096,48.999984],[-96.659919,48.999982],[-96.358753,48.999982],[-95.153711,48.998903],[-95.153509,49.124994],[-95.153313,49.384359],[-94.952112,49.36868],[-94.816221,49.320986],[-94.82516,49.294284],[-94.797245,49.214284],[-94.797527,49.197791],[-94.751255,49.100238],[-94.750219,48.999992],[-94.68307,48.884592],[-94.690889,48.778067],[-94.587192,48.717618],[-94.555836,48.716208],[-94.538372,48.702841],[-94.437564,48.695394],[-94.415508,48.710799],[-94.308498,48.710225],[-94.262023,48.697414],[-94.250623,48.678236],[-94.254507,48.6608],[-94.224276,48.649527],[-93.850257,48.630007],[-93.834324,48.624954],[-93.821153,48.606302],[-93.80527,48.5703],[-93.818252,48.530048],[-93.794454,48.516022],[-92.95012,48.63042],[-92.63494,48.542864],[-92.636685,48.499433],[-92.698825,48.494892],[-92.712562,48.463013],[-92.6561979,48.4365633],[-92.575636,48.440827],[-92.537203,48.447703],[-92.5074497,48.4480736],[-92.456326,48.414205],[-92.45639,48.401134],[-92.476751,48.371761],[-92.469949,48.351836],[-92.369813,48.220336],[-92.000133,48.321355],[-91.958288,48.233023],[-91.893052,48.237311],[-91.864308,48.206947],[-91.816216,48.211748],[-91.710552,48.192666],[-91.724584,48.170658],[-91.705095,48.170659],[-91.698431,48.143783],[-91.71186,48.114603],[-91.566948,48.043696],[-91.542512,48.053268],[-91.488067,48.068112],[-91.450331,48.068807],[-91.431639,48.04867],[-91.392386,48.05643],[-91.370872,48.069411],[-91.34016,48.073237],[-91.289877,48.074054],[-91.250111,48.084088],[-91.214428,48.102941],[-91.156106,48.140476],[-91.0843,48.179902],[-90.885476,48.245773],[-90.875108,48.237785],[-90.847352,48.244444],[-90.839165,48.239477],[-90.832585,48.173747],[-90.804221,48.177842],[-90.76132,48.098409],[-90.13574,48.112114],[-90.11621,48.104242],[-90.073873,48.101138],[-90.022599,48.083436],[-89.993969,48.049338],[-89.995061,48.029154],[-89.896077,47.987301],[-89.871416,47.985684],[-89.819725,48.0154],[-89.76735,48.022632],[-89.622667,48.011589],[-89.573864,47.984865],[-89.61701,47.996567],[-89.737743,47.916788],[-89.930501,47.858705],[-89.928322,47.85163],[-89.974704,47.830629],[-90.4375,47.731669],[-90.526654,47.706424],[-90.551441,47.68998],[-90.62893,47.664215],[-90.662314,47.648859],[-90.729839,47.627465],[-90.777226,47.605926],[-91.128603,47.399236],[-91.481102,47.124426],[-92.0940007,46.788326],[-92.157321,46.705089],[-92.099408,46.748019],[-92.048283,46.709504],[-92.029234,46.702762],[-92.0148338,46.6839892],[-91.942583,46.679784],[-91.886963,46.690209],[-91.835142,46.689539],[-91.790133,46.694676],[-91.36157,46.797564],[-91.33825,46.817705],[-91.257771,46.836432],[-91.232324,46.860409],[-91.20311,46.869968],[-91.200108,46.854017],[-91.183295,46.84567],[-91.111419,46.856544],[-91.09135,46.882351],[-91.063022,46.878493],[-91.034152,46.903305],[-90.996883,46.916663],[-90.968419,46.94391],[-90.855875,46.962232],[-90.834479,46.95632],[-90.830435,46.936213],[-90.793741,46.935048],[-90.752034,46.886364],[-90.815081,46.807287],[-90.86268,46.782257],[-90.866586,46.764409],[-90.884557,46.749502],[-90.852704,46.699583],[-90.9471222,46.5904317],[-90.434368,46.562166],[-90.414633,46.566978],[-90.384129,46.584137],[-90.330683,46.608747],[-90.028393,46.674391],[-89.983395,46.704976],[-89.924515,46.736441],[-89.869727,46.780717],[-89.831957,46.804053],[-89.787335,46.819405],[-89.660626,46.831056],[-89.6287229,46.818562],[-89.55058,46.836759],[-89.513466,46.841787],[-89.471504,46.837168],[-89.431166,46.840189],[-88.933258,47.031613],[-89.124731,46.601017],[-88.678849,46.592578],[-88.8665774,46.3333088],[-89.49028,46.333247],[-89.490586,46.215356],[-89.616871,46.160423],[-89.554937,46.113637],[-89.670291,45.938062],[-89.8394332,46.0696647],[-89.673488,45.81803],[-89.912053,45.696499],[-89.4874341,45.5462083],[-89.790797,45.301442],[-89.426109,45.119196],[-89.865085,45.105134],[-89.940234,44.778108],[-90.4346945,44.8427548],[-90.315785,44.467837],[-90.672675,44.15932],[-90.59561,43.793814],[-90.09505,43.695787],[-90.36716,43.47826],[-90.2141169,43.3311534],[-90.4125507,43.247731],[-90.6476871,43.3931316],[-90.531669,43.552821],[-90.741785,43.552644],[-90.683673,43.422455],[-90.9577409,43.4133305],[-90.666316,43.271838],[-91.05791,43.253968],[-91.051275,42.737001],[-90.4371468,42.507235],[-90.4428163,42.4967374],[-90.486854,42.484706],[-90.49518,42.45724],[-90.515833,42.462079],[-90.516199,42.429814],[-90.552633,42.430021],[-90.555018,42.416138],[-90.403349,42.309936],[-90.258762,42.339969],[-90.024853,42.012575],[-90.254106,41.522531],[-90.34111,41.221413],[-90.494115,41.355118],[-90.821338,41.301409],[-90.849682,41.362591],[-90.791427,41.39856],[-90.810514,41.435991],[-90.781729,41.439766],[-90.781608,41.451995],[-91.045063,41.414873],[-91.051934,41.384483],[-91.065058,41.369102],[-91.071553,41.339651],[-91.073553,41.310481],[-91.08688,41.294372],[-91.114186,41.25003],[-91.112334,41.239003],[-91.041856,41.166461],[-91.009594,41.166239],[-90.989663,41.155716],[-90.946627,41.096633],[-90.942254,41.034703],[-90.945949,41.006495],[-90.958142,40.979768],[-90.951967,40.958238],[-90.962916,40.924958],[-91.090073,40.824639],[-91.111941,40.697019],[-91.295474,40.775014],[-91.331746,41.175969],[-91.582269,41.163291],[-91.715021,41.438603],[-92.042749,41.163436],[-92.410678,41.267266],[-92.5107515,41.1367921],[-93.189269,41.452544],[-93.556325,40.754179],[-93.556496,40.673538],[-93.4421522,40.6813899],[-93.39854,40.580235],[-93.552385,40.580335],[-93.720185,40.577542],[-93.816118,40.577128],[-94.03422,40.573587],[-94.213248,40.572005],[-94.537063,40.570795],[-94.708021,40.572242]]]]},"properties":{"name":"MROW","gridLoss":{"display":"4.88%","value":0.0488},"fuelMixCategories":{"renewable":29.2,"non-renewable":70.8,"non-renewable (excluding nuclear)":60.2,"renewable (excluding hydro)":23.2,"nuclear":10.6,"hydro":6},"fullName":"MRO West","emissionFactor":{"co2EmissionRate":{"value":1239.8,"display":"1,239.8","units":"lb/MWh"},"noxEmissionRate":{"value":1,"display":"1.0","units":"lb/MWh"},"so2EmissionRate":{"value":1.4,"display":"1.4","units":"lb/MWh"}},"fuelMix":{"coal":51.8,"oil":0.1,"gas":8,"nuclear":10.6,"hydro":6,"biomass":1.1,"wind":21.7,"solar":0.5,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0.2}}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-70.007755,41.239202],[-70.200631,41.268421],[-70.017279,41.363706],[-70.007755,41.239202]]],[[[-70.6474052,41.3472332],[-70.835898,41.344286],[-70.449214,41.383513],[-70.6474052,41.3472332]]],[[[-73.660895,40.987391],[-73.727776,41.100696],[-73.514249,41.198651],[-73.487314,42.049638],[-73.264957,42.74594],[-73.311025,44.27424],[-73.343124,45.01084],[-72.274571,45.004233],[-71.914554,45.007927],[-71.801157,45.010758],[-71.5024695,45.0133734],[-71.492208,45.035397],[-71.501002,45.045194],[-71.486119,45.078663],[-71.428828,45.123881],[-71.39781,45.203553],[-71.420335,45.23272],[-71.297092,45.298985],[-71.264938,45.293447],[-71.231114,45.249686],[-71.1448,45.242252],[-71.097124,45.302227],[-71.06268,45.31309],[-71.032674,45.310173],[-70.952375,45.339099],[-70.917866,45.311725],[-70.920434,45.278566],[-70.895138,45.252247],[-70.884656,45.234861],[-70.857593,45.229148],[-70.848926,45.263053],[-70.831864,45.278931],[-70.833211,45.294995],[-70.815921,45.299358],[-70.808588,45.328361],[-70.825652,45.400287],[-70.794185,45.428339],[-70.743994,45.421125],[-70.74354,45.411826],[-70.711949,45.390453],[-70.636798,45.382337],[-70.627743,45.420728],[-70.681015,45.452149],[-70.691712,45.474227],[-70.717802,45.490191],[-70.722629,45.506533],[-70.689167,45.562194],[-70.644878,45.606766],[-70.619465,45.611905],[-70.592303,45.62954],[-70.552886,45.667859],[-70.400308,45.719702],[-70.388405,45.750146],[-70.40704,45.762691],[-70.405607,45.776463],[-70.41693,45.795508],[-70.396127,45.798601],[-70.341905,45.852311],[-70.306305,45.859703],[-70.284411,45.871759],[-70.25382,45.902551],[-70.240465,45.943848],[-70.27736,45.96651],[-70.312544,45.962149],[-70.316038,46.019965],[-70.281289,46.050481],[-70.278856,46.060578],[-70.307564,46.061522],[-70.236872,46.14585],[-70.278043,46.174996],[-70.292747,46.191595],[-70.231531,46.29071],[-70.206514,46.29912],[-70.208514,46.329858],[-70.191657,46.348952],[-70.170803,46.359158],[-70.149159,46.35863],[-70.129065,46.369516],[-70.126327,46.380828],[-70.110715,46.386206],[-70.096285,46.409431],[-70.0572153,46.4150139],[-70.02613,46.558969],[-69.99952,46.685438],[-69.994249,46.698564],[-69.22442,47.459687],[-68.895659,47.18291],[-68.234604,47.355035],[-67.790515,47.067922],[-67.752076,45.914732],[-67.768747,45.89795],[-67.789862,45.8935],[-67.803921,45.8829],[-67.803314,45.677887],[-67.768649,45.677582],[-67.733313,45.664141],[-67.713041,45.681497],[-67.692623,45.650366],[-67.675417,45.630959],[-67.645839,45.613566],[-67.51858,45.587925],[-67.489665,45.592255],[-67.488551,45.601497],[-67.455407,45.604665],[-67.429715,45.583774],[-67.420976,45.550029],[-67.432212,45.541037],[-67.43127,45.503882],[-67.501264,45.479999],[-67.422236,45.378933],[-67.472134,45.256534],[-67.404738,45.160103],[-67.379718,45.151184],[-67.352238,45.129133],[-67.321012,45.131815],[-67.319788,45.142479],[-67.296583,45.14757],[-67.290467,45.187723],[-67.157796,45.160776],[-67.114159,45.114517],[-67.082729,45.055468],[-67.101967,45.04705],[-67.082185,45.029556],[-67.072883,45.008364],[-67.05532,44.987861],[-67.033362,44.939754],[-67.013144,44.937016],[-67.014416,44.917167],[-67.040439,44.942795],[-67.111419,44.931368],[-67.133337,44.881668],[-67.196138,44.907344],[-66.983151,44.811491],[-68.044283,44.340413],[-68.267339,44.576376],[-68.564638,44.409212],[-68.56426,44.308025],[-68.535326,44.29163],[-68.519769,44.264829],[-68.523642,44.228646],[-68.578,44.262937],[-68.629965,44.286972],[-68.665243,44.293246],[-68.733723,44.331823],[-68.826359,44.311425],[-68.862019,44.480208],[-68.99524,44.42185],[-68.954788,44.323544],[-69.106193,44.111394],[-69.098995,44.081519],[-69.052982,44.077275],[-69.212389,43.932035],[-69.255917,43.922947],[-69.285205,43.960017],[-69.300699,43.956824],[-69.330307,43.978317],[-69.366312,43.988137],[-69.352193,44.015762],[-69.383981,44.017257],[-69.438328,43.976969],[-69.453845,43.941588],[-69.459972,43.90291],[-69.49974,43.848916],[-69.512972,43.844675],[-69.526267,43.878475],[-69.538811,43.879411],[-69.53866,43.896645],[-69.558732,43.897245],[-69.554146,43.864455],[-69.590908,43.814533],[-69.589548,43.859961],[-69.696572,43.887331],[-69.716893,43.849341],[-69.707272,43.828341],[-69.721456,43.806959],[-69.717827,43.789357],[-69.850689,43.704125],[-69.877994,43.797781],[-69.91745,43.80087],[-69.901767,43.810559],[-69.899315,43.823907],[-69.9172,43.825541],[-69.93759,43.773794],[-69.958017,43.810851],[-70.0263,43.762366],[-70.008007,43.783261],[-69.976711,43.827068],[-69.952328,43.85041],[-70.020369,43.860405],[-70.186336,43.774308],[-70.195902,43.739949],[-70.222674,43.71628],[-70.223696,43.70266],[-70.243051,43.694133],[-70.252484,43.678028],[-70.239407,43.664725],[-70.221495,43.633178],[-70.207077,43.62319],[-70.198101,43.569123],[-70.21647,43.556187],[-70.231041,43.562663],[-70.244216,43.552084],[-70.28074,43.559402],[-70.312501,43.5366],[-70.360349,43.53008],[-70.384277,43.496652],[-70.382734,43.468723],[-70.36854,43.447783],[-70.368614,43.435738],[-70.388655,43.407409],[-70.439531,43.355458],[-70.518012,43.34415],[-70.539796,43.335786],[-70.55996,43.31492],[-70.5958,43.248171],[-70.57632,43.221047],[-70.623415,43.134423],[-70.672386,43.070644],[-70.692848,43.06623],[-70.695275,43.082518],[-70.725711,43.088282],[-70.7530989,43.0784664],[-70.714048,43.046202],[-70.718507,43.03262],[-70.759723,42.988995],[-70.7759,42.957105],[-70.794486,42.939773],[-70.810982,42.898271],[-70.834577,42.896614],[-70.815847,42.875101],[-70.816486,42.849161],[-70.805541,42.787351],[-70.772726,42.711158],[-70.815264,42.757241],[-70.818952,42.720765],[-70.754313,42.649337],[-70.71816,42.663507],[-70.692576,42.655378],[-70.630127,42.692809],[-70.595741,42.634626],[-70.653692,42.58243],[-70.649739,42.612157],[-70.677245,42.607668],[-70.698971,42.576897],[-70.867756,42.548694],[-70.887765,42.520168],[-70.875197,42.502767],[-70.862239,42.521254],[-70.841232,42.509556],[-70.854009,42.491679],[-70.894951,42.460588],[-70.921306,42.467319],[-70.94529,42.456889],[-70.979491,42.427608],[-71.007671,42.346667],[-71.0450273,42.3710657],[-71.0472395,42.3236209],[-70.996495,42.26584],[-70.9730901,42.2631719],[-70.949379,42.273427],[-70.950409,42.248544],[-70.878053,42.248248],[-70.882036,42.273622],[-70.869536,42.283943],[-70.79163,42.25433],[-70.788456,42.23916],[-70.7655674,42.244265],[-70.721056,42.20812],[-70.329128,41.710061],[-70.004183,41.806384],[-70.240922,42.065999],[-70.056481,42.038586],[-69.962605,41.653502],[-70.653415,41.520291],[-70.674999,41.527245],[-70.642802,41.572073],[-70.651042,41.64541],[-70.627155,41.651676],[-70.628431,41.664049],[-70.6148794,41.7159788],[-70.715347,41.732786],[-70.720267,41.680234],[-70.8247,41.650571],[-70.800115,41.630732],[-70.838317,41.625202],[-70.849508,41.610254],[-70.857245,41.58368],[-70.869793,41.62504],[-70.889113,41.632352],[-70.931606,41.607835],[-70.946519,41.572267],[-70.936694,41.550923],[-70.982706,41.508885],[-71.194677,41.457952],[-71.21313,41.627371],[-71.208271,41.652925],[-71.194455,41.681006],[-71.15758,41.710443],[-71.226026,41.726348],[-71.225214,41.709644],[-71.24603,41.696849],[-71.235517,41.678623],[-71.253496,41.660839],[-71.304518,41.655518],[-71.306715,41.672683],[-71.293031,41.688241],[-71.290462,41.712902],[-71.348106,41.741036],[-71.440907,41.686798],[-71.408068,41.663092],[-71.4032823,41.6257836],[-71.418142,41.472529],[-71.488622,41.361754],[-71.855221,41.307289],[-71.863077,41.334825],[-71.967368,41.349974],[-72.008815,41.307811],[-72.085072,41.356979],[-72.111794,41.299092],[-72.177387,41.3226],[-72.261013,41.283528],[-72.34215,41.298286],[-72.358498,41.291512],[-72.377422,41.265008],[-72.387758,41.260922],[-72.399244,41.278243],[-72.447383,41.279167],[-72.534696,41.268152],[-72.546423,41.249154],[-72.894477,41.242232],[-72.893616,41.26011],[-72.905728,41.270264],[-72.907774,41.29012],[-73.130232,41.147132],[-73.220087,41.153434],[-73.262672,41.117803],[-73.345112,41.113632],[-73.436878,41.057187],[-73.502844,41.049513],[-73.516951,41.030006],[-73.599939,41.018276],[-73.626669,41.001787],[-73.645882,41.000534],[-73.660895,40.987391]]]]},"properties":{"name":"NEWE","gridLoss":{"display":"4.88%","value":0.0488},"fuelMixCategories":{"renewable":18.9,"non-renewable":81.1,"non-renewable (excluding nuclear)":51.3,"renewable (excluding hydro)":12.2,"nuclear":29.8,"hydro":6.7},"fullName":"NPCC New England","emissionFactor":{"co2EmissionRate":{"value":522.3,"display":"522.3","units":"lb/MWh"},"noxEmissionRate":{"value":0.4,"display":"0.4","units":"lb/MWh"},"so2EmissionRate":{"value":0.1,"display":"0.1","units":"lb/MWh"}},"fuelMix":{"coal":1,"oil":1.2,"gas":48.9,"nuclear":29.8,"hydro":6.7,"biomass":7.7,"wind":3.4,"solar":1.1,"geothermal":0,"otherFossilFuel":0.2,"otherUnknownFuel":0.1}}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-120.751239,40.838636],[-120.774473,40.970517],[-120.342515,40.98693],[-120.437628,40.775139],[-120.751239,40.838636]]],[[[-106.277989,43.282492],[-106.404184,43.49277],[-106.078069,43.494471],[-106.277989,43.282492]]],[[[-105.144867,41.656058],[-105.378625,41.701771],[-105.28391,42.431403],[-105.59942,42.297536],[-105.797526,42.557908],[-105.687922,43.255097],[-105.924895,43.525932],[-104.899941,43.499641],[-104.9769206,42.8895453],[-104.64127,43.025643],[-104.654956,42.412656],[-104.931667,42.4018],[-104.891316,42.12587],[-104.654497,42.189088],[-104.654107,41.813124],[-105.144867,41.656058]]],[[[-122.376369,47.906939],[-122.7702068,48.2245422],[-122.664666,48.401499],[-122.509255,48.294153],[-122.73403,48.228417],[-122.376369,47.906939]]],[[[-105.777996,48.999672],[-104.048737,48.999878],[-104.048885,48.877324],[-104.048043,48.707971],[-104.275105,48.606559],[-105.099283,48.563014],[-105.492733,48.563105],[-105.650065,48.708079],[-105.535659,48.809619],[-105.826489,48.925313],[-105.826607,48.975964],[-105.772642,48.983242],[-105.777996,48.999672]]],[[[-124.140134,41.685371],[-124.558015,42.833509],[-124.385879,43.329807],[-124.342215,43.351109],[-124.316311,43.347956],[-124.240212,43.424014],[-124.179986,43.370439],[-123.874294,45.488855],[-123.956642,45.571262],[-123.938947,45.7035694],[-123.944427,45.730873],[-123.964536,45.744063],[-123.967001,45.758104],[-123.980033,45.764832],[-123.993637,45.946179],[-123.932088,46.063967],[-124.080146,46.281775],[-124.072823,46.639661],[-124.024693,46.585074],[-124.031751,46.495874],[-124.025897,46.450146],[-124.020149,46.437039],[-124.014328,46.378585],[-124.005847,46.370541],[-123.9064878,46.4355675],[-123.915909,46.458388],[-123.943463,46.474413],[-123.942569,46.487832],[-123.919172,46.510931],[-123.893244,46.513965],[-123.90433,46.551488],[-123.921938,46.566932],[-123.928861,46.588875],[-123.955487,46.603635],[-123.960629,46.636365],[-123.92125,46.650787],[-123.920178,46.668565],[-123.839927,46.712934],[-123.893055,46.750204],[-123.979263,46.709637],[-124.021945,46.712813],[-124.094529,46.73697],[-124.133971,46.900776],[-124.061712,46.847621],[-124.045625,46.856099],[-124.049048,46.891326],[-123.985066,46.921924],[-123.823091,46.957651],[-124.122057,47.04165],[-124.146321,47.032137],[-124.151218,47.022222],[-124.127981,46.94548],[-124.174803,46.927659],[-124.173685,47.071696],[-124.183311,47.132099],[-124.204566,47.205008],[-124.420167,47.725148],[-124.430547,47.746249],[-124.475287,47.775658],[-124.489737,47.816989],[-124.5144944,47.8223399],[-124.588955,47.87813],[-124.60176,47.874365],[-124.6328641,47.8950419],[-124.671922,47.970189],[-124.731917,48.169792],[-124.658883,48.331083],[-124.731863,48.380858],[-124.659503,48.391349],[-124.620393,48.36701],[-124.590215,48.37362],[-124.564636,48.367962],[-124.384665,48.285294],[-124.291921,48.258414],[-124.266716,48.254615],[-124.236391,48.262153],[-123.971409,48.164345],[-123.125176,48.153486],[-123.066927,48.120949],[-123.046708,48.097188],[-123.03773,48.053227],[-123.014197,48.027327],[-122.918953,48.096054],[-122.851938,47.995528],[-122.881236,48.108852],[-122.829253,48.134543],[-122.784137,48.14333],[-122.755797,48.1442511],[-122.748853,48.116978],[-122.781124,48.104952],[-122.800689,48.089926],[-122.619409,47.890524],[-122.77085,47.693177],[-122.870145,47.809786],[-123.159373,47.353971],[-122.850878,47.432683],[-123.119397,47.390168],[-122.569442,47.831132],[-122.60322,47.940823],[-122.594229,47.924364],[-122.549766,47.919585],[-122.524864,47.911811],[-122.511626,47.881836],[-122.505897,47.831985],[-122.479065,47.808954],[-122.500314,47.787984],[-122.474004,47.747112],[-122.5145267,47.7437726],[-122.544532,47.747823],[-122.603227,47.695485],[-122.650782,47.714213],[-122.607976,47.568492],[-122.705117,47.602619],[-122.645556,47.538169],[-122.547763,47.585951],[-122.546966,47.524547],[-122.524188,47.524695],[-122.494904,47.510711],[-122.530879,47.471049],[-122.538533,47.376825],[-122.573477,47.327177],[-122.565703,47.264381],[-122.697276,47.285797],[-122.684259,47.364195],[-122.771486,47.167821],[-122.824432,47.363155],[-123.094376,47.207529],[-122.916703,47.066037],[-122.814709,47.176216],[-122.677016,47.102255],[-122.591106,47.17671],[-122.5401572,47.3185962],[-122.506961,47.30309],[-122.484219,47.284272],[-122.436529,47.261488],[-122.408095,47.285032],[-122.443074,47.299636],[-122.429935,47.319135],[-122.402401,47.323581],[-122.367693,47.335602],[-122.339872,47.340862],[-122.323865,47.351392],[-122.207702,48.017122],[-122.209849,48.032414],[-122.239283,48.030714],[-122.342525,48.097503],[-122.392561,48.230584],[-122.356518,48.056843],[-122.51156,48.132945],[-122.5308007,48.2495955],[-122.396834,48.254933],[-122.385743,48.276535],[-122.369678,48.289658],[-122.408862,48.327032],[-122.473228,48.353698],[-122.477848,48.36956],[-122.507411,48.372115],[-122.496887,48.391638],[-122.495241,48.40755],[-122.511937,48.458264],[-122.469976,48.469218],[-122.483088,48.487954],[-122.480706,48.520294],[-122.49793,48.541972],[-122.492478,48.559409],[-122.464042,48.557339],[-122.437021,48.57761],[-122.425719,48.600415],[-122.756959,49.00203],[-122.381987,49.002226],[-122.098358,49.002147],[-121.751252,48.9974],[-120.698761,49.00024],[-118.174833,49.000262],[-116.155897,49.000757],[-115.876026,49.00112],[-115.619839,49.000596],[-115.501017,49.000694],[-115.207912,48.999228],[-113.692982,48.997632],[-110.530261,48.998412],[-108.754215,48.999073],[-107.610105,48.999571],[-107.441017,48.999363],[-107.160178,49.000021],[-106.831879,48.999921],[-106.824003,48.978956],[-106.783752,48.966709],[-106.783768,48.912113],[-106.480121,48.871033],[-106.476067,48.440231],[-105.833932,48.493225],[-105.820529,47.954489],[-106.082464,47.775139],[-105.785505,47.708172],[-105.452845,47.998677],[-104.632151,48.110743],[-104.659663,48.230062],[-104.282218,48.230071],[-104.118949,48.389429],[-104.046767,48.389402],[-104.045444,48.402224],[-103.906941,48.402035],[-103.863427,48.459941],[-103.407041,48.459587],[-103.346168,48.031924],[-103.600934,48.133466],[-103.821324,47.979853],[-103.91979,47.955951],[-103.967638,47.985616],[-104.01157,47.971413],[-104.021983,47.988899],[-104.04412,47.996107],[-104.041461,47.862563],[-104.0443158,47.3301078],[-103.666723,47.329355],[-103.667006,47.095677],[-103.899328,47.00596],[-103.902639,46.803415],[-103.986501,46.803437],[-103.986739,46.738357],[-104.045496,46.745515],[-104.045338,46.657194],[-104.101677,46.656107],[-104.111733,46.641614],[-104.353874,46.641447],[-104.417784,46.684893],[-104.607017,46.684927],[-104.603767,46.86088],[-105.008511,46.861439],[-105.491935,46.624433],[-104.732854,46.612672],[-104.745054,46.187973],[-104.573029,46.194117],[-104.390877,45.970307],[-104.134716,45.968946],[-104.134663,45.882037],[-104.04403,45.881976],[-104.041504,45.539236],[-104.123069,45.53896],[-104.173415,45.567729],[-104.252176,45.566962],[-104.298601,45.595859],[-104.339271,45.482404],[-104.223981,45.35983],[-104.121878,45.341672],[-104.101866,45.35991],[-104.040284,45.336959],[-104.039958,45.212926],[-104.040303,44.997771],[-104.365938,44.998151],[-104.772766,44.999158],[-105.913383,45.000941],[-105.928185,44.993647],[-106.250587,44.993689],[-106.625612,44.994928],[-107.0555,44.996356],[-107.090158,44.997023],[-107.079714,44.969762],[-107.045313,44.95658],[-107.043112,44.937121],[-106.97974,44.912101],[-107.058696,44.824373],[-107.220335,44.819634],[-107.189027,44.91937],[-107.386376,44.907129],[-107.453568,44.967784],[-107.554931,44.96375],[-107.570086,44.969117],[-107.606992,45.000931],[-108.621313,45.000278],[-108.621535,44.947841],[-108.661966,44.953162],[-108.644368,44.897689],[-108.670615,44.882741],[-108.592276,44.871384],[-108.592614,44.74481],[-108.542036,44.77279],[-108.573679,44.461604],[-109.392425,44.333723],[-109.789901,43.803252],[-110.05318,44.008023],[-110.051571,43.464784],[-109.754717,43.4632],[-109.364427,42.930651],[-110.188772,42.270737],[-107.522723,42.261757],[-107.509721,41.657452],[-107.929737,41.659597],[-107.918422,41.002037],[-108.046539,41.002065],[-108.257751,41.000108],[-108.884138,41.000094],[-109.2514937,41.0011194],[-109.5437204,40.998398],[-110.001031,40.997658],[-110.000709,40.813751],[-109.203253,40.858642],[-109.161064,40.683817],[-109.123471,40.684127],[-109.123485,40.653779],[-109.04825,40.653601],[-109.050071,40.540437],[-108.846319,40.465111],[-108.778261,40.502479],[-108.511178,40.44939],[-108.621052,40.222371],[-108.217857,40.11346],[-108.618814,39.955592],[-108.55463,39.650166],[-109.051163,39.660473],[-109.045223,36.999085],[-108.250635,36.999562],[-108.242941,36.929082],[-108.191374,36.880589],[-108.190864,36.928894],[-108.100774,36.923174],[-108.106393,36.967392],[-108.058433,36.989292],[-108.047311,36.999729],[-107.635627,37.000004],[-107.648635,36.986631],[-107.651277,36.96912],[-107.675386,36.94408],[-107.67328,36.911808],[-107.704358,36.882192],[-107.705282,36.830587],[-107.780374,36.824606],[-107.62425,36.219799],[-106.885887,36.067443],[-106.955414,35.65323],[-107.308828,35.645966],[-107.434253,35.880864],[-108.214701,35.575309],[-108.206018,35.306412],[-108.681377,35.306862],[-108.843266,35.11104],[-108.841055,35.169409],[-108.910395,35.176678],[-109.046258,35.174725],[-109.0460701,34.8707326],[-109.066094,34.855174],[-109.165494,34.810624],[-109.324877,34.671809],[-109.422649,34.646499],[-110.1346026,34.7975452],[-110.524669,34.567585],[-110.750685,34.636651],[-110.750692,35.170175],[-111.243586,35.156355],[-111.318833,35.757117],[-111.746595,35.672162],[-111.762852,36.198265],[-112.200557,36.096912],[-112.630205,36.392017],[-113.313431,36.100001],[-113.419539,35.750823],[-113.903534,36.092851],[-114.054591,35.731031],[-114.27155,35.776008],[-114.15413,36.023862],[-114.046838,36.194069],[-114.052828,37.103962],[-114.051843,37.724001],[-114.836413,37.907901],[-114.956114,36.853405],[-115.8969248,36.8420849],[-115.898334,36.004289],[-117.000896,36.847695],[-117.498548,37.219207],[-117.904625,37.515837],[-118.372402,37.855884],[-118.714313,38.102185],[-118.771867,38.141871],[-118.9497367,38.2689831],[-120.001015,38.999574],[-120.001238,39.643475],[-119.988544,39.636288],[-119.974959,39.648546],[-119.957604,39.644954],[-119.928983,39.628072],[-119.773646,39.835682],[-119.997624,39.960439],[-119.995926,40.499902],[-119.998479,40.749899],[-119.99986,40.999891],[-119.999867,41.183975],[-121.170744,41.184385],[-121.374484,41.811014],[-121.446495,41.183484],[-122.498376,41.182675],[-122.639498,40.845272],[-122.864469,40.825928],[-122.638011,40.985173],[-122.970967,41.090159],[-122.847358,41.294993],[-123.770249,41.380777],[-124.004076,41.74421],[-124.089235,41.758635],[-124.089659,41.73997],[-124.118965,41.740054],[-124.1207336,41.6996802],[-124.140134,41.685371]],[[-110.473457,35.740668],[-110.285957,36.035466],[-110.424985,36.09919],[-110.473457,35.740668]],[[-109.84831,34.7934],[-109.686091,35.170113],[-109.842904,35.170402],[-109.84831,34.7934]]]]},"properties":{"name":"NWPP","gridLoss":{"display":"4.80%","value":0.048},"fuelMixCategories":{"renewable":59.1,"non-renewable":40.9,"non-renewable (excluding nuclear)":37.6,"renewable (excluding hydro)":11.4,"nuclear":3.3,"hydro":47.7},"fullName":"WECC Northwest","emissionFactor":{"co2EmissionRate":{"value":639,"display":"639.0","units":"lb/MWh"},"noxEmissionRate":{"value":0.6,"display":"0.6","units":"lb/MWh"},"so2EmissionRate":{"value":0.4,"display":"0.4","units":"lb/MWh"}},"fuelMix":{"coal":21.3,"oil":0.2,"gas":15.7,"nuclear":3.3,"hydro":47.7,"biomass":1.2,"wind":8.3,"solar":1.3,"geothermal":0.6,"otherFossilFuel":0.3,"otherUnknownFuel":0.1}}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-73.754687,40.610349],[-73.73799,40.594605],[-73.814331,40.583126],[-73.935316,40.545043],[-73.925427,40.561628],[-73.876246,40.569404],[-73.853016,40.581269],[-73.821436,40.586792],[-73.778579,40.609696],[-73.754687,40.610349]]],[[[-74.025186,40.705921],[-74.013784,40.756602],[-73.963183,40.8269],[-73.919881,40.913399],[-73.889377,41.024564],[-73.887315,41.127337],[-73.971017,41.247693],[-73.917966,41.307862],[-73.848575,41.23906],[-73.757973,41.344901],[-73.69569,41.294958],[-73.628441,41.300933],[-73.621494,41.255405],[-73.567535,41.259861],[-73.514249,41.198651],[-73.727776,41.100696],[-73.660895,40.987391],[-73.8172631,40.8138328],[-73.8963137,40.8067099],[-73.97827,40.710484],[-74.011236,40.700862],[-74.025186,40.705921]]],[[[-73.746803,40.78041],[-73.743952,40.637574],[-73.931445,40.575775],[-74.001958,40.571313],[-74.040367,40.61531],[-74.018293,40.674379],[-73.9962376,40.7033551],[-73.969273,40.70703],[-73.909626,40.790938],[-73.746803,40.78041]]]]},"properties":{"name":"NYCW","gridLoss":{"display":"4.88%","value":0.0488},"fuelMixCategories":{"renewable":0.9,"non-renewable":99.1,"non-renewable (excluding nuclear)":61.5,"renewable (excluding hydro)":0.9,"nuclear":37.6,"hydro":0},"fullName":"NPCC NYC/Westchester","emissionFactor":{"co2EmissionRate":{"value":596.4,"display":"596.4","units":"lb/MWh"},"noxEmissionRate":{"value":0.3,"display":"0.3","units":"lb/MWh"},"so2EmissionRate":{"value":0,"display":"0.0","units":"lb/MWh"}},"fuelMix":{"coal":0,"oil":1.4,"gas":60.1,"nuclear":37.6,"hydro":0,"biomass":0.9,"wind":0,"solar":0,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0}}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.73799,40.594605],[-73.754687,40.610349],[-73.743952,40.637574],[-73.746803,40.78041],[-73.479273,40.942942],[-73.435233,40.897435],[-73.361,40.903109],[-73.352292,40.923129],[-73.377201,40.938867],[-73.392141,40.924262],[-73.403881,40.941925],[-73.39281,40.954925],[-73.373155,40.936341],[-73.346152,40.925469],[-73.330196,40.929954],[-73.21932,40.907887],[-73.19624,40.915938],[-73.165712,40.909715],[-73.14607,40.927813],[-73.144204,40.955574],[-73.120489,40.975101],[-73.032449,40.951072],[-73.020553,40.963303],[-72.890447,40.962888],[-72.835872,40.969973],[-72.77349,40.965405],[-72.631345,40.982721],[-72.586604,40.997161],[-72.519186,41.03926],[-72.472453,41.055513],[-72.448019,41.084775],[-72.417468,41.08772],[-72.395241,41.097114],[-72.382989,41.114251],[-72.36234,41.125713],[-72.354736,41.138789],[-72.239832,41.154668],[-72.283199,41.126715],[-72.317081,41.139687],[-72.339635,41.114075],[-72.355396,41.10756],[-72.365212,41.092318],[-72.398376,41.078461],[-72.391483,41.029769],[-72.620258,40.92262],[-72.49209,40.867485],[-72.520595,40.846675],[-72.541369,40.858475],[-72.552158,40.839593],[-72.57061,40.842144],[-72.581063,40.820342],[-72.635331,40.795026],[-72.664176,40.805328],[-72.700292,40.796906],[-72.720979,40.805803],[-72.868894,40.739508],[-73.01507,40.749627],[-73.148718,40.698754],[-73.238909,40.715808],[-73.73799,40.594605]]]},"properties":{"name":"NYLI","gridLoss":{"display":"4.88%","value":0.0488},"fuelMixCategories":{"renewable":10.3,"non-renewable":89.7,"non-renewable (excluding nuclear)":89.7,"renewable (excluding hydro)":10.3,"nuclear":0,"hydro":0},"fullName":"NPCC Long Island","emissionFactor":{"co2EmissionRate":{"value":1184.2,"display":"1,184.2","units":"lb/MWh"},"noxEmissionRate":{"value":0.9,"display":"0.9","units":"lb/MWh"},"so2EmissionRate":{"value":0.2,"display":"0.2","units":"lb/MWh"}},"fuelMix":{"coal":0,"oil":5.5,"gas":84.3,"nuclear":0,"hydro":0,"biomass":9,"wind":0,"solar":1.3,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0}}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.7619497,42.2693362],[-79.151262,42.552327],[-79.141121,42.560973],[-79.130278,42.589713],[-79.110704,42.613782],[-79.063868,42.645559],[-79.047681,42.691387],[-78.916686,42.737357],[-78.86486,42.772565],[-78.853772,42.78509],[-78.91886,42.946857],[-78.932361,42.955857],[-78.961762,42.957757],[-79.019964,42.994756],[-78.999464,43.056056],[-79.074467,43.077856],[-79.07047,43.262454],[-78.56436,43.367318],[-78.484722,43.374839],[-78.469762,43.370793],[-78.414123,43.375],[-78.260359,43.372694],[-78.233468,43.368857],[-78.182358,43.370265],[-78.159341,43.374841],[-78.10451,43.375628],[-78.063825,43.370025],[-78.038626,43.37089],[-77.995293,43.36504],[-77.962542,43.367706],[-77.872852,43.349193],[-77.760639,43.341317],[-77.714775,43.323951],[-77.659283,43.282308],[-77.634832,43.274177],[-77.577035,43.242898],[-77.553005,43.235989],[-76.962392,43.237915],[-76.231103,43.531273],[-76.217095,43.546019],[-76.203324,43.576318],[-76.199134,43.598892],[-76.210656,43.743983],[-76.297064,43.856476],[-76.129156,43.895697],[-76.126152,43.922858],[-76.13926,43.940289],[-76.061588,43.995491],[-76.246422,44.064894],[-76.201329,44.022799],[-76.221829,44.002235],[-76.222015,43.993222],[-76.250034,43.96893],[-76.280336,43.960817],[-76.270018,44.001453],[-76.300076,44.018577],[-76.294902,44.058274],[-76.318849,44.059712],[-76.360163,44.074931],[-76.344441,44.086464],[-76.368928,44.099699],[-76.365745,44.109681],[-76.339055,44.129142],[-76.316088,44.134027],[-76.297924,44.151607],[-76.251082,44.168647],[-76.159961,44.219163],[-76.014887,44.27108],[-76.041891,44.298763],[-76.025378,44.316478],[-76.023578,44.333115],[-76.002211,44.345965],[-75.972016,44.342483],[-75.950856,44.34858],[-75.9128241,44.3677946],[-75.87083,44.395435],[-75.82083,44.432244],[-75.807779,44.471644],[-75.766231,44.515851],[-75.302783,44.838474],[-75.256096,44.857423],[-75.217885,44.877539],[-75.203826,44.877545],[-75.167791,44.89216],[-75.140551,44.896586],[-75.133649,44.915382],[-75.098116,44.925735],[-75.066051,44.929355],[-75.005543,44.958193],[-74.992756,44.977449],[-74.972463,44.983403],[-74.908297,44.983372],[-74.888029,44.999647],[-74.834669,45.014684],[-73.343124,45.01084],[-73.311025,44.27424],[-73.264957,42.74594],[-73.487314,42.049638],[-73.514249,41.198651],[-73.567535,41.259861],[-73.621494,41.255405],[-73.628441,41.300933],[-73.69569,41.294958],[-73.757973,41.344901],[-73.848575,41.23906],[-73.917966,41.307862],[-73.971017,41.247693],[-73.887315,41.127337],[-73.889377,41.024564],[-73.919881,40.913399],[-73.941698,40.925891],[-73.936424,40.950573],[-73.986345,40.968541],[-73.958937,41.022573],[-74.164246,41.021956],[-74.213291,41.133995],[-74.42812,41.150402],[-74.4134,41.226195],[-74.461357,41.250095],[-74.694915,41.357424],[-74.720923,41.347385],[-74.729135,41.353609],[-74.760769,41.344415],[-74.763647,41.384456],[-74.744929,41.407397],[-74.792598,41.39966],[-74.816199,41.441384],[-74.981761,41.480098],[-75.074613,41.605712],[-75.044225,41.617979],[-75.049921,41.662557],[-75.058792,41.674475],[-75.052736,41.688393],[-75.068783,41.708089],[-75.053228,41.751662],[-75.075942,41.771518],[-75.10464,41.774203],[-75.08579,41.811626],[-75.113351,41.822807],[-75.1144,41.843584],[-75.140242,41.852079],[-75.15735,41.848463],[-75.203929,41.869866],[-75.223734,41.857457],[-75.243345,41.866876],[-75.279287,41.9390089],[-75.310359,41.949012],[-75.34246,41.974303],[-75.341125,41.992772],[-75.3594795,41.9994064],[-75.607574,41.998917],[-75.7610537,41.9977992],[-75.98025,41.999035],[-76.37466,41.99841],[-78.000202,41.998784],[-78.179294,42.054628],[-78.2801685,41.9990881],[-78.59665,41.999877],[-78.749754,41.998109],[-78.874759,41.99756],[-79.76095,41.9988177],[-79.761804,42.019878],[-79.7619497,42.2693362]]]},"properties":{"name":"NYUP","gridLoss":{"display":"4.88%","value":0.0488},"fuelMixCategories":{"renewable":41.4,"non-renewable":58.6,"non-renewable (excluding nuclear)":27.3,"renewable (excluding hydro)":6.8,"nuclear":31.3,"hydro":34.6},"fullName":"NPCC Upstate NY","emissionFactor":{"co2EmissionRate":{"value":253.1,"display":"253.1","units":"lb/MWh"},"noxEmissionRate":{"value":0.1,"display":"0.1","units":"lb/MWh"},"so2EmissionRate":{"value":0.1,"display":"0.1","units":"lb/MWh"}},"fuelMix":{"coal":0.8,"oil":0.6,"gas":25.9,"nuclear":31.3,"hydro":34.6,"biomass":2,"wind":4.7,"solar":0.2,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0}}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-75.257206,38.025851],[-75.238771,38.045459],[-75.246031,38.055808],[-75.236723,38.065706],[-75.219132,38.069568],[-75.211377,38.103149],[-75.192123,38.120339],[-75.186832,38.167032],[-75.161305,38.213184],[-75.14491,38.216112],[-75.201255,38.08328],[-75.245159,38.02237],[-75.307894,37.945613],[-75.341417,37.888119],[-75.371253,37.856912],[-75.345471,37.890689],[-75.380482,37.893201],[-75.334792,37.921644],[-75.289544,37.973829],[-75.30238,37.984979],[-75.298099,37.998661],[-75.268669,38.00958],[-75.257206,38.025851]]],[[[-80.519376,41.977233],[-80.18795,42.094056],[-80.158381,42.110705],[-80.1303612,42.1554061],[-80.116251,42.166226],[-80.093211,42.172973],[-80.09713,42.153297],[-80.141693,42.135238],[-80.146121,42.114208],[-80.061501,42.144854],[-79.99021,42.176626],[-79.930332,42.206973],[-79.903754,42.215444],[-79.872349,42.231783],[-79.84474,42.235222],[-79.817587,42.245495],[-79.782585,42.264141],[-79.7619497,42.2693362],[-79.761804,42.019878],[-79.76095,41.9988177],[-78.874759,41.99756],[-78.749754,41.998109],[-78.59665,41.999877],[-78.2801685,41.9990881],[-78.179294,42.054628],[-78.000202,41.998784],[-76.37466,41.99841],[-75.98025,41.999035],[-75.7610537,41.9977992],[-75.607574,41.998917],[-75.3594795,41.9994064],[-75.341125,41.992772],[-75.34246,41.974303],[-75.310359,41.949012],[-75.279287,41.9390089],[-75.243345,41.866876],[-75.223734,41.857457],[-75.203929,41.869866],[-75.15735,41.848463],[-75.140242,41.852079],[-75.1144,41.843584],[-75.113351,41.822807],[-75.08579,41.811626],[-75.10464,41.774203],[-75.075942,41.771518],[-75.053228,41.751662],[-75.068783,41.708089],[-75.052736,41.688393],[-75.058792,41.674475],[-75.049921,41.662557],[-75.044225,41.617979],[-75.074613,41.605712],[-74.981761,41.480098],[-74.816199,41.441384],[-74.792598,41.39966],[-74.744929,41.407397],[-74.763647,41.384456],[-74.760769,41.344415],[-74.729135,41.353609],[-74.720923,41.347385],[-74.694915,41.357424],[-74.461357,41.250095],[-74.4134,41.226195],[-74.42812,41.150402],[-74.213291,41.133995],[-74.164246,41.021956],[-73.958937,41.022573],[-73.986345,40.968541],[-73.936424,40.950573],[-73.941698,40.925891],[-73.919881,40.913399],[-73.963183,40.8269],[-74.013784,40.756602],[-74.025186,40.705921],[-74.070733,40.660683],[-74.087038,40.653907],[-74.136749,40.645644],[-74.1236204,40.7170157],[-74.270447,40.484992],[-74.262079,40.465011],[-74.191868,40.44261],[-74.1353969,40.4572505],[-73.976546,40.404614],[-73.977659,40.300005],[-73.997399,40.223041],[-74.028776,40.129486],[-74.064261,39.972402],[-74.083768,39.862098],[-74.095115,39.767996],[-74.102818,39.800275],[-74.083108,39.954747],[-74.059044,40.040167],[-74.299815,39.517191],[-74.652565,39.30554],[-74.616355,39.284328],[-74.626708,39.27395],[-74.629714,39.256093],[-74.553307,39.285089],[-74.8824112,38.942253],[-74.971656,38.938461],[-74.892227,39.113302],[-74.886563,39.158288],[-74.901621,39.174711],[-75.041014,39.216321],[-75.081147,39.210944],[-75.111073,39.211654],[-75.151164,39.189066],[-75.536855,39.46033],[-75.542563,39.497843],[-75.528088,39.498114],[-75.533412,39.542044],[-75.512732,39.578001],[-75.527693,39.584113],[-75.571247,39.620897],[-75.45944,39.765814],[-75.437939,39.783413],[-75.4064384,39.7957805],[-75.423418,39.806573],[-75.436755,39.803468],[-75.469595,39.785689],[-75.614865,39.620688],[-75.58944,39.460813],[-75.494622,39.346717],[-75.437267,39.311943],[-75.40905,39.26452],[-75.39566,39.189143],[-75.409179,39.175251],[-75.413293,39.1514],[-75.402378,39.067453],[-75.341712,39.021106],[-75.317884,38.987414],[-75.311608,38.967638],[-75.315869,38.931024],[-75.3036765,38.9134433],[-75.188631,38.805626],[-75.1435664,38.7843893],[-75.114546,38.782564],[-75.093177,38.794737],[-75.081223,38.765511],[-75.065461,38.657776],[-75.066026,38.614613],[-75.137473,38.681717],[-75.181357,38.582408],[-75.081715,38.579809],[-75.071989,38.605428],[-75.059018,38.600066],[-75.0489039,38.4660709],[-75.054591,38.414815],[-75.085049,38.324329],[-75.065123,38.399356],[-75.063755,38.419202],[-75.070725,38.438919],[-75.056196,38.45581],[-75.052898,38.471705],[-75.069824,38.484113],[-75.081114,38.462438],[-75.10222,38.436704],[-75.119194,38.438307],[-75.098672,38.401398],[-75.124629,38.369054],[-75.109954,38.352671],[-75.094008,38.346422],[-75.096284,38.328143],[-75.110532,38.318718],[-75.117753,38.301658],[-75.140327,38.283955],[-75.151338,38.247725],[-75.261127,38.204736],[-75.301099,38.098945],[-75.365015,38.076667],[-75.376795,38.008775],[-75.402904,38.001423],[-75.409624,37.987065],[-75.42843,37.986325],[-75.500361,37.869712],[-75.477023,37.859517],[-75.687141,37.60661],[-75.673916,37.533073],[-75.886015,37.362781],[-75.916485,37.311365],[-75.935206,37.237086],[-75.923581,37.226829],[-75.940072,37.199095],[-75.940697,37.134841],[-75.957852,37.122115],[-75.969584,37.12632],[-75.978186,37.157319],[-76.012845,37.205909],[-76.01031,37.23115],[-76.025238,37.259244],[-75.940857,37.563881],[-75.909705,37.622373],[-75.892009,37.636996],[-75.891426,37.649197],[-75.852304,37.67633],[-75.80333,37.761984],[-75.814103,37.781986],[-75.80482,37.795307],[-75.782042,37.806281],[-75.774704,37.784216],[-75.732737,37.785018],[-75.671845,37.850178],[-75.678696,37.887259],[-75.71543,37.905372],[-75.729927,37.920052],[-75.718985,37.934445],[-75.695439,37.929665],[-75.677786,37.942404],[-75.64321,37.936105],[-75.635272,37.95249],[-75.643722,37.964455],[-75.662605,37.961194],[-75.691667,37.967056],[-75.713151,37.976623],[-75.736951,37.976159],[-75.853804,37.937634],[-75.855575,38.000644],[-75.898956,37.974514],[-75.813629,38.059138],[-75.875157,38.07613],[-75.863767,38.09514],[-75.847326,38.109193],[-75.827674,38.133439],[-75.909377,38.173576],[-75.889264,38.153545],[-75.906869,38.137345],[-75.959617,38.13713],[-75.947395,38.169726],[-75.94969,38.180654],[-75.923352,38.190339],[-75.92912,38.21643],[-75.865506,38.237433],[-75.975705,38.367209],[-76.048684,38.315279],[-76.027061,38.280298],[-76.044708,38.273606],[-76.035686,38.263814],[-76.041583,38.250106],[-76.03564,38.230933],[-76.050306,38.225156],[-76.257084,38.32472],[-76.282804,38.41617],[-76.332028,38.474854],[-76.339343,38.49999],[-76.302779,38.617614],[-76.347443,38.684037],[-76.338421,38.760499],[-76.309932,38.797003],[-76.301525,38.826199],[-76.2692244,38.8306755],[-76.226297,38.820384],[-76.191646,38.828722],[-76.203637,38.928384],[-76.220313,38.947625],[-76.235176,38.941995],[-76.249936,38.969024],[-76.374578,38.855432],[-76.230355,39.045598],[-76.23093,39.081468],[-76.235842,39.100163],[-76.246201,39.114493],[-76.244883,39.13055],[-76.278259,39.148032],[-76.267752,39.178894],[-75.970199,39.557548],[-76.481364,39.189283],[-76.395048,39.011328],[-76.474248,38.972596],[-76.559605,38.767199],[-76.517884,38.53693],[-76.505722,38.503616],[-76.484369,38.474385],[-76.402409,38.394398],[-76.381465,38.386279],[-76.236743,37.888644],[-76.6103562,38.148513],[-76.838796,38.163477],[-76.875272,38.172208],[-76.910833,38.197074],[-76.948924,38.208261],[-76.962376,38.230094],[-76.9616788,38.2558306],[-77.030683,38.311623],[-77.041506,38.400694],[-77.084933,38.368417],[-77.137734,38.368024],[-77.164636,38.345283],[-77.279634,38.339444],[-77.325605,38.443196],[-77.323297,38.46597],[-77.309648,38.495621],[-77.246404,38.593419],[-77.130201,38.635018],[-77.121101,38.686616],[-77.073995,38.711899],[-77.052739,38.709894],[-77.042794,38.718672],[-77.0328493,38.8550577],[-77.146601,38.964211],[-77.181645,38.968889],[-77.197494,38.966958],[-77.244858,38.982601],[-77.255674,39.00161],[-77.244905,39.019413],[-77.254614,39.029792],[-77.340904,39.063082],[-77.38568,39.061987],[-77.452831,39.072468],[-77.503682,39.115185],[-77.471539,39.104622],[-77.453342,39.126156],[-77.452696,39.159099],[-77.376646,39.157461],[-77.326394,39.24235],[-77.238164,39.221343],[-77.160913,39.289789],[-77.185317,39.599241],[-77.264667,39.720004],[-77.4788605,39.7200188],[-77.4804785,39.7384659],[-77.465631,39.739747],[-77.460471,39.759932],[-77.476694,39.84218],[-77.744511,39.839702],[-77.797733,39.956504],[-78.140555,39.722384],[-78.384501,39.800402],[-78.533618,39.722512],[-78.990497,39.72256],[-79.224754,39.721981],[-79.523715,39.720904],[-79.513894,39.764796],[-79.495693,39.792103],[-79.507481,39.807562],[-79.496929,39.827881],[-79.73207,39.979625],[-79.36453,40.065786],[-79.288757,40.292894],[-79.6676503,40.5149073],[-79.464147,40.655628],[-79.958838,40.537605],[-80.424233,40.999148],[-80.046223,41.296785],[-80.208371,41.441671],[-80.519091,41.347842],[-80.519376,41.977233]],[[-77.824872,40.743536],[-77.595054,40.942768],[-77.796485,41.083643],[-77.824872,40.743536]],[[-78.958908,41.452906],[-78.487106,41.363723],[-78.419118,41.602189],[-78.790062,41.624935],[-78.887658,41.470154],[-78.956057,41.623863],[-78.958908,41.452906]]]]},"properties":{"name":"RFCE","gridLoss":{"display":"4.88%","value":0.0488},"fuelMixCategories":{"renewable":5.2,"non-renewable":94.8,"non-renewable (excluding nuclear)":55.9,"renewable (excluding hydro)":3.2,"nuclear":38.9,"hydro":2},"fullName":"RFC East","emissionFactor":{"co2EmissionRate":{"value":716,"display":"716.0","units":"lb/MWh"},"noxEmissionRate":{"value":0.3,"display":"0.3","units":"lb/MWh"},"so2EmissionRate":{"value":0.5,"display":"0.5","units":"lb/MWh"}},"fuelMix":{"coal":15.5,"oil":0.5,"gas":39.6,"nuclear":38.9,"hydro":2,"biomass":1.7,"wind":1,"solar":0.5,"geothermal":0,"otherFossilFuel":0.2,"otherUnknownFuel":0}}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-86.413141,42.186524],[-86.361879,42.245864],[-86.327876,42.300121],[-86.311482,42.331134],[-86.129281,42.375477],[-86.244385,42.510751],[-86.206748,42.70782],[-86.21135,42.825266],[-86.210153,42.855766],[-86.215357,42.916727],[-86.233712,43.021119],[-86.249909,43.056048],[-86.255379,43.08583],[-86.271078,43.118027],[-86.321978,43.204623],[-86.385164,43.299248],[-86.426625,43.374035],[-86.448333,43.429896],[-86.464684,43.483929],[-86.479528,43.515907],[-86.530505,43.595084],[-86.54035,43.626744],[-86.52918,43.67789],[-86.480499,43.72628],[-86.455052,43.755301],[-86.43663,43.790895],[-86.43037,43.835502],[-86.462804,43.969914],[-86.512803,44.041376],[-86.515016,44.055614],[-86.505653,44.071448],[-86.445075,44.107274],[-86.428836,44.12061],[-86.267658,44.346503],[-86.220698,44.566742],[-86.225435,44.594586],[-86.245565,44.627474],[-86.258976,44.667326],[-86.255593,44.691401],[-85.5407467,45.2109091],[-85.614893,45.126626],[-85.566217,45.059068],[-85.648421,44.971392],[-85.6008178,44.9245122],[-85.624664,44.922008],[-85.649199,44.873459],[-85.651454,44.831823],[-85.593391,44.769373],[-85.578846,44.817784],[-85.524741,44.895571],[-85.519733,44.974399],[-85.474911,44.991495],[-85.499696,44.856232],[-85.556276,44.81828],[-85.559582,44.78697],[-85.574751,44.757852],[-85.562632,44.75123],[-85.524749,44.749037],[-85.408917,44.905449],[-85.395858,44.930899],[-85.382993,44.968995],[-85.363261,45.111541],[-85.372724,45.12621],[-85.379489,45.177378],[-85.387688,45.191665],[-85.374159,45.266748],[-85.355319,45.284393],[-85.343732,45.286155],[-85.327605,45.30288],[-85.271595,45.316065],[-85.203485,45.361939],[-85.038644,45.361937],[-85.011938,45.370805],[-84.987637,45.368587],[-84.914654,45.394257],[-85.061961,45.451292],[-85.093478,45.481643],[-85.115798,45.541673],[-85.117246,45.579376],[-84.974771,45.754139],[-84.937284,45.759886],[-84.901104,45.746814],[-84.878285,45.756181],[-84.840773,45.744672],[-84.796249,45.748109],[-84.781426,45.761081],[-84.792025,45.782074],[-84.772861,45.789341],[-84.7228771,45.7837386],[-84.216246,45.635065],[-84.196017,45.621437],[-84.165959,45.59176],[-84.136994,45.572222],[-84.126521,45.556607],[-84.123233,45.526277],[-84.112491,45.507911],[-84.074395,45.490242],[-84.056134,45.489344],[-84.034969,45.497762],[-83.909873,45.48588],[-83.450825,45.318245],[-83.381835,45.269747],[-83.412394,45.238891],[-83.263999,45.021975],[-83.3891,45.075834],[-83.418707,45.065276],[-83.442153,45.051056],[-83.463406,44.995799],[-83.449593,44.989876],[-83.438825,44.940843],[-83.426482,44.92735],[-83.405002,44.919492],[-83.390737,44.902228],[-83.319571,44.880664],[-83.272462,44.713242],[-83.332633,44.339359],[-83.578038,44.048983],[-83.603477,44.055163],[-83.650098,44.052393],[-83.678878,44.037037],[-83.68945,44.026595],[-83.678021,43.989739],[-83.741543,44.004945],[-83.763775,43.985159],[-83.831661,43.997419],[-83.876047,43.961597],[-83.890633,43.923739],[-83.908571,43.916496],[-83.918315,43.885144],[-83.926051,43.787235],[-83.956602,43.763889],[-83.940647,43.718099],[-83.902874,43.668109],[-83.678099,43.590035],[-83.648023,43.604024],[-83.523263,43.71759],[-83.496656,43.696274],[-83.468845,43.724947],[-83.325885,43.882889],[-83.330698,43.902854],[-83.377302,43.91319],[-83.262546,43.975248],[-83.197754,43.983642],[-83.180461,43.981992],[-83.112293,44.004491],[-83.073311,44.001674],[-83.046657,44.015729],[-83.027831,44.045814],[-82.964811,44.068437],[-82.928722,44.068152],[-82.901161,44.060649],[-82.87589,44.044992],[-82.814043,44.032676],[-82.739905,43.990147],[-82.657465,43.869304],[-82.645031,43.837409],[-82.621457,43.79744],[-82.614622,43.777836],[-82.52309,43.225614],[-82.508814,43.19672],[-82.501506,43.160859],[-82.493535,43.140805],[-82.484667,43.100475],[-82.471964,43.088185],[-82.462275,43.068166],[-82.425214,43.015128],[-82.424217,42.991524],[-82.413087,42.976467],[-82.518554,42.61466],[-82.541255,42.600065],[-82.581905,42.567047],[-82.587175,42.555305],[-82.608009,42.550654],[-82.619021,42.578772],[-82.640614,42.596435],[-82.645928,42.631168],[-82.623856,42.671067],[-82.799208,42.65319],[-82.781897,42.571396],[-82.87835,42.514817],[-82.868175,42.454737],[-82.888407,42.398592],[-82.898375,42.384722],[-82.959416,42.339638],[-82.988619,42.332439],[-83.01832,42.329739],[-83.064121,42.317738],[-83.096522,42.290138],[-83.128023,42.238839],[-83.133792,42.174228],[-83.122224,42.129041],[-83.144962,42.054558],[-83.18703,42.05376],[-83.434333,41.818217],[-83.455346,41.732806],[-83.649564,41.727223],[-83.741351,41.659254],[-83.998694,41.716858],[-83.946134,41.487209],[-84.43828,41.427234],[-84.514626,41.703281],[-84.805966,41.696088],[-84.805813,41.760185],[-84.972255,41.759551],[-85.2921,41.759962],[-85.292048,41.781722],[-85.318135,41.762493],[-85.507183,41.919145],[-85.487351,41.868184],[-85.565144,41.835238],[-85.535965,41.82441],[-85.531059,41.806837],[-85.545931,41.796199],[-85.548005,41.770256],[-85.543598,41.758839],[-85.659802,41.759098],[-85.618641,41.625356],[-85.791364,41.609001],[-85.726958,41.710416],[-85.827445,41.759137],[-85.819933,41.766686],[-85.815848,41.822617],[-85.799164,41.831052],[-85.799207,41.84553],[-85.760287,41.845028],[-85.789298,41.969081],[-85.666756,42.070112],[-86.165619,41.883981],[-86.223592,42.250037],[-86.281135,42.157228],[-86.359404,42.157397],[-86.3770035,42.1863008],[-86.404604,42.193557],[-86.413141,42.186524]]]},"properties":{"name":"RFCM","gridLoss":{"display":"4.88%","value":0.0488},"fuelMixCategories":{"renewable":7.6,"non-renewable":92.2,"non-renewable (excluding nuclear)":78.6,"renewable (excluding hydro)":7.8,"nuclear":13.6,"hydro":0},"fullName":"RFC Michigan","emissionFactor":{"co2EmissionRate":{"value":1312.6,"display":"1,312.6","units":"lb/MWh"},"noxEmissionRate":{"value":0.8,"display":"0.8","units":"lb/MWh"},"so2EmissionRate":{"value":1.3,"display":"1.3","units":"lb/MWh"}},"fuelMix":{"coal":43.1,"oil":1.3,"gas":32.5,"nuclear":13.6,"hydro":0,"biomass":2,"wind":5.7,"solar":0.1,"geothermal":0,"otherFossilFuel":1.8,"otherUnknownFuel":0}}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-77.824872,40.743536],[-77.796485,41.083643],[-77.595054,40.942768],[-77.824872,40.743536]]],[[[-88.498253,44.855456],[-88.2547569,44.9754839],[-88.210587,44.593205],[-87.847157,44.247659],[-88.046361,44.080884],[-89.026819,44.068985],[-89.005153,44.400131],[-88.498253,44.855456]]],[[[-86.1166179,45.9650046],[-86.114419,46.331372],[-85.864866,46.120259],[-85.864414,46.689704],[-85.544782,46.674192],[-85.261667,46.752148],[-85.175272,46.76352],[-85.036243,46.760402],[-84.986769,46.772695],[-85.052955,46.532827],[-85.054943,46.514751],[-85.033776,46.487639],[-84.837077,46.445212],[-84.800056,46.44615],[-84.730416,46.46571],[-84.678956,46.48756],[-84.631448,46.484919],[-84.596969,46.450492],[-84.59775,46.415488],[-84.479042,46.432515],[-84.453706,46.471168],[-84.41433,46.488886],[-84.3061844,46.4892423],[-84.300476,46.471562],[-84.260247,46.43001],[-84.222607,46.348946],[-84.221914,46.291144],[-84.180732,46.241119],[-84.25116,46.177214],[-84.178054,46.184564],[-84.162804,46.172322],[-84.115259,46.162028],[-84.095816,46.147735],[-84.028269,46.133012],[-83.89764,45.989705],[-83.998164,45.959634],[-84.086727,45.96885],[-84.11639,45.983051],[-84.310823,45.977258],[-84.333584,45.994744],[-84.363618,45.974882],[-84.43911,46.008463],[-84.462874,45.980468],[-84.502305,45.998747],[-84.516311,45.99282],[-84.514072,45.971293],[-84.533057,45.969821],[-84.530441,45.99007],[-84.540583,46.018868],[-84.655354,46.052724],[-84.678462,46.043929],[-84.691717,46.028618],[-84.684305,46.004967],[-84.690661,45.988949],[-84.684369,45.977133],[-84.708917,45.973384],[-84.729099,45.962616],[-84.739482,45.942142],[-84.734287,45.897716],[-84.725707,45.892181],[-84.7150063,45.862325],[-84.724083,45.846233],[-84.744649,45.847416],[-84.750822,45.839116],[-84.796791,45.861537],[-84.821435,45.868085],[-84.885181,45.923881],[-84.913149,45.92571],[-84.973516,45.986111],[-85.013917,46.010759],[-85.426871,46.101951],[-85.457813,46.090113],[-85.512647,46.094719],[-85.535073,46.083666],[-85.603777,46.030364],[-85.618245,46.005273],[-85.647709,45.984299],[-85.659017,45.965755],[-85.92855,45.926366],[-86.010493,45.953923],[-86.055477,45.96306],[-86.094685,45.966708],[-86.1166179,45.9650046]]],[[[-83.5505442,45.914638],[-83.86668,46.008737],[-83.634948,46.103919],[-83.5505442,45.914638]]],[[[-89.554937,46.113637],[-89.616871,46.160423],[-89.490586,46.215356],[-89.49028,46.333247],[-88.8665774,46.3333088],[-88.678849,46.592578],[-88.240845,46.592163],[-88.365907,46.42015],[-87.991505,46.506553],[-87.992021,46.246996],[-87.615914,46.246794],[-87.617009,45.985906],[-87.367734,45.985269],[-87.140645,45.676031],[-87.17143,45.662375],[-87.176566,45.647646],[-87.197159,45.638373],[-87.264469,45.550392],[-87.777494,45.593835],[-87.797536,45.562125],[-87.831689,45.568035],[-87.832968,45.559462],[-87.808367,45.544663],[-87.792769,45.499968],[-87.812884,45.464329],[-87.831218,45.457186],[-87.861698,45.434473],[-87.884855,45.362793],[-87.850418,45.347493],[-87.832613,45.35225],[-87.790325,45.353444],[-87.754104,45.349443],[-87.693956,45.389894],[-87.647768,45.340563],[-87.7006286,45.2795927],[-87.7771522,45.2807098],[-87.7836088,45.2775964],[-87.860181,45.278433],[-87.860365,45.264275],[-87.939989,45.265193],[-88.1174851,45.4630228],[-87.823804,45.538307],[-88.0888123,45.54205],[-88.059246,45.713063],[-88.6652389,45.8092302],[-88.592544,45.63666],[-88.9461549,45.571817],[-88.978711,45.982217],[-89.554937,46.113637]]],[[[-86.311482,42.331134],[-86.244385,42.510751],[-86.129281,42.375477],[-86.311482,42.331134]]],[[[-78.958908,41.452906],[-78.956057,41.623863],[-78.887658,41.470154],[-78.790062,41.624935],[-78.419118,41.602189],[-78.487106,41.363723],[-78.958908,41.452906]]],[[[-88.02803,37.799225],[-87.984781,38.228743],[-87.93733,38.292432],[-87.915554,38.300455],[-87.908915,38.290479],[-87.919292,38.275909],[-87.906842,38.269634],[-87.878303,38.30785],[-87.836496,38.285487],[-87.743772,38.413116],[-87.730821,38.449228],[-87.75618,38.462538],[-87.744639,38.477271],[-87.714047,38.47988],[-87.669811,38.507179],[-87.652366,38.50322],[-87.645372,38.513836],[-87.656145,38.521668],[-87.670071,38.545237],[-87.62098,38.637655],[-87.597248,38.665314],[-87.534484,38.68172],[-87.522039,38.693351],[-87.519511,38.710485],[-87.506172,38.733726],[-87.496282,38.766313],[-87.4956898,38.7844493],[-87.526816,38.81737],[-87.525894,38.848795],[-87.552028,38.860318],[-87.513347,38.956001],[-87.658747,39.135997],[-87.526642,41.12145],[-87.963534,41.001047],[-88.164646,41.130361],[-88.13074,40.93922],[-89.066934,40.926084],[-89.162265,41.103988],[-88.627265,41.270492],[-88.63504,41.471294],[-88.31451,41.577984],[-88.4343959,41.716815],[-89.747262,41.58441],[-89.895354,41.723942],[-90.254106,41.522531],[-90.024853,42.012575],[-90.258762,42.339969],[-90.403349,42.309936],[-90.555018,42.416138],[-90.552633,42.430021],[-90.516199,42.429814],[-90.515833,42.462079],[-90.49518,42.45724],[-90.486854,42.484706],[-90.4428163,42.4967374],[-90.4371468,42.507235],[-88.525696,42.494917],[-88.511329,42.575324],[-88.663459,42.581855],[-88.987684,42.846946],[-88.94358,43.042169],[-89.1503176,43.0030354],[-89.166536,43.188549],[-88.882562,43.371917],[-88.60696,43.30556],[-88.599957,43.850457],[-87.699249,43.965307],[-87.718829,43.938205],[-87.726774,43.903408],[-87.736084,43.880386],[-87.700377,43.767401],[-87.757047,43.768179],[-87.7649803,43.7610142],[-87.800123,43.761226],[-87.726667,43.649964],[-87.7931,43.549437],[-87.791656,43.493196],[-87.803462,43.4642829],[-87.825838,43.435518],[-87.864054,43.39389],[-87.876973,43.369547],[-87.890219,43.304041],[-87.901973,43.283232],[-87.911974,43.247094],[-87.8915936,43.0072287],[-87.823974,42.834928],[-87.757848,42.782085],[-87.815815,42.643036],[-87.811769,42.518575],[-87.797713,42.486844],[-87.802857,42.390195],[-87.8163644,42.3614523],[-87.824083,42.361743],[-87.831646,42.329638],[-87.833971,42.293755],[-87.5283462,41.716072],[-87.504742,41.691804],[-87.467903,41.672838],[-87.446779,41.685445],[-87.42459,41.689597],[-87.406849,41.680434],[-87.420536,41.659492],[-87.436967,41.65501],[-87.421101,41.641074],[-87.318052,41.620992],[-87.253271,41.6212],[-87.161468,41.63576],[-86.916531,41.716538],[-86.9040881,41.7284942],[-86.875328,41.73802],[-86.820264,41.762188],[-86.777457,41.784271],[-86.688155,41.837285],[-86.620316,41.892865],[-86.587788,41.932383],[-86.575314,41.955304],[-86.556593,41.999709],[-86.51206,42.06506],[-86.487763,42.117144],[-86.413141,42.186524],[-86.404604,42.193557],[-86.3770035,42.1863008],[-86.359404,42.157397],[-86.281135,42.157228],[-86.223592,42.250037],[-86.165619,41.883981],[-85.666756,42.070112],[-85.789298,41.969081],[-85.760287,41.845028],[-85.799207,41.84553],[-85.799164,41.831052],[-85.815848,41.822617],[-85.819933,41.766686],[-85.827445,41.759137],[-85.726958,41.710416],[-85.791364,41.609001],[-85.618641,41.625356],[-85.659802,41.759098],[-85.543598,41.758839],[-85.548005,41.770256],[-85.545931,41.796199],[-85.531059,41.806837],[-85.535965,41.82441],[-85.565144,41.835238],[-85.487351,41.868184],[-85.507183,41.919145],[-85.318135,41.762493],[-85.292048,41.781722],[-85.2921,41.759962],[-84.972255,41.759551],[-84.805813,41.760185],[-84.805966,41.696088],[-84.514626,41.703281],[-84.43828,41.427234],[-83.946134,41.487209],[-83.998694,41.716858],[-83.741351,41.659254],[-83.649564,41.727223],[-83.455346,41.732806],[-83.468605,41.721294],[-83.477115,41.698539],[-83.464603,41.69008],[-83.426134,41.7134],[-83.425713,41.69],[-83.351779,41.68698],[-83.335558,41.705387],[-83.305755,41.676394],[-83.240072,41.651903],[-83.235893,41.637379],[-83.212725,41.637821],[-83.154274,41.619053],[-83.1027242,41.61263],[-83.067363,41.595669],[-83.039519,41.563005],[-82.973869,41.524869],[-82.9316481,41.5147109],[-82.879295,41.526592],[-82.834131,41.587079],[-82.716518,41.540784],[-82.713704,41.524563],[-82.72683,41.511968],[-82.765142,41.502773],[-82.9542,41.489038],[-83.003219,41.437424],[-82.488722,41.38077],[-82.461825,41.385852],[-82.3602115,41.4271129],[-82.2551735,41.4342968],[-82.012659,41.515663],[-81.744798,41.487503],[-81.676973,41.522015],[-81.665142,41.531656],[-81.627449,41.54412],[-81.447086,41.670206],[-81.389342,41.706928],[-81.298675,41.752192],[-81.285716,41.762709],[-81.222489,41.768702],[-81.129982,41.810609],[-81.088516,41.823443],[-81.002015,41.853454],[-80.903581,41.867869],[-80.814889,41.897902],[-80.800506,41.910004],[-80.772787,41.908545],[-80.727647,41.918445],[-80.585025,41.956567],[-80.561158,41.966715],[-80.519376,41.977233],[-80.519091,41.347842],[-80.208371,41.441671],[-80.046223,41.296785],[-80.424233,40.999148],[-79.958838,40.537605],[-79.464147,40.655628],[-79.6676503,40.5149073],[-79.288757,40.292894],[-79.36453,40.065786],[-79.73207,39.979625],[-79.496929,39.827881],[-79.507481,39.807562],[-79.495693,39.792103],[-79.513894,39.764796],[-79.523715,39.720904],[-79.224754,39.721981],[-78.990497,39.72256],[-78.533618,39.722512],[-78.384501,39.800402],[-78.140555,39.722384],[-77.797733,39.956504],[-77.744511,39.839702],[-77.476694,39.84218],[-77.460471,39.759932],[-77.465631,39.739747],[-77.4804785,39.7384659],[-77.4788605,39.7200188],[-77.264667,39.720004],[-77.185317,39.599241],[-77.160913,39.289789],[-77.238164,39.221343],[-77.326394,39.24235],[-77.376646,39.157461],[-77.452696,39.159099],[-77.453342,39.126156],[-77.471539,39.104622],[-77.503682,39.115185],[-77.524653,39.127804],[-77.527411,39.146635],[-77.46021,39.228359],[-77.568018,39.306448],[-77.674908,39.324252],[-77.7189303,39.3212857],[-77.7349,39.31241],[-77.828806,39.132773],[-78.245363,39.402714],[-78.257624,39.394801],[-78.276729,39.372069],[-78.278439,39.321135],[-78.298154,39.310901],[-78.2575467,39.2758981],[-78.436659,39.141692],[-78.395431,38.915862],[-78.641034,38.60616],[-78.5392626,38.4768197],[-79.020527,38.579829],[-78.9338772,38.3745169],[-78.704207,38.494586],[-78.8114417,38.1579762],[-78.592814,38.292054],[-78.394662,38.009079],[-78.272625,38.207178],[-78.022372,38.141463],[-78.195889,37.953517],[-77.720342,37.587466],[-77.846931,37.414113],[-78.185321,37.444538],[-78.395595,37.159218],[-78.870948,37.242973],[-78.995267,37.038296],[-79.20683,37.190729],[-79.4984508,37.0604758],[-79.198127,36.769038],[-78.8371378,36.8762389],[-78.810238,36.721456],[-79.178188,36.708887],[-78.881811,36.611028],[-78.8807084,36.5420422],[-81.677535,36.588118],[-81.646901,36.611918],[-81.922645,36.616214],[-81.934145,36.594214],[-82.221458,36.596179],[-82.466614,36.594482],[-82.480689,36.595702],[-82.663287,36.593501],[-82.9847325,36.5937561],[-82.979024,36.600262],[-82.94125,36.614777],[-82.913783,36.632185],[-82.887844,36.637251],[-82.964383,36.696982],[-82.8534944,36.7758124],[-82.891619,36.805646],[-82.848203,36.831783],[-82.851176,36.870093],[-82.878639,36.893982],[-82.869184,36.974183],[-83.3632,37.125741],[-83.350269,37.486641],[-82.932488,37.353754],[-82.424447,37.802653],[-82.664866,38.264702],[-82.920234,38.280857],[-82.742641,38.482365],[-82.768177,38.521446],[-82.758205,38.554133],[-82.766064,38.56056],[-82.795649,38.561552],[-82.820162,38.572703],[-82.847187,38.595167],[-82.874892,38.682828],[-82.876892,38.698178],[-82.870392,38.722077],[-82.876193,38.748077],[-82.894193,38.756577],[-83.668111,38.628069],[-83.859028,38.756794],[-83.943979,38.783617],[-83.975486,38.787437],[-84.044487,38.770573],[-84.091526,38.774239],[-84.212905,38.805707],[-84.230182,38.826547],[-84.233265,38.842672],[-84.232343,38.884326],[-84.236564,38.896372],[-84.257011,38.923208],[-84.286837,38.953823],[-84.295076,38.968296],[-84.304699,39.006456],[-84.455343,39.120361],[-84.754449,39.146659],[-84.783992,39.118061],[-84.830882,39.102062],[-84.897171,39.052408],[-84.877029,38.909017],[-84.863744,38.898015],[-84.812047,38.89494],[-84.78458,38.87532],[-84.813636,38.78524],[-85.172968,38.687933],[-85.208008,38.69295],[-85.258846,38.737755],[-85.434066,38.729456],[-85.452114,38.709349],[-85.453924,38.679883],[-85.438743,38.65932],[-85.439198,38.608589],[-85.416177,38.564949],[-85.423077,38.531581],[-85.924793,38.024211],[-85.951468,38.005608],[-86.032469,37.9901],[-86.038189,37.95935],[-86.063021,37.972897],[-86.078737,38.000072],[-86.108156,38.013416],[-86.178984,38.011309],[-86.364194,38.19821],[-86.598108,37.867382],[-87.033444,37.906593],[-87.111133,37.782513],[-87.162319,37.84016],[-87.21912,37.848383],[-87.302789,37.898685],[-87.335398,37.907565],[-87.361639,37.921004],[-87.38084,37.93582],[-87.450602,37.941451],[-87.504333,37.90806],[-87.550334,37.92489],[-87.577916,37.971542],[-87.601417,37.972542],[-87.628416,37.92145],[-87.619215,37.905978],[-87.592214,37.887064],[-87.58873,37.860985],[-87.615399,37.831975],[-87.679188,37.836321],[-87.66282,37.881449],[-87.666883,37.896644],[-87.687689,37.903457],[-87.903623,37.925604],[-87.938366,37.890802],[-87.936229,37.867937],[-87.909906,37.842383],[-87.907314,37.80713],[-87.959004,37.772732],[-88.011255,37.801535],[-88.02803,37.799225]],[[-79.476638,38.457228],[-79.649075,38.591516],[-79.662875,38.570416],[-79.672975,38.528717],[-79.662074,38.515518],[-79.680075,38.510618],[-79.694507,38.494233],[-79.699424,38.474715],[-79.688882,38.458715],[-79.689675,38.43144],[-79.727053,38.362234],[-79.742772,38.353367],[-79.764175,38.356635],[-79.809935,38.304682],[-79.795448,38.290228],[-79.788945,38.268704],[-79.82101,38.248278],[-79.846261,38.24027],[-79.921027,38.179955],[-79.945158,38.132009],[-79.938952,38.111619],[-79.926331,38.107152],[-79.959845,38.063698],[-80.106891,38.055846],[-80.18798,38.039103],[-80.361694,37.689638],[-80.531975,37.861401],[-80.6818231,37.6018274],[-80.428725,37.6140245],[-80.3668555,37.6359929],[-80.3362231,37.6869601],[-80.296107,37.691791],[-80.220985,37.627767],[-80.25892,37.595499],[-80.328504,37.564315],[-80.330306,37.536245],[-80.309347,37.527381],[-80.222893,37.544759],[-79.785978,37.792912],[-79.571185,37.601701],[-79.209995,37.700523],[-79.043955,37.931662],[-79.258418,37.960018],[-79.245285,38.335886],[-79.476638,38.457228]]]]},"properties":{"name":"RFCW","gridLoss":{"display":"4.88%","value":0.0488},"fuelMixCategories":{"renewable":5.2,"non-renewable":94.8,"non-renewable (excluding nuclear)":66.5,"renewable (excluding hydro)":4.4,"nuclear":28.3,"hydro":0.9},"fullName":"RFC West","emissionFactor":{"co2EmissionRate":{"value":1166.1,"display":"1,166.1","units":"lb/MWh"},"noxEmissionRate":{"value":0.8,"display":"0.8","units":"lb/MWh"},"so2EmissionRate":{"value":0.9,"display":"0.9","units":"lb/MWh"}},"fuelMix":{"coal":44.4,"oil":0.3,"gas":21,"nuclear":28.3,"hydro":0.9,"biomass":0.6,"wind":3.6,"solar":0.1,"geothermal":0,"otherFossilFuel":0.7,"otherUnknownFuel":0}}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-102.86545,36.999591],[-102.986976,36.998524],[-103.002375,37.000204],[-103.250493,36.999578],[-103.625507,36.998629],[-104.000525,36.996217],[-105.029228,36.99273],[-105.1208,36.995428],[-105.66472,36.995875],[-106.591178,36.992923],[-107.635627,37.000004],[-108.047311,36.999729],[-108.058433,36.989292],[-108.106393,36.967392],[-108.100774,36.923174],[-108.190864,36.928894],[-108.191374,36.880589],[-108.242941,36.929082],[-108.250635,36.999562],[-109.045223,36.999085],[-109.051163,39.660473],[-108.55463,39.650166],[-108.618814,39.955592],[-108.217857,40.11346],[-108.621052,40.222371],[-108.511178,40.44939],[-108.778261,40.502479],[-108.846319,40.465111],[-109.050071,40.540437],[-109.04825,40.653601],[-109.123485,40.653779],[-109.123471,40.684127],[-109.161064,40.683817],[-109.203253,40.858642],[-110.000709,40.813751],[-110.001031,40.997658],[-109.5437204,40.998398],[-109.2514937,41.0011194],[-108.884138,41.000094],[-108.257751,41.000108],[-108.046539,41.002065],[-107.918422,41.002037],[-107.929737,41.659597],[-107.509721,41.657452],[-107.522723,42.261757],[-110.188772,42.270737],[-109.364427,42.930651],[-109.754717,43.4632],[-110.051571,43.464784],[-110.05318,44.008023],[-109.789901,43.803252],[-109.392425,44.333723],[-108.573679,44.461604],[-108.542036,44.77279],[-108.592614,44.74481],[-108.592276,44.871384],[-108.670615,44.882741],[-108.644368,44.897689],[-108.661966,44.953162],[-108.621535,44.947841],[-108.621313,45.000278],[-107.606992,45.000931],[-107.570086,44.969117],[-107.554931,44.96375],[-107.453568,44.967784],[-107.386376,44.907129],[-107.189027,44.91937],[-107.220335,44.819634],[-107.058696,44.824373],[-106.97974,44.912101],[-107.043112,44.937121],[-107.045313,44.95658],[-107.079714,44.969762],[-107.090158,44.997023],[-107.0555,44.996356],[-106.625612,44.994928],[-106.250587,44.993689],[-105.928185,44.993647],[-105.913383,45.000941],[-104.772766,44.999158],[-104.365938,44.998151],[-104.040303,44.997771],[-104.039958,45.212926],[-102.957726,45.212641],[-102.9644298,44.5028963],[-102.656953,44.473977],[-102.6085,43.99504],[-102.138938,43.820692],[-103.001051,43.603702],[-103.000897,43.000743],[-102.694193,42.999982],[-102.694594,42.914159],[-102.615994,42.871145],[-102.6178,42.792145],[-102.538368,42.785336],[-102.49162,42.36863],[-102.2772213,42.3644347],[-102.302292,42.529363],[-102.038169,42.443307],[-101.984631,41.394713],[-101.500449,41.395354],[-101.476703,40.698175],[-101.911987,40.56703],[-101.684635,40.523171],[-101.892394,40.349373],[-101.891917,40.20889],[-101.814853,40.175533],[-101.815789,40.149878],[-101.812807,40.002851],[-102.051744,40.003078],[-102.0423106,36.9931101],[-102.86545,36.999591]],[[-105.144867,41.656058],[-104.654107,41.813124],[-104.654497,42.189088],[-104.891316,42.12587],[-104.931667,42.4018],[-104.654956,42.412656],[-104.64127,43.025643],[-104.9769206,42.8895453],[-104.899941,43.499641],[-105.924895,43.525932],[-105.687922,43.255097],[-105.797526,42.557908],[-105.59942,42.297536],[-105.28391,42.431403],[-105.378625,41.701771],[-105.144867,41.656058]],[[-106.277989,43.282492],[-106.078069,43.494471],[-106.404184,43.49277],[-106.277989,43.282492]],[[-107.14314,44.558341],[-106.894846,44.621005],[-107.24854,44.661059],[-107.14314,44.558341]]]},"properties":{"name":"RMPA","gridLoss":{"display":"4.80%","value":0.048},"fuelMixCategories":{"renewable":29.7,"non-renewable":70.3,"non-renewable (excluding nuclear)":70.3,"renewable (excluding hydro)":17.2,"nuclear":0,"hydro":12.5},"fullName":"WECC Rockies","emissionFactor":{"co2EmissionRate":{"value":1273.6,"display":"1,273.6","units":"lb/MWh"},"noxEmissionRate":{"value":0.7,"display":"0.7","units":"lb/MWh"},"so2EmissionRate":{"value":0.4,"display":"0.4","units":"lb/MWh"}},"fuelMix":{"coal":44.8,"oil":0,"gas":25.5,"nuclear":0,"hydro":12.5,"biomass":0.3,"wind":15.3,"solar":1.6,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0.1}}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-92.834918,39.085066],[-93.056095,39.238288],[-92.790369,39.343587],[-92.834918,39.085066]]],[[[-93.447694,37.275289],[-93.377839,36.904606],[-93.61246,36.849745],[-93.644907,37.141084],[-93.902818,37.175605],[-94.04382,36.960505],[-94.205451,37.022445],[-94.066376,36.830206],[-94.256064,36.617984],[-94.6177331,36.6243378],[-94.617921,36.998184],[-94.820108,36.998563],[-94.8129,36.987055],[-94.812589,36.94362],[-94.864362,36.923261],[-94.883298,36.931311],[-94.884854,36.998847],[-96.500288,36.998644],[-98.128165,36.998106],[-98.367151,37.210194],[-98.622249,36.998934],[-100.498885,37.00085],[-101.374338,36.996088],[-101.632234,36.994919],[-101.8660854,36.9937639],[-102.0423106,36.9931101],[-102.051744,40.003078],[-101.812807,40.002851],[-101.455314,40.002551],[-101.178884,40.002459],[-100.927279,40.002163],[-100.509528,40.001793],[-100.23181,40.001614],[-99.290687,40.001994],[-98.972379,40.002228],[-98.530258,40.002391],[-96.889293,40.0014785],[-95.97707,40.000582],[-95.592039,40.000218],[-95.3589364,39.9998927],[-95.255407,39.998679],[-95.16174,40.261402],[-94.933981,40.230331],[-95.049388,40.55455],[-94.708021,40.572242],[-94.326349,40.386657],[-94.580124,39.907557],[-94.338535,39.834466],[-94.431964,39.311454],[-93.871623,39.236089],[-93.915991,39.086053],[-93.505051,39.136733],[-93.645324,39.437945],[-92.863266,39.612994],[-92.873688,39.345443],[-93.10607,39.383725],[-93.303728,39.066975],[-93.7116799,38.993812],[-93.592728,38.587318],[-93.993868,38.386629],[-93.850265,38.184428],[-93.4366219,38.2035828],[-93.511421,37.927596],[-93.065199,38.062479],[-92.924718,37.684301],[-93.270767,37.353501],[-93.447694,37.275289]],[[-93.458966,37.73715],[-93.507001,37.541323],[-93.275234,37.477631],[-93.306859,37.887718],[-93.458966,37.73715]]]]},"properties":{"name":"SPNO","gridLoss":{"display":"4.88%","value":0.0488},"fuelMixCategories":{"renewable":28.3,"non-renewable":71.7,"non-renewable (excluding nuclear)":58.8,"renewable (excluding hydro)":28.1,"nuclear":12.9,"hydro":0.2},"fullName":"SPP North","emissionFactor":{"co2EmissionRate":{"value":1163.2,"display":"1,163.2","units":"lb/MWh"},"noxEmissionRate":{"value":0.6,"display":"0.6","units":"lb/MWh"},"so2EmissionRate":{"value":0.3,"display":"0.3","units":"lb/MWh"}},"fuelMix":{"coal":46.9,"oil":0.2,"gas":11.7,"nuclear":12.9,"hydro":0.2,"biomass":0.1,"wind":27.9,"solar":0.1,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0}}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-94.681297,31.843947],[-94.519128,31.744036],[-94.63623,31.618505],[-94.681297,31.843947]]],[[[-101.556887,33.394761],[-101.557192,33.241118],[-101.963946,33.370447],[-101.556887,33.394761]]],[[[-93.447694,37.275289],[-93.270767,37.353501],[-93.225291,37.224256],[-93.447694,37.275289]]],[[[-104.847758,32.00052],[-104.84237,32.76776],[-104.680417,32.798765],[-104.840609,32.963308],[-104.595026,33.291901],[-103.766177,33.139525],[-103.720743,33.569679],[-103.506823,33.657372],[-103.718836,33.640235],[-104.087759,34.112036],[-104.12941,34.779312],[-104.587624,34.881078],[-104.559329,35.216176],[-104.912005,35.695863],[-104.367312,35.781427],[-104.134093,36.218288],[-103.793983,36.173995],[-103.682076,35.940827],[-103.364971,36.086365],[-103.374973,35.740013],[-103.125799,35.739781],[-103.1608993,35.8906403],[-103.1427075,35.8993145],[-103.041168,35.899024],[-103.0419238,36.5004008],[-102.875478,36.500238],[-102.6431211,36.5004763],[-103.002206,36.66202],[-102.804987,36.719211],[-102.822162,36.961273],[-102.841004,36.986886],[-102.86545,36.999591],[-102.0423106,36.9931101],[-101.8660854,36.9937639],[-101.632234,36.994919],[-101.374338,36.996088],[-100.498885,37.00085],[-98.622249,36.998934],[-98.367151,37.210194],[-98.128165,36.998106],[-96.500288,36.998644],[-94.884854,36.998847],[-94.883298,36.931311],[-94.864362,36.923261],[-94.812589,36.94362],[-94.8129,36.987055],[-94.820108,36.998563],[-94.617921,36.998184],[-94.6177331,36.6243378],[-94.256064,36.617984],[-93.521129,36.498881],[-93.433743,36.743425],[-93.61246,36.849745],[-93.377839,36.904606],[-93.127128,36.707265],[-93.169908,36.583836],[-93.098295,36.52611],[-93.151045,36.497879],[-93.296074,36.498454],[-93.29576,36.457],[-93.385985,36.487215],[-93.492972,36.435791],[-93.344697,35.979347],[-93.714095,35.769118],[-94.337728,36.057493],[-94.494274,35.870668],[-94.462332,34.462982],[-94.301221,34.440738],[-94.485875,33.637867],[-94.37888,33.587173],[-94.368711,33.577818],[-94.397653,33.555243],[-94.381667,33.544036],[-94.353593,33.544005],[-94.352653,33.560612],[-94.274473,33.558652],[-94.257063,33.583263],[-94.191143,33.557987],[-94.184308,33.594577],[-94.162267,33.588906],[-94.16201,33.580877],[-94.131382,33.552935],[-94.120861,33.567052],[-94.082642,33.575493],[-94.072157,33.553864],[-94.043385,33.551815],[-94.0432054,33.3541049],[-94.04302,33.020386],[-94.041111,33.019147],[-93.814554,33.019373],[-93.827262,33.008019],[-93.814566,32.968471],[-93.841028,32.946107],[-93.783234,32.784361],[-93.819201,32.735955],[-93.6185,32.630335],[-93.61824,32.352186],[-93.213673,32.236064],[-92.982132,31.877354],[-92.795816,32.049282],[-92.344288,31.765612],[-91.51474,31.609413],[-91.486519,31.586566],[-91.462018,31.586666],[-91.422716,31.597066],[-91.403916,31.589766],[-91.512577,31.318427],[-91.518757,31.2883],[-91.552244,31.267732],[-91.585879,31.263721],[-91.638373,31.283421],[-91.70143,31.549032],[-91.855908,31.496005],[-91.661373,30.857099],[-91.51562,30.861348],[-91.838333,30.480955],[-91.463833,30.102494],[-91.13647,30.052934],[-90.991761,29.732728],[-91.264418,29.471031],[-91.281301,29.481548],[-91.332549,29.48464],[-91.356625,29.515192],[-91.420449,29.515746],[-91.422723,29.553217],[-91.545949,29.520053],[-91.553536,29.632766],[-91.637476,29.648936],[-91.61848,29.710816],[-91.621825,29.731098],[-91.632987,29.742534],[-91.667128,29.745822],[-91.718781,29.738413],[-91.735915,29.749028],[-91.859298,29.703281],[-91.879884,29.75793],[-91.857025,29.787458],[-91.826203,29.781826],[-91.822237,29.799612],[-91.882756,29.835126],[-91.955971,29.838302],[-92.119539,29.736426],[-92.201631,29.753701],[-92.166388,29.702167],[-92.101586,29.69971],[-92.106012,29.612833],[-92.038097,29.617075],[-92.308368,29.533075],[-92.295832,29.593265],[-92.255596,29.667463],[-92.240921,29.751008],[-92.372317,29.849996],[-92.0755,30.027523],[-92.116428,30.239801],[-92.395508,30.078754],[-92.62514,30.301336],[-92.598397,30.68333],[-92.866669,30.685605],[-92.705645,30.899192],[-92.972215,31.15899],[-92.879756,31.317374],[-93.567271,31.178781],[-93.589119,31.16589],[-93.620829,31.271299],[-93.687512,31.310813],[-93.719708,31.50584],[-93.839384,31.599076],[-93.822599,31.773559],[-93.874837,31.822314],[-93.872989,31.836697],[-93.882879,31.854672],[-93.881679,31.868582],[-93.902069,31.879105],[-93.900616,31.896789],[-94.04272,31.999266],[-94.0426504,32.1669115],[-94.07049,32.17283],[-94.109291,32.165089],[-94.127205,32.173975],[-94.163035,32.234749],[-94.207994,32.194682],[-94.332872,32.236858],[-94.985298,32.157201],[-95.083237,32.356552],[-95.594301,32.479859],[-95.515696,33.104359],[-94.918249,33.387565],[-94.7369994,33.2946641],[-94.897765,33.654871],[-94.758809,33.618904],[-94.753069,33.710754],[-94.732367,33.72194],[-94.816388,33.763964],[-94.827931,33.741054],[-94.849297,33.739586],[-94.869804,33.746054],[-94.953558,33.816012],[-94.943602,33.828065],[-94.968792,33.860886],[-94.992164,33.852035],[-95.0083828,33.866033],[-95.022325,33.859814],[-95.049025,33.864091],[-95.062354,33.903532],[-95.0763,33.902164],[-95.082408,33.879883],[-95.10074,33.895209],[-95.081816,33.907546],[-95.09011,33.920949],[-95.117593,33.904613],[-95.131643,33.916027],[-95.124701,33.934675],[-95.166686,33.939728],[-95.219359,33.961568],[-95.253536,33.894198],[-95.285302,33.898102],[-95.282179,33.875845],[-95.29536,33.872634],[-95.531527,33.881894],[-95.552388,33.889521],[-95.549146,33.90795],[-95.561887,33.931874],[-95.595562,33.941643],[-96.149226,33.837092],[-96.17691,33.813934],[-96.168293,33.802977],[-96.1652,33.780131],[-96.17806,33.760518],[-96.294867,33.764772],[-96.355947,33.687156],[-96.625877,33.84404],[-96.629205,33.850893],[-96.611635,33.869253],[-96.597349,33.875101],[-96.585361,33.888949],[-96.592949,33.895617],[-96.673449,33.912279],[-96.681494,33.894675],[-96.684727,33.862906],[-96.690708,33.849959],[-96.761588,33.824406],[-96.866438,33.85315],[-96.895729,33.896415],[-96.907486,33.950136],[-96.921564,33.959611],[-96.971891,33.936119],[-96.987801,33.954703],[-96.995678,33.936988],[-96.984939,33.904866],[-96.98377,33.890038],[-97.020727,33.847035],[-97.041615,33.837614],[-97.055534,33.855107],[-97.086033,33.854553],[-97.084143,33.840537],[-97.054159,33.834646],[-97.050211,33.816682],[-97.125951,33.717198],[-97.154368,33.724028],[-97.170137,33.735719],[-97.174802,33.747252],[-97.192993,33.759229],[-97.201007,33.912533],[-97.248238,33.90493],[-97.254185,33.865149],[-97.305733,33.886458],[-97.31342,33.865956],[-97.337293,33.861657],[-97.358662,33.829306],[-97.373792,33.819091],[-97.415913,33.817925],[-97.463618,33.842331],[-97.451553,33.875857],[-97.452232,33.89267],[-97.463346,33.905007],[-97.500961,33.919644],[-97.5246113,33.9118995],[-97.551542,33.897947],[-97.589255,33.903923],[-97.59698,33.920228],[-97.595421,33.941437],[-97.588828,33.951883],[-97.66149,33.990818],[-97.687694,33.98718],[-97.697565,33.978316],[-97.712349,33.951906],[-97.731138,33.9371138],[-97.763044,33.934146],[-97.805972,33.876572],[-97.865765,33.849393],[-97.957093,33.878859],[-97.984374,33.898024],[-97.957156,33.914455],[-97.946803,33.990893],[-97.97167,34.005435],[-98.041118,33.993457],[-98.084435,34.002894],[-98.103618,34.029208],[-98.083839,34.04172],[-98.120839,34.0845225],[-98.101938,34.14683],[-98.360018,34.15642],[-98.376862,34.147851],[-98.396218,34.119879],[-98.403593,34.089692],[-98.480276,34.06354],[-98.5558,34.136957],[-98.576244,34.144447],[-98.601407,34.16024],[-98.643224,34.164532],[-98.671529,34.148893],[-98.6901817,34.1330639],[-98.735472,34.135209],[-98.759529,34.115491],[-98.767549,33.975369],[-98.837273,33.994483],[-98.808713,33.818792],[-99.475606,33.834056],[-99.3282581,34.3948748],[-99.694528,34.378218],[-100.000382,34.560509],[-100.0003842,34.7969067],[-100.000385,35.125053],[-100.000389,35.465823],[-100.004444,35.461771],[-100.0408716,35.4614682],[-100.040779,35.447792],[-100.290027,35.499313],[-100.340019,35.619486],[-100.540198,35.619308],[-100.540222,36.056492],[-101.085708,36.057573],[-101.044538,35.357351],[-101.622942,35.183117],[-101.628443,34.807245],[-102.140311,34.747513],[-102.122947,33.623309],[-101.688612,33.536682],[-102.181906,33.553165],[-102.318018,33.388839],[-102.07593,33.389588],[-102.076215,32.959703],[-101.691284,32.961838],[-101.688753,32.52524],[-102.211028,32.523052],[-102.211255,32.086938],[-102.799087,32.085795],[-102.79894,31.651782],[-103.129091,31.835781],[-103.616431,31.651132],[-103.979829,32.00011],[-104.460846,32.000111],[-104.847758,32.00052]],[[-95.078303,35.638698],[-94.829207,35.638616],[-94.949681,35.870874],[-95.078303,35.638698]]]]},"properties":{"name":"SPSO","gridLoss":{"display":"4.88%","value":0.0488},"fuelMixCategories":{"renewable":27.1,"non-renewable":72.9,"non-renewable (excluding nuclear)":72.9,"renewable (excluding hydro)":24.2,"nuclear":0,"hydro":2.8},"fullName":"SPP South","emissionFactor":{"co2EmissionRate":{"value":1166.6,"display":"1,166.6","units":"lb/MWh"},"noxEmissionRate":{"value":0.8,"display":"0.8","units":"lb/MWh"},"so2EmissionRate":{"value":1.2,"display":"1.2","units":"lb/MWh"}},"fuelMix":{"coal":30.9,"oil":1.7,"gas":40,"nuclear":0,"hydro":2.8,"biomass":1.4,"wind":22.4,"solar":0.4,"geothermal":0,"otherFossilFuel":0.3,"otherUnknownFuel":0.1}}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-91.8212985,29.4749605],[-92.0194464,29.5888901],[-91.7083,29.558923],[-91.8212985,29.4749605]]],[[[-93.567271,31.178781],[-92.879756,31.317374],[-92.972215,31.15899],[-92.705645,30.899192],[-92.866669,30.685605],[-92.598397,30.68333],[-92.62514,30.301336],[-92.395508,30.078754],[-92.116428,30.239801],[-92.0755,30.027523],[-92.372317,29.849996],[-92.240921,29.751008],[-92.255596,29.667463],[-92.295832,29.593265],[-92.308368,29.533075],[-92.336829,29.537357],[-92.397603,29.550832],[-92.416349,29.551708],[-92.473585,29.561082],[-92.536209,29.56709],[-92.607248,29.577609],[-92.623937,29.585057],[-92.738723,29.619848],[-92.984926,29.721766],[-93.176076,29.770033],[-93.231269,29.777757],[-93.836062,29.694663],[-93.904488,29.794731],[-93.78485,29.850235],[-93.756717,29.969123],[-93.777942,29.978626],[-93.794744,29.99802],[-93.92938,29.858994],[-93.938073,29.78146],[-93.872881,29.733002],[-93.840435,29.68676],[-93.864422,29.677607],[-93.946963,29.682784],[-94.044886,29.674287],[-94.142726,29.643003],[-94.457132,29.522016],[-94.489521,29.516206],[-94.54578,29.572377],[-94.56912,29.572798],[-94.602939,29.558962],[-94.686545,29.538197],[-94.709017,29.537433],[-94.740943,29.526682],[-94.779557,29.530215],[-94.788047,29.547395],[-94.749053,29.55418],[-94.753644,29.561128],[-94.735828,29.576369],[-94.706102,29.628521],[-94.698358,29.65248],[-94.689066,29.75129],[-94.725184,29.788119],[-94.979664,29.67827],[-95.170434,30.091763],[-95.7815971,30.0370142],[-95.76035,29.701897],[-95.9292311,29.6385625],[-96.305321,29.69573],[-95.8206608,30.4666945],[-96.12634,30.449278],[-96.201604,30.937842],[-96.54808,30.919713],[-96.490488,31.188354],[-96.731041,31.444669],[-96.359203,31.438086],[-96.333293,31.757827],[-95.961342,31.672382],[-95.601005,32.061483],[-95.099989,31.518982],[-95.2302325,31.1988698],[-94.865801,31.526957],[-94.554839,31.435123],[-94.357632,31.259591],[-94.4433443,31.036513],[-93.731372,31.168403],[-93.870567,30.789456],[-93.705081,30.726793],[-93.553626,30.83514],[-93.57784,31.00106],[-93.565458,31.012678],[-93.540355,31.008135],[-93.533415,31.018956],[-93.508893,31.029332],[-93.567271,31.178781]]],[[[-91.264418,29.471031],[-90.991761,29.732728],[-91.13647,30.052934],[-91.463833,30.102494],[-91.838333,30.480955],[-91.51562,30.861348],[-91.661373,30.857099],[-91.855908,31.496005],[-91.70143,31.549032],[-91.638373,31.283421],[-91.585879,31.263721],[-91.552244,31.267732],[-91.518757,31.2883],[-91.512577,31.318427],[-91.508859,31.291644],[-91.518578,31.275284],[-91.558685,31.262176],[-91.574494,31.26129],[-91.621359,31.267812],[-91.641253,31.266917],[-91.654027,31.255753],[-91.636942,30.999417],[-91.497391,30.999007],[-91.250109,30.999272],[-91.237914,31.020618],[-91.244891,31.032735],[-91.235097,31.05278],[-91.20364,31.046735],[-91.233464,31.08701],[-91.196401,31.173713],[-90.869887,31.169729],[-91.042066,31.336082],[-90.940168,31.610553],[-90.6948847,31.4974336],[-90.680279,31.188344],[-90.691875,31.63964],[-90.112502,31.769705],[-90.907741,32.131888],[-91.338414,31.851261],[-91.51474,31.609413],[-92.344288,31.765612],[-92.795816,32.049282],[-92.982132,31.877354],[-93.213673,32.236064],[-93.61824,32.352186],[-93.6185,32.630335],[-93.819201,32.735955],[-93.783234,32.784361],[-93.841028,32.946107],[-93.814566,32.968471],[-93.827262,33.008019],[-93.814554,33.019373],[-94.041111,33.019147],[-94.04302,33.020386],[-94.0432054,33.3541049],[-94.043385,33.551815],[-94.072157,33.553864],[-94.082642,33.575493],[-94.120861,33.567052],[-94.131382,33.552935],[-94.16201,33.580877],[-94.162267,33.588906],[-94.184308,33.594577],[-94.191143,33.557987],[-94.257063,33.583263],[-94.274473,33.558652],[-94.352653,33.560612],[-94.353593,33.544005],[-94.381667,33.544036],[-94.397653,33.555243],[-94.368711,33.577818],[-94.37888,33.587173],[-94.485875,33.637867],[-94.301221,34.440738],[-94.462332,34.462982],[-94.494274,35.870668],[-94.337728,36.057493],[-93.714095,35.769118],[-93.344697,35.979347],[-93.492972,36.435791],[-93.385985,36.487215],[-93.29576,36.457],[-93.296074,36.498454],[-93.151045,36.497879],[-91.672344,36.499463],[-91.456194,36.646885],[-91.449998,36.497833],[-90.154611,36.497972],[-89.889931,36.386376],[-89.959267,36.146723],[-90.37789,35.995683],[-89.733096,36.000608],[-89.718801,35.985015],[-89.71304,35.961645],[-89.644838,35.904352],[-89.765689,35.8913],[-89.704388,35.819607],[-89.821217,35.756716],[-89.846344,35.755732],[-89.872846,35.741299],[-89.905539,35.759064],[-89.950279,35.738493],[-89.957924,35.585499],[-89.942877,35.557922],[-89.896503,35.54692],[-89.791418,35.622573],[-89.699755,35.364192],[-90.095137,35.180615],[-90.137074,35.07491],[-90.051829,35.101413],[-90.037237,35.012404],[-90.043036,34.994964],[-90.309297,34.995695],[-90.29535,34.975731],[-90.251993,34.950914],[-90.244477,34.937596],[-90.323051,34.84643],[-90.340236,34.860348],[-90.35548,34.852068],[-90.414864,34.831847],[-90.483969,34.877176],[-90.451758,34.741905],[-90.568082,34.724802],[-90.473636,34.700319],[-90.463734,34.691094],[-90.466041,34.674313],[-90.479719,34.659934],[-90.517169,34.630929],[-90.588419,34.670963],[-90.540952,34.550854],[-90.589921,34.484793],[-90.586011,34.462347],[-90.565809,34.435401],[-90.564588,34.415667],[-90.593372,34.371787],[-90.381972,34.423965],[-90.576003,34.015955],[-90.451644,33.811378],[-89.927475,33.676473],[-89.7852534,33.4867529],[-89.795588,33.6767],[-89.506921,33.684923],[-89.6631949,33.4531686],[-89.523466,33.285862],[-89.909572,33.32897],[-89.640516,32.954593],[-90.247659,32.030968],[-89.322692,32.223472],[-89.487882,31.771017],[-89.967812,31.682739],[-90.040451,31.359087],[-90.244515,31.487904],[-90.383568,31.308648],[-89.731673,31.004818],[-89.842876,30.66422],[-89.524504,30.180754],[-89.555591,30.180522],[-89.585951,30.151241],[-89.6861,30.178618],[-89.718086,30.16744],[-90.018018,30.320527],[-90.117383,30.366638],[-90.123813,30.3674],[-90.243828,30.363498],[-90.368007,30.055809],[-90.031474,30.034073],[-89.880839,30.147905],[-89.834428,30.096798],[-89.684704,30.172343],[-89.629469,30.143772],[-89.679034,30.106196],[-89.683233,30.076411],[-89.721913,30.065958],[-89.716378,30.026223],[-89.733324,30.022055],[-89.765078,30.043846],[-89.816998,30.045873],[-89.843609,30.023],[-89.859626,30.002101],[-89.836571,29.943738],[-89.805542,29.932405],[-89.775459,29.937417],[-89.748493,29.945831],[-89.730011,29.95846],[-89.713279,29.946029],[-89.747352,29.928838],[-89.742479,29.908171],[-89.713155,29.878692],[-89.690217,29.868104],[-89.641654,29.86345],[-89.593623,29.886038],[-89.5928695,29.9166493],[-89.5819111,29.9294529],[-89.581097,29.950979],[-89.5707078,29.9765011],[-89.581213,29.993308],[-89.555895,30.000026],[-89.5327025,30.0159801],[-89.489624,30.040622],[-89.494198,30.071521],[-89.393605,30.036206],[-89.409301,30.020266],[-89.427385,30.028057],[-89.446338,30.022216],[-89.463407,30.011023],[-89.356707,29.867898],[-89.414537,29.821446],[-89.372304,29.802074],[-89.345407,29.799106],[-89.337076,29.786897],[-89.293424,29.796338],[-89.28944,29.759703],[-89.388779,29.791178],[-89.416911,29.777715],[-89.453041,29.786234],[-89.706894,29.542915],[-89.677347,29.531738],[-89.696405,29.510924],[-89.676545,29.490438],[-89.644157,29.492495],[-89.548664,29.423735],[-89.576947,29.407791],[-89.521621,29.369773],[-89.264564,29.29513],[-89.203329,29.149019],[-89.648635,29.411937],[-89.629329,29.321636],[-89.677556,29.298605],[-89.691563,29.312462],[-89.71469,29.302701],[-89.78573,29.311247],[-89.819859,29.310242],[-89.837821,29.453466],[-89.814688,29.456401],[-89.762481,29.450233],[-89.758418,29.465393],[-89.904212,29.513237],[-90.105492,29.466381],[-90.055153,29.380495],[-90.162187,29.369185],[-90.096642,29.207606],[-90.082943,29.193684],[-90.063043,29.208861],[-90.061709,29.182836],[-90.129968,29.137275],[-90.222149,29.085863],[-90.275391,29.169759],[-90.269823,29.204811],[-90.284301,29.220278],[-90.292543,29.246262],[-90.308098,29.271916],[-90.303908,29.286364],[-90.361201,29.353453],[-90.554656,29.418215],[-90.608259,29.360879],[-90.584573,29.319557],[-90.59779,29.2923],[-90.580513,29.274137],[-90.587956,29.25771],[-90.583924,29.242887],[-90.564621,29.241902],[-90.570839,29.207263],[-90.609223,29.205057],[-90.625,29.237379],[-90.648913,29.258039],[-90.66838,29.205262],[-90.663546,29.17908],[-90.694449,29.119454],[-90.743018,29.144105],[-90.776763,29.135658],[-90.837271,29.102178],[-90.877584,29.104891],[-91.264418,29.471031]],[[-90.902366,33.659989],[-90.920651,33.530295],[-90.606102,33.602555],[-90.902366,33.659989]]]]},"properties":{"name":"SRMV","gridLoss":{"display":"4.88%","value":0.0488},"fuelMixCategories":{"renewable":3,"non-renewable":97,"non-renewable (excluding nuclear)":76.3,"renewable (excluding hydro)":1.7,"nuclear":20.7,"hydro":1.3},"fullName":"SERC Mississippi Valley","emissionFactor":{"co2EmissionRate":{"value":854.6,"display":"854.6","units":"lb/MWh"},"noxEmissionRate":{"value":0.6,"display":"0.6","units":"lb/MWh"},"so2EmissionRate":{"value":1,"display":"1.0","units":"lb/MWh"}},"fuelMix":{"coal":16.8,"oil":1,"gas":56.5,"nuclear":20.7,"hydro":1.3,"biomass":1.6,"wind":0,"solar":0.1,"geothermal":0,"otherFossilFuel":1.7,"otherUnknownFuel":0.3}}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-95.078303,35.638698],[-94.949681,35.870874],[-94.829207,35.638616],[-95.078303,35.638698]]],[[[-94.256064,36.617984],[-94.066376,36.830206],[-94.205451,37.022445],[-94.04382,36.960505],[-93.902818,37.175605],[-93.644907,37.141084],[-93.61246,36.849745],[-93.433743,36.743425],[-93.521129,36.498881],[-94.256064,36.617984]]],[[[-93.458966,37.73715],[-93.306859,37.887718],[-93.275234,37.477631],[-93.507001,37.541323],[-93.458966,37.73715]]],[[[-93.151045,36.497879],[-93.098295,36.52611],[-93.169908,36.583836],[-93.127128,36.707265],[-93.377839,36.904606],[-93.447694,37.275289],[-93.225291,37.224256],[-93.270767,37.353501],[-92.924718,37.684301],[-93.065199,38.062479],[-93.511421,37.927596],[-93.4366219,38.2035828],[-93.850265,38.184428],[-93.993868,38.386629],[-93.592728,38.587318],[-93.7116799,38.993812],[-93.303728,39.066975],[-93.10607,39.383725],[-92.873688,39.345443],[-92.863266,39.612994],[-93.645324,39.437945],[-93.505051,39.136733],[-93.915991,39.086053],[-93.871623,39.236089],[-94.431964,39.311454],[-94.338535,39.834466],[-94.580124,39.907557],[-94.326349,40.386657],[-94.708021,40.572242],[-94.537063,40.570795],[-94.213248,40.572005],[-94.03422,40.573587],[-93.816118,40.577128],[-93.720185,40.577542],[-93.552385,40.580335],[-93.39854,40.580235],[-93.4421522,40.6813899],[-93.556496,40.673538],[-93.556325,40.754179],[-93.189269,41.452544],[-92.5107515,41.1367921],[-92.410678,41.267266],[-92.042749,41.163436],[-91.715021,41.438603],[-91.582269,41.163291],[-91.331746,41.175969],[-91.295474,40.775014],[-91.111941,40.697019],[-91.090073,40.824639],[-90.962916,40.924958],[-90.951967,40.958238],[-90.958142,40.979768],[-90.945949,41.006495],[-90.942254,41.034703],[-90.946627,41.096633],[-90.989663,41.155716],[-91.009594,41.166239],[-91.041856,41.166461],[-91.112334,41.239003],[-91.114186,41.25003],[-91.08688,41.294372],[-91.073553,41.310481],[-91.071553,41.339651],[-91.065058,41.369102],[-91.051934,41.384483],[-91.045063,41.414873],[-90.781608,41.451995],[-90.781729,41.439766],[-90.810514,41.435991],[-90.791427,41.39856],[-90.849682,41.362591],[-90.821338,41.301409],[-90.494115,41.355118],[-90.34111,41.221413],[-90.254106,41.522531],[-89.895354,41.723942],[-89.747262,41.58441],[-88.4343959,41.716815],[-88.31451,41.577984],[-88.63504,41.471294],[-88.627265,41.270492],[-89.162265,41.103988],[-89.066934,40.926084],[-88.13074,40.93922],[-88.164646,41.130361],[-87.963534,41.001047],[-87.526642,41.12145],[-87.658747,39.135997],[-87.513347,38.956001],[-87.552028,38.860318],[-87.525894,38.848795],[-87.526816,38.81737],[-87.4956898,38.7844493],[-87.496282,38.766313],[-87.506172,38.733726],[-87.519511,38.710485],[-87.522039,38.693351],[-87.534484,38.68172],[-87.597248,38.665314],[-87.62098,38.637655],[-87.670071,38.545237],[-87.656145,38.521668],[-87.645372,38.513836],[-87.652366,38.50322],[-87.669811,38.507179],[-87.714047,38.47988],[-87.744639,38.477271],[-87.75618,38.462538],[-87.730821,38.449228],[-87.743772,38.413116],[-87.836496,38.285487],[-87.878303,38.30785],[-87.906842,38.269634],[-87.919292,38.275909],[-87.908915,38.290479],[-87.915554,38.300455],[-87.93733,38.292432],[-87.984781,38.228743],[-88.02803,37.799225],[-88.038769,37.784308],[-88.05097,37.7526],[-88.063802,37.738646],[-88.125034,37.707095],[-88.159373,37.661847],[-88.133393,37.574235],[-88.105586,37.55618],[-88.091037,37.537642],[-88.069019,37.525297],[-88.068117,37.481594],[-88.095819,37.473025],[-88.278499,37.453271],[-88.312586,37.440591],[-88.330623,37.429317],[-88.348405,37.410727],[-88.363888,37.401958],[-88.397341,37.421644],[-88.410076,37.425241],[-88.476592,37.386876],[-88.515939,37.284044],[-88.447765,37.203527],[-88.432376,37.161645],[-88.424382,37.152424],[-88.458949,37.073797],[-88.504438,37.065265],[-88.545404,37.070004],[-88.853851,37.20349],[-88.858267,37.196195],[-88.831936,37.185444],[-88.825379,37.143845],[-88.789937,37.138073],[-88.797935,37.037363],[-88.883654,36.961325],[-88.886571,37.038391],[-88.95016,37.073876],[-88.931623,37.116933],[-88.951878,37.122908],[-88.944789,37.167647],[-88.967534,37.172235],[-88.97879,37.197773],[-89.154505,37.088907],[-89.179046,37.02108],[-89.166447,37.003338],[-89.132686,36.9822],[-89.118301,36.981879],[-89.0994937,36.9639978],[-89.1591026,36.6663964],[-89.2272026,36.5694897],[-89.258319,36.564948],[-89.3262042,36.6319806],[-89.356511,36.628439],[-89.453082,36.461285],[-89.566818,36.564216],[-89.733096,36.000608],[-90.37789,35.995683],[-89.959267,36.146723],[-89.889931,36.386376],[-90.154611,36.497972],[-91.449998,36.497833],[-91.456194,36.646885],[-91.672344,36.499463],[-93.151045,36.497879]],[[-92.834918,39.085066],[-92.790369,39.343587],[-93.056095,39.238288],[-92.834918,39.085066]]]]},"properties":{"name":"SRMW","gridLoss":{"display":"4.88%","value":0.0488},"fuelMixCategories":{"renewable":5.3,"non-renewable":94.7,"non-renewable (excluding nuclear)":79.9,"renewable (excluding hydro)":4.3,"nuclear":14.8,"hydro":1},"fullName":"SERC Midwest","emissionFactor":{"co2EmissionRate":{"value":1664.2,"display":"1,664.2","units":"lb/MWh"},"noxEmissionRate":{"value":1.1,"display":"1.1","units":"lb/MWh"},"so2EmissionRate":{"value":2.5,"display":"2.5","units":"lb/MWh"}},"fuelMix":{"coal":70.2,"oil":0.1,"gas":9.4,"nuclear":14.8,"hydro":1,"biomass":0.1,"wind":4.2,"solar":0,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0.2}}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-85.4309192,29.9500295],[-85.482163,29.963587],[-85.4863802,29.9781767],[-85.526732,30.006543],[-85.551759,30.030244],[-85.686991,30.120875],[-85.391448,30.025415],[-85.389816,29.95906],[-85.421959,29.966564],[-85.4309192,29.9500295]]],[[[-91.512577,31.318427],[-91.403916,31.589766],[-91.422716,31.597066],[-91.462018,31.586666],[-91.486519,31.586566],[-91.51474,31.609413],[-91.338414,31.851261],[-90.907741,32.131888],[-90.112502,31.769705],[-90.691875,31.63964],[-90.680279,31.188344],[-90.6948847,31.4974336],[-90.940168,31.610553],[-91.042066,31.336082],[-90.869887,31.169729],[-91.196401,31.173713],[-91.233464,31.08701],[-91.20364,31.046735],[-91.235097,31.05278],[-91.244891,31.032735],[-91.237914,31.020618],[-91.250109,30.999272],[-91.497391,30.999007],[-91.636942,30.999417],[-91.654027,31.255753],[-91.641253,31.266917],[-91.621359,31.267812],[-91.574494,31.26129],[-91.558685,31.262176],[-91.518578,31.275284],[-91.508859,31.291644],[-91.512577,31.318427]]],[[[-90.902366,33.659989],[-90.606102,33.602555],[-90.920651,33.530295],[-90.902366,33.659989]]],[[[-83.352486,34.715994],[-83.551766,34.834252],[-83.323927,34.789542],[-83.352486,34.715994]]],[[[-89.927475,33.676473],[-89.795588,33.6767],[-89.7852534,33.4867529],[-89.927475,33.676473]]],[[[-85.616044,30.134255],[-85.646311,30.26179],[-85.842166,30.286105],[-85.849188,30.23184],[-85.743133,30.211586],[-85.751839,30.170958],[-85.709571,30.147151],[-85.733052,30.123177],[-85.786401,30.163451],[-85.8400946,30.1950833],[-85.922584,30.237926],[-86.085024,30.302118],[-86.281681,30.359286],[-86.34612,30.371658],[-86.4338159,30.3824836],[-86.5036914,30.3824072],[-86.5157627,30.3968775],[-86.119112,30.379095],[-86.21144,30.481813],[-87.189596,30.35072],[-86.927725,30.460658],[-86.999419,30.584465],[-87.2671131,30.3441234],[-87.447037,30.317795],[-87.373629,30.459225],[-87.396659,30.453957],[-87.399813,30.42387],[-87.429948,30.417641],[-87.46272,30.362495],[-87.539801,30.306091],[-87.599182,30.343837],[-87.573012,30.270718],[-87.6559025,30.2500797],[-87.688688,30.247215],[-87.720928,30.254598],[-87.760478,30.249674],[-87.833619,30.227854],[-88.008611,30.223999],[-87.756008,30.277499],[-87.771094,30.310381],[-87.800447,30.326412],[-87.828114,30.352082],[-87.836542,30.365801],[-87.834836,30.412977],[-87.907454,30.411923],[-87.975962,30.715333],[-88.055699,30.656191],[-88.100857,30.510131],[-88.103029,30.491128],[-88.097137,30.471881],[-88.106964,30.453747],[-88.103865,30.425058],[-88.107169,30.378412],[-88.111657,30.36425],[-88.128053,30.33851],[-88.155085,30.327495],[-88.191965,30.317094],[-88.187132,30.360661],[-88.209887,30.359879],[-88.224781,30.371061],[-88.282658,30.388778],[-88.299787,30.385941],[-88.337484,30.404848],[-88.359315,30.405415],[-88.380748,30.398794],[-88.412001,30.383638],[-88.406118,30.3618],[-88.429585,30.354263],[-88.44492,30.354156],[-88.446626,30.337671],[-88.456082,30.328068],[-88.478558,30.318506],[-88.722577,30.342002],[-88.74494,30.346876],[-88.773658,30.366791],[-88.812205,30.385538],[-88.849708,30.431352],[-88.928501,30.432977],[-89.524504,30.180754],[-89.842876,30.66422],[-89.731673,31.004818],[-90.383568,31.308648],[-90.244515,31.487904],[-90.040451,31.359087],[-89.967812,31.682739],[-89.487882,31.771017],[-89.322692,32.223472],[-88.9260077,32.2241617],[-88.911018,31.875149],[-88.699962,32.018133],[-88.65426,31.950088],[-88.630915,31.964626],[-88.603352,31.939439],[-88.60332,31.954848],[-88.532602,31.928868],[-88.500304,31.931387],[-88.488827,31.925122],[-88.468792,31.930355],[-88.354292,32.87513],[-88.331014,33.07251],[-88.27886,33.500118],[-88.217479,33.978845],[-88.194901,33.981798],[-88.191193,33.933115],[-88.18683,34.019067],[-87.889228,34.112252],[-87.863902,33.812155],[-87.019574,34.129522],[-87.064067,33.841072],[-86.686296,33.797345],[-86.979894,33.703858],[-86.990907,33.238251],[-86.2187596,33.9855594],[-85.9691718,33.9145963],[-86.145563,33.679098],[-85.920884,33.596918],[-85.3848187,33.8919056],[-85.561311,34.749589],[-85.59711,34.933885],[-85.605166,34.984679],[-84.714639,34.988024],[-84.713785,34.966293],[-84.7431772,34.9397836],[-84.675458,34.929689],[-84.724582,34.832396],[-84.616784,34.800769],[-84.582345,34.82398],[-84.622829,34.857155],[-84.621483,34.98833],[-84.359363,34.988269],[-84.231585,34.779039],[-83.9632418,34.987434],[-83.638203,34.622165],[-83.338384,34.686995],[-83.304642,34.669562],[-83.293183,34.654296],[-83.255282,34.637697],[-83.232581,34.611598],[-83.208832,34.610706],[-83.19738,34.603198],[-83.172579,34.607798],[-83.140777,34.5627],[-83.122901,34.56013],[-83.084856,34.530968],[-83.072746,34.50435],[-83.034712,34.483495],[-82.995857,34.47229],[-82.97957,34.482702],[-82.954668,34.477302],[-82.940867,34.486103],[-82.922866,34.481403],[-82.902666,34.485903],[-82.882865,34.479003],[-82.755029,34.276067],[-82.742909,34.250926],[-82.740651,34.207624],[-82.717508,34.150504],[-82.557392,33.9461485],[-82.5428989,33.9410901],[-82.5250426,33.9434558],[-82.51295,33.93697],[-82.494812,33.911712],[-82.4560724,33.882392],[-82.429165,33.865844],[-82.4082166,33.8661835],[-82.346933,33.834299],[-82.299281,33.798939],[-82.2488268,33.7540027],[-82.196583,33.630583],[-81.934137,33.468337],[-81.913726,33.441453],[-81.931389,33.428475],[-81.925069,33.412348],[-81.935085,33.397244],[-81.924979,33.375141],[-81.940044,33.347394],[-81.7442683,33.1419545],[-81.7048399,33.1165922],[-81.6794852,33.1117391],[-81.645933,33.094352],[-81.6105542,33.0934442],[-81.5132675,33.0286908],[-81.49868,33.011337],[-81.5006862,32.9329838],[-81.483168,32.920964],[-81.4801736,32.8981357],[-81.451351,32.868584],[-81.457062,32.85039],[-81.426476,32.840773],[-81.418497,32.815664],[-81.427506,32.702243],[-81.393034,32.651544],[-81.41866,32.629393],[-81.406494,32.613047],[-81.381,32.589652],[-81.358523,32.582322],[-81.355619,32.571408],[-81.281257,32.549071],[-81.279694,32.536386],[-81.249828,32.517541],[-81.201429,32.469086],[-81.205356,32.451993],[-81.204925,32.422725],[-81.1724,32.362236],[-81.155133,32.350001],[-81.128643,32.34086],[-81.123634,32.294597],[-81.132334,32.269898],[-81.145235,32.263998],[-81.155483,32.240407],[-81.117234,32.117605],[-80.9081922,32.046921],[-80.892674,32.044074],[-80.866651,32.018505],[-80.8418237,32.0234346],[-80.847839,31.9877332],[-80.992276,31.858199],[-81.002282,31.867671],[-81.018808,31.868489],[-81.046592,31.877369],[-81.070157,31.87635],[-81.08835,31.882013],[-81.264296,31.531264],[-81.1993117,31.5367823],[-81.176084,31.516131],[-81.191973,31.501071],[-81.20358,31.476681],[-81.250037,31.421867],[-81.263365,31.391783],[-81.278137,31.378601],[-81.317772,31.411111],[-81.286578,31.323753],[-81.3961662,31.3111045],[-81.436058,31.227134],[-81.444124,30.709714],[-81.949981,30.827831],[-81.964064,30.818038],[-81.962682,30.796062],[-81.977809,30.776694],[-81.995312,30.786775],[-82.015802,30.791669],[-82.023825,30.783247],[-82.011141,30.763752],[-82.045386,30.728327],[-82.035829,30.384938],[-82.16551,30.357943],[-82.2147951,30.5684331],[-82.499849,30.586802],[-82.749855,30.601156],[-83.49954,30.645653],[-84.046606,30.674201],[-84.47441,30.692794],[-84.634212,30.701511],[-84.864694,30.711543],[-84.920023,30.765791],[-84.936824,30.81849],[-84.935824,30.83379],[-84.925724,30.843789],[-85.001901,31.000681],[-85.243632,31.000884],[-85.322617,30.998601],[-85.616044,30.134255]]]]},"properties":{"name":"SRSO","gridLoss":{"display":"4.88%","value":0.0488},"fuelMixCategories":{"renewable":7.7,"non-renewable":92.3,"non-renewable (excluding nuclear)":73.8,"renewable (excluding hydro)":4.7,"nuclear":18.5,"hydro":3},"fullName":"SERC South","emissionFactor":{"co2EmissionRate":{"value":1027.9,"display":"1,027.9","units":"lb/MWh"},"noxEmissionRate":{"value":0.5,"display":"0.5","units":"lb/MWh"},"so2EmissionRate":{"value":0.3,"display":"0.3","units":"lb/MWh"}},"fuelMix":{"coal":26.3,"oil":0.2,"gas":47.3,"nuclear":18.5,"hydro":3,"biomass":3.6,"wind":0,"solar":1,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0}}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-89.322692,32.223472],[-90.247659,32.030968],[-89.640516,32.954593],[-89.909572,33.32897],[-89.523466,33.285862],[-89.6631949,33.4531686],[-89.506921,33.684923],[-89.795588,33.6767],[-89.927475,33.676473],[-90.451644,33.811378],[-90.576003,34.015955],[-90.381972,34.423965],[-90.593372,34.371787],[-90.564588,34.415667],[-90.565809,34.435401],[-90.586011,34.462347],[-90.589921,34.484793],[-90.540952,34.550854],[-90.588419,34.670963],[-90.517169,34.630929],[-90.479719,34.659934],[-90.466041,34.674313],[-90.463734,34.691094],[-90.473636,34.700319],[-90.568082,34.724802],[-90.451758,34.741905],[-90.483969,34.877176],[-90.414864,34.831847],[-90.35548,34.852068],[-90.340236,34.860348],[-90.323051,34.84643],[-90.244477,34.937596],[-90.251993,34.950914],[-90.29535,34.975731],[-90.309297,34.995695],[-90.043036,34.994964],[-90.037237,35.012404],[-90.051829,35.101413],[-90.137074,35.07491],[-90.095137,35.180615],[-89.699755,35.364192],[-89.791418,35.622573],[-89.896503,35.54692],[-89.942877,35.557922],[-89.957924,35.585499],[-89.950279,35.738493],[-89.905539,35.759064],[-89.872846,35.741299],[-89.846344,35.755732],[-89.821217,35.756716],[-89.704388,35.819607],[-89.765689,35.8913],[-89.644838,35.904352],[-89.71304,35.961645],[-89.718801,35.985015],[-89.733096,36.000608],[-89.566818,36.564216],[-89.453082,36.461285],[-89.356511,36.628439],[-89.3262042,36.6319806],[-89.258319,36.564948],[-89.2272026,36.5694897],[-89.1591026,36.6663964],[-89.0994937,36.9639978],[-89.118301,36.981879],[-89.132686,36.9822],[-89.166447,37.003338],[-89.179046,37.02108],[-89.154505,37.088907],[-88.97879,37.197773],[-88.967534,37.172235],[-88.944789,37.167647],[-88.951878,37.122908],[-88.931623,37.116933],[-88.95016,37.073876],[-88.886571,37.038391],[-88.883654,36.961325],[-88.797935,37.037363],[-88.789937,37.138073],[-88.825379,37.143845],[-88.831936,37.185444],[-88.858267,37.196195],[-88.853851,37.20349],[-88.545404,37.070004],[-88.504438,37.065265],[-88.458949,37.073797],[-88.424382,37.152424],[-88.432376,37.161645],[-88.447765,37.203527],[-88.515939,37.284044],[-88.476592,37.386876],[-88.410076,37.425241],[-88.397341,37.421644],[-88.363888,37.401958],[-88.348405,37.410727],[-88.330623,37.429317],[-88.312586,37.440591],[-88.278499,37.453271],[-88.095819,37.473025],[-88.068117,37.481594],[-88.069019,37.525297],[-88.091037,37.537642],[-88.105586,37.55618],[-88.133393,37.574235],[-88.159373,37.661847],[-88.125034,37.707095],[-88.063802,37.738646],[-88.05097,37.7526],[-88.038769,37.784308],[-88.02803,37.799225],[-88.011255,37.801535],[-87.959004,37.772732],[-87.907314,37.80713],[-87.909906,37.842383],[-87.936229,37.867937],[-87.938366,37.890802],[-87.903623,37.925604],[-87.687689,37.903457],[-87.666883,37.896644],[-87.66282,37.881449],[-87.679188,37.836321],[-87.615399,37.831975],[-87.58873,37.860985],[-87.592214,37.887064],[-87.619215,37.905978],[-87.628416,37.92145],[-87.601417,37.972542],[-87.577916,37.971542],[-87.550334,37.92489],[-87.504333,37.90806],[-87.450602,37.941451],[-87.38084,37.93582],[-87.361639,37.921004],[-87.335398,37.907565],[-87.302789,37.898685],[-87.21912,37.848383],[-87.162319,37.84016],[-87.111133,37.782513],[-87.033444,37.906593],[-86.598108,37.867382],[-86.364194,38.19821],[-86.178984,38.011309],[-86.108156,38.013416],[-86.078737,38.000072],[-86.063021,37.972897],[-86.038189,37.95935],[-86.032469,37.9901],[-85.951468,38.005608],[-85.924793,38.024211],[-85.423077,38.531581],[-85.416177,38.564949],[-85.439198,38.608589],[-85.438743,38.65932],[-85.453924,38.679883],[-85.452114,38.709349],[-85.434066,38.729456],[-85.258846,38.737755],[-85.208008,38.69295],[-85.172968,38.687933],[-84.813636,38.78524],[-84.78458,38.87532],[-84.812047,38.89494],[-84.863744,38.898015],[-84.877029,38.909017],[-84.897171,39.052408],[-84.830882,39.102062],[-84.783992,39.118061],[-84.754449,39.146659],[-84.455343,39.120361],[-84.304699,39.006456],[-84.295076,38.968296],[-84.286837,38.953823],[-84.257011,38.923208],[-84.236564,38.896372],[-84.232343,38.884326],[-84.233265,38.842672],[-84.230182,38.826547],[-84.212905,38.805707],[-84.091526,38.774239],[-84.044487,38.770573],[-83.975486,38.787437],[-83.943979,38.783617],[-83.859028,38.756794],[-83.668111,38.628069],[-82.894193,38.756577],[-82.876193,38.748077],[-82.870392,38.722077],[-82.876892,38.698178],[-82.874892,38.682828],[-82.847187,38.595167],[-82.820162,38.572703],[-82.795649,38.561552],[-82.766064,38.56056],[-82.758205,38.554133],[-82.768177,38.521446],[-82.742641,38.482365],[-82.920234,38.280857],[-82.664866,38.264702],[-82.424447,37.802653],[-82.932488,37.353754],[-83.350269,37.486641],[-83.3632,37.125741],[-82.869184,36.974183],[-82.878639,36.893982],[-82.851176,36.870093],[-82.848203,36.831783],[-82.891619,36.805646],[-82.8534944,36.7758124],[-82.964383,36.696982],[-82.887844,36.637251],[-82.913783,36.632185],[-82.94125,36.614777],[-82.979024,36.600262],[-82.9847325,36.5937561],[-82.663287,36.593501],[-82.480689,36.595702],[-82.466614,36.594482],[-82.221458,36.596179],[-81.934145,36.594214],[-81.922645,36.616214],[-81.646901,36.611918],[-81.677535,36.588118],[-81.677337,36.570319],[-81.689537,36.560919],[-81.707772,36.52395],[-81.694533,36.473283],[-81.715356,36.457653],[-81.71492,36.436869],[-81.720734,36.422538],[-81.741715,36.412389],[-81.717406,36.34778],[-81.797545,36.358428],[-81.832925,36.347429],[-81.855095,36.337187],[-81.908137,36.302014],[-82.033141,36.120423],[-82.213852,36.159112],[-82.245053,36.131011],[-82.264254,36.127211],[-82.288955,36.13571],[-82.336057,36.11501],[-82.355658,36.11531],[-82.410159,36.082709],[-82.460658,36.007809],[-82.557544,35.953161],[-82.582483,35.956224],[-82.579933,35.774743],[-82.881372,35.680787],[-82.89463,35.5114],[-83.047336,35.694612],[-83.008707,35.027519],[-83.108226,35.000773],[-83.129887,34.931916],[-83.15891,34.929202],[-83.183012,34.902305],[-83.202713,34.894085],[-83.201238,34.884446],[-83.2296269,34.8798339],[-83.323927,34.789542],[-83.551766,34.834252],[-83.352486,34.715994],[-83.338384,34.686995],[-83.638203,34.622165],[-83.9632418,34.987434],[-84.231585,34.779039],[-84.359363,34.988269],[-84.621483,34.98833],[-84.622829,34.857155],[-84.582345,34.82398],[-84.616784,34.800769],[-84.724582,34.832396],[-84.675458,34.929689],[-84.7431772,34.9397836],[-84.713785,34.966293],[-84.714639,34.988024],[-85.605166,34.984679],[-85.59711,34.933885],[-85.561311,34.749589],[-85.3848187,33.8919056],[-85.920884,33.596918],[-86.145563,33.679098],[-85.9691718,33.9145963],[-86.2187596,33.9855594],[-86.990907,33.238251],[-86.979894,33.703858],[-86.686296,33.797345],[-87.064067,33.841072],[-87.019574,34.129522],[-87.863902,33.812155],[-87.889228,34.112252],[-88.18683,34.019067],[-88.191193,33.933115],[-88.194901,33.981798],[-88.217479,33.978845],[-88.27886,33.500118],[-88.331014,33.07251],[-88.354292,32.87513],[-88.468792,31.930355],[-88.488827,31.925122],[-88.500304,31.931387],[-88.532602,31.928868],[-88.60332,31.954848],[-88.603352,31.939439],[-88.630915,31.964626],[-88.65426,31.950088],[-88.699962,32.018133],[-88.911018,31.875149],[-88.9260077,32.2241617],[-89.322692,32.223472]]]},"properties":{"name":"SRTV","gridLoss":{"display":"4.88%","value":0.0488},"fuelMixCategories":{"renewable":10.5,"non-renewable":89.5,"non-renewable (excluding nuclear)":62,"renewable (excluding hydro)":0.9,"nuclear":27.5,"hydro":9.5},"fullName":"SERC Tennessee Valley","emissionFactor":{"co2EmissionRate":{"value":1031.5,"display":"1,031.5","units":"lb/MWh"},"noxEmissionRate":{"value":0.6,"display":"0.6","units":"lb/MWh"},"so2EmissionRate":{"value":0.6,"display":"0.6","units":"lb/MWh"}},"fuelMix":{"coal":35.5,"oil":0.1,"gas":26.5,"nuclear":27.5,"hydro":9.5,"biomass":0.8,"wind":0,"solar":0.2,"geothermal":0,"otherFossilFuel":0,"otherUnknownFuel":0}}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-79.476638,38.457228],[-79.245285,38.335886],[-79.258418,37.960018],[-79.043955,37.931662],[-79.209995,37.700523],[-79.571185,37.601701],[-79.785978,37.792912],[-80.222893,37.544759],[-80.309347,37.527381],[-80.330306,37.536245],[-80.328504,37.564315],[-80.25892,37.595499],[-80.220985,37.627767],[-80.296107,37.691791],[-80.3362231,37.6869601],[-80.3668555,37.6359929],[-80.428725,37.6140245],[-80.6818231,37.6018274],[-80.531975,37.861401],[-80.361694,37.689638],[-80.18798,38.039103],[-80.106891,38.055846],[-79.959845,38.063698],[-79.926331,38.107152],[-79.938952,38.111619],[-79.945158,38.132009],[-79.921027,38.179955],[-79.846261,38.24027],[-79.82101,38.248278],[-79.788945,38.268704],[-79.795448,38.290228],[-79.809935,38.304682],[-79.764175,38.356635],[-79.742772,38.353367],[-79.727053,38.362234],[-79.689675,38.43144],[-79.688882,38.458715],[-79.699424,38.474715],[-79.694507,38.494233],[-79.680075,38.510618],[-79.662074,38.515518],[-79.672975,38.528717],[-79.662875,38.570416],[-79.649075,38.591516],[-79.476638,38.457228]]],[[[-75.749608,35.189439],[-75.5195217,35.2778472],[-75.5214147,35.7731084],[-75.4600257,35.5917523],[-75.5246412,35.2213736],[-75.749608,35.189439]]],[[[-80.9081922,32.046921],[-81.117234,32.117605],[-81.155483,32.240407],[-81.145235,32.263998],[-81.132334,32.269898],[-81.123634,32.294597],[-81.128643,32.34086],[-81.155133,32.350001],[-81.1724,32.362236],[-81.204925,32.422725],[-81.205356,32.451993],[-81.201429,32.469086],[-81.249828,32.517541],[-81.279694,32.536386],[-81.281257,32.549071],[-81.355619,32.571408],[-81.358523,32.582322],[-81.381,32.589652],[-81.406494,32.613047],[-81.41866,32.629393],[-81.393034,32.651544],[-81.427506,32.702243],[-81.418497,32.815664],[-81.426476,32.840773],[-81.457062,32.85039],[-81.451351,32.868584],[-81.4801736,32.8981357],[-81.483168,32.920964],[-81.5006862,32.9329838],[-81.49868,33.011337],[-81.5132675,33.0286908],[-81.6105542,33.0934442],[-81.645933,33.094352],[-81.6794852,33.1117391],[-81.7048399,33.1165922],[-81.7442683,33.1419545],[-81.940044,33.347394],[-81.924979,33.375141],[-81.935085,33.397244],[-81.925069,33.412348],[-81.931389,33.428475],[-81.913726,33.441453],[-81.934137,33.468337],[-82.196583,33.630583],[-82.2488268,33.7540027],[-82.299281,33.798939],[-82.346933,33.834299],[-82.4082166,33.8661835],[-82.429165,33.865844],[-82.4560724,33.882392],[-82.494812,33.911712],[-82.51295,33.93697],[-82.5250426,33.9434558],[-82.5428989,33.9410901],[-82.557392,33.9461485],[-82.717508,34.150504],[-82.740651,34.207624],[-82.742909,34.250926],[-82.755029,34.276067],[-82.882865,34.479003],[-82.902666,34.485903],[-82.922866,34.481403],[-82.940867,34.486103],[-82.954668,34.477302],[-82.97957,34.482702],[-82.995857,34.47229],[-83.034712,34.483495],[-83.072746,34.50435],[-83.084856,34.530968],[-83.122901,34.56013],[-83.140777,34.5627],[-83.172579,34.607798],[-83.19738,34.603198],[-83.208832,34.610706],[-83.232581,34.611598],[-83.255282,34.637697],[-83.293183,34.654296],[-83.304642,34.669562],[-83.338384,34.686995],[-83.352486,34.715994],[-83.323927,34.789542],[-83.2296269,34.8798339],[-83.201238,34.884446],[-83.202713,34.894085],[-83.183012,34.902305],[-83.15891,34.929202],[-83.129887,34.931916],[-83.108226,35.000773],[-83.008707,35.027519],[-83.047336,35.694612],[-82.89463,35.5114],[-82.881372,35.680787],[-82.579933,35.774743],[-82.582483,35.956224],[-82.557544,35.953161],[-82.460658,36.007809],[-82.410159,36.082709],[-82.355658,36.11531],[-82.336057,36.11501],[-82.288955,36.13571],[-82.264254,36.127211],[-82.245053,36.131011],[-82.213852,36.159112],[-82.033141,36.120423],[-81.908137,36.302014],[-81.855095,36.337187],[-81.832925,36.347429],[-81.797545,36.358428],[-81.717406,36.34778],[-81.741715,36.412389],[-81.720734,36.422538],[-81.71492,36.436869],[-81.715356,36.457653],[-81.694533,36.473283],[-81.707772,36.52395],[-81.689537,36.560919],[-81.677337,36.570319],[-81.677535,36.588118],[-78.8807084,36.5420422],[-78.881811,36.611028],[-79.178188,36.708887],[-78.810238,36.721456],[-78.8371378,36.8762389],[-79.198127,36.769038],[-79.4984508,37.0604758],[-79.20683,37.190729],[-78.995267,37.038296],[-78.870948,37.242973],[-78.395595,37.159218],[-78.185321,37.444538],[-77.846931,37.414113],[-77.720342,37.587466],[-78.195889,37.953517],[-78.022372,38.141463],[-78.272625,38.207178],[-78.394662,38.009079],[-78.592814,38.292054],[-78.8114417,38.1579762],[-78.704207,38.494586],[-78.9338772,38.3745169],[-79.020527,38.579829],[-78.5392626,38.4768197],[-78.641034,38.60616],[-78.395431,38.915862],[-78.436659,39.141692],[-78.2575467,39.2758981],[-78.298154,39.310901],[-78.278439,39.321135],[-78.276729,39.372069],[-78.257624,39.394801],[-78.245363,39.402714],[-77.828806,39.132773],[-77.7349,39.31241],[-77.7189303,39.3212857],[-77.674908,39.324252],[-77.568018,39.306448],[-77.46021,39.228359],[-77.527411,39.146635],[-77.524653,39.127804],[-77.503682,39.115185],[-77.452831,39.072468],[-77.38568,39.061987],[-77.340904,39.063082],[-77.254614,39.029792],[-77.244905,39.019413],[-77.255674,39.00161],[-77.244858,38.982601],[-77.197494,38.966958],[-77.181645,38.968889],[-77.146601,38.964211],[-77.0328493,38.8550577],[-77.042794,38.718672],[-77.052739,38.709894],[-77.073995,38.711899],[-77.121101,38.686616],[-77.130201,38.635018],[-77.246404,38.593419],[-77.309648,38.495621],[-77.323297,38.46597],[-77.325605,38.443196],[-77.279634,38.339444],[-77.164636,38.345283],[-77.137734,38.368024],[-77.084933,38.368417],[-77.041506,38.400694],[-77.030683,38.311623],[-76.9616788,38.2558306],[-76.962376,38.230094],[-76.948924,38.208261],[-76.910833,38.197074],[-76.875272,38.172208],[-76.838796,38.163477],[-76.6103562,38.148513],[-76.236743,37.888644],[-76.311173,37.833422],[-76.30682,37.79859],[-76.315112,37.783231],[-76.306688,37.765793],[-76.320587,37.73601],[-76.302545,37.689],[-76.3440424,37.6627361],[-76.279204,37.617422],[-76.359531,37.521425],[-76.353629,37.505569],[-76.327388,37.485706],[-76.304108,37.488721],[-76.262055,37.452506],[-76.252049,37.43641],[-76.246307,37.387313],[-76.247853,37.375742],[-76.279131,37.356486],[-76.272456,37.31652],[-76.308487,37.329607],[-76.312155,37.34471],[-76.337446,37.366305],[-76.415168,37.402134],[-76.445311,37.366462],[-76.415385,37.339999],[-76.411126,37.309216],[-76.393757,37.313073],[-76.378157,37.28735],[-76.373119,37.271208],[-76.383742,37.265026],[-76.412444,37.264828],[-76.463958,37.250022],[-76.48162,37.255053],[-76.505998,37.247385],[-76.737023,37.485999],[-76.806379,37.506426],[-76.615792,37.300162],[-76.470411,37.215502],[-76.4224,37.22068],[-76.413413,37.160269],[-76.349936,37.149926],[-76.308776,37.137018],[-76.294355,37.127062],[-76.270218,37.086625],[-76.294596,37.030233],[-76.304181,37.001478],[-76.410463,36.924213],[-76.255939,36.958631],[-76.09499,36.908558],[-76.044256,36.9296901],[-76.009292,36.929517],[-75.9891213,36.9098237],[-75.545302,35.806774],[-75.729428,36.007041],[-75.6838732,36.0271834],[-75.737762,36.041488],[-75.756851,36.178978],[-75.820789,36.294578],[-75.842857,36.424071],[-75.856112,36.424364],[-75.874832,36.474569],[-75.876735,36.529914],[-75.885535,36.542381],[-75.886283,36.572081],[-75.89587,36.608147],[-75.952183,36.722367],[-75.993614,36.571735],[-75.921061,36.564414],[-75.92218,36.549863],[-75.909264,36.538389],[-75.912127,36.486906],[-75.962035,36.495414],[-76.022133,36.466345],[-76.013573,36.44839],[-75.988246,36.431628],[-75.99557,36.409348],[-75.978809,36.399783],[-75.95905,36.381494],[-75.952037,36.365039],[-75.923803,36.424233],[-75.789455,36.078671],[-75.850073,36.105259],[-75.875465,36.183796],[-75.91013,36.212336],[-75.917566,36.237608],[-75.943312,36.256801],[-75.9472,36.279324],[-75.965969,36.295367],[-75.969362,36.316505],[-76.01867,36.346846],[-75.951226,36.275488],[-75.969376,36.266417],[-75.957568,36.202055],[-75.94179,36.181687],[-75.918092,36.173069],[-75.923961,36.163691],[-75.994709,36.178224],[-76.02148,36.190166],[-76.031183,36.20606],[-76.056526,36.210612],[-76.076681,36.200632],[-76.079237,36.186254],[-76.059267,36.151251],[-76.071857,36.140689],[-76.222285,36.09704],[-76.239583,36.099822],[-76.284103,36.114768],[-76.301995,36.113821],[-76.304306,36.094306],[-76.404312,36.079021],[-76.453912,36.037529],[-76.460332,36.025099],[-76.516686,36.007421],[-76.6841226,36.0540219],[-76.727116,35.941997],[-76.398765,35.982734],[-76.370688,35.9351],[-76.062373,35.990883],[-76.04331,35.64795],[-75.986011,35.888881],[-75.835101,35.925153],[-75.857611,35.945531],[-75.856531,35.957201],[-75.8341,35.969349],[-75.809433,35.958955],[-75.810522,35.94904],[-75.784222,35.934405],[-75.781864,35.918376],[-75.769144,35.909828],[-75.764396,35.891515],[-75.748937,35.883754],[-75.729186,35.825114],[-75.716369,35.6919],[-75.73141,35.681337],[-75.75216,35.704595],[-75.76679,35.7061],[-75.779794,35.686703],[-75.730453,35.626536],[-76.150413,35.336955],[-76.532869,35.401295],[-76.476669,35.564916],[-76.575084,35.38823],[-77.041313,35.536287],[-76.486169,35.313954],[-76.71635,35.135184],[-76.565449,35.171019],[-76.699037,35.02108],[-76.483866,34.987934],[-76.49754,35.008138],[-76.483088,35.043777],[-76.459135,35.024251],[-76.472069,35.061552],[-76.454748,35.069479],[-76.432549,35.048733],[-76.42315,34.97796],[-76.461867,34.942736],[-76.422764,34.951007],[-76.382641,34.930501],[-76.332759,34.920867],[-76.313288,34.906157],[-76.346123,34.873798],[-76.36798,34.874279],[-76.382328,34.861807],[-76.404474,34.887125],[-76.515604,34.718072],[-77.130961,34.678843],[-77.177983,34.617994],[-77.217494,34.600773],[-77.26626,34.572297],[-77.314503,34.53997],[-77.3416414,34.5257949],[-77.391613,34.504558],[-77.46471,34.47047],[-77.5540276,34.4193035],[-77.5852592,34.398749],[-77.687227,34.320445],[-77.741103,34.271727],[-77.829182,34.175691],[-77.943302,33.919356],[-77.956882,33.877791],[-77.959674,33.839902],[-78.019563,33.886963],[-78.089706,33.905011],[-78.342796,33.905963],[-78.453822,33.881676],[-78.515643,33.862576],[-78.549092,33.847023],[-78.584123,33.844314],[-78.658914,33.821699],[-78.7949393,33.7560357],[-78.933871,33.64437],[-78.995686,33.579348],[-79.023711,33.545642],[-79.028247,33.562381],[-79.049367,33.539645],[-79.138267,33.408698],[-79.152797,33.35052],[-79.163125,33.320924],[-79.179945,33.249713],[-79.181282,33.208388],[-79.289225,33.340465],[-79.282182,33.279001],[-79.212563,33.245625],[-79.204054,33.197929],[-79.181706,33.190632],[-79.190507,33.169938],[-79.246076,33.124784],[-79.992685,32.607977],[-80.036821,32.609342],[-80.081362,32.602192],[-80.162648,32.560787],[-80.185573,32.568694],[-80.332575,32.478027],[-80.472068,32.496964],[-80.9081922,32.046921]]]]},"properties":{"name":"SRVC","gridLoss":{"display":"4.88%","value":0.0488},"fuelMixCategories":{"renewable":7.7,"non-renewable":92.3,"non-renewable (excluding nuclear)":54.5,"renewable (excluding hydro)":5.4,"nuclear":37.8,"hydro":2.3},"fullName":"SERC Virginia/Carolina","emissionFactor":{"co2EmissionRate":{"value":743.3,"display":"743.3","units":"lb/MWh"},"noxEmissionRate":{"value":0.4,"display":"0.4","units":"lb/MWh"},"so2EmissionRate":{"value":0.3,"display":"0.3","units":"lb/MWh"}},"fuelMix":{"coal":19.1,"oil":0.6,"gas":34.6,"nuclear":37.8,"hydro":2.3,"biomass":2.8,"wind":0.4,"solar":2.2,"geothermal":0,"otherFossilFuel":0.1,"otherUnknownFuel":0.1}}} ]} \ No newline at end of file diff --git a/data/zip.csv b/app/data/zip.csv similarity index 95% rename from data/zip.csv rename to app/data/zip.csv index 7ce66f1..24e8b82 100644 --- a/data/zip.csv +++ b/app/data/zip.csv @@ -152,100 +152,74 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 01001,MA,Western Massachusetts Electric Company,20455,NEWE,1 01002,MA,Massachusetts Electric Co,11804,NEWE,1 01002,MA,Town of South Hadley - (MA),17560,NEWE,0 -01002,MA,Western Massachusetts Electric Company,20455,NEWE,0 01003,MA,Western Massachusetts Electric Company,20455,NEWE,1 01004,MA,Western Massachusetts Electric Company,20455,NEWE,1 01005,MA,Massachusetts Electric Co,11804,NEWE,1 01007,MA,Massachusetts Electric Co,11804,NEWE,1 -01007,MA,Western Massachusetts Electric Company,20455,NEWE,0 01008,MA,Western Massachusetts Electric Company,20455,NEWE,1 01009,MA,Massachusetts Electric Co,11804,NEWE,1 01010,MA,Massachusetts Electric Co,11804,NEWE,1 01011,MA,Western Massachusetts Electric Company,20455,NEWE,1 01012,MA,Massachusetts Electric Co,11804,NEWE,1 -01012,MA,Western Massachusetts Electric Company,20455,NEWE,0 01013,MA,City of Chicopee - (MA),3477,NEWE,1 01013,MA,City of Holyoke - (MA),8774,NEWE,0 -01013,MA,Western Massachusetts Electric Company,20455,NEWE,0 01014,MA,City of Chicopee - (MA),3477,NEWE,1 01020,MA,City of Chicopee - (MA),3477,NEWE,1 01020,MA,City of Holyoke - (MA),8774,NEWE,0 01020,MA,Town of South Hadley - (MA),17560,NEWE,0 -01020,MA,Western Massachusetts Electric Company,20455,NEWE,0 01021,MA,City of Chicopee - (MA),3477,NEWE,1 01022,MA,City of Chicopee - (MA),3477,NEWE,1 01022,MA,Town of South Hadley - (MA),17560,NEWE,0 -01022,MA,Western Massachusetts Electric Company,20455,NEWE,0 01026,MA,Massachusetts Electric Co,11804,NEWE,1 -01026,MA,Western Massachusetts Electric Company,20455,NEWE,0 01027,MA,City of Holyoke - (MA),8774,NEWE,1 01027,MA,Massachusetts Electric Co,11804,NEWE,0 -01027,MA,Western Massachusetts Electric Company,20455,NEWE,0 01028,MA,Massachusetts Electric Co,11804,NEWE,1 -01028,MA,Western Massachusetts Electric Company,20455,NEWE,0 01029,MA,Western Massachusetts Electric Company,20455,NEWE,1 01030,MA,City of Westfield - (MA),20481,NEWE,1 -01030,MA,Western Massachusetts Electric Company,20455,NEWE,0 01031,MA,Massachusetts Electric Co,11804,NEWE,1 01032,MA,Massachusetts Electric Co,11804,NEWE,1 -01032,MA,Western Massachusetts Electric Company,20455,NEWE,0 01033,MA,City of Chicopee - (MA),3477,NEWE,1 01033,MA,Massachusetts Electric Co,11804,NEWE,0 01033,MA,Town of South Hadley - (MA),17560,NEWE,0 -01033,MA,Western Massachusetts Electric Company,20455,NEWE,0 01034,MA,Western Massachusetts Electric Company,20455,NEWE,1 01035,MA,Massachusetts Electric Co,11804,NEWE,1 01035,MA,Town of South Hadley - (MA),17560,NEWE,0 -01035,MA,Western Massachusetts Electric Company,20455,NEWE,0 01036,MA,Massachusetts Electric Co,11804,NEWE,1 01037,MA,Massachusetts Electric Co,11804,NEWE,1 01038,MA,Massachusetts Electric Co,11804,NEWE,1 -01038,MA,Western Massachusetts Electric Company,20455,NEWE,0 01039,MA,Massachusetts Electric Co,11804,NEWE,1 -01039,MA,Western Massachusetts Electric Company,20455,NEWE,0 01040,MA,City of Chicopee - (MA),3477,NEWE,1 01040,MA,City of Holyoke - (MA),8774,NEWE,0 01040,MA,City of Westfield - (MA),20481,NEWE,0 01040,MA,Town of South Hadley - (MA),17560,NEWE,0 -01040,MA,Western Massachusetts Electric Company,20455,NEWE,0 01041,MA,City of Holyoke - (MA),8774,NEWE,1 01050,MA,Western Massachusetts Electric Company,20455,NEWE,1 01053,MA,Massachusetts Electric Co,11804,NEWE,1 01054,MA,Massachusetts Electric Co,11804,NEWE,1 -01054,MA,Western Massachusetts Electric Company,20455,NEWE,0 01056,MA,City of Chicopee - (MA),3477,NEWE,1 01056,MA,Massachusetts Electric Co,11804,NEWE,0 -01056,MA,Western Massachusetts Electric Company,20455,NEWE,0 01057,MA,Massachusetts Electric Co,11804,NEWE,1 01059,MA,Western Massachusetts Electric Company,20455,NEWE,1 01060,MA,Massachusetts Electric Co,11804,NEWE,1 -01060,MA,Western Massachusetts Electric Company,20455,NEWE,0 01061,MA,Massachusetts Electric Co,11804,NEWE,1 01062,MA,City of Holyoke - (MA),8774,NEWE,1 01062,MA,Massachusetts Electric Co,11804,NEWE,0 01062,MA,Town of South Hadley - (MA),17560,NEWE,0 -01062,MA,Western Massachusetts Electric Company,20455,NEWE,0 01063,MA,Massachusetts Electric Co,11804,NEWE,1 01066,MA,Western Massachusetts Electric Company,20455,NEWE,1 01068,MA,Massachusetts Electric Co,11804,NEWE,1 01069,MA,Massachusetts Electric Co,11804,NEWE,1 01070,MA,Massachusetts Electric Co,11804,NEWE,1 -01070,MA,Western Massachusetts Electric Company,20455,NEWE,0 01071,MA,City of Westfield - (MA),20481,NEWE,1 -01071,MA,Western Massachusetts Electric Company,20455,NEWE,0 01072,MA,Massachusetts Electric Co,11804,NEWE,1 -01072,MA,Western Massachusetts Electric Company,20455,NEWE,0 01073,MA,City of Holyoke - (MA),8774,NEWE,1 01073,MA,City of Westfield - (MA),20481,NEWE,0 -01073,MA,Western Massachusetts Electric Company,20455,NEWE,0 01074,MA,Massachusetts Electric Co,11804,NEWE,1 01075,MA,City of Chicopee - (MA),3477,NEWE,1 01075,MA,City of Holyoke - (MA),8774,NEWE,0 01075,MA,Massachusetts Electric Co,11804,NEWE,0 01075,MA,Town of South Hadley - (MA),17560,NEWE,0 -01075,MA,Western Massachusetts Electric Company,20455,NEWE,0 01077,MA,City of Westfield - (MA),20481,NEWE,1 -01077,MA,Western Massachusetts Electric Company,20455,NEWE,0 01079,MA,Massachusetts Electric Co,11804,NEWE,1 01080,MA,Massachusetts Electric Co,11804,NEWE,1 01081,MA,Massachusetts Electric Co,11804,NEWE,1 @@ -254,150 +228,109 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 01084,MA,Western Massachusetts Electric Company,20455,NEWE,1 01085,MA,City of Holyoke - (MA),8774,NEWE,1 01085,MA,City of Westfield - (MA),20481,NEWE,0 -01085,MA,Western Massachusetts Electric Company,20455,NEWE,0 01086,MA,City of Westfield - (MA),20481,NEWE,1 01088,MA,Massachusetts Electric Co,11804,NEWE,1 -01088,MA,Western Massachusetts Electric Company,20455,NEWE,0 01089,MA,City of Chicopee - (MA),3477,NEWE,1 01089,MA,City of Holyoke - (MA),8774,NEWE,0 01089,MA,City of Westfield - (MA),20481,NEWE,0 -01089,MA,Western Massachusetts Electric Company,20455,NEWE,0 01090,MA,Western Massachusetts Electric Company,20455,NEWE,1 01092,MA,Massachusetts Electric Co,11804,NEWE,1 01093,MA,Western Massachusetts Electric Company,20455,NEWE,1 01094,MA,Massachusetts Electric Co,11804,NEWE,1 01095,MA,Massachusetts Electric Co,11804,NEWE,1 -01095,MA,Western Massachusetts Electric Company,20455,NEWE,0 01096,MA,Massachusetts Electric Co,11804,NEWE,1 -01096,MA,Western Massachusetts Electric Company,20455,NEWE,0 01097,MA,Western Massachusetts Electric Company,20455,NEWE,1 01098,MA,Western Massachusetts Electric Company,20455,NEWE,1 01101,MA,Western Massachusetts Electric Company,20455,NEWE,1 01102,MA,Western Massachusetts Electric Company,20455,NEWE,1 01103,MA,Western Massachusetts Electric Company,20455,NEWE,1 01104,MA,City of Chicopee - (MA),3477,NEWE,1 -01104,MA,Western Massachusetts Electric Company,20455,NEWE,0 01105,MA,Western Massachusetts Electric Company,20455,NEWE,1 01106,MA,Massachusetts Electric Co,11804,NEWE,1 -01106,MA,Western Massachusetts Electric Company,20455,NEWE,0 01107,MA,City of Chicopee - (MA),3477,NEWE,1 -01107,MA,Western Massachusetts Electric Company,20455,NEWE,0 01108,MA,Massachusetts Electric Co,11804,NEWE,1 -01108,MA,Western Massachusetts Electric Company,20455,NEWE,0 01109,MA,Western Massachusetts Electric Company,20455,NEWE,1 01111,MA,Western Massachusetts Electric Company,20455,NEWE,1 01115,MA,Western Massachusetts Electric Company,20455,NEWE,1 01116,MA,Massachusetts Electric Co,11804,NEWE,1 01118,MA,Massachusetts Electric Co,11804,NEWE,1 -01118,MA,Western Massachusetts Electric Company,20455,NEWE,0 01119,MA,Western Massachusetts Electric Company,20455,NEWE,1 01128,MA,Massachusetts Electric Co,11804,NEWE,1 -01128,MA,Western Massachusetts Electric Company,20455,NEWE,0 01129,MA,Massachusetts Electric Co,11804,NEWE,1 -01129,MA,Western Massachusetts Electric Company,20455,NEWE,0 01138,MA,Western Massachusetts Electric Company,20455,NEWE,1 01139,MA,Western Massachusetts Electric Company,20455,NEWE,1 01144,MA,Western Massachusetts Electric Company,20455,NEWE,1 01151,MA,City of Chicopee - (MA),3477,NEWE,1 01151,MA,Massachusetts Electric Co,11804,NEWE,0 -01151,MA,Western Massachusetts Electric Company,20455,NEWE,0 01152,MA,Western Massachusetts Electric Company,20455,NEWE,1 01199,MA,Western Massachusetts Electric Company,20455,NEWE,1 01201,MA,Massachusetts Electric Co,11804,NEWE,1 -01201,MA,Western Massachusetts Electric Company,20455,NEWE,0 01202,MA,Western Massachusetts Electric Company,20455,NEWE,1 01203,MA,Western Massachusetts Electric Company,20455,NEWE,1 01220,MA,Massachusetts Electric Co,11804,NEWE,1 -01220,MA,Western Massachusetts Electric Company,20455,NEWE,0 01222,MA,Massachusetts Electric Co,11804,NEWE,1 01223,MA,Western Massachusetts Electric Company,20455,NEWE,1 01224,MA,Western Massachusetts Electric Company,20455,NEWE,1 01225,MA,Massachusetts Electric Co,11804,NEWE,1 -01225,MA,Western Massachusetts Electric Company,20455,NEWE,0 01226,MA,Western Massachusetts Electric Company,20455,NEWE,1 01227,MA,Western Massachusetts Electric Company,20455,NEWE,1 01229,MA,Massachusetts Electric Co,11804,NEWE,1 01230,MA,Massachusetts Electric Co,11804,NEWE,1 -01230,MA,Western Massachusetts Electric Company,20455,NEWE,0 01235,MA,Western Massachusetts Electric Company,20455,NEWE,1 01236,MA,Massachusetts Electric Co,11804,NEWE,1 01237,MA,Massachusetts Electric Co,11804,NEWE,1 -01237,MA,Western Massachusetts Electric Company,20455,NEWE,0 01238,MA,Massachusetts Electric Co,11804,NEWE,1 -01238,MA,Western Massachusetts Electric Company,20455,NEWE,0 01240,MA,Massachusetts Electric Co,11804,NEWE,1 -01240,MA,Western Massachusetts Electric Company,20455,NEWE,0 01242,MA,Western Massachusetts Electric Company,20455,NEWE,1 01243,MA,Western Massachusetts Electric Company,20455,NEWE,1 01244,MA,Massachusetts Electric Co,11804,NEWE,1 01245,MA,Massachusetts Electric Co,11804,NEWE,1 -01245,MA,Western Massachusetts Electric Company,20455,NEWE,0 01247,MA,Massachusetts Electric Co,11804,NEWE,1 -01247,MA,Western Massachusetts Electric Company,20455,NEWE,0 01252,MA,Massachusetts Electric Co,11804,NEWE,1 01253,MA,Western Massachusetts Electric Company,20455,NEWE,1 01254,MA,Massachusetts Electric Co,11804,NEWE,1 -01254,MA,Western Massachusetts Electric Company,20455,NEWE,0 01255,MA,Massachusetts Electric Co,11804,NEWE,1 -01255,MA,Western Massachusetts Electric Company,20455,NEWE,0 01256,MA,Massachusetts Electric Co,11804,NEWE,1 -01256,MA,Western Massachusetts Electric Company,20455,NEWE,0 01257,MA,Massachusetts Electric Co,11804,NEWE,1 01258,MA,Massachusetts Electric Co,11804,NEWE,1 01259,MA,Massachusetts Electric Co,11804,NEWE,1 -01259,MA,Western Massachusetts Electric Company,20455,NEWE,0 01260,MA,Western Massachusetts Electric Company,20455,NEWE,1 01262,MA,Massachusetts Electric Co,11804,NEWE,1 01263,MA,Massachusetts Electric Co,11804,NEWE,1 01264,MA,Western Massachusetts Electric Company,20455,NEWE,1 01266,MA,Massachusetts Electric Co,11804,NEWE,1 -01266,MA,Western Massachusetts Electric Company,20455,NEWE,0 01267,MA,Massachusetts Electric Co,11804,NEWE,1 -01267,MA,Western Massachusetts Electric Company,20455,NEWE,0 01270,MA,Western Massachusetts Electric Company,20455,NEWE,1 01301,MA,Western Massachusetts Electric Company,20455,NEWE,1 01302,MA,Western Massachusetts Electric Company,20455,NEWE,1 01330,MA,Massachusetts Electric Co,11804,NEWE,1 -01330,MA,Western Massachusetts Electric Company,20455,NEWE,0 01331,MA,Massachusetts Electric Co,11804,NEWE,1 01337,MA,Western Massachusetts Electric Company,20455,NEWE,1 01338,MA,Western Massachusetts Electric Company,20455,NEWE,1 01339,MA,Massachusetts Electric Co,11804,NEWE,1 -01339,MA,Western Massachusetts Electric Company,20455,NEWE,0 01340,MA,Massachusetts Electric Co,11804,NEWE,1 -01340,MA,Western Massachusetts Electric Company,20455,NEWE,0 01341,MA,Massachusetts Electric Co,11804,NEWE,1 -01341,MA,Western Massachusetts Electric Company,20455,NEWE,0 01342,MA,Western Massachusetts Electric Company,20455,NEWE,1 01343,MA,Massachusetts Electric Co,11804,NEWE,1 01344,MA,Massachusetts Electric Co,11804,NEWE,1 -01344,MA,Western Massachusetts Electric Company,20455,NEWE,0 01346,MA,Massachusetts Electric Co,11804,NEWE,1 01347,MA,Western Massachusetts Electric Company,20455,NEWE,1 01349,MA,Massachusetts Electric Co,11804,NEWE,1 -01349,MA,Western Massachusetts Electric Company,20455,NEWE,0 01350,MA,Massachusetts Electric Co,11804,NEWE,1 01351,MA,Massachusetts Electric Co,11804,NEWE,1 -01351,MA,Western Massachusetts Electric Company,20455,NEWE,0 01354,MA,Western Massachusetts Electric Company,20455,NEWE,1 01355,MA,Massachusetts Electric Co,11804,NEWE,1 -01355,MA,Western Massachusetts Electric Company,20455,NEWE,0 01360,MA,Massachusetts Electric Co,11804,NEWE,1 -01360,MA,Western Massachusetts Electric Company,20455,NEWE,0 01364,MA,Massachusetts Electric Co,11804,NEWE,1 01366,MA,Massachusetts Electric Co,11804,NEWE,1 01367,MA,Massachusetts Electric Co,11804,NEWE,1 01368,MA,Massachusetts Electric Co,11804,NEWE,1 01370,MA,Massachusetts Electric Co,11804,NEWE,1 -01370,MA,Western Massachusetts Electric Company,20455,NEWE,0 01373,MA,Massachusetts Electric Co,11804,NEWE,1 -01373,MA,Western Massachusetts Electric Company,20455,NEWE,0 01375,MA,Western Massachusetts Electric Company,20455,NEWE,1 01376,MA,Western Massachusetts Electric Company,20455,NEWE,1 01378,MA,Massachusetts Electric Co,11804,NEWE,1 -01378,MA,Western Massachusetts Electric Company,20455,NEWE,0 01379,MA,Massachusetts Electric Co,11804,NEWE,1 -01379,MA,Western Massachusetts Electric Company,20455,NEWE,0 01380,MA,Massachusetts Electric Co,11804,NEWE,1 01420,MA,Fitchburg Gas & Elec Light Co,6374,NEWE,1 01420,MA,Massachusetts Electric Co,11804,NEWE,0 @@ -1316,7 +1249,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 03064,NH,Public Service Co of NH,15472,NEWE,1 03070,NH,Public Service Co of NH,15472,NEWE,1 03071,NH,Public Service Co of NH,15472,NEWE,1 -03073,NH,Liberty Utilities (Granite State Electric) Corp,26510,NEWE,1 +03073,NH,Liberty Utilities (Granite State Electri,26510,NEWE,1 03076,NH,Public Service Co of NH,15472,NEWE,1 03077,NH,New Hampshire Elec Coop Inc,13441,NEWE,1 03077,NH,Public Service Co of NH,15472,NEWE,0 @@ -1554,7 +1487,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 03746,NH,New Hampshire Elec Coop Inc,13441,NEWE,1 03748,NH,New Hampshire Elec Coop Inc,13441,NEWE,1 03748,NH,Public Service Co of NH,15472,NEWE,0 -03749,NH,Liberty Utilities (Granite State Electric) Corp,26510,NEWE,1 +03749,NH,Liberty Utilities (Granite State Electri,26510,NEWE,1 03750,NH,Granite State Electric Co [Algonquin Power & Utilities Corp],1059,NEWE,1 03750,NH,Liberty Utilities,57483,NEWE,0 03751,NH,Public Service Co of NH,15472,NEWE,1 @@ -1565,7 +1498,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 03754,NH,Public Service Co of NH,15472,NEWE,1 03755,NH,New Hampshire Elec Coop Inc,13441,NEWE,1 03755,NH,Public Service Co of NH,15472,NEWE,0 -03756,NH,Liberty Utilities (Granite State Electric) Corp,26510,NEWE,1 +03756,NH,Liberty Utilities (Granite State Electri,26510,NEWE,1 03765,NH,New Hampshire Elec Coop Inc,13441,NEWE,1 03765,NH,Public Service Co of NH,15472,NEWE,0 03766,NH,New Hampshire Elec Coop Inc,13441,NEWE,1 @@ -11904,13 +11837,13 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 22851,VA,Shenandoah Valley Elec Coop,17066,RFCW,0 22853,VA,Shenandoah Valley Elec Coop,17066,RFCW,1 22853,VA,Virginia Electric & Power Co,19876,SRVC,0 -22901,VA,Central Virginia Electric Coop,3291,RFCW,1 +22901,VA,Central Virginia Electric Coop,3291,SRVC,1 22901,VA,Virginia Electric & Power Co,19876,SRVC,0 22902,VA,Appalachian Power Co,733,RFCW,1 -22902,VA,Central Virginia Electric Coop,3291,RFCW,0 +22902,VA,Central Virginia Electric Coop,3291,SRVC,0 22902,VA,Virginia Electric & Power Co,19876,SRVC,0 22903,VA,Appalachian Power Co,733,RFCW,1 -22903,VA,Central Virginia Electric Coop,3291,RFCW,0 +22903,VA,Central Virginia Electric Coop,3291,SRVC,0 22903,VA,Virginia Electric & Power Co,19876,SRVC,0 22904,VA,Virginia Electric & Power Co,19876,SRVC,1 22905,VA,Virginia Electric & Power Co,19876,SRVC,1 @@ -11922,80 +11855,80 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 22911,VA,Rappahannock Electric Coop,40228,SRVC,1 22911,VA,Virginia Electric & Power Co,19876,SRVC,0 22920,VA,Appalachian Power Co,733,RFCW,1 -22920,VA,Central Virginia Electric Coop,3291,RFCW,0 +22920,VA,Central Virginia Electric Coop,3291,SRVC,0 22920,VA,Shenandoah Valley Elec Coop,17066,RFCW,0 22920,VA,Virginia Electric & Power Co,19876,SRVC,0 22922,VA,Appalachian Power Co,733,RFCW,1 -22922,VA,Central Virginia Electric Coop,3291,RFCW,0 +22922,VA,Central Virginia Electric Coop,3291,SRVC,0 22923,VA,Rappahannock Electric Coop,40228,SRVC,1 22924,VA,Virginia Electric & Power Co,19876,SRVC,1 22931,VA,Appalachian Power Co,733,RFCW,1 -22931,VA,Central Virginia Electric Coop,3291,RFCW,0 -22932,VA,Central Virginia Electric Coop,3291,RFCW,1 +22931,VA,Central Virginia Electric Coop,3291,SRVC,0 +22932,VA,Central Virginia Electric Coop,3291,SRVC,1 22932,VA,Shenandoah Valley Elec Coop,17066,RFCW,0 22932,VA,Virginia Electric & Power Co,19876,SRVC,0 22935,VA,Rappahannock Electric Coop,40228,SRVC,1 22935,VA,Virginia Electric & Power Co,19876,SRVC,0 -22936,VA,Central Virginia Electric Coop,3291,RFCW,1 +22936,VA,Central Virginia Electric Coop,3291,SRVC,1 22936,VA,Rappahannock Electric Coop,40228,SRVC,0 22936,VA,Virginia Electric & Power Co,19876,SRVC,0 22937,VA,Appalachian Power Co,733,RFCW,1 -22937,VA,Central Virginia Electric Coop,3291,RFCW,0 +22937,VA,Central Virginia Electric Coop,3291,SRVC,0 22937,VA,Virginia Electric & Power Co,19876,SRVC,0 22938,VA,Appalachian Power Co,733,RFCW,1 -22938,VA,Central Virginia Electric Coop,3291,RFCW,0 +22938,VA,Central Virginia Electric Coop,3291,SRVC,0 22939,VA,Shenandoah Valley Elec Coop,17066,RFCW,1 22939,VA,Virginia Electric & Power Co,19876,SRVC,0 -22940,VA,Central Virginia Electric Coop,3291,RFCW,1 +22940,VA,Central Virginia Electric Coop,3291,SRVC,1 22940,VA,Rappahannock Electric Coop,40228,SRVC,0 22940,VA,Virginia Electric & Power Co,19876,SRVC,0 -22942,VA,Central Virginia Electric Coop,3291,RFCW,1 +22942,VA,Central Virginia Electric Coop,3291,SRVC,1 22942,VA,Rappahannock Electric Coop,40228,SRVC,0 22942,VA,Virginia Electric & Power Co,19876,SRVC,0 22943,VA,Virginia Electric & Power Co,19876,SRVC,1 22945,VA,Virginia Electric & Power Co,19876,SRVC,1 22946,VA,Appalachian Power Co,733,RFCW,1 -22947,VA,Central Virginia Electric Coop,3291,RFCW,1 +22947,VA,Central Virginia Electric Coop,3291,SRVC,1 22947,VA,Rappahannock Electric Coop,40228,SRVC,0 22947,VA,Virginia Electric & Power Co,19876,SRVC,0 22948,VA,Rappahannock Electric Coop,40228,SRVC,1 22949,VA,Appalachian Power Co,733,RFCW,1 -22949,VA,Central Virginia Electric Coop,3291,RFCW,0 -22952,VA,Central Virginia Electric Coop,3291,RFCW,1 +22949,VA,Central Virginia Electric Coop,3291,SRVC,0 +22952,VA,Central Virginia Electric Coop,3291,SRVC,1 22952,VA,Shenandoah Valley Elec Coop,17066,RFCW,0 22952,VA,Virginia Electric & Power Co,19876,SRVC,0 22957,VA,Rappahannock Electric Coop,40228,SRVC,1 22957,VA,Virginia Electric & Power Co,19876,SRVC,0 -22958,VA,Central Virginia Electric Coop,3291,RFCW,1 +22958,VA,Central Virginia Electric Coop,3291,SRVC,1 22958,VA,Shenandoah Valley Elec Coop,17066,RFCW,0 22959,VA,Appalachian Power Co,733,RFCW,1 -22959,VA,Central Virginia Electric Coop,3291,RFCW,0 +22959,VA,Central Virginia Electric Coop,3291,SRVC,0 22959,VA,Virginia Electric & Power Co,19876,SRVC,0 22960,VA,Rappahannock Electric Coop,40228,SRVC,1 22960,VA,Virginia Electric & Power Co,19876,SRVC,0 -22963,VA,Central Virginia Electric Coop,3291,RFCW,1 +22963,VA,Central Virginia Electric Coop,3291,SRVC,1 22963,VA,Virginia Electric & Power Co,19876,SRVC,0 22964,VA,Appalachian Power Co,733,RFCW,1 -22964,VA,Central Virginia Electric Coop,3291,RFCW,0 +22964,VA,Central Virginia Electric Coop,3291,SRVC,0 22965,VA,Rappahannock Electric Coop,40228,SRVC,1 22967,VA,Appalachian Power Co,733,RFCW,1 -22967,VA,Central Virginia Electric Coop,3291,RFCW,0 +22967,VA,Central Virginia Electric Coop,3291,SRVC,0 22967,VA,Shenandoah Valley Elec Coop,17066,RFCW,0 22968,VA,Rappahannock Electric Coop,40228,SRVC,1 22968,VA,Virginia Electric & Power Co,19876,SRVC,0 22969,VA,Appalachian Power Co,733,RFCW,1 -22969,VA,Central Virginia Electric Coop,3291,RFCW,0 +22969,VA,Central Virginia Electric Coop,3291,SRVC,0 22971,VA,Appalachian Power Co,733,RFCW,1 -22971,VA,Central Virginia Electric Coop,3291,RFCW,0 +22971,VA,Central Virginia Electric Coop,3291,SRVC,0 22972,VA,Rappahannock Electric Coop,40228,SRVC,1 22972,VA,Virginia Electric & Power Co,19876,SRVC,0 22973,VA,Rappahannock Electric Coop,40228,SRVC,1 22973,VA,Shenandoah Valley Elec Coop,17066,RFCW,0 22973,VA,Virginia Electric & Power Co,19876,SRVC,0 -22974,VA,Central Virginia Electric Coop,3291,RFCW,1 +22974,VA,Central Virginia Electric Coop,3291,SRVC,1 22974,VA,Virginia Electric & Power Co,19876,SRVC,0 22976,VA,Appalachian Power Co,733,RFCW,1 -22976,VA,Central Virginia Electric Coop,3291,RFCW,0 +22976,VA,Central Virginia Electric Coop,3291,SRVC,0 22976,VA,Shenandoah Valley Elec Coop,17066,RFCW,0 22980,VA,Shenandoah Valley Elec Coop,17066,RFCW,1 22980,VA,Virginia Electric & Power Co,19876,SRVC,0 @@ -12005,7 +11938,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 23002,VA,"Southside Electric Coop, Inc",21244,SRVC,1 23002,VA,Virginia Electric & Power Co,19876,SRVC,0 23003,VA,Virginia Electric & Power Co,19876,SRVC,1 -23004,VA,Central Virginia Electric Coop,3291,RFCW,1 +23004,VA,Central Virginia Electric Coop,3291,SRVC,1 23004,VA,Virginia Electric & Power Co,19876,SRVC,0 23005,VA,Rappahannock Electric Coop,40228,SRVC,1 23005,VA,Virginia Electric & Power Co,19876,SRVC,0 @@ -12016,14 +11949,14 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 23015,VA,Rappahannock Electric Coop,40228,SRVC,1 23018,VA,Virginia Electric & Power Co,19876,SRVC,1 23021,VA,Virginia Electric & Power Co,19876,SRVC,1 -23022,VA,Central Virginia Electric Coop,3291,RFCW,1 +23022,VA,Central Virginia Electric Coop,3291,SRVC,1 23022,VA,Virginia Electric & Power Co,19876,SRVC,0 23023,VA,Rappahannock Electric Coop,40228,SRVC,1 23023,VA,Virginia Electric & Power Co,19876,SRVC,0 23024,VA,Rappahannock Electric Coop,40228,SRVC,1 23024,VA,Virginia Electric & Power Co,19876,SRVC,0 23025,VA,Virginia Electric & Power Co,19876,SRVC,1 -23027,VA,Central Virginia Electric Coop,3291,RFCW,1 +23027,VA,Central Virginia Electric Coop,3291,SRVC,1 23027,VA,"Southside Electric Coop, Inc",21244,SRVC,0 23027,VA,Virginia Electric & Power Co,19876,SRVC,0 23030,VA,Virginia Electric & Power Co,19876,SRVC,1 @@ -12031,18 +11964,18 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 23032,VA,Rappahannock Electric Coop,40228,SRVC,1 23032,VA,Virginia Electric & Power Co,19876,SRVC,0 23035,VA,Virginia Electric & Power Co,19876,SRVC,1 -23038,VA,Central Virginia Electric Coop,3291,RFCW,1 +23038,VA,Central Virginia Electric Coop,3291,SRVC,1 23038,VA,Virginia Electric & Power Co,19876,SRVC,0 23039,VA,"Southside Electric Coop, Inc",21244,SRVC,1 23039,VA,Virginia Electric & Power Co,19876,SRVC,0 -23040,VA,Central Virginia Electric Coop,3291,RFCW,1 +23040,VA,Central Virginia Electric Coop,3291,SRVC,1 23040,VA,"Southside Electric Coop, Inc",21244,SRVC,0 23040,VA,Virginia Electric & Power Co,19876,SRVC,0 23043,VA,Virginia Electric & Power Co,19876,SRVC,1 23045,VA,Virginia Electric & Power Co,19876,SRVC,1 23047,VA,Rappahannock Electric Coop,40228,SRVC,1 23050,VA,Virginia Electric & Power Co,19876,SRVC,1 -23055,VA,Central Virginia Electric Coop,3291,RFCW,1 +23055,VA,Central Virginia Electric Coop,3291,SRVC,1 23055,VA,Virginia Electric & Power Co,19876,SRVC,0 23056,VA,Virginia Electric & Power Co,19876,SRVC,1 23058,VA,Virginia Electric & Power Co,19876,SRVC,1 @@ -12051,15 +11984,15 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 23060,VA,Virginia Electric & Power Co,19876,SRVC,1 23061,VA,Virginia Electric & Power Co,19876,SRVC,1 23062,VA,Virginia Electric & Power Co,19876,SRVC,1 -23063,VA,Central Virginia Electric Coop,3291,RFCW,1 +23063,VA,Central Virginia Electric Coop,3291,SRVC,1 23063,VA,"Southside Electric Coop, Inc",21244,SRVC,0 23063,VA,Virginia Electric & Power Co,19876,SRVC,0 23064,VA,Virginia Electric & Power Co,19876,SRVC,1 -23065,VA,Central Virginia Electric Coop,3291,RFCW,1 +23065,VA,Central Virginia Electric Coop,3291,SRVC,1 23065,VA,Rappahannock Electric Coop,40228,SRVC,0 23065,VA,Virginia Electric & Power Co,19876,SRVC,0 23066,VA,Virginia Electric & Power Co,19876,SRVC,1 -23067,VA,Central Virginia Electric Coop,3291,RFCW,1 +23067,VA,Central Virginia Electric Coop,3291,SRVC,1 23068,VA,Virginia Electric & Power Co,19876,SRVC,1 23069,VA,Rappahannock Electric Coop,40228,SRVC,1 23069,VA,Virginia Electric & Power Co,19876,SRVC,0 @@ -12073,7 +12006,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 23081,VA,Virginia Electric & Power Co,19876,SRVC,1 23083,VA,"Southside Electric Coop, Inc",21244,SRVC,1 23083,VA,Virginia Electric & Power Co,19876,SRVC,0 -23084,VA,Central Virginia Electric Coop,3291,RFCW,1 +23084,VA,Central Virginia Electric Coop,3291,SRVC,1 23084,VA,Virginia Electric & Power Co,19876,SRVC,0 23085,VA,Rappahannock Electric Coop,40228,SRVC,1 23085,VA,Virginia Electric & Power Co,19876,SRVC,0 @@ -12084,7 +12017,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 23091,VA,Rappahannock Electric Coop,40228,SRVC,1 23091,VA,Virginia Electric & Power Co,19876,SRVC,0 23092,VA,Virginia Electric & Power Co,19876,SRVC,1 -23093,VA,Central Virginia Electric Coop,3291,RFCW,1 +23093,VA,Central Virginia Electric Coop,3291,SRVC,1 23093,VA,Rappahannock Electric Coop,40228,SRVC,0 23093,VA,Virginia Electric & Power Co,19876,SRVC,0 23101,VA,Southside Electric Coop Inc,63008,SRVC,1 @@ -12111,13 +12044,13 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 23115,VA,Rappahannock Electric Coop,40228,SRVC,1 23116,VA,Rappahannock Electric Coop,40228,SRVC,1 23116,VA,Virginia Electric & Power Co,19876,SRVC,0 -23117,VA,Central Virginia Electric Coop,3291,RFCW,1 +23117,VA,Central Virginia Electric Coop,3291,SRVC,1 23117,VA,Rappahannock Electric Coop,40228,SRVC,0 23117,VA,Virginia Electric & Power Co,19876,SRVC,0 23119,VA,Virginia Electric & Power Co,19876,SRVC,1 23120,VA,"Southside Electric Coop, Inc",21244,SRVC,1 23120,VA,Virginia Electric & Power Co,19876,SRVC,0 -23123,VA,Central Virginia Electric Coop,3291,RFCW,1 +23123,VA,Central Virginia Electric Coop,3291,SRVC,1 23123,VA,Virginia Electric & Power Co,19876,SRVC,0 23124,VA,Rappahannock Electric Coop,40228,SRVC,1 23124,VA,Virginia Electric & Power Co,19876,SRVC,0 @@ -12130,7 +12063,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 23130,VA,Virginia Electric & Power Co,19876,SRVC,1 23131,VA,Virginia Electric & Power Co,19876,SRVC,1 23138,VA,Virginia Electric & Power Co,19876,SRVC,1 -23139,VA,Central Virginia Electric Coop,3291,RFCW,1 +23139,VA,Central Virginia Electric Coop,3291,SRVC,1 23139,VA,"Southside Electric Coop, Inc",21244,SRVC,0 23139,VA,Virginia Electric & Power Co,19876,SRVC,0 23140,VA,Virginia Electric & Power Co,19876,SRVC,1 @@ -12143,7 +12076,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 23149,VA,Rappahannock Electric Coop,40228,SRVC,1 23149,VA,Virginia Electric & Power Co,19876,SRVC,0 23150,VA,Virginia Electric & Power Co,19876,SRVC,1 -23153,VA,Central Virginia Electric Coop,3291,RFCW,1 +23153,VA,Central Virginia Electric Coop,3291,SRVC,1 23153,VA,Rappahannock Electric Coop,40228,SRVC,0 23153,VA,Virginia Electric & Power Co,19876,SRVC,0 23154,VA,Virginia Electric & Power Co,19876,SRVC,1 @@ -12520,7 +12453,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 23898,VA,Virginia Electric & Power Co,19876,SRVC,0 23899,VA,Prince George Electric Coop,15410,SRVC,1 23899,VA,Virginia Electric & Power Co,19876,SRVC,0 -23901,VA,Central Virginia Electric Coop,3291,RFCW,1 +23901,VA,Central Virginia Electric Coop,3291,SRVC,1 23901,VA,"Southside Electric Coop, Inc",21244,SRVC,0 23901,VA,Virginia Electric & Power Co,19876,SRVC,0 23909,VA,Virginia Electric & Power Co,19876,SRVC,1 @@ -12532,7 +12465,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 23920,VA,Mecklenburg Electric Cooperative,12260,SRVC,1 23920,VA,"Southside Electric Coop, Inc",21244,SRVC,0 23920,VA,Virginia Electric & Power Co,19876,SRVC,0 -23921,VA,Central Virginia Electric Coop,3291,RFCW,1 +23921,VA,Central Virginia Electric Coop,3291,SRVC,1 23921,VA,Virginia Electric & Power Co,19876,SRVC,0 23922,VA,"Southside Electric Coop, Inc",21244,SRVC,1 23922,VA,Virginia Electric & Power Co,19876,SRVC,0 @@ -12547,7 +12480,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 23930,VA,Virginia Electric & Power Co,19876,SRVC,0 23934,VA,"Southside Electric Coop, Inc",21244,SRVC,1 23934,VA,Virginia Electric & Power Co,19876,SRVC,0 -23936,VA,Central Virginia Electric Coop,3291,RFCW,1 +23936,VA,Central Virginia Electric Coop,3291,SRVC,1 23936,VA,"Southside Electric Coop, Inc",21244,SRVC,0 23936,VA,Virginia Electric & Power Co,19876,SRVC,0 23937,VA,Mecklenburg Electric Cooperative,12260,SRVC,1 @@ -12575,12 +12508,12 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 23954,VA,"Southside Electric Coop, Inc",21244,SRVC,1 23954,VA,Virginia Electric & Power Co,19876,SRVC,0 23955,VA,Virginia Electric & Power Co,19876,SRVC,1 -23958,VA,Central Virginia Electric Coop,3291,RFCW,1 +23958,VA,Central Virginia Electric Coop,3291,SRVC,1 23958,VA,"Southside Electric Coop, Inc",21244,SRVC,0 23958,VA,Virginia Electric & Power Co,19876,SRVC,0 23959,VA,"Southside Electric Coop, Inc",21244,SRVC,1 23959,VA,Virginia Electric & Power Co,19876,SRVC,0 -23960,VA,Central Virginia Electric Coop,3291,RFCW,1 +23960,VA,Central Virginia Electric Coop,3291,SRVC,1 23960,VA,"Southside Electric Coop, Inc",21244,SRVC,0 23960,VA,Virginia Electric & Power Co,19876,SRVC,0 23962,VA,Mecklenburg Electric Cooperative,12260,SRVC,1 @@ -12890,7 +12823,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 24413,VA,Shenandoah Valley Elec Coop,17066,RFCW,0 24415,VA,Virginia Electric & Power Co,19876,SRVC,1 24416,VA,BARC Electric Coop Inc,1062,SRVC,1 -24416,VA,Central Virginia Electric Coop,3291,RFCW,0 +24416,VA,Central Virginia Electric Coop,3291,SRVC,0 24416,VA,Virginia Electric & Power Co,19876,SRVC,0 24421,VA,Shenandoah Valley Elec Coop,17066,RFCW,1 24421,VA,Virginia Electric & Power Co,19876,SRVC,0 @@ -12940,7 +12873,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 24460,VA,Virginia Electric & Power Co,19876,SRVC,0 24463,VA,Virginia Electric & Power Co,19876,SRVC,1 24464,VA,BARC Electric Coop Inc,1062,SRVC,1 -24464,VA,Central Virginia Electric Coop,3291,RFCW,0 +24464,VA,Central Virginia Electric Coop,3291,SRVC,0 24465,VA,BARC Electric Coop Inc,1062,SRVC,1 24465,VA,Shenandoah Valley Elec Coop,17066,RFCW,0 24467,VA,Shenandoah Valley Elec Coop,17066,RFCW,1 @@ -12951,7 +12884,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 24471,VA,Shenandoah Valley Elec Coop,17066,RFCW,1 24471,VA,Virginia Electric & Power Co,19876,SRVC,0 24472,VA,BARC Electric Coop Inc,1062,SRVC,1 -24472,VA,Central Virginia Electric Coop,3291,RFCW,0 +24472,VA,Central Virginia Electric Coop,3291,SRVC,0 24472,VA,Shenandoah Valley Elec Coop,17066,RFCW,0 24472,VA,Virginia Electric & Power Co,19876,SRVC,0 24473,VA,BARC Electric Coop Inc,1062,SRVC,1 @@ -12967,7 +12900,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 24482,VA,Virginia Electric & Power Co,19876,SRVC,0 24483,VA,Appalachian Power Co,733,RFCW,1 24483,VA,BARC Electric Coop Inc,1062,SRVC,0 -24483,VA,Central Virginia Electric Coop,3291,RFCW,0 +24483,VA,Central Virginia Electric Coop,3291,SRVC,0 24483,VA,Shenandoah Valley Elec Coop,17066,RFCW,0 24483,VA,Virginia Electric & Power Co,19876,SRVC,0 24484,VA,BARC Electric Coop Inc,1062,SRVC,1 @@ -12982,7 +12915,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 24502,VA,Appalachian Power Co,733,RFCW,1 24503,VA,Appalachian Power Co,733,RFCW,1 24504,VA,Appalachian Power Co,733,RFCW,1 -24504,VA,Central Virginia Electric Coop,3291,RFCW,0 +24504,VA,Central Virginia Electric Coop,3291,SRVC,0 24505,VA,Appalachian Power Co,733,RFCW,1 24506,VA,Appalachian Power Co,733,RFCW,1 24513,VA,Appalachian Power Co,733,RFCW,1 @@ -12995,10 +12928,10 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 24520,VA,Mecklenburg Electric Cooperative,12260,SRVC,0 24520,VA,Virginia Electric & Power Co,19876,SRVC,0 24521,VA,Appalachian Power Co,733,RFCW,1 -24521,VA,Central Virginia Electric Coop,3291,RFCW,0 +24521,VA,Central Virginia Electric Coop,3291,SRVC,0 24521,VA,Virginia Electric & Power Co,19876,SRVC,0 24522,VA,Appalachian Power Co,733,RFCW,1 -24522,VA,Central Virginia Electric Coop,3291,RFCW,0 +24522,VA,Central Virginia Electric Coop,3291,SRVC,0 24522,VA,"Southside Electric Coop, Inc",21244,SRVC,0 24522,VA,Virginia Electric & Power Co,19876,SRVC,0 24523,VA,Appalachian Power Co,733,RFCW,1 @@ -13026,7 +12959,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 24535,VA,Virginia Electric & Power Co,19876,SRVC,1 24536,VA,Appalachian Power Co,733,RFCW,1 24538,VA,Appalachian Power Co,733,RFCW,1 -24538,VA,Central Virginia Electric Coop,3291,RFCW,0 +24538,VA,Central Virginia Electric Coop,3291,SRVC,0 24538,VA,"Southside Electric Coop, Inc",21244,SRVC,0 24538,VA,Virginia Electric & Power Co,19876,SRVC,0 24539,VA,Mecklenburg Electric Cooperative,12260,SRVC,1 @@ -13044,7 +12977,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 24551,VA,Appalachian Power Co,733,RFCW,1 24551,VA,"Southside Electric Coop, Inc",21244,SRVC,0 24553,VA,Appalachian Power Co,733,RFCW,1 -24553,VA,Central Virginia Electric Coop,3291,RFCW,0 +24553,VA,Central Virginia Electric Coop,3291,SRVC,0 24554,VA,Appalachian Power Co,733,RFCW,1 24554,VA,Mecklenburg Electric Cooperative,12260,SRVC,0 24554,VA,"Southside Electric Coop, Inc",21244,SRVC,0 @@ -13061,7 +12994,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 24558,VA,Mecklenburg Electric Cooperative,12260,SRVC,0 24558,VA,Virginia Electric & Power Co,19876,SRVC,0 24562,VA,Appalachian Power Co,733,RFCW,1 -24562,VA,Central Virginia Electric Coop,3291,RFCW,0 +24562,VA,Central Virginia Electric Coop,3291,SRVC,0 24563,VA,Mecklenburg Electric Cooperative,12260,SRVC,1 24563,VA,"Southside Electric Coop, Inc",21244,SRVC,0 24563,VA,Virginia Electric & Power Co,19876,SRVC,0 @@ -13077,7 +13010,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 24571,VA,"Southside Electric Coop, Inc",21244,SRVC,0 24571,VA,Virginia Electric & Power Co,19876,SRVC,0 24572,VA,Appalachian Power Co,733,RFCW,1 -24572,VA,Central Virginia Electric Coop,3291,RFCW,0 +24572,VA,Central Virginia Electric Coop,3291,SRVC,0 24574,VA,Appalachian Power Co,733,RFCW,1 24574,VA,Virginia Electric & Power Co,19876,SRVC,0 24576,VA,"Southside Electric Coop, Inc",21244,SRVC,1 @@ -13092,7 +13025,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 24580,VA,Mecklenburg Electric Cooperative,12260,SRVC,1 24580,VA,Virginia Electric & Power Co,19876,SRVC,0 24581,VA,Appalachian Power Co,733,RFCW,1 -24581,VA,Central Virginia Electric Coop,3291,RFCW,0 +24581,VA,Central Virginia Electric Coop,3291,SRVC,0 24586,VA,Appalachian Power Co,733,RFCW,1 24588,VA,Appalachian Power Co,733,RFCW,1 24588,VA,"Southside Electric Coop, Inc",21244,SRVC,0 @@ -13100,11 +13033,11 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 24589,VA,Mecklenburg Electric Cooperative,12260,SRVC,1 24589,VA,Virginia Electric & Power Co,19876,SRVC,0 24590,VA,Appalachian Power Co,733,RFCW,1 -24590,VA,Central Virginia Electric Coop,3291,RFCW,0 +24590,VA,Central Virginia Electric Coop,3291,SRVC,0 24590,VA,Virginia Electric & Power Co,19876,SRVC,0 24592,VA,Mecklenburg Electric Cooperative,12260,SRVC,1 24592,VA,Virginia Electric & Power Co,19876,SRVC,0 -24593,VA,Central Virginia Electric Coop,3291,RFCW,1 +24593,VA,Central Virginia Electric Coop,3291,SRVC,1 24593,VA,"Southside Electric Coop, Inc",21244,SRVC,0 24593,VA,Virginia Electric & Power Co,19876,SRVC,0 24594,VA,Appalachian Power Co,733,RFCW,1 @@ -13116,7 +13049,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 24598,VA,Mecklenburg Electric Cooperative,12260,SRVC,1 24598,VA,Virginia Electric & Power Co,19876,SRVC,0 24599,VA,Appalachian Power Co,733,RFCW,1 -24599,VA,Central Virginia Electric Coop,3291,RFCW,0 +24599,VA,Central Virginia Electric Coop,3291,SRVC,0 24601,VA,Appalachian Power Co,733,RFCW,1 24602,VA,Appalachian Power Co,733,RFCW,1 24603,VA,Appalachian Power Co,733,RFCW,1 @@ -15098,6 +15031,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 28010,NC,EnergyUnited Elec Member Corp,21632,SRVC,0 28012,NC,"Duke Energy Carolinas, LLC",5416,SRVC,1 28012,NC,Rutherford Elec Member Corp,16496,SRVC,0 +28012,NC,York Electric Coop Inc,21002,SRVC,0 28016,NC,City of Kings Mountain - (NC),10324,SRVC,1 28016,NC,"Duke Energy Carolinas, LLC",5416,SRVC,0 28016,NC,Rutherford Elec Member Corp,16496,SRVC,0 @@ -15149,6 +15083,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 28052,NC,City of Gastonia - (NC),7027,SRVC,1 28052,NC,"Duke Energy Carolinas, LLC",5416,SRVC,0 28052,NC,Rutherford Elec Member Corp,16496,SRVC,0 +28052,NC,York Electric Coop Inc,21002,SRVC,0 28053,NC,City of Gastonia - (NC),7027,SRVC,1 28053,NC,"Duke Energy Carolinas, LLC",5416,SRVC,0 28054,NC,City of Gastonia - (NC),7027,SRVC,1 @@ -15158,12 +15093,14 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 28056,NC,City of Gastonia - (NC),7027,SRVC,1 28056,NC,"Duke Energy Carolinas, LLC",5416,SRVC,0 28056,NC,Rutherford Elec Member Corp,16496,SRVC,0 +28056,NC,York Electric Coop Inc,21002,SRVC,0 28070,NC,"Duke Energy Carolinas, LLC",5416,SRVC,1 28070,NC,Town of Huntersville - (NC),9087,SRVC,0 28071,NC,"Duke Energy Carolinas, LLC",5416,SRVC,1 28071,NC,Union Electric Membership Corp - (NC),19435,SRVC,0 28072,NC,"Duke Energy Carolinas, LLC",5416,SRVC,1 28073,NC,"Duke Energy Carolinas, LLC",5416,SRVC,1 +28073,NC,York Electric Coop Inc,21002,SRVC,0 28074,NC,"Duke Energy Carolinas, LLC",5416,SRVC,1 28075,NC,"Duke Energy Carolinas, LLC",5416,SRVC,1 28075,NC,Union Electric Membership Corp - (NC),19435,SRVC,0 @@ -15185,6 +15122,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 28086,NC,City of Kings Mountain - (NC),10324,SRVC,1 28086,NC,"Duke Energy Carolinas, LLC",5416,SRVC,0 28086,NC,Rutherford Elec Member Corp,16496,SRVC,0 +28086,NC,York Electric Coop Inc,21002,SRVC,0 28088,NC,"Duke Energy Carolinas, LLC",5416,SRVC,1 28089,NC,"Duke Energy Carolinas, LLC",5416,SRVC,1 28090,NC,"Duke Energy Carolinas, LLC",5416,SRVC,1 @@ -15304,6 +15242,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 28170,NC,Pee Dee Electric Member Corp,14717,SRVC,0 28173,NC,"Duke Energy Carolinas, LLC",5416,SRVC,1 28173,NC,Union Electric Membership Corp - (NC),19435,SRVC,0 +28173,NC,York Electric Coop Inc,21002,SRVC,0 28174,NC,"Duke Energy Carolinas, LLC",5416,SRVC,1 28174,NC,Pee Dee Electric Member Corp,14717,SRVC,0 28174,NC,Union Electric Membership Corp - (NC),19435,SRVC,0 @@ -15381,6 +15320,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 28277,NC,"Duke Energy Carolinas, LLC",5416,SRVC,1 28277,NC,Union Electric Membership Corp - (NC),19435,SRVC,0 28278,NC,"Duke Energy Carolinas, LLC",5416,SRVC,1 +28278,NC,York Electric Coop Inc,21002,SRVC,0 28280,NC,"Duke Energy Carolinas, LLC",5416,SRVC,1 28281,NC,"Duke Energy Carolinas, LLC",5416,SRVC,1 28282,NC,"Duke Energy Carolinas, LLC",5416,SRVC,1 @@ -15394,35 +15334,35 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 28297,NC,"Duke Energy Carolinas, LLC",5416,SRVC,1 28299,NC,"Duke Energy Carolinas, LLC",5416,SRVC,1 28301,NC,Duke Energy Progress - (NC),3046,SRVC,1 -28301,NC,Public Works Comm-City of Fayetteville,6235,SRVC,0 +28301,NC,Fayetteville Public Works Commission,6235,SRVC,0 28301,NC,South River Elec Member Corp,17572,SRVC,0 28302,NC,South River Elec Member Corp,17572,SRVC,1 28303,NC,Duke Energy Progress - (NC),3046,SRVC,1 -28303,NC,Public Works Comm-City of Fayetteville,6235,SRVC,0 +28303,NC,Fayetteville Public Works Commission,6235,SRVC,0 28304,NC,Duke Energy Progress - (NC),3046,SRVC,1 +28304,NC,Fayetteville Public Works Commission,6235,SRVC,0 28304,NC,Lumbee River Elec Member Corp,11291,SRVC,0 -28304,NC,Public Works Comm-City of Fayetteville,6235,SRVC,0 28305,NC,Duke Energy Progress - (NC),3046,SRVC,1 -28305,NC,Public Works Comm-City of Fayetteville,6235,SRVC,0 +28305,NC,Fayetteville Public Works Commission,6235,SRVC,0 28306,NC,Duke Energy Progress - (NC),3046,SRVC,1 +28306,NC,Fayetteville Public Works Commission,6235,SRVC,0 28306,NC,Four County Elec Member Corp,6640,SRVC,0 28306,NC,Lumbee River Elec Member Corp,11291,SRVC,0 -28306,NC,Public Works Comm-City of Fayetteville,6235,SRVC,0 28306,NC,South River Elec Member Corp,17572,SRVC,0 28307,NC,Duke Energy Progress - (NC),3046,SRVC,1 28308,NC,Duke Energy Progress - (NC),3046,SRVC,1 -28309,NC,Public Works Comm-City of Fayetteville,6235,SRVC,1 +28309,NC,Fayetteville Public Works Commission,6235,SRVC,1 28310,NC,Duke Energy Progress - (NC),3046,SRVC,1 28311,NC,Duke Energy Progress - (NC),3046,SRVC,1 -28311,NC,Public Works Comm-City of Fayetteville,6235,SRVC,0 +28311,NC,Fayetteville Public Works Commission,6235,SRVC,0 28311,NC,South River Elec Member Corp,17572,SRVC,0 28312,NC,Duke Energy Progress - (NC),3046,SRVC,1 +28312,NC,Fayetteville Public Works Commission,6235,SRVC,0 28312,NC,Four County Elec Member Corp,6640,SRVC,0 -28312,NC,Public Works Comm-City of Fayetteville,6235,SRVC,0 28312,NC,South River Elec Member Corp,17572,SRVC,0 28314,NC,Duke Energy Progress - (NC),3046,SRVC,1 +28314,NC,Fayetteville Public Works Commission,6235,SRVC,0 28314,NC,Lumbee River Elec Member Corp,11291,SRVC,0 -28314,NC,Public Works Comm-City of Fayetteville,6235,SRVC,0 28315,NC,Duke Energy Progress - (NC),3046,SRVC,1 28315,NC,Lumbee River Elec Member Corp,11291,SRVC,0 28315,NC,Pee Dee Electric Member Corp,14717,SRVC,0 @@ -16374,13 +16314,13 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 28909,NC,Tennessee Valley Authority,18642,SRTV,0 29001,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 29001,SC,Duke Energy Progress - (NC),3046,SRVC,0 -29002,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29002,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29003,SC,Aiken Electric Coop Inc,162,SRVC,1 +29003,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29003,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29003,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29006,SC,Aiken Electric Coop Inc,162,SRVC,1 +29006,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29006,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 -29006,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29009,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 29009,SC,Duke Energy Progress - (NC),3046,SRVC,0 29009,SC,"Lynches River Elec Coop, Inc",11355,SRVC,0 @@ -16390,14 +16330,14 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 29010,SC,"Pee Dee Electric Coop, Inc",14557,SRVC,0 29014,SC,"Duke Energy Carolinas, LLC",5416,SRVC,1 29014,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 -29015,SC,"Duke Energy Carolinas, LLC",5416,SRVC,1 +29015,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29015,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29015,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29015,SC,"Newberry Electric Coop, Inc",13524,SRVC,0 -29015,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29016,SC,"Fairfield Electric Coop, Inc",5929,SRVC,1 -29016,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29018,SC,"Edisto Electric Coop, Inc",5644,SRVC,1 -29018,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29016,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29016,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 +29018,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29018,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 29018,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 29020,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 29020,SC,City of Camden,2890,SRVC,0 @@ -16407,66 +16347,66 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 29020,SC,"Lynches River Elec Coop, Inc",11355,SRVC,0 29021,SC,"Duke Energy Carolinas, LLC",5416,SRVC,1 29030,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 +29030,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29030,SC,Duke Energy Progress - (NC),3046,SRVC,0 29030,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29030,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29030,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 29031,SC,"Broad River Electric Coop, Inc",2212,SRVC,1 +29031,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29031,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29031,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29031,SC,"Newberry Electric Coop, Inc",13524,SRVC,0 -29031,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29032,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 29032,SC,"Lynches River Elec Coop, Inc",11355,SRVC,0 -29033,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29036,SC,"Duke Energy Carolinas, LLC",5416,SRVC,1 +29033,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29036,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29036,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29036,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29036,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 29036,SC,"Newberry Electric Coop, Inc",13524,SRVC,0 -29036,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29037,SC,Aiken Electric Coop Inc,162,SRVC,1 +29037,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29037,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29037,SC,"Laurens Electric Coop, Inc",10768,SRVC,0 29037,SC,"Newberry Electric Coop, Inc",13524,SRVC,0 -29037,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29038,SC,Aiken Electric Coop Inc,162,SRVC,1 +29038,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29038,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29038,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29039,SC,Aiken Electric Coop Inc,162,SRVC,1 29039,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 29040,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 29040,SC,Duke Energy Progress - (NC),3046,SRVC,0 29041,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 29042,SC,Aiken Electric Coop Inc,162,SRVC,1 +29042,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29042,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29042,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29044,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 +29044,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29044,SC,Duke Energy Progress - (NC),3046,SRVC,0 29044,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 -29044,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29044,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 -29045,SC,Duke Energy Progress - (NC),3046,SRVC,1 +29045,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29045,SC,Duke Energy Progress - (NC),3046,SRVC,0 29045,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 -29045,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29046,SC,Duke Energy Progress - (NC),3046,SRVC,1 29047,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 -29047,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29047,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29047,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 29048,SC,Berkeley Electric Coop Inc,1613,SRVC,1 29048,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,0 -29048,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29048,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29048,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 29051,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 29051,SC,Duke Energy Progress - (NC),3046,SRVC,0 -29052,SC,"Fairfield Electric Coop, Inc",5929,SRVC,1 -29052,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29052,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29052,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29052,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 -29053,SC,"Fairfield Electric Coop, Inc",5929,SRVC,1 +29053,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29053,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29053,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 -29053,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29053,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 -29054,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,1 -29054,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29054,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29054,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 29055,SC,"Duke Energy Carolinas, LLC",5416,SRVC,1 29055,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29055,SC,"Lynches River Elec Coop, Inc",11355,SRVC,0 @@ -16478,18 +16418,18 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 29058,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29058,SC,"Lynches River Elec Coop, Inc",11355,SRVC,0 29059,SC,Berkeley Electric Coop Inc,1613,SRVC,1 +29059,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29059,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29059,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29059,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 -29061,SC,"Fairfield Electric Coop, Inc",5929,SRVC,1 -29061,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29061,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29061,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29061,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 29062,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 -29063,SC,"Fairfield Electric Coop, Inc",5929,SRVC,1 +29063,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29063,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29063,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 -29063,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29065,SC,"Fairfield Electric Coop, Inc",5929,SRVC,1 -29065,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29065,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29065,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29067,SC,"Duke Energy Carolinas, LLC",5416,SRVC,1 29067,SC,Duke Energy Progress - (NC),3046,SRVC,0 29067,SC,"Lynches River Elec Coop, Inc",11355,SRVC,0 @@ -16497,140 +16437,140 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 29069,SC,Duke Energy Progress - (NC),3046,SRVC,0 29069,SC,"Pee Dee Electric Coop, Inc",14557,SRVC,0 29070,SC,Aiken Electric Coop Inc,162,SRVC,1 +29070,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29070,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29070,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 -29070,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29071,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29072,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,1 -29072,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29073,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,1 -29073,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29071,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29072,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29072,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 +29073,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29073,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 29074,SC,"Lynches River Elec Coop, Inc",11355,SRVC,1 -29075,SC,"Duke Energy Carolinas, LLC",5416,SRVC,1 +29075,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29075,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29075,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29075,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 29075,SC,"Newberry Electric Coop, Inc",13524,SRVC,0 -29075,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29078,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 +29078,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29078,SC,Duke Energy Progress - (NC),3046,SRVC,0 29078,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29078,SC,"Lynches River Elec Coop, Inc",11355,SRVC,0 -29078,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29079,SC,Duke Energy Progress - (NC),3046,SRVC,1 29080,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 29080,SC,Duke Energy Progress - (NC),3046,SRVC,0 29080,SC,"Pee Dee Electric Coop, Inc",14557,SRVC,0 29081,SC,"Coastal Electric Coop, Inc",3844,SRVC,1 +29081,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29081,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 29081,SC,Palmetto Electric Coop Inc,14398,SRVC,0 -29081,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29082,SC,"Coastal Electric Coop, Inc",3844,SRVC,1 +29082,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29082,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29082,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29101,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 29101,SC,Duke Energy Progress - (NC),3046,SRVC,0 29101,SC,"Lynches River Elec Coop, Inc",11355,SRVC,0 29101,SC,"Pee Dee Electric Coop, Inc",14557,SRVC,0 29102,SC,Berkeley Electric Coop Inc,1613,SRVC,1 29102,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,0 +29102,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29102,SC,Duke Energy Progress - (NC),3046,SRVC,0 29102,SC,"Santee Electric Coop, Inc",16606,SRVC,0 -29102,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29104,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 29104,SC,Duke Energy Progress - (NC),3046,SRVC,0 29105,SC,Aiken Electric Coop Inc,162,SRVC,1 +29105,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29105,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 -29105,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29107,SC,Aiken Electric Coop Inc,162,SRVC,1 -29107,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29107,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29108,SC,Aiken Electric Coop Inc,162,SRVC,1 29108,SC,City of Newberry - (SC),13523,SRVC,0 +29108,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29108,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29108,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 29108,SC,"Newberry Electric Coop, Inc",13524,SRVC,0 -29108,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29111,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 29111,SC,Duke Energy Progress - (NC),3046,SRVC,0 29111,SC,"Santee Electric Coop, Inc",16606,SRVC,0 29112,SC,Aiken Electric Coop Inc,162,SRVC,1 +29112,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29112,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 -29112,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29112,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 29113,SC,Aiken Electric Coop Inc,162,SRVC,1 +29113,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29113,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29113,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29114,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 29114,SC,Duke Energy Progress - (NC),3046,SRVC,0 29114,SC,"Pee Dee Electric Coop, Inc",14557,SRVC,0 29114,SC,"Santee Electric Coop, Inc",16606,SRVC,0 29115,SC,Aiken Electric Coop Inc,162,SRVC,1 29115,SC,City of Orangeburg - (SC),14164,SRVC,0 +29115,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29115,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29115,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29115,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 29116,SC,City of Orangeburg - (SC),14164,SRVC,1 29117,SC,City of Orangeburg - (SC),14164,SRVC,1 29118,SC,Aiken Electric Coop Inc,162,SRVC,1 29118,SC,City of Orangeburg - (SC),14164,SRVC,0 -29118,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29118,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29118,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 -29122,SC,"Duke Energy Carolinas, LLC",5416,SRVC,1 -29122,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29122,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29122,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29123,SC,Aiken Electric Coop Inc,162,SRVC,1 +29123,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29123,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 -29123,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29125,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 +29125,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29125,SC,Duke Energy Progress - (NC),3046,SRVC,0 -29125,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29125,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 29126,SC,"Broad River Electric Coop, Inc",2212,SRVC,1 +29126,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29126,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29126,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29126,SC,"Newberry Electric Coop, Inc",13524,SRVC,0 -29126,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29127,SC,Aiken Electric Coop Inc,162,SRVC,1 +29127,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29127,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29127,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 29127,SC,"Newberry Electric Coop, Inc",13524,SRVC,0 -29127,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29128,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 29128,SC,Duke Energy Progress - (NC),3046,SRVC,0 29128,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29129,SC,Aiken Electric Coop Inc,162,SRVC,1 -29129,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29130,SC,"Fairfield Electric Coop, Inc",5929,SRVC,1 +29129,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 +29130,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29130,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29130,SC,"Lynches River Elec Coop, Inc",11355,SRVC,0 -29130,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29132,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29133,SC,"Edisto Electric Coop, Inc",5644,SRVC,1 -29133,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29132,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29133,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29133,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 29135,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 +29135,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29135,SC,Duke Energy Progress - (NC),3046,SRVC,0 29135,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 -29135,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29135,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 29137,SC,Aiken Electric Coop Inc,162,SRVC,1 +29137,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29137,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 -29137,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29138,SC,Aiken Electric Coop Inc,162,SRVC,1 +29138,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29138,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29138,SC,"Newberry Electric Coop, Inc",13524,SRVC,0 -29138,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29142,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 +29142,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29142,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29142,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29142,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 29143,SC,Duke Energy Progress - (NC),3046,SRVC,1 -29145,SC,"Duke Energy Carolinas, LLC",5416,SRVC,1 +29145,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29145,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29145,SC,"Newberry Electric Coop, Inc",13524,SRVC,0 -29145,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29146,SC,Aiken Electric Coop Inc,162,SRVC,1 +29146,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29146,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29146,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29147,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29147,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29148,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 +29148,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29148,SC,Duke Energy Progress - (NC),3046,SRVC,0 -29148,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29148,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 29150,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 29150,SC,Duke Energy Progress - (NC),3046,SRVC,0 @@ -16643,9 +16583,9 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 29154,SC,Duke Energy Progress - (NC),3046,SRVC,0 29154,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29160,SC,Aiken Electric Coop Inc,162,SRVC,1 +29160,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29160,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29160,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 -29160,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29160,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 29161,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 29161,SC,Duke Energy Progress - (NC),3046,SRVC,0 @@ -16654,76 +16594,76 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 29162,SC,Duke Energy Progress - (NC),3046,SRVC,0 29162,SC,"Santee Electric Coop, Inc",16606,SRVC,0 29163,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 +29163,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29163,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29163,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29163,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 29164,SC,Aiken Electric Coop Inc,162,SRVC,1 +29164,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29164,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 -29164,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29166,SC,Aiken Electric Coop Inc,162,SRVC,1 -29166,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29166,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29168,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,1 +29168,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29168,SC,Duke Energy Progress - (NC),3046,SRVC,0 29168,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 -29168,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29169,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29170,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,1 -29170,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29171,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29172,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,1 -29172,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29169,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29170,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29170,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 +29171,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29172,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29172,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 29175,SC,"Lynches River Elec Coop, Inc",11355,SRVC,1 -29177,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29177,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29178,SC,"Broad River Electric Coop, Inc",2212,SRVC,1 29178,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29178,SC,"Laurens Electric Coop, Inc",10768,SRVC,0 29178,SC,Lockhart Power Co,11118,SRVC,0 29178,SC,"Newberry Electric Coop, Inc",13524,SRVC,0 -29180,SC,"Duke Energy Carolinas, LLC",5416,SRVC,1 +29180,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29180,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29180,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29180,SC,"Lynches River Elec Coop, Inc",11355,SRVC,0 -29180,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29201,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29202,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29203,SC,"Fairfield Electric Coop, Inc",5929,SRVC,1 -29203,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29204,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29205,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29206,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29207,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29208,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29209,SC,"Fairfield Electric Coop, Inc",5929,SRVC,1 -29209,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29201,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29202,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29203,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29203,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 +29204,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29205,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29206,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29207,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29208,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29209,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29209,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29209,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 -29210,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,1 -29210,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29211,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29212,SC,"Fairfield Electric Coop, Inc",5929,SRVC,1 +29210,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29210,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 +29211,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29212,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29212,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29212,SC,Mid-Carolina Electric Coop Inc,12462,SRVC,0 -29212,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29214,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29215,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29216,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29217,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29218,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29219,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29220,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29221,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29222,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29223,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29224,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29225,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29226,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29227,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29228,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29229,SC,"Fairfield Electric Coop, Inc",5929,SRVC,1 -29229,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29214,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29215,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29216,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29217,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29218,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29219,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29220,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29221,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29222,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29223,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29224,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29225,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29226,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29227,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29228,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29229,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29229,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29230,SC,"Fairfield Electric Coop, Inc",5929,SRVC,1 -29240,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29250,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29260,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29290,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29292,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29240,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29250,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29260,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29290,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29292,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29301,SC,"Duke Energy Carolinas, LLC",5416,SRVC,1 29302,SC,"Broad River Electric Coop, Inc",2212,SRVC,1 29302,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 @@ -16832,12 +16772,12 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 29378,SC,"Duke Energy Carolinas, LLC",5416,SRVC,1 29379,SC,"Broad River Electric Coop, Inc",2212,SRVC,1 29379,SC,City of Union - (SC),19431,SRVC,0 +29379,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29379,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29379,SC,"Fairfield Electric Coop, Inc",5929,SRVC,0 29379,SC,"Laurens Electric Coop, Inc",10768,SRVC,0 29379,SC,Lockhart Power Co,11118,SRVC,0 29379,SC,"Newberry Electric Coop, Inc",13524,SRVC,0 -29379,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29384,SC,"Duke Energy Carolinas, LLC",5416,SRVC,1 29384,SC,"Laurens Electric Coop, Inc",10768,SRVC,0 29385,SC,"Broad River Electric Coop, Inc",2212,SRVC,1 @@ -16850,143 +16790,143 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 29391,SC,Duke Energy Carolinas,1045,SRVC,1 29395,SC,"Broad River Electric Coop, Inc",2212,SRVC,1 29395,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 -29401,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29402,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29403,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29404,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29405,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29401,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29402,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29403,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29404,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29405,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29406,SC,Berkeley Electric Coop Inc,1613,SRVC,1 -29406,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29407,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29409,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29410,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29406,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 +29407,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29409,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29410,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29412,SC,Berkeley Electric Coop Inc,1613,SRVC,1 -29412,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29413,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29412,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 +29413,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29414,SC,Berkeley Electric Coop Inc,1613,SRVC,1 -29414,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29415,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29416,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29417,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29418,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29419,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29420,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29422,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29423,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29424,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29425,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29414,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 +29415,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29416,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29417,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29418,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29419,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29420,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29422,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29423,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29424,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29425,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29426,SC,Berkeley Electric Coop Inc,1613,SRVC,1 -29426,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29426,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29429,SC,Berkeley Electric Coop Inc,1613,SRVC,1 -29429,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29429,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29430,SC,Berkeley Electric Coop Inc,1613,SRVC,1 29431,SC,Berkeley Electric Coop Inc,1613,SRVC,1 29432,SC,"Coastal Electric Coop, Inc",3844,SRVC,1 +29432,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29432,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29432,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29433,SC,"Coastal Electric Coop, Inc",3844,SRVC,1 29434,SC,Berkeley Electric Coop Inc,1613,SRVC,1 -29434,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29434,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29435,SC,Berkeley Electric Coop Inc,1613,SRVC,1 29435,SC,"Coastal Electric Coop, Inc",3844,SRVC,0 +29435,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29435,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29435,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29436,SC,Berkeley Electric Coop Inc,1613,SRVC,1 29436,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,0 -29436,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29436,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29437,SC,Berkeley Electric Coop Inc,1613,SRVC,1 29437,SC,"Coastal Electric Coop, Inc",3844,SRVC,0 +29437,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29437,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29437,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29438,SC,Berkeley Electric Coop Inc,1613,SRVC,1 29438,SC,"Coastal Electric Coop, Inc",3844,SRVC,0 -29438,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29439,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29438,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 +29439,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29440,SC,Berkeley Electric Coop Inc,1613,SRVC,1 29440,SC,City of Georgetown - (SC),7128,SRVC,0 29440,SC,Horry Electric Coop Inc,8786,SRVC,0 29440,SC,"Santee Electric Coop, Inc",16606,SRVC,0 29442,SC,City of Georgetown - (SC),7128,SRVC,1 29445,SC,Berkeley Electric Coop Inc,1613,SRVC,1 -29445,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29445,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29446,SC,"Coastal Electric Coop, Inc",3844,SRVC,1 -29446,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29447,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29446,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 +29447,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29448,SC,Berkeley Electric Coop Inc,1613,SRVC,1 +29448,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29448,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29448,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29448,SC,"Tri-County Electric Coop, Inc",14175,SRVC,0 29449,SC,Berkeley Electric Coop Inc,1613,SRVC,1 29449,SC,"Coastal Electric Coop, Inc",3844,SRVC,0 -29449,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29449,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29450,SC,Berkeley Electric Coop Inc,1613,SRVC,1 -29450,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29451,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29452,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29450,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 +29451,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29452,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29453,SC,Berkeley Electric Coop Inc,1613,SRVC,1 +29453,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29453,SC,Duke Energy Progress - (NC),3046,SRVC,0 29453,SC,"Santee Electric Coop, Inc",16606,SRVC,0 -29453,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29455,SC,Berkeley Electric Coop Inc,1613,SRVC,1 29455,SC,"Coastal Electric Coop, Inc",3844,SRVC,0 -29455,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29455,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29456,SC,Berkeley Electric Coop Inc,1613,SRVC,1 -29456,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29456,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29457,SC,Berkeley Electric Coop Inc,1613,SRVC,1 29458,SC,Berkeley Electric Coop Inc,1613,SRVC,1 +29458,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29458,SC,"Santee Electric Coop, Inc",16606,SRVC,0 -29458,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29461,SC,Berkeley Electric Coop Inc,1613,SRVC,1 -29461,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29461,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29464,SC,Berkeley Electric Coop Inc,1613,SRVC,1 -29464,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29464,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29465,SC,Berkeley Electric Coop Inc,1613,SRVC,1 29466,SC,Berkeley Electric Coop Inc,1613,SRVC,1 -29466,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29466,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29468,SC,Berkeley Electric Coop Inc,1613,SRVC,1 29468,SC,"Black River Electric Coop, Inc - (SC)",1763,SRVC,0 29468,SC,"Santee Electric Coop, Inc",16606,SRVC,0 29469,SC,Berkeley Electric Coop Inc,1613,SRVC,1 29470,SC,Berkeley Electric Coop Inc,1613,SRVC,1 -29470,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29470,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29471,SC,"Coastal Electric Coop, Inc",3844,SRVC,1 +29471,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29471,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29471,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29472,SC,Berkeley Electric Coop Inc,1613,SRVC,1 29472,SC,"Coastal Electric Coop, Inc",3844,SRVC,0 +29472,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29472,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29472,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29474,SC,"Coastal Electric Coop, Inc",3844,SRVC,1 +29474,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29474,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29474,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29475,SC,"Coastal Electric Coop, Inc",3844,SRVC,1 +29475,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29475,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 29475,SC,Palmetto Electric Coop Inc,14398,SRVC,0 -29475,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29476,SC,Berkeley Electric Coop Inc,1613,SRVC,1 29477,SC,"Coastal Electric Coop, Inc",3844,SRVC,1 +29477,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29477,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29477,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29479,SC,Berkeley Electric Coop Inc,1613,SRVC,1 29479,SC,Duke Energy Progress - (NC),3046,SRVC,0 29479,SC,"Santee Electric Coop, Inc",16606,SRVC,0 29481,SC,"Coastal Electric Coop, Inc",3844,SRVC,1 +29481,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29481,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29481,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29482,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29482,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29483,SC,Berkeley Electric Coop Inc,1613,SRVC,1 -29483,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29484,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29483,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 +29484,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29485,SC,Berkeley Electric Coop Inc,1613,SRVC,1 -29485,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29485,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29487,SC,Berkeley Electric Coop Inc,1613,SRVC,1 -29487,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29487,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29488,SC,"Coastal Electric Coop, Inc",3844,SRVC,1 +29488,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29488,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29488,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29492,SC,Berkeley Electric Coop Inc,1613,SRVC,1 -29492,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29493,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29492,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 +29493,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29501,SC,Duke Energy Progress - (NC),3046,SRVC,1 29501,SC,"Pee Dee Electric Coop, Inc",14557,SRVC,0 29502,SC,Duke Energy Progress - (NC),3046,SRVC,1 @@ -17167,9 +17107,9 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 29616,SC,"Duke Energy Carolinas, LLC",5416,SRVC,1 29617,SC,Blue Ridge Electric Coop Inc - (SC),1890,SRVC,1 29617,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 -29620,SC,"Duke Energy Carolinas, LLC",5416,SRVC,1 +29620,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29620,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29620,SC,Little River Electric Coop Inc,11019,SRVC,0 -29620,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29621,SC,Blue Ridge Electric Coop Inc - (SC),1890,SRVC,1 29621,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29621,SC,Little River Electric Coop Inc,11019,SRVC,0 @@ -17185,9 +17125,9 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 29627,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29627,SC,"Laurens Electric Coop, Inc",10768,SRVC,0 29627,SC,Little River Electric Coop Inc,11019,SRVC,0 -29628,SC,"Duke Energy Carolinas, LLC",5416,SRVC,1 +29628,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29628,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29628,SC,Little River Electric Coop Inc,11019,SRVC,0 -29628,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29630,SC,Blue Ridge Electric Coop Inc - (SC),1890,SRVC,1 29630,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29631,SC,Blue Ridge Electric Coop Inc - (SC),1890,SRVC,1 @@ -17265,10 +17205,10 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 29665,SC,Blue Ridge Electric Coop Inc - (SC),1890,SRVC,1 29665,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29666,SC,Aiken Electric Coop Inc,162,SRVC,1 +29666,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29666,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29666,SC,"Laurens Electric Coop, Inc",10768,SRVC,0 29666,SC,"Newberry Electric Coop, Inc",13524,SRVC,0 -29666,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29667,SC,Blue Ridge Electric Coop Inc - (SC),1890,SRVC,1 29667,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29669,SC,Blue Ridge Electric Coop Inc - (SC),1890,SRVC,1 @@ -17411,160 +17351,160 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 29745,SC,"Duke Energy Carolinas, LLC",5416,SRVC,1 29745,SC,York Electric Coop Inc,21002,SRVC,0 29801,SC,Aiken Electric Coop Inc,162,SRVC,1 -29801,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29802,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29801,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 +29802,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29803,SC,Aiken Electric Coop Inc,162,SRVC,1 -29803,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29803,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29804,SC,Aiken Electric Coop Inc,162,SRVC,1 29805,SC,Aiken Electric Coop Inc,162,SRVC,1 -29805,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29808,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29805,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 +29808,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29809,SC,Aiken Electric Coop Inc,162,SRVC,1 -29810,SC,"Edisto Electric Coop, Inc",5644,SRVC,1 -29810,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29812,SC,"Edisto Electric Coop, Inc",5644,SRVC,1 -29812,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29813,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29816,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29810,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29810,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 +29812,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29812,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 +29813,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29816,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29817,SC,Aiken Electric Coop Inc,162,SRVC,1 +29817,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29817,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29817,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29819,SC,"Duke Energy Carolinas, LLC",5416,SRVC,1 +29819,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29819,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29819,SC,Little River Electric Coop Inc,11019,SRVC,0 -29819,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29821,SC,Aiken Electric Coop Inc,162,SRVC,1 -29821,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29822,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29821,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 +29822,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29824,SC,Aiken Electric Coop Inc,162,SRVC,1 +29824,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29824,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29824,SC,Little River Electric Coop Inc,11019,SRVC,0 -29824,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29826,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29826,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29827,SC,"Coastal Electric Coop, Inc",3844,SRVC,1 +29827,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29827,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 29827,SC,Palmetto Electric Coop Inc,14398,SRVC,0 -29827,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29828,SC,Aiken Electric Coop Inc,162,SRVC,1 -29828,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29828,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29829,SC,Aiken Electric Coop Inc,162,SRVC,1 -29829,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29829,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29831,SC,Aiken Electric Coop Inc,162,SRVC,1 -29831,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29831,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29832,SC,Aiken Electric Coop Inc,162,SRVC,1 -29832,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29832,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29834,SC,Aiken Electric Coop Inc,162,SRVC,1 -29834,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29834,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29835,SC,Aiken Electric Coop Inc,162,SRVC,1 +29835,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29835,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29835,SC,Little River Electric Coop Inc,11019,SRVC,0 -29835,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29836,SC,"Edisto Electric Coop, Inc",5644,SRVC,1 -29836,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29836,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29836,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 29838,SC,Aiken Electric Coop Inc,162,SRVC,1 +29838,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29838,SC,Little River Electric Coop Inc,11019,SRVC,0 -29838,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29839,SC,Aiken Electric Coop Inc,162,SRVC,1 -29839,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29840,SC,Little River Electric Coop Inc,11019,SRVC,1 -29840,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29839,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 +29840,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29840,SC,Little River Electric Coop Inc,11019,SRVC,0 29841,SC,Aiken Electric Coop Inc,162,SRVC,1 -29841,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29841,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29842,SC,Aiken Electric Coop Inc,162,SRVC,1 -29842,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29843,SC,"Edisto Electric Coop, Inc",5644,SRVC,1 -29843,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29844,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29842,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 +29843,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29843,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 +29844,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29845,SC,Aiken Electric Coop Inc,162,SRVC,1 +29845,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29845,SC,Little River Electric Coop Inc,11019,SRVC,0 -29845,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29846,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29846,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29847,SC,Aiken Electric Coop Inc,162,SRVC,1 -29847,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29847,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29848,SC,Aiken Electric Coop Inc,162,SRVC,1 +29848,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29848,SC,"Duke Energy Carolinas, LLC",5416,SRVC,0 29848,SC,Little River Electric Coop Inc,11019,SRVC,0 -29848,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29849,SC,"Edisto Electric Coop, Inc",5644,SRVC,1 -29849,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29849,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29849,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 29850,SC,Aiken Electric Coop Inc,162,SRVC,1 -29850,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29850,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29851,SC,Aiken Electric Coop Inc,162,SRVC,1 -29851,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29851,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29853,SC,Aiken Electric Coop Inc,162,SRVC,1 +29853,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29853,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 -29853,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29856,SC,Aiken Electric Coop Inc,162,SRVC,1 -29856,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29856,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29860,SC,Aiken Electric Coop Inc,162,SRVC,1 -29860,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29861,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29860,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 +29861,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29899,SC,Little River Electric Coop Inc,11019,SRVC,1 -29901,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29902,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29903,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29904,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29905,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29906,SC,Palmetto Electric Coop Inc,14398,SRVC,1 -29906,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29907,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29909,SC,Palmetto Electric Coop Inc,14398,SRVC,1 -29909,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29910,SC,Palmetto Electric Coop Inc,14398,SRVC,1 -29910,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29901,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29902,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29903,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29904,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29905,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29906,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29906,SC,Palmetto Electric Coop Inc,14398,SRVC,0 +29907,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29909,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29909,SC,Palmetto Electric Coop Inc,14398,SRVC,0 +29910,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29910,SC,Palmetto Electric Coop Inc,14398,SRVC,0 29911,SC,"Coastal Electric Coop, Inc",3844,SRVC,1 +29911,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29911,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 29911,SC,Palmetto Electric Coop Inc,14398,SRVC,0 -29911,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29912,SC,Palmetto Electric Coop Inc,14398,SRVC,1 -29912,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29912,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29912,SC,Palmetto Electric Coop Inc,14398,SRVC,0 29913,SC,Palmetto Electric Coop Inc,14398,SRVC,1 -29914,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29915,SC,Palmetto Electric Coop Inc,14398,SRVC,1 -29915,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29914,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29915,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29915,SC,Palmetto Electric Coop Inc,14398,SRVC,0 29916,SC,"Coastal Electric Coop, Inc",3844,SRVC,1 +29916,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29916,SC,Palmetto Electric Coop Inc,14398,SRVC,0 -29916,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29918,SC,"Edisto Electric Coop, Inc",5644,SRVC,1 +29918,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29918,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 29918,SC,Palmetto Electric Coop Inc,14398,SRVC,0 -29918,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29920,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29921,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29922,SC,Palmetto Electric Coop Inc,14398,SRVC,1 -29922,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29923,SC,South Carolina Electric&Gas Company,17539,SRVC,1 +29920,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29921,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29922,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29922,SC,Palmetto Electric Coop Inc,14398,SRVC,0 +29923,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 29924,SC,"Coastal Electric Coop, Inc",3844,SRVC,1 +29924,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29924,SC,Palmetto Electric Coop Inc,14398,SRVC,0 -29924,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29925,SC,Palmetto Electric Coop Inc,14398,SRVC,1 -29926,SC,Palmetto Electric Coop Inc,14398,SRVC,1 -29926,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29927,SC,Palmetto Electric Coop Inc,14398,SRVC,1 -29927,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29926,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29926,SC,Palmetto Electric Coop Inc,14398,SRVC,0 +29927,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29927,SC,Palmetto Electric Coop Inc,14398,SRVC,0 29928,SC,Palmetto Electric Coop Inc,14398,SRVC,1 29929,SC,"Coastal Electric Coop, Inc",3844,SRVC,1 29929,SC,Palmetto Electric Coop Inc,14398,SRVC,0 -29931,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29932,SC,"Edisto Electric Coop, Inc",5644,SRVC,1 +29931,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29932,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29932,SC,"Edisto Electric Coop, Inc",5644,SRVC,0 29932,SC,Palmetto Electric Coop Inc,14398,SRVC,0 -29932,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29933,SC,Palmetto Electric Coop Inc,14398,SRVC,1 -29934,SC,Palmetto Electric Coop Inc,14398,SRVC,1 -29934,SC,South Carolina Electric&Gas Company,17539,SRVC,0 -29935,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29936,SC,Palmetto Electric Coop Inc,14398,SRVC,1 -29936,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29934,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29934,SC,Palmetto Electric Coop Inc,14398,SRVC,0 +29935,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29936,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29936,SC,Palmetto Electric Coop Inc,14398,SRVC,0 29938,SC,Palmetto Electric Coop Inc,14398,SRVC,1 -29939,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29940,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29941,SC,South Carolina Electric&Gas Company,17539,SRVC,1 -29943,SC,Palmetto Electric Coop Inc,14398,SRVC,1 -29943,SC,South Carolina Electric&Gas Company,17539,SRVC,0 +29939,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29940,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29941,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29943,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,1 +29943,SC,Palmetto Electric Coop Inc,14398,SRVC,0 29944,SC,"Coastal Electric Coop, Inc",3844,SRVC,1 +29944,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29944,SC,Palmetto Electric Coop Inc,14398,SRVC,0 -29944,SC,South Carolina Electric&Gas Company,17539,SRVC,0 29945,SC,"Coastal Electric Coop, Inc",3844,SRVC,1 +29945,SC,"Dominion Energy South Carolina, Inc",17539,SRVC,0 29945,SC,Palmetto Electric Coop Inc,14398,SRVC,0 -29945,SC,South Carolina Electric&Gas Company,17539,SRVC,0 30002,GA,Georgia Power Co,7140,SRSO,1 30003,GA,City of Norcross- (GA),13646,SRSO,1 30004,GA,Cobb Electric Membership Corp,3916,SRSO,1 @@ -19266,18 +19206,18 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 31698,GA,Georgia Power Co,7140,SRSO,1 31699,GA,Colquitt Electric Membership Corp,40212,SRSO,1 31699,GA,Georgia Power Co,7140,SRSO,0 -31701,GA,Albany Water Gas & Light Comm,230,SRSO,1 +31701,GA,Albany Utility Board,230,SRSO,1 31701,GA,Georgia Power Co,7140,SRSO,0 31701,GA,Mitchell Electric Member Corp,12706,SRSO,0 -31702,GA,Albany Water Gas & Light Comm,230,SRSO,1 -31703,GA,Albany Water Gas & Light Comm,230,SRSO,1 +31702,GA,Albany Utility Board,230,SRSO,1 +31703,GA,Albany Utility Board,230,SRSO,1 31704,GA,Mitchell Electric Member Corp,12706,SRSO,1 -31705,GA,Albany Water Gas & Light Comm,230,SRSO,1 +31705,GA,Albany Utility Board,230,SRSO,1 31705,GA,Colquitt Electric Membership Corp,40212,SRSO,0 31705,GA,Georgia Power Co,7140,SRSO,0 31705,GA,Mitchell Electric Member Corp,12706,SRSO,0 -31706,GA,Albany Water Gas & Light Comm,230,SRSO,1 -31707,GA,Albany Water Gas & Light Comm,230,SRSO,1 +31706,GA,Albany Utility Board,230,SRSO,1 +31707,GA,Albany Utility Board,230,SRSO,1 31707,GA,Georgia Power Co,7140,SRSO,0 31707,GA,Mitchell Electric Member Corp,12706,SRSO,0 31708,GA,Mitchell Electric Member Corp,12706,SRSO,1 @@ -20549,12 +20489,12 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 33037,FL,Florida Power & Light Co,6452,FRCC,0 33037,FL,"Lee County Electric Coop, Inc",10857,FRCC,0 33039,FL,Florida Power & Light Co,6452,FRCC,1 -33040,FL,City of Key West - (FL),10226,FRCC,1 -33040,FL,"Florida Keys El Coop Assn, Inc",6443,FRCC,0 -33041,FL,City of Key West - (FL),10226,FRCC,1 +33040,FL,"Florida Keys El Coop Assn, Inc",6443,FRCC,1 +33040,FL,"Utility Board of the City of Key West, F",10226,FRCC,0 +33041,FL,"Utility Board of the City of Key West, F",10226,FRCC,1 33042,FL,"Florida Keys El Coop Assn, Inc",6443,FRCC,1 33043,FL,"Florida Keys El Coop Assn, Inc",6443,FRCC,1 -33045,FL,City of Key West - (FL),10226,FRCC,1 +33045,FL,"Utility Board of the City of Key West, F",10226,FRCC,1 33050,FL,"Florida Keys El Coop Assn, Inc",6443,FRCC,1 33050,FL,Florida Power & Light Co,6452,FRCC,0 33051,FL,"Florida Keys El Coop Assn, Inc",6443,FRCC,1 @@ -23101,11 +23041,11 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 36513,AL,Clarke-Washington E M C,40127,SRSO,0 36515,AL,Clarke-Washington E M C,40127,SRSO,1 36518,AL,Clarke-Washington E M C,40127,SRSO,1 -36518,AL,Singing River Elec Pwr Assn,17252,SRSO,0 +36518,AL,Singing River Elec Cooperative,17252,SRSO,0 36521,AL,Alabama Power Co,195,SRSO,1 36522,AL,Alabama Power Co,195,SRSO,1 36522,AL,Clarke-Washington E M C,40127,SRSO,0 -36522,AL,Singing River Elec Pwr Assn,17252,SRSO,0 +36522,AL,Singing River Elec Cooperative,17252,SRSO,0 36523,AL,Alabama Power Co,195,SRSO,1 36524,AL,Black Warrior Elec Member Corp,1780,SRSO,1 36524,AL,Clarke-Washington E M C,40127,SRSO,0 @@ -23129,12 +23069,12 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 36538,AL,Black Warrior Elec Member Corp,1780,SRSO,1 36538,AL,Clarke-Washington E M C,40127,SRSO,0 36539,AL,Clarke-Washington E M C,40127,SRSO,1 -36539,AL,Singing River Elec Pwr Assn,17252,SRSO,0 +36539,AL,Singing River Elec Cooperative,17252,SRSO,0 36540,AL,Alabama Power Co,195,SRSO,1 36540,AL,Clarke-Washington E M C,40127,SRSO,0 36540,AL,"Southern Pine Elec Coop, Inc",17646,SRSO,0 36541,AL,Alabama Power Co,195,SRSO,1 -36541,AL,Singing River Elec Pwr Assn,17252,SRSO,0 +36541,AL,Singing River Elec Cooperative,17252,SRSO,0 36542,AL,Baldwin County El Member Corp,1149,SRSO,1 36543,AL,Alabama Power Co,195,SRSO,1 36544,AL,Alabama Power Co,195,SRSO,1 @@ -23186,10 +23126,10 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 36583,AL,Clarke-Washington E M C,40127,SRSO,1 36584,AL,Alabama Power Co,195,SRSO,1 36584,AL,Clarke-Washington E M C,40127,SRSO,0 -36584,AL,Singing River Elec Pwr Assn,17252,SRSO,0 +36584,AL,Singing River Elec Cooperative,17252,SRSO,0 36585,AL,Clarke-Washington E M C,40127,SRSO,1 36587,AL,Alabama Power Co,195,SRSO,1 -36587,AL,Singing River Elec Pwr Assn,17252,SRSO,0 +36587,AL,Singing River Elec Cooperative,17252,SRSO,0 36590,AL,Alabama Power Co,195,SRSO,1 36601,AL,Alabama Power Co,195,SRSO,1 36602,AL,Alabama Power Co,195,SRSO,1 @@ -23199,7 +23139,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 36606,AL,Alabama Power Co,195,SRSO,1 36607,AL,Alabama Power Co,195,SRSO,1 36608,AL,Alabama Power Co,195,SRSO,1 -36608,AL,Singing River Elec Pwr Assn,17252,SRSO,0 +36608,AL,Singing River Elec Cooperative,17252,SRSO,0 36609,AL,Alabama Power Co,195,SRSO,1 36610,AL,Alabama Power Co,195,SRSO,1 36611,AL,Alabama Power Co,195,SRSO,1 @@ -24178,10 +24118,10 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 37450,TN,City of Chattanooga - (TN),3408,SRTV,1 37450,TN,Tennessee Valley Authority,18642,SRTV,0 37501,TN,City of Memphis - (TN),12293,SRTV,1 -37501,TN,Entergy Arkansas Inc,814,SRMV,0 +37501,TN,Entergy Arkansas LLC,814,SRMV,0 37501,TN,Tennessee Valley Authority,18642,SRTV,0 37544,TN,City of Memphis - (TN),12293,SRTV,1 -37544,TN,Entergy Arkansas Inc,814,SRMV,0 +37544,TN,Entergy Arkansas LLC,814,SRMV,0 37544,TN,Tennessee Valley Authority,18642,SRTV,0 37601,TN,City of Bristol - (TN),2247,SRTV,1 37601,TN,City of Elizabethton - (TN),5763,SRTV,0 @@ -24779,11 +24719,11 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38001,TN,Tennessee Valley Authority,18642,SRTV,0 38002,TN,"Chickasaw Electric Coop, Inc",40166,SRTV,1 38002,TN,City of Memphis - (TN),12293,SRTV,0 -38002,TN,Entergy Arkansas Inc,814,SRMV,0 +38002,TN,Entergy Arkansas LLC,814,SRMV,0 38002,TN,Southwest Tennessee E M C,17694,SRTV,0 38002,TN,Tennessee Valley Authority,18642,SRTV,0 38004,TN,City of Memphis - (TN),12293,SRTV,1 -38004,TN,Entergy Arkansas Inc,814,SRMV,0 +38004,TN,Entergy Arkansas LLC,814,SRMV,0 38004,TN,Southwest Tennessee E M C,17694,SRTV,0 38004,TN,Tennessee Valley Authority,18642,SRTV,0 38006,TN,Gibson Electric Members Corp,7174,SRTV,1 @@ -24797,39 +24737,39 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38010,TN,Southwest Tennessee E M C,17694,SRTV,1 38010,TN,Tennessee Valley Authority,18642,SRTV,0 38011,TN,City of Memphis - (TN),12293,SRTV,1 -38011,TN,Entergy Arkansas Inc,814,SRMV,0 +38011,TN,Entergy Arkansas LLC,814,SRMV,0 38011,TN,Southwest Tennessee E M C,17694,SRTV,0 38011,TN,Tennessee Valley Authority,18642,SRTV,0 38012,TN,City of Brownsville,2411,SRTV,1 -38012,TN,Entergy Arkansas Inc,814,SRMV,0 +38012,TN,Entergy Arkansas LLC,814,SRMV,0 38012,TN,"Forked Deer Electric Coop, Inc",40236,SRTV,0 38012,TN,Gibson Electric Members Corp,7174,SRTV,0 38012,TN,Southwest Tennessee E M C,17694,SRTV,0 38012,TN,Tennessee Valley Authority,18642,SRTV,0 38014,TN,City of Memphis - (TN),12293,SRTV,1 -38014,TN,Entergy Arkansas Inc,814,SRMV,0 +38014,TN,Entergy Arkansas LLC,814,SRMV,0 38014,TN,Tennessee Valley Authority,18642,SRTV,0 -38015,TN,Entergy Arkansas Inc,814,SRMV,1 +38015,TN,Entergy Arkansas LLC,814,SRMV,1 38015,TN,Southwest Tennessee E M C,17694,SRTV,0 38015,TN,Tennessee Valley Authority,18642,SRTV,0 38016,TN,City of Memphis - (TN),12293,SRTV,1 -38016,TN,Entergy Arkansas Inc,814,SRMV,0 +38016,TN,Entergy Arkansas LLC,814,SRMV,0 38016,TN,Tennessee Valley Authority,18642,SRTV,0 38017,TN,"Chickasaw Electric Coop, Inc",40166,SRTV,1 38017,TN,City of Memphis - (TN),12293,SRTV,0 -38017,TN,Entergy Arkansas Inc,814,SRMV,0 +38017,TN,Entergy Arkansas LLC,814,SRMV,0 38017,TN,Tennessee Valley Authority,18642,SRTV,0 38018,TN,City of Memphis - (TN),12293,SRTV,1 -38018,TN,Entergy Arkansas Inc,814,SRMV,0 +38018,TN,Entergy Arkansas LLC,814,SRMV,0 38018,TN,Tennessee Valley Authority,18642,SRTV,0 38019,TN,City of Covington - (TN),4437,SRTV,1 -38019,TN,Entergy Arkansas Inc,814,SRMV,0 +38019,TN,Entergy Arkansas LLC,814,SRMV,0 38019,TN,Southwest Tennessee E M C,17694,SRTV,0 38019,TN,Tennessee Valley Authority,18642,SRTV,0 38021,TN,Gibson Electric Members Corp,7174,SRTV,1 38021,TN,Tennessee Valley Authority,18642,SRTV,0 38023,TN,City of Memphis - (TN),12293,SRTV,1 -38023,TN,Entergy Arkansas Inc,814,SRMV,0 +38023,TN,Entergy Arkansas LLC,814,SRMV,0 38023,TN,Southwest Tennessee E M C,17694,SRTV,0 38023,TN,Tennessee Valley Authority,18642,SRTV,0 38024,TN,City of Dyersburg,5509,SRTV,1 @@ -24838,14 +24778,14 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38025,TN,"Forked Deer Electric Coop, Inc",40236,SRTV,1 38025,TN,Tennessee Valley Authority,18642,SRTV,0 38027,TN,City of Memphis - (TN),12293,SRTV,1 -38027,TN,Entergy Arkansas Inc,814,SRMV,0 +38027,TN,Entergy Arkansas LLC,814,SRMV,0 38027,TN,Tennessee Valley Authority,18642,SRTV,0 38028,TN,"Chickasaw Electric Coop, Inc",40166,SRTV,1 38028,TN,City of Memphis - (TN),12293,SRTV,0 -38028,TN,Entergy Arkansas Inc,814,SRMV,0 +38028,TN,Entergy Arkansas LLC,814,SRMV,0 38028,TN,Tennessee Valley Authority,18642,SRTV,0 38029,TN,City of Memphis - (TN),12293,SRTV,1 -38029,TN,Entergy Arkansas Inc,814,SRMV,0 +38029,TN,Entergy Arkansas LLC,814,SRMV,0 38029,TN,Tennessee Valley Authority,18642,SRTV,0 38030,TN,"Forked Deer Electric Coop, Inc",40236,SRTV,1 38030,TN,Tennessee Valley Authority,18642,SRTV,0 @@ -24865,7 +24805,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38040,TN,Gibson Electric Members Corp,7174,SRTV,0 38040,TN,Southwest Tennessee E M C,17694,SRTV,0 38040,TN,Tennessee Valley Authority,18642,SRTV,0 -38041,TN,Entergy Arkansas Inc,814,SRMV,1 +38041,TN,Entergy Arkansas LLC,814,SRMV,1 38041,TN,"Forked Deer Electric Coop, Inc",40236,SRTV,0 38041,TN,Southwest Tennessee E M C,17694,SRTV,0 38041,TN,Tennessee Valley Authority,18642,SRTV,0 @@ -24886,7 +24826,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38048,TN,Tennessee Valley Authority,18642,SRTV,0 38049,TN,"Chickasaw Electric Coop, Inc",40166,SRTV,1 38049,TN,City of Memphis - (TN),12293,SRTV,0 -38049,TN,Entergy Arkansas Inc,814,SRMV,0 +38049,TN,Entergy Arkansas LLC,814,SRMV,0 38049,TN,Southwest Tennessee E M C,17694,SRTV,0 38049,TN,Tennessee Valley Authority,18642,SRTV,0 38050,TN,Gibson Electric Members Corp,7174,SRTV,1 @@ -24894,19 +24834,19 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38052,TN,Bolivar Energy Authority,1936,SRTV,1 38052,TN,Tennessee Valley Authority,18642,SRTV,0 38053,TN,City of Memphis - (TN),12293,SRTV,1 -38053,TN,Entergy Arkansas Inc,814,SRMV,0 +38053,TN,Entergy Arkansas LLC,814,SRMV,0 38053,TN,Southwest Tennessee E M C,17694,SRTV,0 38053,TN,Tennessee Valley Authority,18642,SRTV,0 38054,TN,City of Memphis - (TN),12293,SRTV,1 -38054,TN,Entergy Arkansas Inc,814,SRMV,0 +38054,TN,Entergy Arkansas LLC,814,SRMV,0 38054,TN,Tennessee Valley Authority,18642,SRTV,0 38055,TN,City of Memphis - (TN),12293,SRTV,1 -38055,TN,Entergy Arkansas Inc,814,SRMV,0 +38055,TN,Entergy Arkansas LLC,814,SRMV,0 38055,TN,Tennessee Valley Authority,18642,SRTV,0 38057,TN,Bolivar Energy Authority,1936,SRTV,1 38057,TN,"Chickasaw Electric Coop, Inc",40166,SRTV,0 38057,TN,Tennessee Valley Authority,18642,SRTV,0 -38058,TN,Entergy Arkansas Inc,814,SRMV,1 +38058,TN,Entergy Arkansas LLC,814,SRMV,1 38058,TN,Southwest Tennessee E M C,17694,SRTV,0 38058,TN,Tennessee Valley Authority,18642,SRTV,0 38059,TN,City of Newbern,13437,SRTV,1 @@ -24919,7 +24859,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38061,TN,Pickwick Electric Coop,15016,SRTV,0 38061,TN,Tennessee Valley Authority,18642,SRTV,0 38063,TN,City of Ripley - (TN),27222,SRTV,1 -38063,TN,Entergy Arkansas Inc,814,SRMV,0 +38063,TN,Entergy Arkansas LLC,814,SRMV,0 38063,TN,"Forked Deer Electric Coop, Inc",40236,SRTV,0 38063,TN,Southwest Tennessee E M C,17694,SRTV,0 38063,TN,Tennessee Valley Authority,18642,SRTV,0 @@ -24932,12 +24872,12 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38068,TN,Southwest Tennessee E M C,17694,SRTV,0 38068,TN,Tennessee Valley Authority,18642,SRTV,0 38069,TN,"Chickasaw Electric Coop, Inc",40166,SRTV,1 -38069,TN,Entergy Arkansas Inc,814,SRMV,0 +38069,TN,Entergy Arkansas LLC,814,SRMV,0 38069,TN,Southwest Tennessee E M C,17694,SRTV,0 38069,TN,Tennessee Valley Authority,18642,SRTV,0 38070,TN,"Forked Deer Electric Coop, Inc",40236,SRTV,1 38070,TN,Tennessee Valley Authority,18642,SRTV,0 -38071,TN,Entergy Arkansas Inc,814,SRMV,1 +38071,TN,Entergy Arkansas LLC,814,SRMV,1 38071,TN,Southwest Tennessee E M C,17694,SRTV,0 38071,TN,Tennessee Valley Authority,18642,SRTV,0 38075,TN,Bolivar Energy Authority,1936,SRTV,1 @@ -24955,199 +24895,199 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38080,TN,Gibson Electric Members Corp,7174,SRTV,0 38080,TN,Tennessee Valley Authority,18642,SRTV,0 38083,TN,City of Memphis - (TN),12293,SRTV,1 -38083,TN,Entergy Arkansas Inc,814,SRMV,0 +38083,TN,Entergy Arkansas LLC,814,SRMV,0 38083,TN,Tennessee Valley Authority,18642,SRTV,0 38088,TN,City of Memphis - (TN),12293,SRTV,1 -38088,TN,Entergy Arkansas Inc,814,SRMV,0 +38088,TN,Entergy Arkansas LLC,814,SRMV,0 38088,TN,Tennessee Valley Authority,18642,SRTV,0 38101,TN,City of Memphis - (TN),12293,SRTV,1 -38101,TN,Entergy Arkansas Inc,814,SRMV,0 +38101,TN,Entergy Arkansas LLC,814,SRMV,0 38101,TN,Tennessee Valley Authority,18642,SRTV,0 38103,TN,City of Memphis - (TN),12293,SRTV,1 -38103,TN,Entergy Arkansas Inc,814,SRMV,0 +38103,TN,Entergy Arkansas LLC,814,SRMV,0 38103,TN,Tennessee Valley Authority,18642,SRTV,0 38104,TN,City of Memphis - (TN),12293,SRTV,1 -38104,TN,Entergy Arkansas Inc,814,SRMV,0 +38104,TN,Entergy Arkansas LLC,814,SRMV,0 38104,TN,Tennessee Valley Authority,18642,SRTV,0 38105,TN,City of Memphis - (TN),12293,SRTV,1 -38105,TN,Entergy Arkansas Inc,814,SRMV,0 +38105,TN,Entergy Arkansas LLC,814,SRMV,0 38105,TN,Tennessee Valley Authority,18642,SRTV,0 38106,TN,City of Memphis - (TN),12293,SRTV,1 -38106,TN,Entergy Arkansas Inc,814,SRMV,0 +38106,TN,Entergy Arkansas LLC,814,SRMV,0 38106,TN,Tennessee Valley Authority,18642,SRTV,0 38107,TN,City of Memphis - (TN),12293,SRTV,1 -38107,TN,Entergy Arkansas Inc,814,SRMV,0 +38107,TN,Entergy Arkansas LLC,814,SRMV,0 38107,TN,Tennessee Valley Authority,18642,SRTV,0 38108,TN,City of Memphis - (TN),12293,SRTV,1 -38108,TN,Entergy Arkansas Inc,814,SRMV,0 +38108,TN,Entergy Arkansas LLC,814,SRMV,0 38108,TN,Tennessee Valley Authority,18642,SRTV,0 38109,TN,City of Memphis - (TN),12293,SRTV,1 -38109,TN,Entergy Arkansas Inc,814,SRMV,0 +38109,TN,Entergy Arkansas LLC,814,SRMV,0 38109,TN,Tennessee Valley Authority,18642,SRTV,0 38111,TN,City of Memphis - (TN),12293,SRTV,1 -38111,TN,Entergy Arkansas Inc,814,SRMV,0 +38111,TN,Entergy Arkansas LLC,814,SRMV,0 38111,TN,Tennessee Valley Authority,18642,SRTV,0 38112,TN,City of Memphis - (TN),12293,SRTV,1 -38112,TN,Entergy Arkansas Inc,814,SRMV,0 +38112,TN,Entergy Arkansas LLC,814,SRMV,0 38112,TN,Tennessee Valley Authority,18642,SRTV,0 38113,TN,City of Memphis - (TN),12293,SRTV,1 -38113,TN,Entergy Arkansas Inc,814,SRMV,0 +38113,TN,Entergy Arkansas LLC,814,SRMV,0 38113,TN,Tennessee Valley Authority,18642,SRTV,0 38114,TN,City of Memphis - (TN),12293,SRTV,1 -38114,TN,Entergy Arkansas Inc,814,SRMV,0 +38114,TN,Entergy Arkansas LLC,814,SRMV,0 38114,TN,Tennessee Valley Authority,18642,SRTV,0 38115,TN,City of Memphis - (TN),12293,SRTV,1 -38115,TN,Entergy Arkansas Inc,814,SRMV,0 +38115,TN,Entergy Arkansas LLC,814,SRMV,0 38115,TN,Tennessee Valley Authority,18642,SRTV,0 38116,TN,City of Memphis - (TN),12293,SRTV,1 -38116,TN,Entergy Arkansas Inc,814,SRMV,0 +38116,TN,Entergy Arkansas LLC,814,SRMV,0 38116,TN,Tennessee Valley Authority,18642,SRTV,0 38117,TN,City of Memphis - (TN),12293,SRTV,1 -38117,TN,Entergy Arkansas Inc,814,SRMV,0 +38117,TN,Entergy Arkansas LLC,814,SRMV,0 38117,TN,Tennessee Valley Authority,18642,SRTV,0 38118,TN,City of Memphis - (TN),12293,SRTV,1 -38118,TN,Entergy Arkansas Inc,814,SRMV,0 +38118,TN,Entergy Arkansas LLC,814,SRMV,0 38118,TN,Tennessee Valley Authority,18642,SRTV,0 38119,TN,City of Memphis - (TN),12293,SRTV,1 -38119,TN,Entergy Arkansas Inc,814,SRMV,0 +38119,TN,Entergy Arkansas LLC,814,SRMV,0 38119,TN,Tennessee Valley Authority,18642,SRTV,0 38120,TN,City of Memphis - (TN),12293,SRTV,1 -38120,TN,Entergy Arkansas Inc,814,SRMV,0 +38120,TN,Entergy Arkansas LLC,814,SRMV,0 38120,TN,Tennessee Valley Authority,18642,SRTV,0 38122,TN,City of Memphis - (TN),12293,SRTV,1 -38122,TN,Entergy Arkansas Inc,814,SRMV,0 +38122,TN,Entergy Arkansas LLC,814,SRMV,0 38122,TN,Tennessee Valley Authority,18642,SRTV,0 38124,TN,City of Memphis - (TN),12293,SRTV,1 -38124,TN,Entergy Arkansas Inc,814,SRMV,0 +38124,TN,Entergy Arkansas LLC,814,SRMV,0 38124,TN,Tennessee Valley Authority,18642,SRTV,0 38125,TN,City of Memphis - (TN),12293,SRTV,1 -38125,TN,Entergy Arkansas Inc,814,SRMV,0 +38125,TN,Entergy Arkansas LLC,814,SRMV,0 38125,TN,Tennessee Valley Authority,18642,SRTV,0 38126,TN,City of Memphis - (TN),12293,SRTV,1 -38126,TN,Entergy Arkansas Inc,814,SRMV,0 +38126,TN,Entergy Arkansas LLC,814,SRMV,0 38126,TN,Tennessee Valley Authority,18642,SRTV,0 38127,TN,City of Memphis - (TN),12293,SRTV,1 -38127,TN,Entergy Arkansas Inc,814,SRMV,0 +38127,TN,Entergy Arkansas LLC,814,SRMV,0 38127,TN,Tennessee Valley Authority,18642,SRTV,0 38128,TN,City of Memphis - (TN),12293,SRTV,1 -38128,TN,Entergy Arkansas Inc,814,SRMV,0 +38128,TN,Entergy Arkansas LLC,814,SRMV,0 38128,TN,Tennessee Valley Authority,18642,SRTV,0 38130,TN,City of Memphis - (TN),12293,SRTV,1 -38130,TN,Entergy Arkansas Inc,814,SRMV,0 +38130,TN,Entergy Arkansas LLC,814,SRMV,0 38130,TN,Tennessee Valley Authority,18642,SRTV,0 38131,TN,City of Memphis - (TN),12293,SRTV,1 -38131,TN,Entergy Arkansas Inc,814,SRMV,0 +38131,TN,Entergy Arkansas LLC,814,SRMV,0 38131,TN,Tennessee Valley Authority,18642,SRTV,0 38132,TN,City of Memphis - (TN),12293,SRTV,1 -38132,TN,Entergy Arkansas Inc,814,SRMV,0 +38132,TN,Entergy Arkansas LLC,814,SRMV,0 38132,TN,Tennessee Valley Authority,18642,SRTV,0 38133,TN,City of Memphis - (TN),12293,SRTV,1 -38133,TN,Entergy Arkansas Inc,814,SRMV,0 +38133,TN,Entergy Arkansas LLC,814,SRMV,0 38133,TN,Tennessee Valley Authority,18642,SRTV,0 38134,TN,City of Memphis - (TN),12293,SRTV,1 -38134,TN,Entergy Arkansas Inc,814,SRMV,0 +38134,TN,Entergy Arkansas LLC,814,SRMV,0 38134,TN,Tennessee Valley Authority,18642,SRTV,0 38135,TN,City of Memphis - (TN),12293,SRTV,1 -38135,TN,Entergy Arkansas Inc,814,SRMV,0 +38135,TN,Entergy Arkansas LLC,814,SRMV,0 38135,TN,Tennessee Valley Authority,18642,SRTV,0 38136,TN,City of Memphis - (TN),12293,SRTV,1 -38136,TN,Entergy Arkansas Inc,814,SRMV,0 +38136,TN,Entergy Arkansas LLC,814,SRMV,0 38136,TN,Tennessee Valley Authority,18642,SRTV,0 38137,TN,City of Memphis - (TN),12293,SRTV,1 -38137,TN,Entergy Arkansas Inc,814,SRMV,0 +38137,TN,Entergy Arkansas LLC,814,SRMV,0 38137,TN,Tennessee Valley Authority,18642,SRTV,0 38138,TN,City of Memphis - (TN),12293,SRTV,1 -38138,TN,Entergy Arkansas Inc,814,SRMV,0 +38138,TN,Entergy Arkansas LLC,814,SRMV,0 38138,TN,Tennessee Valley Authority,18642,SRTV,0 38139,TN,City of Memphis - (TN),12293,SRTV,1 -38139,TN,Entergy Arkansas Inc,814,SRMV,0 +38139,TN,Entergy Arkansas LLC,814,SRMV,0 38139,TN,Tennessee Valley Authority,18642,SRTV,0 38141,TN,City of Memphis - (TN),12293,SRTV,1 -38141,TN,Entergy Arkansas Inc,814,SRMV,0 +38141,TN,Entergy Arkansas LLC,814,SRMV,0 38141,TN,Tennessee Valley Authority,18642,SRTV,0 38145,TN,City of Memphis - (TN),12293,SRTV,1 -38145,TN,Entergy Arkansas Inc,814,SRMV,0 +38145,TN,Entergy Arkansas LLC,814,SRMV,0 38145,TN,Tennessee Valley Authority,18642,SRTV,0 38147,TN,City of Memphis - (TN),12293,SRTV,1 -38147,TN,Entergy Arkansas Inc,814,SRMV,0 +38147,TN,Entergy Arkansas LLC,814,SRMV,0 38147,TN,Tennessee Valley Authority,18642,SRTV,0 38148,TN,City of Memphis - (TN),12293,SRTV,1 -38148,TN,Entergy Arkansas Inc,814,SRMV,0 +38148,TN,Entergy Arkansas LLC,814,SRMV,0 38148,TN,Tennessee Valley Authority,18642,SRTV,0 38150,TN,City of Memphis - (TN),12293,SRTV,1 -38150,TN,Entergy Arkansas Inc,814,SRMV,0 +38150,TN,Entergy Arkansas LLC,814,SRMV,0 38150,TN,Tennessee Valley Authority,18642,SRTV,0 38151,TN,City of Memphis - (TN),12293,SRTV,1 -38151,TN,Entergy Arkansas Inc,814,SRMV,0 +38151,TN,Entergy Arkansas LLC,814,SRMV,0 38151,TN,Tennessee Valley Authority,18642,SRTV,0 38152,TN,City of Memphis - (TN),12293,SRTV,1 -38152,TN,Entergy Arkansas Inc,814,SRMV,0 +38152,TN,Entergy Arkansas LLC,814,SRMV,0 38152,TN,Tennessee Valley Authority,18642,SRTV,0 38157,TN,City of Memphis - (TN),12293,SRTV,1 -38157,TN,Entergy Arkansas Inc,814,SRMV,0 +38157,TN,Entergy Arkansas LLC,814,SRMV,0 38157,TN,Tennessee Valley Authority,18642,SRTV,0 38159,TN,City of Memphis - (TN),12293,SRTV,1 -38159,TN,Entergy Arkansas Inc,814,SRMV,0 +38159,TN,Entergy Arkansas LLC,814,SRMV,0 38159,TN,Tennessee Valley Authority,18642,SRTV,0 38161,TN,City of Memphis - (TN),12293,SRTV,1 -38161,TN,Entergy Arkansas Inc,814,SRMV,0 +38161,TN,Entergy Arkansas LLC,814,SRMV,0 38161,TN,Tennessee Valley Authority,18642,SRTV,0 38163,TN,City of Memphis - (TN),12293,SRTV,1 -38163,TN,Entergy Arkansas Inc,814,SRMV,0 +38163,TN,Entergy Arkansas LLC,814,SRMV,0 38163,TN,Tennessee Valley Authority,18642,SRTV,0 38166,TN,City of Memphis - (TN),12293,SRTV,1 -38166,TN,Entergy Arkansas Inc,814,SRMV,0 +38166,TN,Entergy Arkansas LLC,814,SRMV,0 38166,TN,Tennessee Valley Authority,18642,SRTV,0 38167,TN,City of Memphis - (TN),12293,SRTV,1 -38167,TN,Entergy Arkansas Inc,814,SRMV,0 +38167,TN,Entergy Arkansas LLC,814,SRMV,0 38167,TN,Tennessee Valley Authority,18642,SRTV,0 38168,TN,City of Memphis - (TN),12293,SRTV,1 -38168,TN,Entergy Arkansas Inc,814,SRMV,0 +38168,TN,Entergy Arkansas LLC,814,SRMV,0 38168,TN,Tennessee Valley Authority,18642,SRTV,0 38173,TN,City of Memphis - (TN),12293,SRTV,1 -38173,TN,Entergy Arkansas Inc,814,SRMV,0 +38173,TN,Entergy Arkansas LLC,814,SRMV,0 38173,TN,Tennessee Valley Authority,18642,SRTV,0 38174,TN,City of Memphis - (TN),12293,SRTV,1 -38174,TN,Entergy Arkansas Inc,814,SRMV,0 +38174,TN,Entergy Arkansas LLC,814,SRMV,0 38174,TN,Tennessee Valley Authority,18642,SRTV,0 38175,TN,City of Memphis - (TN),12293,SRTV,1 -38175,TN,Entergy Arkansas Inc,814,SRMV,0 +38175,TN,Entergy Arkansas LLC,814,SRMV,0 38175,TN,Tennessee Valley Authority,18642,SRTV,0 38177,TN,City of Memphis - (TN),12293,SRTV,1 -38177,TN,Entergy Arkansas Inc,814,SRMV,0 +38177,TN,Entergy Arkansas LLC,814,SRMV,0 38177,TN,Tennessee Valley Authority,18642,SRTV,0 38181,TN,City of Memphis - (TN),12293,SRTV,1 -38181,TN,Entergy Arkansas Inc,814,SRMV,0 +38181,TN,Entergy Arkansas LLC,814,SRMV,0 38181,TN,Tennessee Valley Authority,18642,SRTV,0 38182,TN,City of Memphis - (TN),12293,SRTV,1 -38182,TN,Entergy Arkansas Inc,814,SRMV,0 +38182,TN,Entergy Arkansas LLC,814,SRMV,0 38182,TN,Tennessee Valley Authority,18642,SRTV,0 38183,TN,City of Memphis - (TN),12293,SRTV,1 -38183,TN,Entergy Arkansas Inc,814,SRMV,0 +38183,TN,Entergy Arkansas LLC,814,SRMV,0 38183,TN,Tennessee Valley Authority,18642,SRTV,0 38184,TN,City of Memphis - (TN),12293,SRTV,1 -38184,TN,Entergy Arkansas Inc,814,SRMV,0 +38184,TN,Entergy Arkansas LLC,814,SRMV,0 38184,TN,Tennessee Valley Authority,18642,SRTV,0 38186,TN,City of Memphis - (TN),12293,SRTV,1 -38186,TN,Entergy Arkansas Inc,814,SRMV,0 +38186,TN,Entergy Arkansas LLC,814,SRMV,0 38186,TN,Tennessee Valley Authority,18642,SRTV,0 38187,TN,City of Memphis - (TN),12293,SRTV,1 -38187,TN,Entergy Arkansas Inc,814,SRMV,0 +38187,TN,Entergy Arkansas LLC,814,SRMV,0 38187,TN,Tennessee Valley Authority,18642,SRTV,0 38188,TN,City of Memphis - (TN),12293,SRTV,1 -38188,TN,Entergy Arkansas Inc,814,SRMV,0 +38188,TN,Entergy Arkansas LLC,814,SRMV,0 38188,TN,Tennessee Valley Authority,18642,SRTV,0 38190,TN,City of Memphis - (TN),12293,SRTV,1 -38190,TN,Entergy Arkansas Inc,814,SRMV,0 +38190,TN,Entergy Arkansas LLC,814,SRMV,0 38190,TN,Tennessee Valley Authority,18642,SRTV,0 38193,TN,City of Memphis - (TN),12293,SRTV,1 -38193,TN,Entergy Arkansas Inc,814,SRMV,0 +38193,TN,Entergy Arkansas LLC,814,SRMV,0 38193,TN,Tennessee Valley Authority,18642,SRTV,0 38194,TN,City of Memphis - (TN),12293,SRTV,1 -38194,TN,Entergy Arkansas Inc,814,SRMV,0 +38194,TN,Entergy Arkansas LLC,814,SRMV,0 38194,TN,Tennessee Valley Authority,18642,SRTV,0 38197,TN,City of Memphis - (TN),12293,SRTV,1 -38197,TN,Entergy Arkansas Inc,814,SRMV,0 +38197,TN,Entergy Arkansas LLC,814,SRMV,0 38197,TN,Tennessee Valley Authority,18642,SRTV,0 38201,TN,Carroll County - (TN),3075,SRTV,1 38201,TN,City of Paris - (TN),14455,SRTV,0 @@ -25712,41 +25652,41 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38603,MS,City of Holly Springs,8748,SRTV,1 38603,MS,Tennessee Valley Authority,18642,SRTV,0 38603,MS,Tippah Electric Power Assn,18943,SRTV,0 -38606,MS,Entergy Mississippi Inc,12685,SRMV,1 +38606,MS,Entergy Mississippi LLC,12685,SRMV,1 38606,MS,North East Mississippi EPA,40302,SRTV,0 38606,MS,Tallahatchie Valley E P A,18447,SRTV,0 38606,MS,Tennessee Valley Authority,18642,SRTV,0 -38609,MS,Entergy Mississippi Inc,12685,SRMV,1 +38609,MS,Entergy Mississippi LLC,12685,SRMV,1 38609,MS,Tennessee Valley Authority,18642,SRTV,0 38610,MS,City of New Albany - (MS),13412,SRTV,1 38610,MS,Tennessee Valley Authority,18642,SRTV,0 38610,MS,Tippah Electric Power Assn,18943,SRTV,0 38611,MS,City of Holly Springs,8748,SRTV,1 -38611,MS,Entergy Mississippi Inc,12685,SRMV,0 +38611,MS,Entergy Mississippi LLC,12685,SRMV,0 38611,MS,Northcentral Mississippi E P A,13735,SRTV,0 38611,MS,Tennessee Valley Authority,18642,SRTV,0 38614,MS,Clarksdale Public Utilities,3702,SRMV,1 38614,MS,Coahoma Electric Power Assn,3839,SRSO,0 -38614,MS,Entergy Mississippi Inc,12685,SRMV,0 +38614,MS,Entergy Mississippi LLC,12685,SRMV,0 38614,MS,Tennessee Valley Authority,18642,SRTV,0 38617,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38617,MS,Entergy Mississippi Inc,12685,SRMV,0 +38617,MS,Entergy Mississippi LLC,12685,SRMV,0 38617,MS,Tennessee Valley Authority,18642,SRTV,0 38618,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38618,MS,Entergy Mississippi Inc,12685,SRMV,0 +38618,MS,Entergy Mississippi LLC,12685,SRMV,0 38618,MS,Northcentral Mississippi E P A,13735,SRTV,0 38618,MS,Tallahatchie Valley E P A,18447,SRTV,0 38618,MS,Tennessee Valley Authority,18642,SRTV,0 -38619,MS,Entergy Mississippi Inc,12685,SRMV,1 +38619,MS,Entergy Mississippi LLC,12685,SRMV,1 38619,MS,North East Mississippi EPA,40302,SRTV,0 38619,MS,Northcentral Mississippi E P A,13735,SRTV,0 38619,MS,Tallahatchie Valley E P A,18447,SRTV,0 38619,MS,Tennessee Valley Authority,18642,SRTV,0 -38620,MS,Entergy Mississippi Inc,12685,SRMV,1 +38620,MS,Entergy Mississippi LLC,12685,SRMV,1 38620,MS,Tallahatchie Valley E P A,18447,SRTV,0 38620,MS,Tennessee Valley Authority,18642,SRTV,0 38621,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38621,MS,Entergy Mississippi Inc,12685,SRMV,0 +38621,MS,Entergy Mississippi LLC,12685,SRMV,0 38621,MS,Tallahatchie Valley E P A,18447,SRTV,0 38621,MS,Tennessee Valley Authority,18642,SRTV,0 38622,MS,Tallahatchie Valley E P A,18447,SRTV,1 @@ -25759,19 +25699,19 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38625,MS,Tippah Electric Power Assn,18943,SRTV,0 38625,MS,Tombigbee Electric Power Assn,19007,SRTV,0 38626,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38626,MS,Entergy Mississippi Inc,12685,SRMV,0 +38626,MS,Entergy Mississippi LLC,12685,SRMV,0 38626,MS,Tallahatchie Valley E P A,18447,SRTV,0 38626,MS,Tennessee Valley Authority,18642,SRTV,0 38627,MS,North East Mississippi EPA,40302,SRTV,1 38627,MS,Tennessee Valley Authority,18642,SRTV,0 -38628,MS,Entergy Mississippi Inc,12685,SRMV,1 +38628,MS,Entergy Mississippi LLC,12685,SRMV,1 38628,MS,Tennessee Valley Authority,18642,SRTV,0 38629,MS,Tennessee Valley Authority,18642,SRTV,1 38629,MS,Tippah Electric Power Assn,18943,SRTV,0 38630,MS,Clarksdale Public Utilities,3702,SRMV,1 -38631,MS,Entergy Mississippi Inc,12685,SRMV,1 +38631,MS,Entergy Mississippi LLC,12685,SRMV,1 38632,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38632,MS,Entergy Mississippi Inc,12685,SRMV,0 +38632,MS,Entergy Mississippi LLC,12685,SRMV,0 38632,MS,Tallahatchie Valley E P A,18447,SRTV,0 38632,MS,Tennessee Valley Authority,18642,SRTV,0 38633,MS,City of Holly Springs,8748,SRTV,1 @@ -25782,32 +25722,32 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38634,MS,City of Holly Springs,8748,SRTV,1 38634,MS,Tennessee Valley Authority,18642,SRTV,0 38635,MS,City of Holly Springs,8748,SRTV,1 -38635,MS,Entergy Mississippi Inc,12685,SRMV,0 +38635,MS,Entergy Mississippi LLC,12685,SRMV,0 38635,MS,North East Mississippi EPA,40302,SRTV,0 38635,MS,Northcentral Mississippi E P A,13735,SRTV,0 38635,MS,Tallahatchie Valley E P A,18447,SRTV,0 38635,MS,Tennessee Valley Authority,18642,SRTV,0 38637,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38637,MS,Entergy Mississippi Inc,12685,SRMV,0 +38637,MS,Entergy Mississippi LLC,12685,SRMV,0 38637,MS,Tennessee Valley Authority,18642,SRTV,0 -38638,MS,Entergy Mississippi Inc,12685,SRMV,1 +38638,MS,Entergy Mississippi LLC,12685,SRMV,1 38638,MS,Tennessee Valley Authority,18642,SRTV,0 38639,MS,Coahoma Electric Power Assn,3839,SRSO,1 38641,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38641,MS,Entergy Mississippi Inc,12685,SRMV,0 +38641,MS,Entergy Mississippi LLC,12685,SRMV,0 38641,MS,Tennessee Valley Authority,18642,SRTV,0 38642,MS,City of Holly Springs,8748,SRTV,1 38642,MS,Tennessee Valley Authority,18642,SRTV,0 38643,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38643,MS,Entergy Mississippi Inc,12685,SRMV,0 +38643,MS,Entergy Mississippi LLC,12685,SRMV,0 38643,MS,Tallahatchie Valley E P A,18447,SRTV,0 38643,MS,Tennessee Valley Authority,18642,SRTV,0 38644,MS,Coahoma Electric Power Assn,3839,SRSO,1 38645,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38645,MS,Entergy Mississippi Inc,12685,SRMV,0 +38645,MS,Entergy Mississippi LLC,12685,SRMV,0 38645,MS,Tennessee Valley Authority,18642,SRTV,0 38646,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38646,MS,Entergy Mississippi Inc,12685,SRMV,0 +38646,MS,Entergy Mississippi LLC,12685,SRMV,0 38646,MS,Tallahatchie Valley E P A,18447,SRTV,0 38646,MS,Tennessee Valley Authority,18642,SRTV,0 38647,MS,City of Holly Springs,8748,SRTV,1 @@ -25819,7 +25759,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38650,MS,Tennessee Valley Authority,18642,SRTV,0 38650,MS,Tippah Electric Power Assn,18943,SRTV,0 38651,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38651,MS,Entergy Mississippi Inc,12685,SRMV,0 +38651,MS,Entergy Mississippi LLC,12685,SRMV,0 38651,MS,Northcentral Mississippi E P A,13735,SRTV,0 38651,MS,Tennessee Valley Authority,18642,SRTV,0 38652,MS,City of New Albany - (MS),13412,SRTV,1 @@ -25828,7 +25768,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38652,MS,Tennessee Valley Authority,18642,SRTV,0 38652,MS,Tippah Electric Power Assn,18943,SRTV,0 38652,MS,Tombigbee Electric Power Assn,19007,SRTV,0 -38654,MS,Entergy Mississippi Inc,12685,SRMV,1 +38654,MS,Entergy Mississippi LLC,12685,SRMV,1 38654,MS,Northcentral Mississippi E P A,13735,SRTV,0 38654,MS,Tennessee Valley Authority,18642,SRTV,0 38655,MS,City of Oxford - (MS),14275,SRTV,1 @@ -25836,7 +25776,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38655,MS,Pontotoc Electric Power Assn,15211,SRTV,0 38655,MS,Tallahatchie Valley E P A,18447,SRTV,0 38655,MS,Tennessee Valley Authority,18642,SRTV,0 -38658,MS,Entergy Mississippi Inc,12685,SRMV,1 +38658,MS,Entergy Mississippi LLC,12685,SRMV,1 38658,MS,Tallahatchie Valley E P A,18447,SRTV,0 38658,MS,Tennessee Valley Authority,18642,SRTV,0 38659,MS,City of Holly Springs,8748,SRTV,1 @@ -25852,29 +25792,29 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38663,MS,Tennessee Valley Authority,18642,SRTV,0 38663,MS,Tippah Electric Power Assn,18943,SRTV,0 38664,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38664,MS,Entergy Mississippi Inc,12685,SRMV,0 +38664,MS,Entergy Mississippi LLC,12685,SRMV,0 38664,MS,Tallahatchie Valley E P A,18447,SRTV,0 38664,MS,Tennessee Valley Authority,18642,SRTV,0 38665,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38665,MS,Entergy Mississippi Inc,12685,SRMV,0 +38665,MS,Entergy Mississippi LLC,12685,SRMV,0 38665,MS,Tallahatchie Valley E P A,18447,SRTV,0 38665,MS,Tennessee Valley Authority,18642,SRTV,0 -38666,MS,Entergy Mississippi Inc,12685,SRMV,1 +38666,MS,Entergy Mississippi LLC,12685,SRMV,1 38666,MS,North East Mississippi EPA,40302,SRTV,0 38666,MS,Tallahatchie Valley E P A,18447,SRTV,0 38666,MS,Tennessee Valley Authority,18642,SRTV,0 -38668,MS,Entergy Mississippi Inc,12685,SRMV,1 +38668,MS,Entergy Mississippi LLC,12685,SRMV,1 38668,MS,Northcentral Mississippi E P A,13735,SRTV,0 38668,MS,Tallahatchie Valley E P A,18447,SRTV,0 38668,MS,Tennessee Valley Authority,18642,SRTV,0 38669,MS,Coahoma Electric Power Assn,3839,SRSO,1 38670,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38670,MS,Entergy Mississippi Inc,12685,SRMV,0 +38670,MS,Entergy Mississippi LLC,12685,SRMV,0 38670,MS,Tallahatchie Valley E P A,18447,SRTV,0 38670,MS,Tennessee Valley Authority,18642,SRTV,0 -38671,MS,Entergy Mississippi Inc,12685,SRMV,1 +38671,MS,Entergy Mississippi LLC,12685,SRMV,1 38671,MS,Tennessee Valley Authority,18642,SRTV,0 -38672,MS,Entergy Mississippi Inc,12685,SRMV,1 +38672,MS,Entergy Mississippi LLC,12685,SRMV,1 38672,MS,Tennessee Valley Authority,18642,SRTV,0 38673,MS,North East Mississippi EPA,40302,SRTV,1 38673,MS,Tennessee Valley Authority,18642,SRTV,0 @@ -25884,7 +25824,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38675,MS,North East Mississippi EPA,40302,SRTV,1 38675,MS,Tennessee Valley Authority,18642,SRTV,0 38676,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38676,MS,Entergy Mississippi Inc,12685,SRMV,0 +38676,MS,Entergy Mississippi LLC,12685,SRMV,0 38676,MS,Tallahatchie Valley E P A,18447,SRTV,0 38676,MS,Tennessee Valley Authority,18642,SRTV,0 38677,MS,North East Mississippi EPA,40302,SRTV,1 @@ -25892,7 +25832,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38679,MS,Northcentral Mississippi E P A,13735,SRTV,1 38679,MS,Tennessee Valley Authority,18642,SRTV,0 38680,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38680,MS,Entergy Mississippi Inc,12685,SRMV,0 +38680,MS,Entergy Mississippi LLC,12685,SRMV,0 38680,MS,Tennessee Valley Authority,18642,SRTV,0 38683,MS,Alcorn County Elec Power Assn,276,SRTV,1 38683,MS,Prentiss County Elec Pwr Assn,15334,SRTV,0 @@ -25903,95 +25843,95 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38685,MS,Northcentral Mississippi E P A,13735,SRTV,0 38685,MS,Tallahatchie Valley E P A,18447,SRTV,0 38685,MS,Tennessee Valley Authority,18642,SRTV,0 -38686,MS,Entergy Mississippi Inc,12685,SRMV,1 +38686,MS,Entergy Mississippi LLC,12685,SRMV,1 38686,MS,Tennessee Valley Authority,18642,SRTV,0 38701,MS,Delta Electric Power Assn,22815,SRSO,1 -38701,MS,Entergy Mississippi Inc,12685,SRMV,0 +38701,MS,Entergy Mississippi LLC,12685,SRMV,0 38701,MS,Twin County Electric Pwr Assn,18961,SRSO,0 38702,MS,Twin County Electric Pwr Assn,18961,SRSO,1 38703,MS,Delta Electric Power Assn,22815,SRSO,1 -38703,MS,Entergy Mississippi Inc,12685,SRMV,0 +38703,MS,Entergy Mississippi LLC,12685,SRMV,0 38703,MS,Twin County Electric Pwr Assn,18961,SRSO,0 -38704,MS,Entergy Mississippi Inc,12685,SRMV,1 +38704,MS,Entergy Mississippi LLC,12685,SRMV,1 38720,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38720,MS,Entergy Mississippi Inc,12685,SRMV,0 +38720,MS,Entergy Mississippi LLC,12685,SRMV,0 38721,MS,Twin County Electric Pwr Assn,18961,SRSO,1 38721,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 38722,MS,Twin County Electric Pwr Assn,18961,SRSO,1 38723,MS,Twin County Electric Pwr Assn,18961,SRSO,1 38725,MS,Delta Electric Power Assn,22815,SRSO,1 -38725,MS,Entergy Mississippi Inc,12685,SRMV,0 +38725,MS,Entergy Mississippi LLC,12685,SRMV,0 38726,MS,Delta Electric Power Assn,22815,SRSO,1 -38726,MS,Entergy Mississippi Inc,12685,SRMV,0 +38726,MS,Entergy Mississippi LLC,12685,SRMV,0 38730,MS,Delta Electric Power Assn,22815,SRSO,1 -38730,MS,Entergy Mississippi Inc,12685,SRMV,0 +38730,MS,Entergy Mississippi LLC,12685,SRMV,0 38731,MS,Twin County Electric Pwr Assn,18961,SRSO,1 38732,MS,Delta Electric Power Assn,22815,SRSO,1 -38732,MS,Entergy Mississippi Inc,12685,SRMV,0 -38733,MS,Entergy Mississippi Inc,12685,SRMV,1 +38732,MS,Entergy Mississippi LLC,12685,SRMV,0 +38733,MS,Entergy Mississippi LLC,12685,SRMV,1 38736,MS,Delta Electric Power Assn,22815,SRSO,1 -38736,MS,Entergy Mississippi Inc,12685,SRMV,0 +38736,MS,Entergy Mississippi LLC,12685,SRMV,0 38737,MS,Coahoma Electric Power Assn,3839,SRSO,1 38737,MS,Delta Electric Power Assn,22815,SRSO,0 -38737,MS,Entergy Mississippi Inc,12685,SRMV,0 +38737,MS,Entergy Mississippi LLC,12685,SRMV,0 38737,MS,Tennessee Valley Authority,18642,SRTV,0 38738,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38738,MS,Entergy Mississippi Inc,12685,SRMV,0 -38739,MS,Entergy Mississippi Inc,12685,SRMV,1 +38738,MS,Entergy Mississippi LLC,12685,SRMV,0 +38739,MS,Entergy Mississippi LLC,12685,SRMV,1 38740,MS,Coahoma Electric Power Assn,3839,SRSO,1 38740,MS,Delta Electric Power Assn,22815,SRSO,0 -38740,MS,Entergy Mississippi Inc,12685,SRMV,0 -38744,MS,Entergy Mississippi Inc,12685,SRMV,1 +38740,MS,Entergy Mississippi LLC,12685,SRMV,0 +38744,MS,Entergy Mississippi LLC,12685,SRMV,1 38744,MS,Twin County Electric Pwr Assn,18961,SRSO,0 -38745,MS,Entergy Mississippi Inc,12685,SRMV,1 +38745,MS,Entergy Mississippi LLC,12685,SRMV,1 38745,MS,Twin County Electric Pwr Assn,18961,SRSO,0 38746,MS,Coahoma Electric Power Assn,3839,SRSO,1 38746,MS,Delta Electric Power Assn,22815,SRSO,0 -38746,MS,Entergy Mississippi Inc,12685,SRMV,0 +38746,MS,Entergy Mississippi LLC,12685,SRMV,0 38748,MS,Delta Electric Power Assn,22815,SRSO,1 -38748,MS,Entergy Mississippi Inc,12685,SRMV,0 +38748,MS,Entergy Mississippi LLC,12685,SRMV,0 38748,MS,Twin County Electric Pwr Assn,18961,SRSO,0 -38749,MS,Entergy Mississippi Inc,12685,SRMV,1 +38749,MS,Entergy Mississippi LLC,12685,SRMV,1 38751,MS,Delta Electric Power Assn,22815,SRSO,1 -38751,MS,Entergy Mississippi Inc,12685,SRMV,0 +38751,MS,Entergy Mississippi LLC,12685,SRMV,0 38751,MS,Twin County Electric Pwr Assn,18961,SRSO,0 38753,MS,Delta Electric Power Assn,22815,SRSO,1 -38753,MS,Entergy Mississippi Inc,12685,SRMV,0 +38753,MS,Entergy Mississippi LLC,12685,SRMV,0 38753,MS,Twin County Electric Pwr Assn,18961,SRSO,0 38754,MS,Delta Electric Power Assn,22815,SRSO,1 -38754,MS,Entergy Mississippi Inc,12685,SRMV,0 +38754,MS,Entergy Mississippi LLC,12685,SRMV,0 38754,MS,Twin County Electric Pwr Assn,18961,SRSO,0 38756,MS,Delta Electric Power Assn,22815,SRSO,1 -38756,MS,Entergy Mississippi Inc,12685,SRMV,0 +38756,MS,Entergy Mississippi LLC,12685,SRMV,0 38756,MS,Twin County Electric Pwr Assn,18961,SRSO,0 38759,MS,Delta Electric Power Assn,22815,SRSO,1 -38759,MS,Entergy Mississippi Inc,12685,SRMV,0 -38760,MS,Entergy Mississippi Inc,12685,SRMV,1 +38759,MS,Entergy Mississippi LLC,12685,SRMV,0 +38760,MS,Entergy Mississippi LLC,12685,SRMV,1 38761,MS,Delta Electric Power Assn,22815,SRSO,1 -38761,MS,Entergy Mississippi Inc,12685,SRMV,0 +38761,MS,Entergy Mississippi LLC,12685,SRMV,0 38762,MS,Coahoma Electric Power Assn,3839,SRSO,1 38762,MS,Delta Electric Power Assn,22815,SRSO,0 -38762,MS,Entergy Mississippi Inc,12685,SRMV,0 -38764,MS,Entergy Mississippi Inc,12685,SRMV,1 -38765,MS,Entergy Mississippi Inc,12685,SRMV,1 +38762,MS,Entergy Mississippi LLC,12685,SRMV,0 +38764,MS,Entergy Mississippi LLC,12685,SRMV,1 +38765,MS,Entergy Mississippi LLC,12685,SRMV,1 38767,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38767,MS,Entergy Mississippi Inc,12685,SRMV,0 -38768,MS,Entergy Mississippi Inc,12685,SRMV,1 +38767,MS,Entergy Mississippi LLC,12685,SRMV,0 +38768,MS,Entergy Mississippi LLC,12685,SRMV,1 38769,MS,Delta Electric Power Assn,22815,SRSO,1 -38769,MS,Entergy Mississippi Inc,12685,SRMV,0 +38769,MS,Entergy Mississippi LLC,12685,SRMV,0 38771,MS,Delta Electric Power Assn,22815,SRSO,1 -38771,MS,Entergy Mississippi Inc,12685,SRMV,0 -38772,MS,Entergy Mississippi Inc,12685,SRMV,1 +38771,MS,Entergy Mississippi LLC,12685,SRMV,0 +38772,MS,Entergy Mississippi LLC,12685,SRMV,1 38773,MS,Delta Electric Power Assn,22815,SRSO,1 38774,MS,Coahoma Electric Power Assn,3839,SRSO,1 38774,MS,Delta Electric Power Assn,22815,SRSO,0 -38774,MS,Entergy Mississippi Inc,12685,SRMV,0 +38774,MS,Entergy Mississippi LLC,12685,SRMV,0 38776,MS,Twin County Electric Pwr Assn,18961,SRSO,1 38778,MS,Delta Electric Power Assn,22815,SRSO,1 -38778,MS,Entergy Mississippi Inc,12685,SRMV,0 +38778,MS,Entergy Mississippi LLC,12685,SRMV,0 38780,MS,Twin County Electric Pwr Assn,18961,SRSO,1 38781,MS,Delta Electric Power Assn,22815,SRSO,1 -38782,MS,Entergy Mississippi Inc,12685,SRMV,1 +38782,MS,Entergy Mississippi LLC,12685,SRMV,1 38801,MS,City of Tupelo - (MS),19273,SRTV,1 38801,MS,Pontotoc Electric Power Assn,15211,SRTV,0 38801,MS,Tennessee Valley Authority,18642,SRTV,0 @@ -26154,16 +26094,16 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38880,MS,Prentiss County Elec Pwr Assn,15334,SRTV,1 38880,MS,Tennessee Valley Authority,18642,SRTV,0 38901,MS,Delta Electric Power Assn,22815,SRSO,1 -38901,MS,Entergy Mississippi Inc,12685,SRMV,0 +38901,MS,Entergy Mississippi LLC,12685,SRMV,0 38901,MS,Tallahatchie Valley E P A,18447,SRTV,0 38901,MS,Tennessee Valley Authority,18642,SRTV,0 -38902,MS,Entergy Mississippi Inc,12685,SRMV,1 +38902,MS,Entergy Mississippi LLC,12685,SRMV,1 38902,MS,Tennessee Valley Authority,18642,SRTV,0 38913,MS,North East Mississippi EPA,40302,SRTV,1 38913,MS,Pontotoc Electric Power Assn,15211,SRTV,0 38913,MS,Tallahatchie Valley E P A,18447,SRTV,0 38913,MS,Tennessee Valley Authority,18642,SRTV,0 -38914,MS,Entergy Mississippi Inc,12685,SRMV,1 +38914,MS,Entergy Mississippi LLC,12685,SRMV,1 38914,MS,Natchez Trace Elec Power Assn,13227,SRTV,0 38914,MS,Tennessee Valley Authority,18642,SRTV,0 38915,MS,Pontotoc Electric Power Assn,15211,SRTV,1 @@ -26173,63 +26113,63 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38916,MS,Tallahatchie Valley E P A,18447,SRTV,0 38916,MS,Tennessee Valley Authority,18642,SRTV,0 38917,MS,Delta Electric Power Assn,22815,SRSO,1 -38917,MS,Entergy Mississippi Inc,12685,SRMV,0 +38917,MS,Entergy Mississippi LLC,12685,SRMV,0 38920,MS,Delta Electric Power Assn,22815,SRSO,1 -38920,MS,Entergy Mississippi Inc,12685,SRMV,0 +38920,MS,Entergy Mississippi LLC,12685,SRMV,0 38920,MS,Tallahatchie Valley E P A,18447,SRTV,0 38920,MS,Tennessee Valley Authority,18642,SRTV,0 38921,MS,Delta Electric Power Assn,22815,SRSO,1 -38921,MS,Entergy Mississippi Inc,12685,SRMV,0 +38921,MS,Entergy Mississippi LLC,12685,SRMV,0 38921,MS,Tallahatchie Valley E P A,18447,SRTV,0 38921,MS,Tennessee Valley Authority,18642,SRTV,0 -38922,MS,Entergy Mississippi Inc,12685,SRMV,1 +38922,MS,Entergy Mississippi LLC,12685,SRMV,1 38922,MS,Natchez Trace Elec Power Assn,13227,SRTV,0 38922,MS,Tallahatchie Valley E P A,18447,SRTV,0 38922,MS,Tennessee Valley Authority,18642,SRTV,0 38923,MS,Delta Electric Power Assn,22815,SRSO,1 -38923,MS,Entergy Mississippi Inc,12685,SRMV,0 +38923,MS,Entergy Mississippi LLC,12685,SRMV,0 38924,MS,Delta Electric Power Assn,22815,SRSO,1 -38924,MS,Entergy Mississippi Inc,12685,SRMV,0 +38924,MS,Entergy Mississippi LLC,12685,SRMV,0 38924,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 38925,MS,Delta Electric Power Assn,22815,SRSO,1 -38925,MS,Entergy Mississippi Inc,12685,SRMV,0 +38925,MS,Entergy Mississippi LLC,12685,SRMV,0 38925,MS,Natchez Trace Elec Power Assn,13227,SRTV,0 38925,MS,Tennessee Valley Authority,18642,SRTV,0 -38926,MS,Entergy Mississippi Inc,12685,SRMV,1 +38926,MS,Entergy Mississippi LLC,12685,SRMV,1 38926,MS,Tennessee Valley Authority,18642,SRTV,0 -38927,MS,Entergy Mississippi Inc,12685,SRMV,1 +38927,MS,Entergy Mississippi LLC,12685,SRMV,1 38927,MS,Tallahatchie Valley E P A,18447,SRTV,0 38927,MS,Tennessee Valley Authority,18642,SRTV,0 38928,MS,Delta Electric Power Assn,22815,SRSO,1 -38928,MS,Entergy Mississippi Inc,12685,SRMV,0 +38928,MS,Entergy Mississippi LLC,12685,SRMV,0 38928,MS,Tallahatchie Valley E P A,18447,SRTV,0 38928,MS,Tennessee Valley Authority,18642,SRTV,0 38929,MS,Delta Electric Power Assn,22815,SRSO,1 -38929,MS,Entergy Mississippi Inc,12685,SRMV,0 +38929,MS,Entergy Mississippi LLC,12685,SRMV,0 38929,MS,Natchez Trace Elec Power Assn,13227,SRTV,0 38929,MS,Tennessee Valley Authority,18642,SRTV,0 38930,MS,Delta Electric Power Assn,22815,SRSO,1 -38930,MS,Entergy Mississippi Inc,12685,SRMV,0 +38930,MS,Entergy Mississippi LLC,12685,SRMV,0 38930,MS,Greenwood Utilities Comm,7651,SRMV,0 38935,MS,Greenwood Utilities Comm,7651,SRMV,1 38940,MS,Delta Electric Power Assn,22815,SRSO,1 -38940,MS,Entergy Mississippi Inc,12685,SRMV,0 +38940,MS,Entergy Mississippi LLC,12685,SRMV,0 38940,MS,Tallahatchie Valley E P A,18447,SRTV,0 38940,MS,Tennessee Valley Authority,18642,SRTV,0 38941,MS,Delta Electric Power Assn,22815,SRSO,1 -38941,MS,Entergy Mississippi Inc,12685,SRMV,0 +38941,MS,Entergy Mississippi LLC,12685,SRMV,0 38941,MS,Greenwood Utilities Comm,7651,SRMV,0 38943,MS,Delta Electric Power Assn,22815,SRSO,1 38944,MS,Delta Electric Power Assn,22815,SRSO,1 -38944,MS,Entergy Mississippi Inc,12685,SRMV,0 +38944,MS,Entergy Mississippi LLC,12685,SRMV,0 38944,MS,Tennessee Valley Authority,18642,SRTV,0 38945,MS,Delta Electric Power Assn,22815,SRSO,1 -38945,MS,Entergy Mississippi Inc,12685,SRMV,0 +38945,MS,Entergy Mississippi LLC,12685,SRMV,0 38945,MS,Tennessee Valley Authority,18642,SRTV,0 -38946,MS,Entergy Mississippi Inc,12685,SRMV,1 +38946,MS,Entergy Mississippi LLC,12685,SRMV,1 38947,MS,Delta Electric Power Assn,22815,SRSO,1 -38947,MS,Entergy Mississippi Inc,12685,SRMV,0 -38948,MS,Entergy Mississippi Inc,12685,SRMV,1 +38947,MS,Entergy Mississippi LLC,12685,SRMV,0 +38948,MS,Entergy Mississippi LLC,12685,SRMV,1 38948,MS,Tallahatchie Valley E P A,18447,SRTV,0 38948,MS,Tennessee Valley Authority,18642,SRTV,0 38949,MS,North East Mississippi EPA,40302,SRTV,1 @@ -26237,7 +26177,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38949,MS,Tallahatchie Valley E P A,18447,SRTV,0 38949,MS,Tennessee Valley Authority,18642,SRTV,0 38950,MS,Delta Electric Power Assn,22815,SRSO,1 -38950,MS,Entergy Mississippi Inc,12685,SRMV,0 +38950,MS,Entergy Mississippi LLC,12685,SRMV,0 38950,MS,Tallahatchie Valley E P A,18447,SRTV,0 38950,MS,Tennessee Valley Authority,18642,SRTV,0 38951,MS,Natchez Trace Elec Power Assn,13227,SRTV,1 @@ -26245,152 +26185,152 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 38951,MS,Tallahatchie Valley E P A,18447,SRTV,0 38951,MS,Tennessee Valley Authority,18642,SRTV,0 38952,MS,Delta Electric Power Assn,22815,SRSO,1 -38952,MS,Entergy Mississippi Inc,12685,SRMV,0 -38953,MS,Entergy Mississippi Inc,12685,SRMV,1 +38952,MS,Entergy Mississippi LLC,12685,SRMV,0 +38953,MS,Entergy Mississippi LLC,12685,SRMV,1 38953,MS,Tallahatchie Valley E P A,18447,SRTV,0 38953,MS,Tennessee Valley Authority,18642,SRTV,0 38954,MS,Delta Electric Power Assn,22815,SRSO,1 -38954,MS,Entergy Mississippi Inc,12685,SRMV,0 +38954,MS,Entergy Mississippi LLC,12685,SRMV,0 38954,MS,Greenwood Utilities Comm,7651,SRMV,0 38955,MS,Natchez Trace Elec Power Assn,13227,SRTV,1 38955,MS,Tennessee Valley Authority,18642,SRTV,0 -38957,MS,Entergy Mississippi Inc,12685,SRMV,1 +38957,MS,Entergy Mississippi LLC,12685,SRMV,1 38957,MS,Tennessee Valley Authority,18642,SRTV,0 -38958,MS,Entergy Mississippi Inc,12685,SRMV,1 +38958,MS,Entergy Mississippi LLC,12685,SRMV,1 38958,MS,Tennessee Valley Authority,18642,SRTV,0 38959,MS,Delta Electric Power Assn,22815,SRSO,1 -38959,MS,Entergy Mississippi Inc,12685,SRMV,0 +38959,MS,Entergy Mississippi LLC,12685,SRMV,0 38959,MS,Twin County Electric Pwr Assn,18961,SRSO,0 -38960,MS,Entergy Mississippi Inc,12685,SRMV,1 +38960,MS,Entergy Mississippi LLC,12685,SRMV,1 38960,MS,Tennessee Valley Authority,18642,SRTV,0 -38961,MS,Entergy Mississippi Inc,12685,SRMV,1 +38961,MS,Entergy Mississippi LLC,12685,SRMV,1 38961,MS,Tallahatchie Valley E P A,18447,SRTV,0 38961,MS,Tennessee Valley Authority,18642,SRTV,0 38962,MS,Tallahatchie Valley E P A,18447,SRTV,1 38962,MS,Tennessee Valley Authority,18642,SRTV,0 38963,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38963,MS,Entergy Mississippi Inc,12685,SRMV,0 +38963,MS,Entergy Mississippi LLC,12685,SRMV,0 38963,MS,Tallahatchie Valley E P A,18447,SRTV,0 38963,MS,Tennessee Valley Authority,18642,SRTV,0 38964,MS,Coahoma Electric Power Assn,3839,SRSO,1 -38964,MS,Entergy Mississippi Inc,12685,SRMV,0 +38964,MS,Entergy Mississippi LLC,12685,SRMV,0 38964,MS,Tallahatchie Valley E P A,18447,SRTV,0 38964,MS,Tennessee Valley Authority,18642,SRTV,0 38965,MS,City of Water Valley - (MS),20176,SRTV,1 38965,MS,North East Mississippi EPA,40302,SRTV,0 38965,MS,Tallahatchie Valley E P A,18447,SRTV,0 38965,MS,Tennessee Valley Authority,18642,SRTV,0 -38966,MS,Entergy Mississippi Inc,12685,SRMV,1 +38966,MS,Entergy Mississippi LLC,12685,SRMV,1 38966,MS,Tennessee Valley Authority,18642,SRTV,0 38967,MS,Delta Electric Power Assn,22815,SRSO,1 -38967,MS,Entergy Mississippi Inc,12685,SRMV,0 +38967,MS,Entergy Mississippi LLC,12685,SRMV,0 38967,MS,Tennessee Valley Authority,18642,SRTV,0 39038,MS,Delta Electric Power Assn,22815,SRSO,1 -39038,MS,Entergy Mississippi Inc,12685,SRMV,0 +39038,MS,Entergy Mississippi LLC,12685,SRMV,0 39038,MS,Twin County Electric Pwr Assn,18961,SRSO,0 39038,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 -39039,MS,Entergy Mississippi Inc,12685,SRMV,1 +39039,MS,Entergy Mississippi LLC,12685,SRMV,1 39039,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 -39040,MS,Entergy Mississippi Inc,12685,SRMV,1 +39040,MS,Entergy Mississippi LLC,12685,SRMV,1 39040,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 -39041,MS,Entergy Mississippi Inc,12685,SRMV,1 +39041,MS,Entergy Mississippi LLC,12685,SRMV,1 39041,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 39042,MS,Central Electric Power Assn - (MS),2849,SRTV,1 -39042,MS,Entergy Mississippi Inc,12685,SRMV,0 +39042,MS,Entergy Mississippi LLC,12685,SRMV,0 39042,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39042,MS,Tennessee Valley Authority,18642,SRTV,0 -39043,MS,Entergy Mississippi Inc,12685,SRMV,1 +39043,MS,Entergy Mississippi LLC,12685,SRMV,1 39043,MS,Tennessee Valley Authority,18642,SRTV,0 -39044,MS,Entergy Mississippi Inc,12685,SRMV,1 +39044,MS,Entergy Mississippi LLC,12685,SRMV,1 39044,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39044,MS,Tennessee Valley Authority,18642,SRTV,0 39045,MS,Central Electric Power Assn - (MS),2849,SRTV,1 -39045,MS,Entergy Mississippi Inc,12685,SRMV,0 +39045,MS,Entergy Mississippi LLC,12685,SRMV,0 39045,MS,Tennessee Valley Authority,18642,SRTV,0 39046,MS,Canton Municipal Utilities,2974,SRMV,1 39046,MS,Central Electric Power Assn - (MS),2849,SRTV,0 -39046,MS,Entergy Mississippi Inc,12685,SRMV,0 +39046,MS,Entergy Mississippi LLC,12685,SRMV,0 39046,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 39047,MS,Central Electric Power Assn - (MS),2849,SRTV,1 -39047,MS,Entergy Mississippi Inc,12685,SRMV,0 +39047,MS,Entergy Mississippi LLC,12685,SRMV,0 39047,MS,Tennessee Valley Authority,18642,SRTV,0 39051,MS,Central Electric Power Assn - (MS),2849,SRTV,1 39051,MS,East Mississippi Elec Pwr Assn,5578,SRTV,0 -39051,MS,Entergy Mississippi Inc,12685,SRMV,0 +39051,MS,Entergy Mississippi LLC,12685,SRMV,0 39051,MS,Tennessee Valley Authority,18642,SRTV,0 -39054,MS,Entergy Mississippi Inc,12685,SRMV,1 +39054,MS,Entergy Mississippi LLC,12685,SRMV,1 39054,MS,Twin County Electric Pwr Assn,18961,SRSO,0 39054,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 -39056,MS,Entergy Mississippi Inc,12685,SRMV,1 +39056,MS,Entergy Mississippi LLC,12685,SRMV,1 39057,MS,Central Electric Power Assn - (MS),2849,SRTV,1 39057,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39057,MS,Tennessee Valley Authority,18642,SRTV,0 -39058,MS,Entergy Mississippi Inc,12685,SRMV,1 -39059,MS,Entergy Mississippi Inc,12685,SRMV,1 +39058,MS,Entergy Mississippi LLC,12685,SRMV,1 +39059,MS,Entergy Mississippi LLC,12685,SRMV,1 39059,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39059,MS,Southwest Mississippi E P A,17683,SRSO,0 -39060,MS,Entergy Mississippi Inc,12685,SRMV,1 +39060,MS,Entergy Mississippi LLC,12685,SRMV,1 39061,MS,Twin County Electric Pwr Assn,18961,SRSO,1 -39062,MS,Entergy Mississippi Inc,12685,SRMV,1 +39062,MS,Entergy Mississippi LLC,12685,SRMV,1 39063,MS,Central Electric Power Assn - (MS),2849,SRTV,1 39063,MS,Delta Electric Power Assn,22815,SRSO,0 -39063,MS,Entergy Mississippi Inc,12685,SRMV,0 +39063,MS,Entergy Mississippi LLC,12685,SRMV,0 39063,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 -39066,MS,Entergy Mississippi Inc,12685,SRMV,1 +39066,MS,Entergy Mississippi LLC,12685,SRMV,1 39066,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 39067,MS,Central Electric Power Assn - (MS),2849,SRTV,1 39067,MS,East Mississippi Elec Pwr Assn,5578,SRTV,0 -39067,MS,Entergy Mississippi Inc,12685,SRMV,0 +39067,MS,Entergy Mississippi LLC,12685,SRMV,0 39067,MS,Tennessee Valley Authority,18642,SRTV,0 39069,MS,Southwest Mississippi E P A,17683,SRSO,1 -39071,MS,Entergy Mississippi Inc,12685,SRMV,1 +39071,MS,Entergy Mississippi LLC,12685,SRMV,1 39071,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 -39072,MS,Entergy Mississippi Inc,12685,SRMV,1 -39073,MS,Entergy Mississippi Inc,12685,SRMV,1 +39072,MS,Entergy Mississippi LLC,12685,SRMV,1 +39073,MS,Entergy Mississippi LLC,12685,SRMV,1 39073,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39073,MS,Tennessee Valley Authority,18642,SRTV,0 39074,MS,Central Electric Power Assn - (MS),2849,SRTV,1 39074,MS,Mississippi Power Co,12686,SRSO,0 39074,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39074,MS,Tennessee Valley Authority,18642,SRTV,0 -39077,MS,Entergy Mississippi Inc,12685,SRMV,1 -39078,MS,Entergy Mississippi Inc,12685,SRMV,1 +39077,MS,Entergy Mississippi LLC,12685,SRMV,1 +39078,MS,Entergy Mississippi LLC,12685,SRMV,1 39078,MS,Southern Pine Elec Power Assn,17647,SRSO,0 -39079,MS,Entergy Mississippi Inc,12685,SRMV,1 +39079,MS,Entergy Mississippi LLC,12685,SRMV,1 39079,MS,Tennessee Valley Authority,18642,SRTV,0 39079,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 39080,MS,Mississippi Power Co,12686,SRSO,1 39080,MS,Tennessee Valley Authority,18642,SRTV,0 39081,MS,Southwest Mississippi E P A,17683,SRSO,1 -39082,MS,Entergy Mississippi Inc,12685,SRMV,1 +39082,MS,Entergy Mississippi LLC,12685,SRMV,1 39082,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39082,MS,Tennessee Valley Authority,18642,SRTV,0 -39083,MS,Entergy Mississippi Inc,12685,SRMV,1 +39083,MS,Entergy Mississippi LLC,12685,SRMV,1 39083,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39083,MS,Southwest Mississippi E P A,17683,SRSO,0 -39086,MS,Entergy Mississippi Inc,12685,SRMV,1 +39086,MS,Entergy Mississippi LLC,12685,SRMV,1 39086,MS,Southwest Mississippi E P A,17683,SRSO,0 39087,MS,Mississippi Power Co,12686,SRSO,1 39087,MS,Tennessee Valley Authority,18642,SRTV,0 39088,MS,Yazoo Valley Elec Power Assn,21114,SRMV,1 39090,MS,Central Electric Power Assn - (MS),2849,SRTV,1 39090,MS,East Mississippi Elec Pwr Assn,5578,SRTV,0 -39090,MS,Entergy Mississippi Inc,12685,SRMV,0 +39090,MS,Entergy Mississippi LLC,12685,SRMV,0 39090,MS,Tennessee Valley Authority,18642,SRTV,0 39092,MS,Central Electric Power Assn - (MS),2849,SRTV,1 39092,MS,Mississippi Power Co,12686,SRSO,0 39092,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39092,MS,Tennessee Valley Authority,18642,SRTV,0 39094,MS,Central Electric Power Assn - (MS),2849,SRTV,1 -39094,MS,Entergy Mississippi Inc,12685,SRMV,0 +39094,MS,Entergy Mississippi LLC,12685,SRMV,0 39094,MS,Mississippi Power Co,12686,SRSO,0 39094,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39094,MS,Tennessee Valley Authority,18642,SRTV,0 39095,MS,Delta Electric Power Assn,22815,SRSO,1 -39095,MS,Entergy Mississippi Inc,12685,SRMV,0 +39095,MS,Entergy Mississippi LLC,12685,SRMV,0 39095,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 39096,MS,Southwest Mississippi E P A,17683,SRSO,1 -39097,MS,Entergy Mississippi Inc,12685,SRMV,1 +39097,MS,Entergy Mississippi LLC,12685,SRMV,1 39097,MS,Twin County Electric Pwr Assn,18961,SRSO,0 39097,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 39098,MS,Central Electric Power Assn - (MS),2849,SRTV,1 @@ -26399,105 +26339,105 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 39107,MS,Tennessee Valley Authority,18642,SRTV,0 39108,MS,4-County Electric Power Assn,6641,SRTV,1 39108,MS,East Mississippi Elec Pwr Assn,5578,SRTV,0 -39108,MS,Entergy Mississippi Inc,12685,SRMV,0 +39108,MS,Entergy Mississippi LLC,12685,SRMV,0 39108,MS,Tennessee Valley Authority,18642,SRTV,0 39109,MS,Central Electric Power Assn - (MS),2849,SRTV,1 39109,MS,Tennessee Valley Authority,18642,SRTV,0 -39110,MS,Entergy Mississippi Inc,12685,SRMV,1 -39111,MS,Entergy Mississippi Inc,12685,SRMV,1 +39110,MS,Entergy Mississippi LLC,12685,SRMV,1 +39111,MS,Entergy Mississippi LLC,12685,SRMV,1 39111,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39111,MS,Tennessee Valley Authority,18642,SRTV,0 -39113,MS,Entergy Mississippi Inc,12685,SRMV,1 +39113,MS,Entergy Mississippi LLC,12685,SRMV,1 39113,MS,Twin County Electric Pwr Assn,18961,SRSO,0 39113,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 -39114,MS,Entergy Mississippi Inc,12685,SRMV,1 +39114,MS,Entergy Mississippi LLC,12685,SRMV,1 39114,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39114,MS,Tennessee Valley Authority,18642,SRTV,0 -39115,MS,Entergy Mississippi Inc,12685,SRMV,1 -39116,MS,Entergy Mississippi Inc,12685,SRMV,1 +39115,MS,Entergy Mississippi LLC,12685,SRMV,1 +39116,MS,Entergy Mississippi LLC,12685,SRMV,1 39116,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39117,MS,Central Electric Power Assn - (MS),2849,SRTV,1 -39117,MS,Entergy Mississippi Inc,12685,SRMV,0 +39117,MS,Entergy Mississippi LLC,12685,SRMV,0 39117,MS,Mississippi Power Co,12686,SRSO,0 39117,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39117,MS,Tennessee Valley Authority,18642,SRTV,0 -39119,MS,Entergy Mississippi Inc,12685,SRMV,1 +39119,MS,Entergy Mississippi LLC,12685,SRMV,1 39119,MS,Southern Pine Elec Power Assn,17647,SRSO,0 -39120,MS,Entergy Mississippi Inc,12685,SRMV,1 +39120,MS,Entergy Mississippi LLC,12685,SRMV,1 39120,MS,Southwest Mississippi E P A,17683,SRSO,0 -39121,MS,Entergy Mississippi Inc,12685,SRMV,1 -39122,MS,Entergy Mississippi Inc,12685,SRMV,1 -39130,MS,Entergy Mississippi Inc,12685,SRMV,1 -39140,MS,Entergy Mississippi Inc,12685,SRMV,1 +39121,MS,Entergy Mississippi LLC,12685,SRMV,1 +39122,MS,Entergy Mississippi LLC,12685,SRMV,1 +39130,MS,Entergy Mississippi LLC,12685,SRMV,1 +39140,MS,Entergy Mississippi LLC,12685,SRMV,1 39140,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39144,MS,Southwest Mississippi E P A,17683,SRSO,1 39145,MS,Central Electric Power Assn - (MS),2849,SRTV,1 -39145,MS,Entergy Mississippi Inc,12685,SRMV,0 +39145,MS,Entergy Mississippi LLC,12685,SRMV,0 39145,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39145,MS,Tennessee Valley Authority,18642,SRTV,0 -39146,MS,Entergy Mississippi Inc,12685,SRMV,1 +39146,MS,Entergy Mississippi LLC,12685,SRMV,1 39146,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 -39148,MS,Entergy Mississippi Inc,12685,SRMV,1 +39148,MS,Entergy Mississippi LLC,12685,SRMV,1 39148,MS,Tennessee Valley Authority,18642,SRTV,0 -39149,MS,Entergy Mississippi Inc,12685,SRMV,1 +39149,MS,Entergy Mississippi LLC,12685,SRMV,1 39149,MS,Southern Pine Elec Power Assn,17647,SRSO,0 -39150,MS,Entergy Mississippi Inc,12685,SRMV,1 +39150,MS,Entergy Mississippi LLC,12685,SRMV,1 39150,MS,Southwest Mississippi E P A,17683,SRSO,0 39151,MS,Southern Pine Elec Power Assn,17647,SRSO,1 39151,MS,Tennessee Valley Authority,18642,SRTV,0 39152,MS,Southern Pine Elec Power Assn,17647,SRSO,1 39152,MS,Tennessee Valley Authority,18642,SRTV,0 -39153,MS,Entergy Mississippi Inc,12685,SRMV,1 +39153,MS,Entergy Mississippi LLC,12685,SRMV,1 39153,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39153,MS,Tennessee Valley Authority,18642,SRTV,0 -39154,MS,Entergy Mississippi Inc,12685,SRMV,1 +39154,MS,Entergy Mississippi LLC,12685,SRMV,1 39156,MS,Yazoo Valley Elec Power Assn,21114,SRMV,1 -39157,MS,Entergy Mississippi Inc,12685,SRMV,1 +39157,MS,Entergy Mississippi LLC,12685,SRMV,1 39157,MS,Tennessee Valley Authority,18642,SRTV,0 -39158,MS,Entergy Mississippi Inc,12685,SRMV,1 -39159,MS,Entergy Mississippi Inc,12685,SRMV,1 +39158,MS,Entergy Mississippi LLC,12685,SRMV,1 +39159,MS,Entergy Mississippi LLC,12685,SRMV,1 39159,MS,Twin County Electric Pwr Assn,18961,SRSO,0 39159,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 39160,MS,Central Electric Power Assn - (MS),2849,SRTV,1 -39160,MS,Entergy Mississippi Inc,12685,SRMV,0 +39160,MS,Entergy Mississippi LLC,12685,SRMV,0 39160,MS,Tennessee Valley Authority,18642,SRTV,0 39161,MS,Central Electric Power Assn - (MS),2849,SRTV,1 39162,MS,Yazoo Valley Elec Power Assn,21114,SRMV,1 39163,MS,Canton Municipal Utilities,2974,SRMV,1 39165,MS,Southwest Mississippi E P A,17683,SRSO,1 -39166,MS,Entergy Mississippi Inc,12685,SRMV,1 +39166,MS,Entergy Mississippi LLC,12685,SRMV,1 39166,MS,Twin County Electric Pwr Assn,18961,SRSO,0 39166,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 -39167,MS,Entergy Mississippi Inc,12685,SRMV,1 +39167,MS,Entergy Mississippi LLC,12685,SRMV,1 39167,MS,Tennessee Valley Authority,18642,SRTV,0 39168,MS,Dixie Electric Power Assn,5175,SRSO,1 -39168,MS,Entergy Mississippi Inc,12685,SRMV,0 +39168,MS,Entergy Mississippi LLC,12685,SRMV,0 39168,MS,Mississippi Power Co,12686,SRSO,0 39168,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39169,MS,Delta Electric Power Assn,22815,SRSO,1 -39169,MS,Entergy Mississippi Inc,12685,SRMV,0 +39169,MS,Entergy Mississippi LLC,12685,SRMV,0 39169,MS,Twin County Electric Pwr Assn,18961,SRSO,0 39169,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 -39170,MS,Entergy Mississippi Inc,12685,SRMV,1 +39170,MS,Entergy Mississippi LLC,12685,SRMV,1 39170,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39170,MS,Tennessee Valley Authority,18642,SRTV,0 39171,MS,Central Electric Power Assn - (MS),2849,SRTV,1 39171,MS,Tennessee Valley Authority,18642,SRTV,0 39173,MS,Yazoo Valley Elec Power Assn,21114,SRMV,1 -39174,MS,Entergy Mississippi Inc,12685,SRMV,1 -39175,MS,Entergy Mississippi Inc,12685,SRMV,1 +39174,MS,Entergy Mississippi LLC,12685,SRMV,1 +39175,MS,Entergy Mississippi LLC,12685,SRMV,1 39175,MS,Southwest Mississippi E P A,17683,SRSO,0 39176,MS,Delta Electric Power Assn,22815,SRSO,1 -39176,MS,Entergy Mississippi Inc,12685,SRMV,0 +39176,MS,Entergy Mississippi LLC,12685,SRMV,0 39176,MS,Tennessee Valley Authority,18642,SRTV,0 39177,MS,Yazoo Valley Elec Power Assn,21114,SRMV,1 -39179,MS,Entergy Mississippi Inc,12685,SRMV,1 +39179,MS,Entergy Mississippi LLC,12685,SRMV,1 39179,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 -39180,MS,Entergy Mississippi Inc,12685,SRMV,1 +39180,MS,Entergy Mississippi LLC,12685,SRMV,1 39180,MS,Southwest Mississippi E P A,17683,SRSO,0 -39181,MS,Entergy Mississippi Inc,12685,SRMV,1 -39182,MS,Entergy Mississippi Inc,12685,SRMV,1 -39183,MS,Entergy Mississippi Inc,12685,SRMV,1 +39181,MS,Entergy Mississippi LLC,12685,SRMV,1 +39182,MS,Entergy Mississippi LLC,12685,SRMV,1 +39183,MS,Entergy Mississippi LLC,12685,SRMV,1 39183,MS,Twin County Electric Pwr Assn,18961,SRSO,0 39183,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 39189,MS,Central Electric Power Assn - (MS),2849,SRTV,1 @@ -26505,60 +26445,60 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 39189,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39189,MS,Tennessee Valley Authority,18642,SRTV,0 39190,MS,Southwest Mississippi E P A,17683,SRSO,1 -39191,MS,Entergy Mississippi Inc,12685,SRMV,1 +39191,MS,Entergy Mississippi LLC,12685,SRMV,1 39191,MS,Magnolia Electric Power Assn,11519,SRSO,0 39191,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39191,MS,Southwest Mississippi E P A,17683,SRSO,0 39192,MS,Central Electric Power Assn - (MS),2849,SRTV,1 39192,MS,Delta Electric Power Assn,22815,SRSO,0 -39192,MS,Entergy Mississippi Inc,12685,SRMV,0 +39192,MS,Entergy Mississippi LLC,12685,SRMV,0 39192,MS,Tennessee Valley Authority,18642,SRTV,0 39193,MS,Southern Pine Elec Power Assn,17647,SRSO,1 39193,MS,Tennessee Valley Authority,18642,SRTV,0 -39194,MS,Entergy Mississippi Inc,12685,SRMV,1 +39194,MS,Entergy Mississippi LLC,12685,SRMV,1 39194,MS,Public Serv Comm of Yazoo City,21095,SRMV,0 39194,MS,Twin County Electric Pwr Assn,18961,SRSO,0 39194,MS,Yazoo Valley Elec Power Assn,21114,SRMV,0 -39201,MS,Entergy Mississippi Inc,12685,SRMV,1 -39202,MS,Entergy Mississippi Inc,12685,SRMV,1 -39203,MS,Entergy Mississippi Inc,12685,SRMV,1 -39204,MS,Entergy Mississippi Inc,12685,SRMV,1 -39205,MS,Entergy Mississippi Inc,12685,SRMV,1 -39206,MS,Entergy Mississippi Inc,12685,SRMV,1 -39207,MS,Entergy Mississippi Inc,12685,SRMV,1 -39208,MS,Entergy Mississippi Inc,12685,SRMV,1 +39201,MS,Entergy Mississippi LLC,12685,SRMV,1 +39202,MS,Entergy Mississippi LLC,12685,SRMV,1 +39203,MS,Entergy Mississippi LLC,12685,SRMV,1 +39204,MS,Entergy Mississippi LLC,12685,SRMV,1 +39205,MS,Entergy Mississippi LLC,12685,SRMV,1 +39206,MS,Entergy Mississippi LLC,12685,SRMV,1 +39207,MS,Entergy Mississippi LLC,12685,SRMV,1 +39208,MS,Entergy Mississippi LLC,12685,SRMV,1 39208,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39208,MS,Tennessee Valley Authority,18642,SRTV,0 -39209,MS,Entergy Mississippi Inc,12685,SRMV,1 -39210,MS,Entergy Mississippi Inc,12685,SRMV,1 -39211,MS,Entergy Mississippi Inc,12685,SRMV,1 +39209,MS,Entergy Mississippi LLC,12685,SRMV,1 +39210,MS,Entergy Mississippi LLC,12685,SRMV,1 +39211,MS,Entergy Mississippi LLC,12685,SRMV,1 39211,MS,Tennessee Valley Authority,18642,SRTV,0 -39212,MS,Entergy Mississippi Inc,12685,SRMV,1 -39213,MS,Entergy Mississippi Inc,12685,SRMV,1 -39215,MS,Entergy Mississippi Inc,12685,SRMV,1 -39216,MS,Entergy Mississippi Inc,12685,SRMV,1 -39217,MS,Entergy Mississippi Inc,12685,SRMV,1 -39218,MS,Entergy Mississippi Inc,12685,SRMV,1 +39212,MS,Entergy Mississippi LLC,12685,SRMV,1 +39213,MS,Entergy Mississippi LLC,12685,SRMV,1 +39215,MS,Entergy Mississippi LLC,12685,SRMV,1 +39216,MS,Entergy Mississippi LLC,12685,SRMV,1 +39217,MS,Entergy Mississippi LLC,12685,SRMV,1 +39218,MS,Entergy Mississippi LLC,12685,SRMV,1 39218,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39218,MS,Tennessee Valley Authority,18642,SRTV,0 -39225,MS,Entergy Mississippi Inc,12685,SRMV,1 -39232,MS,Entergy Mississippi Inc,12685,SRMV,1 +39225,MS,Entergy Mississippi LLC,12685,SRMV,1 +39232,MS,Entergy Mississippi LLC,12685,SRMV,1 39232,MS,Tennessee Valley Authority,18642,SRTV,0 -39236,MS,Entergy Mississippi Inc,12685,SRMV,1 -39250,MS,Entergy Mississippi Inc,12685,SRMV,1 -39269,MS,Entergy Mississippi Inc,12685,SRMV,1 -39271,MS,Entergy Mississippi Inc,12685,SRMV,1 -39272,MS,Entergy Mississippi Inc,12685,SRMV,1 +39236,MS,Entergy Mississippi LLC,12685,SRMV,1 +39250,MS,Entergy Mississippi LLC,12685,SRMV,1 +39269,MS,Entergy Mississippi LLC,12685,SRMV,1 +39271,MS,Entergy Mississippi LLC,12685,SRMV,1 +39272,MS,Entergy Mississippi LLC,12685,SRMV,1 39272,MS,Tennessee Valley Authority,18642,SRTV,0 -39282,MS,Entergy Mississippi Inc,12685,SRMV,1 -39283,MS,Entergy Mississippi Inc,12685,SRMV,1 -39284,MS,Entergy Mississippi Inc,12685,SRMV,1 -39286,MS,Entergy Mississippi Inc,12685,SRMV,1 -39288,MS,Entergy Mississippi Inc,12685,SRMV,1 +39282,MS,Entergy Mississippi LLC,12685,SRMV,1 +39283,MS,Entergy Mississippi LLC,12685,SRMV,1 +39284,MS,Entergy Mississippi LLC,12685,SRMV,1 +39286,MS,Entergy Mississippi LLC,12685,SRMV,1 +39288,MS,Entergy Mississippi LLC,12685,SRMV,1 39288,MS,Tennessee Valley Authority,18642,SRTV,0 -39289,MS,Entergy Mississippi Inc,12685,SRMV,1 -39296,MS,Entergy Mississippi Inc,12685,SRMV,1 -39298,MS,Entergy Mississippi Inc,12685,SRMV,1 +39289,MS,Entergy Mississippi LLC,12685,SRMV,1 +39296,MS,Entergy Mississippi LLC,12685,SRMV,1 +39298,MS,Entergy Mississippi LLC,12685,SRMV,1 39298,MS,Tennessee Valley Authority,18642,SRTV,0 39301,MS,East Mississippi Elec Pwr Assn,5578,SRTV,1 39301,MS,Mississippi Power Co,12686,SRSO,0 @@ -26576,7 +26516,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 39320,MS,East Mississippi Elec Pwr Assn,5578,SRTV,1 39320,MS,Tennessee Valley Authority,18642,SRTV,0 39322,MS,Dixie Electric Power Assn,5175,SRSO,1 -39322,MS,Singing River Elec Pwr Assn,17252,SRSO,0 +39322,MS,Singing River Elec Cooperative,17252,SRSO,0 39323,MS,Central Electric Power Assn - (MS),2849,SRTV,1 39323,MS,East Mississippi Elec Pwr Assn,5578,SRTV,0 39323,MS,Mississippi Power Co,12686,SRSO,0 @@ -26665,7 +26605,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 39361,MS,East Mississippi Elec Pwr Assn,5578,SRTV,0 39361,MS,Tennessee Valley Authority,18642,SRTV,0 39362,MS,Dixie Electric Power Assn,5175,SRSO,1 -39362,MS,Singing River Elec Pwr Assn,17252,SRSO,0 +39362,MS,Singing River Elec Cooperative,17252,SRSO,0 39363,MS,East Mississippi Elec Pwr Assn,5578,SRTV,1 39363,MS,Mississippi Power Co,12686,SRSO,0 39364,MS,East Mississippi Elec Pwr Assn,5578,SRTV,1 @@ -26680,7 +26620,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 39367,MS,Dixie Electric Power Assn,5175,SRSO,1 39367,MS,East Mississippi Elec Pwr Assn,5578,SRTV,0 39367,MS,Mississippi Power Co,12686,SRSO,0 -39367,MS,Singing River Elec Pwr Assn,17252,SRSO,0 +39367,MS,Singing River Elec Cooperative,17252,SRSO,0 39401,MS,Dixie Electric Power Assn,5175,SRSO,1 39401,MS,Mississippi Power Co,12686,SRSO,0 39401,MS,Pearl River Valley El Pwr Assn,14563,SRSO,0 @@ -26701,7 +26641,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 39423,MS,Dixie Electric Power Assn,5175,SRSO,1 39423,MS,Mississippi Power Co,12686,SRSO,0 39423,MS,Pearl River Valley El Pwr Assn,14563,SRSO,0 -39423,MS,Singing River Elec Pwr Assn,17252,SRSO,0 +39423,MS,Singing River Elec Cooperative,17252,SRSO,0 39425,MS,Dixie Electric Power Assn,5175,SRSO,1 39425,MS,Mississippi Power Co,12686,SRSO,0 39425,MS,Pearl River Valley El Pwr Assn,14563,SRSO,0 @@ -26731,27 +26671,27 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 39443,MS,Mississippi Power Co,12686,SRSO,0 39443,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39451,MS,Mississippi Power Co,12686,SRSO,1 -39451,MS,Singing River Elec Pwr Assn,17252,SRSO,0 +39451,MS,Singing River Elec Cooperative,17252,SRSO,0 39452,MS,Mississippi Power Co,12686,SRSO,1 39452,MS,Pearl River Valley El Pwr Assn,14563,SRSO,0 -39452,MS,Singing River Elec Pwr Assn,17252,SRSO,0 +39452,MS,Singing River Elec Cooperative,17252,SRSO,0 39455,MS,Coast Electric Power Assn,3841,SRSO,1 39455,MS,Mississippi Power Co,12686,SRSO,0 39455,MS,Pearl River Valley El Pwr Assn,14563,SRSO,0 39456,MS,Mississippi Power Co,12686,SRSO,1 39456,MS,Pearl River Valley El Pwr Assn,14563,SRSO,0 -39456,MS,Singing River Elec Pwr Assn,17252,SRSO,0 +39456,MS,Singing River Elec Cooperative,17252,SRSO,0 39457,MS,Mississippi Power Co,12686,SRSO,1 39459,MS,Dixie Electric Power Assn,5175,SRSO,1 39459,MS,Mississippi Power Co,12686,SRSO,0 39459,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39460,MS,Dixie Electric Power Assn,5175,SRSO,1 39460,MS,Southern Pine Elec Power Assn,17647,SRSO,0 -39461,MS,Singing River Elec Pwr Assn,17252,SRSO,1 +39461,MS,Singing River Elec Cooperative,17252,SRSO,1 39462,MS,Dixie Electric Power Assn,5175,SRSO,1 39462,MS,Mississippi Power Co,12686,SRSO,0 39462,MS,Pearl River Valley El Pwr Assn,14563,SRSO,0 -39462,MS,Singing River Elec Pwr Assn,17252,SRSO,0 +39462,MS,Singing River Elec Cooperative,17252,SRSO,0 39463,MS,Coast Electric Power Assn,3841,SRSO,1 39464,MS,Dixie Electric Power Assn,5175,SRSO,1 39465,MS,Dixie Electric Power Assn,5175,SRSO,1 @@ -26768,7 +26708,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 39475,MS,Pearl River Valley El Pwr Assn,14563,SRSO,0 39476,MS,Dixie Electric Power Assn,5175,SRSO,1 39476,MS,Mississippi Power Co,12686,SRSO,0 -39476,MS,Singing River Elec Pwr Assn,17252,SRSO,0 +39476,MS,Singing River Elec Cooperative,17252,SRSO,0 39477,MS,Mississippi Power Co,12686,SRSO,1 39478,MS,Magnolia Electric Power Assn,11519,SRSO,1 39478,MS,Pearl River Valley El Pwr Assn,14563,SRSO,0 @@ -26808,17 +26748,17 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 39531,MS,Mississippi Power Co,12686,SRSO,0 39532,MS,Coast Electric Power Assn,3841,SRSO,1 39532,MS,Mississippi Power Co,12686,SRSO,0 -39532,MS,Singing River Elec Pwr Assn,17252,SRSO,0 +39532,MS,Singing River Elec Cooperative,17252,SRSO,0 39533,MS,Mississippi Power Co,12686,SRSO,1 39534,MS,Mississippi Power Co,12686,SRSO,1 39535,MS,Mississippi Power Co,12686,SRSO,1 39540,MS,Coast Electric Power Assn,3841,SRSO,1 39540,MS,Mississippi Power Co,12686,SRSO,0 -39540,MS,Singing River Elec Pwr Assn,17252,SRSO,0 -39552,MS,Singing River Elec Pwr Assn,17252,SRSO,1 +39540,MS,Singing River Elec Cooperative,17252,SRSO,0 +39552,MS,Singing River Elec Cooperative,17252,SRSO,1 39553,MS,Mississippi Power Co,12686,SRSO,1 -39553,MS,Singing River Elec Pwr Assn,17252,SRSO,0 -39555,MS,Singing River Elec Pwr Assn,17252,SRSO,1 +39553,MS,Singing River Elec Cooperative,17252,SRSO,0 +39555,MS,Singing River Elec Cooperative,17252,SRSO,1 39556,MS,Coast Electric Power Assn,3841,SRSO,1 39558,MS,Coast Electric Power Assn,3841,SRSO,1 39560,MS,Coast Electric Power Assn,3841,SRSO,1 @@ -26827,54 +26767,54 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 39561,MS,Mississippi Power Co,12686,SRSO,0 39561,MS,Pearl River Valley El Pwr Assn,14563,SRSO,0 39562,MS,Mississippi Power Co,12686,SRSO,1 -39562,MS,Singing River Elec Pwr Assn,17252,SRSO,0 +39562,MS,Singing River Elec Cooperative,17252,SRSO,0 39563,MS,Mississippi Power Co,12686,SRSO,1 -39563,MS,Singing River Elec Pwr Assn,17252,SRSO,0 +39563,MS,Singing River Elec Cooperative,17252,SRSO,0 39564,MS,Mississippi Power Co,12686,SRSO,1 -39564,MS,Singing River Elec Pwr Assn,17252,SRSO,0 +39564,MS,Singing River Elec Cooperative,17252,SRSO,0 39565,MS,Coast Electric Power Assn,3841,SRSO,1 39565,MS,Pearl River Valley El Pwr Assn,14563,SRSO,0 -39565,MS,Singing River Elec Pwr Assn,17252,SRSO,0 +39565,MS,Singing River Elec Cooperative,17252,SRSO,0 39566,MS,Mississippi Power Co,12686,SRSO,1 39567,MS,Mississippi Power Co,12686,SRSO,1 -39567,MS,Singing River Elec Pwr Assn,17252,SRSO,0 +39567,MS,Singing River Elec Cooperative,17252,SRSO,0 39568,MS,Mississippi Power Co,12686,SRSO,1 -39569,MS,Singing River Elec Pwr Assn,17252,SRSO,1 +39569,MS,Singing River Elec Cooperative,17252,SRSO,1 39571,MS,Coast Electric Power Assn,3841,SRSO,1 39571,MS,Mississippi Power Co,12686,SRSO,0 39572,MS,Coast Electric Power Assn,3841,SRSO,1 39573,MS,Coast Electric Power Assn,3841,SRSO,1 39573,MS,Mississippi Power Co,12686,SRSO,0 39573,MS,Pearl River Valley El Pwr Assn,14563,SRSO,0 -39573,MS,Singing River Elec Pwr Assn,17252,SRSO,0 +39573,MS,Singing River Elec Cooperative,17252,SRSO,0 39574,MS,Coast Electric Power Assn,3841,SRSO,1 39574,MS,Mississippi Power Co,12686,SRSO,0 39574,MS,Pearl River Valley El Pwr Assn,14563,SRSO,0 -39574,MS,Singing River Elec Pwr Assn,17252,SRSO,0 +39574,MS,Singing River Elec Cooperative,17252,SRSO,0 39576,MS,Coast Electric Power Assn,3841,SRSO,1 39576,MS,Mississippi Power Co,12686,SRSO,0 39577,MS,Mississippi Power Co,12686,SRSO,1 39577,MS,Pearl River Valley El Pwr Assn,14563,SRSO,0 -39577,MS,Singing River Elec Pwr Assn,17252,SRSO,0 +39577,MS,Singing River Elec Cooperative,17252,SRSO,0 39581,MS,Mississippi Power Co,12686,SRSO,1 -39581,MS,Singing River Elec Pwr Assn,17252,SRSO,0 +39581,MS,Singing River Elec Cooperative,17252,SRSO,0 39595,MS,Mississippi Power Co [Southern Co],1099,SRSO,1 -39601,MS,Entergy Mississippi Inc,12685,SRMV,1 +39601,MS,Entergy Mississippi LLC,12685,SRMV,1 39601,MS,Magnolia Electric Power Assn,11519,SRSO,0 39601,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39601,MS,Southwest Mississippi E P A,17683,SRSO,0 -39602,MS,Entergy Mississippi Inc,12685,SRMV,1 -39603,MS,Entergy Mississippi Inc,12685,SRMV,1 -39629,MS,Entergy Mississippi Inc,12685,SRMV,1 +39602,MS,Entergy Mississippi LLC,12685,SRMV,1 +39603,MS,Entergy Mississippi LLC,12685,SRMV,1 +39629,MS,Entergy Mississippi LLC,12685,SRMV,1 39629,MS,Magnolia Electric Power Assn,11519,SRSO,0 -39630,MS,Entergy Mississippi Inc,12685,SRMV,1 +39630,MS,Entergy Mississippi LLC,12685,SRMV,1 39630,MS,Magnolia Electric Power Assn,11519,SRSO,0 -39631,MS,Entergy Mississippi Inc,12685,SRMV,1 +39631,MS,Entergy Mississippi LLC,12685,SRMV,1 39631,MS,Southwest Mississippi E P A,17683,SRSO,0 39632,MS,Magnolia Electric Power Assn,11519,SRSO,1 39633,MS,Southwest Mississippi E P A,17683,SRSO,1 -39635,MS,Entergy Mississippi Inc,12685,SRMV,1 -39638,MS,Entergy Mississippi Inc,12685,SRMV,1 +39635,MS,Entergy Mississippi LLC,12685,SRMV,1 +39638,MS,Entergy Mississippi LLC,12685,SRMV,1 39638,MS,Magnolia Electric Power Assn,11519,SRSO,0 39638,MS,Southwest Mississippi E P A,17683,SRSO,0 39641,MS,Magnolia Electric Power Assn,11519,SRSO,1 @@ -26882,44 +26822,44 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 39641,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39643,MS,Magnolia Electric Power Assn,11519,SRSO,1 39643,MS,Pearl River Valley El Pwr Assn,14563,SRSO,0 -39645,MS,Entergy Mississippi Inc,12685,SRMV,1 +39645,MS,Entergy Mississippi LLC,12685,SRMV,1 39645,MS,Magnolia Electric Power Assn,11519,SRSO,0 -39647,MS,Entergy Mississippi Inc,12685,SRMV,1 +39647,MS,Entergy Mississippi LLC,12685,SRMV,1 39647,MS,Magnolia Electric Power Assn,11519,SRSO,0 39647,MS,Southwest Mississippi E P A,17683,SRSO,0 -39648,MS,Entergy Mississippi Inc,12685,SRMV,1 +39648,MS,Entergy Mississippi LLC,12685,SRMV,1 39648,MS,Magnolia Electric Power Assn,11519,SRSO,0 -39649,MS,Entergy Mississippi Inc,12685,SRMV,1 -39652,MS,Entergy Mississippi Inc,12685,SRMV,1 +39649,MS,Entergy Mississippi LLC,12685,SRMV,1 +39652,MS,Entergy Mississippi LLC,12685,SRMV,1 39652,MS,Magnolia Electric Power Assn,11519,SRSO,0 -39653,MS,Entergy Mississippi Inc,12685,SRMV,1 +39653,MS,Entergy Mississippi LLC,12685,SRMV,1 39653,MS,Magnolia Electric Power Assn,11519,SRSO,0 39653,MS,Southwest Mississippi E P A,17683,SRSO,0 -39654,MS,Entergy Mississippi Inc,12685,SRMV,1 +39654,MS,Entergy Mississippi LLC,12685,SRMV,1 39654,MS,Magnolia Electric Power Assn,11519,SRSO,0 39654,MS,Pearl River Valley El Pwr Assn,14563,SRSO,0 39654,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39656,MS,Pearl River Valley El Pwr Assn,14563,SRSO,1 39656,MS,Southern Pine Elec Power Assn,17647,SRSO,0 -39657,MS,Entergy Mississippi Inc,12685,SRMV,1 +39657,MS,Entergy Mississippi LLC,12685,SRMV,1 39657,MS,Magnolia Electric Power Assn,11519,SRSO,0 -39661,MS,Entergy Mississippi Inc,12685,SRMV,1 +39661,MS,Entergy Mississippi LLC,12685,SRMV,1 39661,MS,Southwest Mississippi E P A,17683,SRSO,0 39662,MS,Magnolia Electric Power Assn,11519,SRSO,1 -39663,MS,Entergy Mississippi Inc,12685,SRMV,1 +39663,MS,Entergy Mississippi LLC,12685,SRMV,1 39663,MS,Pearl River Valley El Pwr Assn,14563,SRSO,0 39663,MS,Southern Pine Elec Power Assn,17647,SRSO,0 39664,MS,Magnolia Electric Power Assn,11519,SRSO,1 -39665,MS,Entergy Mississippi Inc,12685,SRMV,1 +39665,MS,Entergy Mississippi LLC,12685,SRMV,1 39665,MS,Magnolia Electric Power Assn,11519,SRSO,0 39665,MS,Southern Pine Elec Power Assn,17647,SRSO,0 -39666,MS,Entergy Mississippi Inc,12685,SRMV,1 +39666,MS,Entergy Mississippi LLC,12685,SRMV,1 39666,MS,Magnolia Electric Power Assn,11519,SRSO,0 -39667,MS,Entergy Mississippi Inc,12685,SRMV,1 +39667,MS,Entergy Mississippi LLC,12685,SRMV,1 39667,MS,Magnolia Electric Power Assn,11519,SRSO,0 39667,MS,Pearl River Valley El Pwr Assn,14563,SRSO,0 39668,MS,Southwest Mississippi E P A,17683,SRSO,1 -39669,MS,Entergy Mississippi Inc,12685,SRMV,1 +39669,MS,Entergy Mississippi LLC,12685,SRMV,1 39669,MS,Southwest Mississippi E P A,17683,SRSO,0 39701,MS,4-County Electric Power Assn,6641,SRTV,1 39701,MS,City of Columbus - (MS),4068,SRTV,0 @@ -26962,20 +26902,20 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 39743,MS,Tennessee Valley Authority,18642,SRTV,0 39744,MS,4-County Electric Power Assn,6641,SRTV,1 39744,MS,Delta Electric Power Assn,22815,SRSO,0 -39744,MS,Entergy Mississippi Inc,12685,SRMV,0 +39744,MS,Entergy Mississippi LLC,12685,SRMV,0 39744,MS,Natchez Trace Elec Power Assn,13227,SRTV,0 39744,MS,Tennessee Valley Authority,18642,SRTV,0 39745,MS,4-County Electric Power Assn,6641,SRTV,1 39745,MS,Central Electric Power Assn - (MS),2849,SRTV,0 39745,MS,Delta Electric Power Assn,22815,SRSO,0 -39745,MS,Entergy Mississippi Inc,12685,SRMV,0 +39745,MS,Entergy Mississippi LLC,12685,SRMV,0 39745,MS,Tennessee Valley Authority,18642,SRTV,0 39746,MS,4-County Electric Power Assn,6641,SRTV,1 39746,MS,Monroe County Elec Power Assn,40303,SRTV,0 39746,MS,Tennessee Valley Authority,18642,SRTV,0 39747,MS,4-County Electric Power Assn,6641,SRTV,1 39747,MS,Delta Electric Power Assn,22815,SRSO,0 -39747,MS,Entergy Mississippi Inc,12685,SRMV,0 +39747,MS,Entergy Mississippi LLC,12685,SRMV,0 39747,MS,Tennessee Valley Authority,18642,SRTV,0 39750,MS,4-County Electric Power Assn,6641,SRTV,1 39750,MS,Natchez Trace Elec Power Assn,13227,SRTV,0 @@ -27009,7 +26949,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 39766,MS,Tennessee Valley Authority,18642,SRTV,0 39767,MS,4-County Electric Power Assn,6641,SRTV,1 39767,MS,Delta Electric Power Assn,22815,SRSO,0 -39767,MS,Entergy Mississippi Inc,12685,SRMV,0 +39767,MS,Entergy Mississippi LLC,12685,SRMV,0 39767,MS,Natchez Trace Elec Power Assn,13227,SRTV,0 39767,MS,Tennessee Valley Authority,18642,SRTV,0 39769,MS,4-County Electric Power Assn,6641,SRTV,1 @@ -27020,7 +26960,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 39772,MS,4-County Electric Power Assn,6641,SRTV,1 39772,MS,Delta Electric Power Assn,22815,SRSO,0 39772,MS,East Mississippi Elec Pwr Assn,5578,SRTV,0 -39772,MS,Entergy Mississippi Inc,12685,SRMV,0 +39772,MS,Entergy Mississippi LLC,12685,SRMV,0 39772,MS,Tennessee Valley Authority,18642,SRTV,0 39773,MS,4-County Electric Power Assn,6641,SRTV,1 39773,MS,City of Okolona,14078,SRTV,0 @@ -28437,6 +28377,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 42040,KY,West Kentucky Rural E C C,20377,SRTV,0 42041,KY,City of Fulton - (KY),6840,SRTV,1 42041,KY,City of Hickman,8548,SRTV,0 +42041,KY,Gibson Electric Members Corp,7174,SRTV,0 42041,KY,Hickman-Fulton Counties RECC,40305,SRTV,0 42041,KY,Kentucky Utilities Co,10171,SRTV,0 42041,KY,Tennessee Valley Authority,18642,SRTV,0 @@ -28457,13 +28398,13 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 42049,KY,Tennessee Valley Authority,18642,SRTV,1 42049,KY,West Kentucky Rural E C C,20377,SRTV,0 42050,KY,City of Hickman,8548,SRTV,1 +42050,KY,Gibson Electric Members Corp,7174,SRTV,0 42050,KY,Hickman-Fulton Counties RECC,40305,SRTV,0 42050,KY,Tennessee Valley Authority,18642,SRTV,0 42051,KY,Jackson Purchase Energy Corporation,9605,SRTV,1 42051,KY,Tennessee Valley Authority,18642,SRTV,0 42051,KY,West Kentucky Rural E C C,20377,SRTV,0 -42053,KY,Electric Energy Inc,5748,SRMW,1 -42053,KY,Jackson Purchase Energy Corporation,9605,SRTV,0 +42053,KY,Jackson Purchase Energy Corporation,9605,SRTV,1 42053,KY,Kentucky Utilities Co,10171,SRTV,0 42053,KY,Tennessee Valley Authority,18642,SRTV,0 42054,KY,Tennessee Valley Authority,18642,SRTV,1 @@ -34931,9 +34872,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 49799,MI,Great Lakes Energy Coop,38084,RFCM,0 49799,MI,Presque Isle Elec & Gas Coop,15340,RFCM,0 49801,MI,Wisconsin Electric Power Co,20847,RFCW,1 -49801,MI,Wisconsin Public Service Corp,20860,MROE,0 49802,MI,Wisconsin Electric Power Co,20847,RFCW,1 -49802,MI,Wisconsin Public Service Corp,20860,MROE,0 49805,MI,Upper Peninsula Power Company,19578,MROE,1 49806,MI,Alger-Delta Coop Electric Assn,305,MROE,1 49806,MI,Upper Peninsula Power Company,19578,MROE,0 @@ -34945,7 +34884,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 49812,MI,Alger-Delta Coop Electric Assn,305,MROE,1 49812,MI,Upper Peninsula Power Company,19578,MROE,0 49812,MI,Wisconsin Electric Power Co,20847,RFCW,0 -49812,MI,Wisconsin Public Service Corp,20860,MROE,0 49814,MI,Alger-Delta Coop Electric Assn,305,MROE,1 49814,MI,Upper Peninsula Power Company,19578,MROE,0 49814,MI,Wisconsin Electric Power Co,20847,RFCW,0 @@ -34964,7 +34902,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 49821,MI,Alger-Delta Coop Electric Assn,305,MROE,1 49821,MI,Upper Peninsula Power Company,19578,MROE,0 49821,MI,Wisconsin Electric Power Co,20847,RFCW,0 -49821,MI,Wisconsin Public Service Corp,20860,MROE,0 49822,MI,Alger-Delta Coop Electric Assn,305,MROE,1 49822,MI,Upper Peninsula Power Company,19578,MROE,0 49825,MI,Alger-Delta Coop Electric Assn,305,MROE,1 @@ -35015,7 +34952,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 49855,MI,City of Marquette - (MI),11701,MROE,0 49855,MI,Upper Peninsula Power Company,19578,MROE,0 49858,MI,Alger-Delta Coop Electric Assn,305,MROE,1 -49858,MI,Wisconsin Public Service Corp,20860,MROE,0 49861,MI,Upper Peninsula Power Company,19578,MROE,1 49861,MI,Wisconsin Electric Power Co,20847,RFCW,0 49862,MI,Alger-Delta Coop Electric Assn,305,MROE,1 @@ -35032,7 +34968,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 49868,MI,Cloverland Electric Co-op,3828,RFCW,0 49870,MI,City of Norway,13826,RFCW,1 49870,MI,Wisconsin Electric Power Co,20847,RFCW,0 -49870,MI,Wisconsin Public Service Corp,20860,MROE,0 49871,MI,Upper Peninsula Power Company,19578,MROE,1 49872,MI,Alger-Delta Coop Electric Assn,305,MROE,1 49872,MI,Wisconsin Electric Power Co,20847,RFCW,0 @@ -35041,7 +34976,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 49874,MI,Alger-Delta Coop Electric Assn,305,MROE,1 49874,MI,Wisconsin Electric Power Co,20847,RFCW,0 49876,MI,Wisconsin Electric Power Co,20847,RFCW,1 -49876,MI,Wisconsin Public Service Corp,20860,MROE,0 49877,MI,Wisconsin Electric Power Co,20847,RFCW,1 49878,MI,Alger-Delta Coop Electric Assn,305,MROE,1 49878,MI,Cloverland Electric Co-op,3828,RFCW,0 @@ -35065,15 +34999,12 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 49886,MI,Wisconsin Electric Power Co,20847,RFCW,0 49887,MI,Alger-Delta Coop Electric Assn,305,MROE,1 49887,MI,Wisconsin Electric Power Co,20847,RFCW,0 -49887,MI,Wisconsin Public Service Corp,20860,MROE,0 49891,MI,Alger-Delta Coop Electric Assn,305,MROE,1 49891,MI,Upper Peninsula Power Company,19578,MROE,0 49892,MI,Alger-Delta Coop Electric Assn,305,MROE,1 49892,MI,City of Norway,13826,RFCW,0 49892,MI,Wisconsin Electric Power Co,20847,RFCW,0 -49892,MI,Wisconsin Public Service Corp,20860,MROE,0 49893,MI,Alger-Delta Coop Electric Assn,305,MROE,1 -49893,MI,Wisconsin Public Service Corp,20860,MROE,0 49894,MI,City of Escanaba,24558,MROE,1 49894,MI,Upper Peninsula Power Company,19578,MROE,0 49895,MI,Alger-Delta Coop Electric Assn,305,MROE,1 @@ -35104,7 +35035,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 49919,MI,Wisconsin Electric Power Co,20847,RFCW,0 49920,MI,City of Crystal Falls,4604,RFCW,1 49920,MI,Wisconsin Electric Power Co,20847,RFCW,0 -49920,MI,Wisconsin Public Service Corp,20860,MROE,0 49921,MI,Upper Peninsula Power Company,19578,MROE,1 49922,MI,Upper Peninsula Power Company,19578,MROE,1 49925,MI,"Bayfield Electric Coop, Inc",1367,MROW,1 @@ -35113,7 +35043,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 49925,MI,Wisconsin Electric Power Co,20847,RFCW,0 49927,MI,Upper Peninsula Power Company,19578,MROE,1 49927,MI,Wisconsin Electric Power Co,20847,RFCW,0 -49927,MI,Wisconsin Public Service Corp,20860,MROE,0 49929,MI,Upper Peninsula Power Company,19578,MROE,1 49930,MI,Upper Peninsula Power Company,19578,MROE,1 49931,MI,Upper Peninsula Power Company,19578,MROE,1 @@ -35121,7 +35050,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 49935,MI,"Bayfield Electric Coop, Inc",1367,MROW,1 49935,MI,Upper Peninsula Power Company,19578,MROE,0 49935,MI,Wisconsin Electric Power Co,20847,RFCW,0 -49935,MI,Wisconsin Public Service Corp,20860,MROE,0 49938,MI,"Bayfield Electric Coop, Inc",1367,MROW,1 49938,MI,Northern States Power Co,13780,MROW,0 49942,MI,Upper Peninsula Power Company,19578,MROE,1 @@ -35162,7 +35090,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 49969,MI,"Bayfield Electric Coop, Inc",1367,MROW,1 49969,MI,Northern States Power Co,13780,MROW,0 49969,MI,Wisconsin Electric Power Co,20847,RFCW,0 -49969,MI,Wisconsin Public Service Corp,20860,MROE,0 49970,MI,Upper Peninsula Power Company,19578,MROE,1 49970,MI,Wisconsin Electric Power Co,20847,RFCW,0 49971,MI,Upper Peninsula Power Company,19578,MROE,1 @@ -35335,6 +35262,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 50078,IA,Consumers Energy,11788,MROW,1 50078,IA,Interstate Power and Light Co,9417,MROW,0 50099,IA,Interstate Power & Light Co [Alliant Energy Corp],1069,MROW,1 +501,NY,Long Island Power Authority,11171,NYLI,1 50101,IA,Interstate Power and Light Co,9417,MROW,1 50101,IA,MidAmerican Energy Co,12341,MROW,0 50101,IA,Prairie Energy Coop,15291,MROW,0 @@ -35829,7 +35757,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 50464,IA,Interstate Power and Light Co,9417,MROW,0 50465,IA,Interstate Power and Light Co,9417,MROW,1 50466,IA,Freeborn-Mower Coop Services,6782,MROW,1 -50466,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,0 50466,IA,Heartland Power Coop,8319,MROW,0 50466,IA,Interstate Power and Light Co,9417,MROW,0 50467,IA,Interstate Power and Light Co,9417,MROW,1 @@ -36044,8 +35971,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 50601,IA,Midland Power Coop,12450,MROW,0 50602,IA,Butler County Rural Elec Coop - (IA),2652,MROW,1 50602,IA,MidAmerican Energy Co,12341,MROW,0 -50603,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,1 -50603,IA,Heartland Power Coop,8319,MROW,0 +50603,IA,Heartland Power Coop,8319,MROW,1 50603,IA,Interstate Power and Light Co,9417,MROW,0 50604,IA,Butler County Rural Elec Coop - (IA),2652,MROW,1 50604,IA,Grundy County Rural Elec Coop,7864,MROW,0 @@ -36074,7 +36000,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 50613,IA,MidAmerican Energy Co,12341,MROW,0 50614,IA,Cedar Falls Utilities,3203,MROW,1 50616,IA,Butler County Rural Elec Coop - (IA),2652,MROW,1 -50616,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,0 50616,IA,Heartland Power Coop,8319,MROW,0 50616,IA,Interstate Power and Light Co,9417,MROW,0 50616,IA,MidAmerican Energy Co,12341,MROW,0 @@ -36101,8 +36026,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 50627,IA,Grundy County Rural Elec Coop,7864,MROW,1 50627,IA,Interstate Power and Light Co,9417,MROW,0 50627,IA,Midland Power Coop,12450,MROW,0 -50628,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,1 -50628,IA,Heartland Power Coop,8319,MROW,0 +50628,IA,Heartland Power Coop,8319,MROW,1 50628,IA,Interstate Power and Light Co,9417,MROW,0 50629,IA,Butler County Rural Elec Coop - (IA),2652,MROW,1 50629,IA,East-Central Iowa Rural Elec Coop,5588,MROW,0 @@ -36143,7 +36067,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 50644,IA,Interstate Power and Light Co,9417,MROW,0 50644,IA,MidAmerican Energy Co,12341,MROW,0 50645,IA,Butler County Rural Elec Coop - (IA),2652,MROW,1 -50645,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,0 50645,IA,Heartland Power Coop,8319,MROW,0 50645,IA,Interstate Power and Light Co,9417,MROW,0 50647,IA,Cedar Falls Utilities,3203,MROW,1 @@ -36177,7 +36100,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 50658,IA,MidAmerican Energy Co,12341,MROW,0 50659,IA,Butler County Rural Elec Coop - (IA),2652,MROW,1 50659,IA,City of New Hampton - (IA),13444,MROW,0 -50659,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,0 50659,IA,Interstate Power and Light Co,9417,MROW,0 50660,IA,Butler County Rural Elec Coop - (IA),2652,MROW,1 50660,IA,Cedar Falls Utilities,3203,MROW,0 @@ -36966,33 +36888,26 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 52079,IA,Maquoketa Valley Rrl Elec Coop,12642,MROW,0 52099,IA,Interstate Power and Light Co,9417,MROW,1 52101,IA,"Allamakee-Clayton El Coop, Inc",329,MROW,1 -52101,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,0 52101,IA,Interstate Power and Light Co,9417,MROW,0 -52101,IA,Tri-County Electric Coop,19157,MROW,0 -52132,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,1 -52132,IA,Interstate Power and Light Co,9417,MROW,0 +52101,IA,MiEnergy Cooperative,19157,MROW,0 +52132,IA,Interstate Power and Light Co,9417,MROW,1 52133,IA,"Allamakee-Clayton El Coop, Inc",329,MROW,1 -52133,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,0 52133,IA,Interstate Power and Light Co,9417,MROW,0 52134,IA,Freeborn-Mower Coop Services,6782,MROW,1 -52134,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,0 52134,IA,Interstate Power and Light Co,9417,MROW,0 -52134,IA,Tri-County Electric Coop,19157,MROW,0 +52134,IA,MiEnergy Cooperative,19157,MROW,0 52135,IA,"Allamakee-Clayton El Coop, Inc",329,MROW,1 52135,IA,Interstate Power and Light Co,9417,MROW,0 -52136,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,1 -52136,IA,Interstate Power and Light Co,9417,MROW,0 -52136,IA,Tri-County Electric Coop,19157,MROW,0 +52136,IA,Interstate Power and Light Co,9417,MROW,1 +52136,IA,MiEnergy Cooperative,19157,MROW,0 52140,IA,"Allamakee-Clayton El Coop, Inc",329,MROW,1 -52140,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,0 -52140,IA,Tri-County Electric Coop,19157,MROW,0 +52140,IA,MiEnergy Cooperative,19157,MROW,0 52141,IA,"Allamakee-Clayton El Coop, Inc",329,MROW,1 52141,IA,Interstate Power and Light Co,9417,MROW,0 52142,IA,"Allamakee-Clayton El Coop, Inc",329,MROW,1 52142,IA,East-Central Iowa Rural Elec Coop,5588,MROW,0 52142,IA,Interstate Power and Light Co,9417,MROW,0 52144,IA,"Allamakee-Clayton El Coop, Inc",329,MROW,1 -52144,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,0 52144,IA,Interstate Power and Light Co,9417,MROW,0 52146,IA,"Allamakee-Clayton El Coop, Inc",329,MROW,1 52146,IA,Interstate Power and Light Co,9417,MROW,0 @@ -37003,11 +36918,9 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 52151,IA,Interstate Power and Light Co,9417,MROW,0 52154,IA,"Allamakee-Clayton El Coop, Inc",329,MROW,1 52154,IA,Butler County Rural Elec Coop - (IA),2652,MROW,0 -52154,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,0 52154,IA,Interstate Power and Light Co,9417,MROW,0 -52155,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,1 -52155,IA,Interstate Power and Light Co,9417,MROW,0 -52155,IA,Tri-County Electric Coop,19157,MROW,0 +52155,IA,Interstate Power and Light Co,9417,MROW,1 +52155,IA,MiEnergy Cooperative,19157,MROW,0 52156,IA,"Allamakee-Clayton El Coop, Inc",329,MROW,1 52156,IA,Interstate Power and Light Co,9417,MROW,0 52157,IA,"Allamakee-Clayton El Coop, Inc",329,MROW,1 @@ -37017,22 +36930,17 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 52159,IA,Interstate Power and Light Co,9417,MROW,0 52160,IA,"Allamakee-Clayton El Coop, Inc",329,MROW,1 52160,IA,Interstate Power and Light Co,9417,MROW,0 -52160,IA,Tri-County Electric Coop,19157,MROW,0 +52160,IA,MiEnergy Cooperative,19157,MROW,0 52161,IA,"Allamakee-Clayton El Coop, Inc",329,MROW,1 -52161,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,0 52161,IA,Interstate Power and Light Co,9417,MROW,0 52162,IA,"Allamakee-Clayton El Coop, Inc",329,MROW,1 -52162,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,0 52162,IA,Interstate Power and Light Co,9417,MROW,0 -52163,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,1 -52163,IA,Interstate Power and Light Co,9417,MROW,0 +52163,IA,Interstate Power and Light Co,9417,MROW,1 52164,IA,"Allamakee-Clayton El Coop, Inc",329,MROW,1 52164,IA,Interstate Power and Light Co,9417,MROW,0 -52165,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,1 -52165,IA,Interstate Power and Light Co,9417,MROW,0 +52165,IA,Interstate Power and Light Co,9417,MROW,1 52166,IA,Interstate Power and Light Co,9417,MROW,1 -52168,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,1 -52168,IA,Interstate Power and Light Co,9417,MROW,0 +52168,IA,Interstate Power and Light Co,9417,MROW,1 52169,IA,"Allamakee-Clayton El Coop, Inc",329,MROW,1 52169,IA,East-Central Iowa Rural Elec Coop,5588,MROW,0 52169,IA,Interstate Power and Light Co,9417,MROW,0 @@ -37040,13 +36948,10 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 52170,IA,Interstate Power and Light Co,9417,MROW,0 52171,IA,"Allamakee-Clayton El Coop, Inc",329,MROW,1 52171,IA,Butler County Rural Elec Coop - (IA),2652,MROW,0 -52171,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,0 52171,IA,Interstate Power and Light Co,9417,MROW,0 52172,IA,"Allamakee-Clayton El Coop, Inc",329,MROW,1 -52172,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,0 52172,IA,Interstate Power and Light Co,9417,MROW,0 52175,IA,"Allamakee-Clayton El Coop, Inc",329,MROW,1 -52175,IA,Hawkeye Tri-County El Coop Inc,8298,MROW,0 52175,IA,Interstate Power and Light Co,9417,MROW,0 52201,IA,Eastern Iowa Light & Power Coop,5605,MROW,1 52201,IA,Interstate Power and Light Co,9417,MROW,0 @@ -38479,6 +38384,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 54313,WI,Wisconsin Public Service Corp,20860,MROE,1 54324,WI,Wisconsin Public Service Corp,20860,MROE,1 54344,WI,Wisconsin Public Service Corp,20860,MROE,1 +544,NY,Long Island Power Authority,11171,NYLI,1 54401,WI,Wisconsin Public Service Corp,20860,MROE,1 54402,WI,Wisconsin Public Service Corp,20860,MROE,1 54403,WI,Wisconsin Public Service Corp,20860,MROE,1 @@ -40125,45 +40031,45 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 55917,MN,Steele-Waseca Cooperative Electric,18047,MROW,0 55918,MN,Freeborn-Mower Coop Services,6782,MROW,1 55918,MN,Northern States Power Co - Minnesota,13781,MROW,0 -55919,MN,Tri-County Electric Coop,19157,MROW,1 +55919,MN,MiEnergy Cooperative,19157,MROW,1 55920,MN,Northern States Power Co - Minnesota,13781,MROW,1 55920,MN,People's Cooperative Services,14468,MROW,0 -55921,MN,Tri-County Electric Coop,19157,MROW,1 -55922,MN,Tri-County Electric Coop,19157,MROW,1 -55923,MN,People's Cooperative Services,14468,MROW,1 -55923,MN,Tri-County Electric Coop,19157,MROW,0 +55921,MN,MiEnergy Cooperative,19157,MROW,1 +55922,MN,MiEnergy Cooperative,19157,MROW,1 +55923,MN,MiEnergy Cooperative,19157,MROW,1 +55923,MN,People's Cooperative Services,14468,MROW,0 55924,MN,Northern States Power Co - Minnesota,13781,MROW,1 55924,MN,People's Cooperative Services,14468,MROW,0 55924,MN,Steele-Waseca Cooperative Electric,18047,MROW,0 -55925,MN,Northern States Power Co - Minnesota,13781,MROW,1 -55925,MN,Tri-County Electric Coop,19157,MROW,0 +55925,MN,MiEnergy Cooperative,19157,MROW,1 +55925,MN,Northern States Power Co - Minnesota,13781,MROW,0 55926,MN,Freeborn-Mower Coop Services,6782,MROW,1 55926,MN,People's Cooperative Services,14468,MROW,0 55927,MN,Northern States Power Co - Minnesota,13781,MROW,1 55927,MN,People's Cooperative Services,14468,MROW,0 55927,MN,Steele-Waseca Cooperative Electric,18047,MROW,0 -55929,MN,People's Cooperative Services,14468,MROW,1 -55929,MN,Tri-County Electric Coop,19157,MROW,0 -55931,MN,Tri-County Electric Coop,19157,MROW,1 +55929,MN,MiEnergy Cooperative,19157,MROW,1 +55929,MN,People's Cooperative Services,14468,MROW,0 +55931,MN,MiEnergy Cooperative,19157,MROW,1 55932,MN,Northern States Power Co - Minnesota,13781,MROW,1 55932,MN,People's Cooperative Services,14468,MROW,0 55933,MN,Freeborn-Mower Coop Services,6782,MROW,1 55934,MN,People's Cooperative Services,14468,MROW,1 -55935,MN,People's Cooperative Services,14468,MROW,1 -55935,MN,Tri-County Electric Coop,19157,MROW,0 +55935,MN,MiEnergy Cooperative,19157,MROW,1 +55935,MN,People's Cooperative Services,14468,MROW,0 55936,MN,Freeborn-Mower Coop Services,6782,MROW,1 +55936,MN,MiEnergy Cooperative,19157,MROW,0 55936,MN,People's Cooperative Services,14468,MROW,0 -55936,MN,Tri-County Electric Coop,19157,MROW,0 -55939,MN,Tri-County Electric Coop,19157,MROW,1 +55939,MN,MiEnergy Cooperative,19157,MROW,1 55940,MN,Freeborn-Mower Coop Services,6782,MROW,1 55940,MN,Northern States Power Co - Minnesota,13781,MROW,0 55940,MN,People's Cooperative Services,14468,MROW,0 55940,MN,Steele-Waseca Cooperative Electric,18047,MROW,0 -55941,MN,Northern States Power Co - Minnesota,13781,MROW,1 -55941,MN,Tri-County Electric Coop,19157,MROW,0 +55941,MN,MiEnergy Cooperative,19157,MROW,1 +55941,MN,Northern States Power Co - Minnesota,13781,MROW,0 55942,MN,Northern States Power Co - Minnesota,13781,MROW,1 -55943,MN,Northern States Power Co - Minnesota,13781,MROW,1 -55943,MN,Tri-County Electric Coop,19157,MROW,0 +55943,MN,MiEnergy Cooperative,19157,MROW,1 +55943,MN,Northern States Power Co - Minnesota,13781,MROW,0 55944,MN,Northern States Power Co - Minnesota,13781,MROW,1 55944,MN,People's Cooperative Services,14468,MROW,0 55945,MN,Northern States Power Co - Minnesota,13781,MROW,1 @@ -40172,62 +40078,62 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 55946,MN,Kenyon Municipal Utilities,10179,MROW,0 55946,MN,Northern States Power Co - Minnesota,13781,MROW,0 55946,MN,Steele-Waseca Cooperative Electric,18047,MROW,0 -55947,MN,Northern States Power Co - Minnesota,13781,MROW,1 -55947,MN,Tri-County Electric Coop,19157,MROW,0 -55949,MN,Tri-County Electric Coop,19157,MROW,1 +55947,MN,MiEnergy Cooperative,19157,MROW,1 +55947,MN,Northern States Power Co - Minnesota,13781,MROW,0 +55949,MN,MiEnergy Cooperative,19157,MROW,1 55950,MN,Freeborn-Mower Coop Services,6782,MROW,1 55951,MN,Freeborn-Mower Coop Services,6782,MROW,1 55951,MN,Heartland Power Coop,8319,MROW,0 -55951,MN,Tri-County Electric Coop,19157,MROW,0 -55952,MN,Northern States Power Co - Minnesota,13781,MROW,1 -55952,MN,Tri-County Electric Coop,19157,MROW,0 +55951,MN,MiEnergy Cooperative,19157,MROW,0 +55952,MN,MiEnergy Cooperative,19157,MROW,1 +55952,MN,Northern States Power Co - Minnesota,13781,MROW,0 55953,MN,Freeborn-Mower Coop Services,6782,MROW,1 55953,MN,Heartland Power Coop,8319,MROW,0 -55954,MN,Tri-County Electric Coop,19157,MROW,1 +55954,MN,MiEnergy Cooperative,19157,MROW,1 55955,MN,Northern States Power Co - Minnesota,13781,MROW,1 55955,MN,People's Cooperative Services,14468,MROW,0 55956,MN,Northern States Power Co - Minnesota,13781,MROW,1 55956,MN,People's Cooperative Services,14468,MROW,0 55957,MN,Northern States Power Co - Minnesota,13781,MROW,1 55957,MN,People's Cooperative Services,14468,MROW,0 -55959,MN,Northern States Power Co - Minnesota,13781,MROW,1 +55959,MN,MiEnergy Cooperative,19157,MROW,1 +55959,MN,Northern States Power Co - Minnesota,13781,MROW,0 55959,MN,People's Cooperative Services,14468,MROW,0 -55959,MN,Tri-County Electric Coop,19157,MROW,0 55960,MN,Northern States Power Co - Minnesota,13781,MROW,1 55960,MN,People's Cooperative Services,14468,MROW,0 55961,MN,Freeborn-Mower Coop Services,6782,MROW,1 -55961,MN,Tri-County Electric Coop,19157,MROW,0 -55962,MN,Tri-County Electric Coop,19157,MROW,1 +55961,MN,MiEnergy Cooperative,19157,MROW,0 +55962,MN,MiEnergy Cooperative,19157,MROW,1 55963,MN,Goodhue County Coop Elec Assn,7460,MROW,1 55963,MN,Northern States Power Co - Minnesota,13781,MROW,0 55963,MN,People's Cooperative Services,14468,MROW,0 55964,MN,Northern States Power Co - Minnesota,13781,MROW,1 55964,MN,People's Cooperative Services,14468,MROW,0 -55965,MN,Tri-County Electric Coop,19157,MROW,1 +55965,MN,MiEnergy Cooperative,19157,MROW,1 55967,MN,Freeborn-Mower Coop Services,6782,MROW,1 +55967,MN,MiEnergy Cooperative,19157,MROW,0 55967,MN,People's Cooperative Services,14468,MROW,0 -55967,MN,Tri-County Electric Coop,19157,MROW,0 55968,MN,Northern States Power Co - Minnesota,13781,MROW,1 -55969,MN,Northern States Power Co - Minnesota,13781,MROW,1 +55969,MN,MiEnergy Cooperative,19157,MROW,1 +55969,MN,Northern States Power Co - Minnesota,13781,MROW,0 55969,MN,People's Cooperative Services,14468,MROW,0 -55969,MN,Tri-County Electric Coop,19157,MROW,0 55970,MN,Freeborn-Mower Coop Services,6782,MROW,1 -55971,MN,Northern States Power Co - Minnesota,13781,MROW,1 -55971,MN,Tri-County Electric Coop,19157,MROW,0 -55972,MN,Northern States Power Co - Minnesota,13781,MROW,1 +55971,MN,MiEnergy Cooperative,19157,MROW,1 +55971,MN,Northern States Power Co - Minnesota,13781,MROW,0 +55972,MN,MiEnergy Cooperative,19157,MROW,1 +55972,MN,Northern States Power Co - Minnesota,13781,MROW,0 55972,MN,People's Cooperative Services,14468,MROW,0 -55972,MN,Tri-County Electric Coop,19157,MROW,0 55973,MN,Freeborn-Mower Coop Services,6782,MROW,1 55973,MN,Northern States Power Co - Minnesota,13781,MROW,0 55973,MN,People's Cooperative Services,14468,MROW,0 -55974,MN,Tri-County Electric Coop,19157,MROW,1 -55975,MN,Tri-County Electric Coop,19157,MROW,1 -55976,MN,People's Cooperative Services,14468,MROW,1 -55976,MN,Tri-County Electric Coop,19157,MROW,0 +55974,MN,MiEnergy Cooperative,19157,MROW,1 +55975,MN,MiEnergy Cooperative,19157,MROW,1 +55976,MN,MiEnergy Cooperative,19157,MROW,1 +55976,MN,People's Cooperative Services,14468,MROW,0 55977,MN,Freeborn-Mower Coop Services,6782,MROW,1 55977,MN,Heartland Power Coop,8319,MROW,0 -55979,MN,Northern States Power Co - Minnesota,13781,MROW,1 -55979,MN,Tri-County Electric Coop,19157,MROW,0 +55979,MN,MiEnergy Cooperative,19157,MROW,1 +55979,MN,Northern States Power Co - Minnesota,13781,MROW,0 55981,MN,Northern States Power Co - Minnesota,13781,MROW,1 55981,MN,People's Cooperative Services,14468,MROW,0 55982,MN,Freeborn-Mower Coop Services,6782,MROW,1 @@ -40237,12 +40143,12 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 55983,MN,Northern States Power Co - Minnesota,13781,MROW,0 55985,MN,Northern States Power Co - Minnesota,13781,MROW,1 55985,MN,Steele-Waseca Cooperative Electric,18047,MROW,0 -55987,MN,Northern States Power Co - Minnesota,13781,MROW,1 +55987,MN,MiEnergy Cooperative,19157,MROW,1 +55987,MN,Northern States Power Co - Minnesota,13781,MROW,0 55987,MN,People's Cooperative Services,14468,MROW,0 -55987,MN,Tri-County Electric Coop,19157,MROW,0 55988,MN,Northern States Power Co - Minnesota,13781,MROW,1 -55990,MN,People's Cooperative Services,14468,MROW,1 -55990,MN,Tri-County Electric Coop,19157,MROW,0 +55990,MN,MiEnergy Cooperative,19157,MROW,1 +55990,MN,People's Cooperative Services,14468,MROW,0 55991,MN,Northern States Power Co - Minnesota,13781,MROW,1 55991,MN,People's Cooperative Services,14468,MROW,0 55992,MN,Goodhue County Coop Elec Assn,7460,MROW,1 @@ -40443,9 +40349,9 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 56110,MN,Sioux Valley SW Elec Coop,17267,MROW,0 56111,MN,Federated Rural Electric Assn,6258,MROW,1 56111,MN,South Central Electric Assn,17550,MROW,0 -56113,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,1 +56113,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,1 56114,MN,Nobles Cooperative Electric,13684,MROW,1 -56115,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,1 +56115,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,1 56115,MN,Nobles Cooperative Electric,13684,MROW,0 56115,MN,Northern States Power Co - Minnesota,13781,MROW,0 56115,MN,Sioux Valley SW Elec Coop,17267,MROW,0 @@ -40474,12 +40380,12 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 56131,MN,Federated Rural Electric Assn,6258,MROW,1 56131,MN,Nobles Cooperative Electric,13684,MROW,0 56131,MN,South Central Electric Assn,17550,MROW,0 -56132,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,1 +56132,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,1 56132,MN,Northern States Power Co - Minnesota,13781,MROW,0 56134,MN,Northern States Power Co - Minnesota,13781,MROW,1 56134,MN,Sioux Valley SW Elec Coop,17267,MROW,0 56136,MN,H-D Electric Coop Inc,7870,MROW,1 -56136,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,0 +56136,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,0 56136,MN,Otter Tail Power Co,14232,MROW,0 56137,MN,Federated Rural Electric Assn,6258,MROW,1 56137,MN,South Central Electric Assn,17550,MROW,0 @@ -40489,7 +40395,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 56140,MN,Sioux Valley SW Elec Coop,17267,MROW,1 56141,MN,Nobles Cooperative Electric,13684,MROW,1 56141,MN,Northern States Power Co - Minnesota,13781,MROW,0 -56142,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,1 +56142,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,1 56142,MN,Otter Tail Power Co,14232,MROW,0 56143,MN,City of Jackson - (MN),9599,MROW,1 56143,MN,Federated Rural Electric Assn,6258,MROW,0 @@ -40501,7 +40407,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 56147,MN,Nobles Cooperative Electric,13684,MROW,1 56147,MN,Northern States Power Co - Minnesota,13781,MROW,0 56147,MN,Sioux Valley SW Elec Coop,17267,MROW,0 -56149,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,1 +56149,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,1 56149,MN,Otter Tail Power Co,14232,MROW,0 56149,MN,Sioux Valley SW Elec Coop,17267,MROW,0 56150,MN,Federated Rural Electric Assn,6258,MROW,1 @@ -40513,7 +40419,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 56155,MN,Nobles Cooperative Electric,13684,MROW,1 56156,MN,City of Luverne - (MN),11332,MROW,1 56156,MN,Sioux Valley SW Elec Coop,17267,MROW,0 -56157,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,1 +56157,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,1 56157,MN,Otter Tail Power Co,14232,MROW,0 56158,MN,Nobles Cooperative Electric,13684,MROW,1 56158,MN,Sioux Valley SW Elec Coop,17267,MROW,0 @@ -40522,7 +40428,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 56160,MN,South Central Electric Assn,17550,MROW,1 56161,MN,Federated Rural Electric Assn,6258,MROW,1 56162,MN,South Central Electric Assn,17550,MROW,1 -56164,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,1 +56164,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,1 56164,MN,Northern States Power Co - Minnesota,13781,MROW,0 56164,MN,Otter Tail Power Co,14232,MROW,0 56164,MN,Sioux Valley SW Elec Coop,17267,MROW,0 @@ -40532,9 +40438,9 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 56167,MN,Federated Rural Electric Assn,6258,MROW,1 56167,MN,Nobles Cooperative Electric,13684,MROW,0 56168,MN,Nobles Cooperative Electric,13684,MROW,1 -56169,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,1 +56169,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,1 56169,MN,Northern States Power Co - Minnesota,13781,MROW,0 -56170,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,1 +56170,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,1 56170,MN,Northern States Power Co - Minnesota,13781,MROW,0 56170,MN,Otter Tail Power Co,14232,MROW,0 56170,MN,Sioux Valley SW Elec Coop,17267,MROW,0 @@ -40544,7 +40450,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 56172,MN,Northern States Power Co - Minnesota,13781,MROW,0 56173,MN,Sioux Valley SW Elec Coop,17267,MROW,1 56174,MN,South Central Electric Assn,17550,MROW,1 -56175,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,1 +56175,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,1 56175,MN,Minnesota Valley Coop L&P Assn,40304,MROW,0 56175,MN,Northern States Power Co - Minnesota,13781,MROW,0 56175,MN,Otter Tail Power Co,14232,MROW,0 @@ -40552,10 +40458,10 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 56176,MN,Federated Rural Electric Assn,6258,MROW,1 56176,MN,South Central Electric Assn,17550,MROW,0 56177,MN,Northern States Power Co - Minnesota,13781,MROW,1 -56178,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,1 +56178,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,1 56178,MN,Northern States Power Co - Minnesota,13781,MROW,0 56178,MN,Sioux Valley SW Elec Coop,17267,MROW,0 -56180,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,1 +56180,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,1 56180,MN,Minnesota Valley Coop L&P Assn,40304,MROW,0 56180,MN,Nobles Cooperative Electric,13684,MROW,0 56180,MN,Northern States Power Co - Minnesota,13781,MROW,0 @@ -40608,7 +40514,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 56219,SD,"Traverse Electric Coop, Inc",19060,MROW,0 56219,SD,Whetstone Valley Elec Coop Inc,20422,MROW,0 56220,MN,H-D Electric Coop Inc,7870,MROW,1 -56220,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,0 +56220,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,0 56220,MN,Minnesota Valley Coop L&P Assn,40304,MROW,0 56220,MN,Otter Tail Power Co,14232,MROW,0 56221,MN,Agralite Electric Coop,155,MROW,1 @@ -40652,7 +40558,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 56237,MN,Minnesota Valley Coop L&P Assn,40304,MROW,1 56237,MN,Northern States Power Co - Minnesota,13781,MROW,0 56237,MN,Redwood Electric Coop,15750,MROW,0 -56239,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,1 +56239,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,1 56239,MN,Minnesota Valley Coop L&P Assn,40304,MROW,0 56239,MN,Otter Tail Power Co,14232,MROW,0 56240,MN,Otter Tail Power Co,14232,MROW,1 @@ -40691,7 +40597,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 56257,MN,Minnesota Valley Coop L&P Assn,40304,MROW,0 56257,MN,Otter Tail Power Co,14232,MROW,0 56258,MN,City of Marshall - (MN),11731,MROW,1 -56258,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,0 +56258,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,0 56258,MN,Minnesota Valley Coop L&P Assn,40304,MROW,0 56258,MN,Northern States Power Co - Minnesota,13781,MROW,0 56258,MN,Otter Tail Power Co,14232,MROW,0 @@ -40700,11 +40606,11 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 56262,MN,Agralite Electric Coop,155,MROW,1 56262,MN,Minnesota Valley Coop L&P Assn,40304,MROW,0 56262,MN,Otter Tail Power Co,14232,MROW,0 -56263,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,1 +56263,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,1 56263,MN,Minnesota Valley Coop L&P Assn,40304,MROW,0 56263,MN,Otter Tail Power Co,14232,MROW,0 56263,MN,Redwood Electric Coop,15750,MROW,0 -56264,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,1 +56264,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,1 56264,MN,Minnesota Valley Coop L&P Assn,40304,MROW,0 56264,MN,Otter Tail Power Co,14232,MROW,0 56265,MN,Agralite Electric Coop,155,MROW,1 @@ -40747,7 +40653,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 56278,MN,"Traverse Electric Coop, Inc",19060,MROW,0 56279,MN,Kandiyohi Power Coop,9991,MROW,1 56279,MN,Otter Tail Power Co,14232,MROW,0 -56280,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,1 +56280,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,1 56280,MN,Minnesota Valley Coop L&P Assn,40304,MROW,0 56280,MN,Otter Tail Power Co,14232,MROW,0 56281,MN,Kandiyohi Power Coop,9991,MROW,1 @@ -40775,7 +40681,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 56289,MN,Kandiyohi Power Coop,9991,MROW,0 56289,MN,Otter Tail Power Co,14232,MROW,0 56289,MN,Runestone Electric Assn,16368,MROW,0 -56291,MN,Lyon-Lincoln Electric Coop Inc,11345,MROW,1 +56291,MN,"Lyon-Lincoln Electric Cooperative, Inc.",11345,MROW,1 56291,MN,Minnesota Valley Coop L&P Assn,40304,MROW,0 56291,MN,Otter Tail Power Co,14232,MROW,0 56292,MN,Minnesota Valley Coop L&P Assn,40304,MROW,1 @@ -44658,7 +44564,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 60974,IL,Ameren Illinois Company,56697,SRMW,1 60974,IL,Eastern Illinois Elec Coop,5585,SRMW,0 61001,IL,Commonwealth Edison Co,4110,RFCW,1 -61001,IL,Jo-Carroll Energy Coop Inc,9750,MROW,0 +61001,IL,"Jo-Carroll Energy, Inc",9750,MROW,0 61001,IL,Scenic Rivers Energy Coop,16740,MROE,0 61006,IL,Commonwealth Edison Co,4110,RFCW,1 61007,IL,Commonwealth Edison Co,4110,RFCW,1 @@ -44669,7 +44575,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 61012,IL,Commonwealth Edison Co,4110,RFCW,1 61013,IL,Commonwealth Edison Co,4110,RFCW,1 61014,IL,Commonwealth Edison Co,4110,RFCW,1 -61014,IL,Jo-Carroll Energy Coop Inc,9750,MROW,0 +61014,IL,"Jo-Carroll Energy, Inc",9750,MROW,0 61015,IL,Commonwealth Edison Co,4110,RFCW,1 61016,IL,Commonwealth Edison Co,4110,RFCW,1 61018,IL,Commonwealth Edison Co,4110,RFCW,1 @@ -44679,42 +44585,42 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 61021,IL,Commonwealth Edison Co,4110,RFCW,1 61024,IL,Commonwealth Edison Co,4110,RFCW,1 61024,IL,Rock Energy Cooperative,16196,MROE,0 -61025,IL,Jo-Carroll Energy Coop Inc,9750,MROW,1 +61025,IL,"Jo-Carroll Energy, Inc",9750,MROW,1 61025,IL,Scenic Rivers Energy Coop,16740,MROE,0 61027,IL,Commonwealth Edison Co,4110,RFCW,1 61028,IL,Commonwealth Edison Co,4110,RFCW,1 -61028,IL,Jo-Carroll Energy Coop Inc,9750,MROW,0 +61028,IL,"Jo-Carroll Energy, Inc",9750,MROW,0 61030,IL,Commonwealth Edison Co,4110,RFCW,1 61031,IL,Commonwealth Edison Co,4110,RFCW,1 61032,IL,Commonwealth Edison Co,4110,RFCW,1 61036,IL,Commonwealth Edison Co,4110,RFCW,1 -61036,IL,Jo-Carroll Energy Coop Inc,9750,MROW,0 +61036,IL,"Jo-Carroll Energy, Inc",9750,MROW,0 61036,IL,Scenic Rivers Energy Coop,16740,MROE,0 61037,IL,Commonwealth Edison Co,4110,RFCW,1 61038,IL,Commonwealth Edison Co,4110,RFCW,1 61039,IL,Commonwealth Edison Co,4110,RFCW,1 -61041,IL,Jo-Carroll Energy Coop Inc,9750,MROW,1 +61041,IL,"Jo-Carroll Energy, Inc",9750,MROW,1 61042,IL,Commonwealth Edison Co,4110,RFCW,1 61043,IL,Commonwealth Edison Co,4110,RFCW,1 61044,IL,Commonwealth Edison Co,4110,RFCW,1 61046,IL,Commonwealth Edison Co,4110,RFCW,1 -61046,IL,Jo-Carroll Energy Coop Inc,9750,MROW,0 +61046,IL,"Jo-Carroll Energy, Inc",9750,MROW,0 61047,IL,Commonwealth Edison Co,4110,RFCW,1 61048,IL,Commonwealth Edison Co,4110,RFCW,1 61049,IL,Commonwealth Edison Co,4110,RFCW,1 61050,IL,Commonwealth Edison Co,4110,RFCW,1 61051,IL,Commonwealth Edison Co,4110,RFCW,1 -61051,IL,Jo-Carroll Energy Coop Inc,9750,MROW,0 +61051,IL,"Jo-Carroll Energy, Inc",9750,MROW,0 61052,IL,Commonwealth Edison Co,4110,RFCW,1 61053,IL,Commonwealth Edison Co,4110,RFCW,1 -61053,IL,Jo-Carroll Energy Coop Inc,9750,MROW,0 +61053,IL,"Jo-Carroll Energy, Inc",9750,MROW,0 61054,IL,Commonwealth Edison Co,4110,RFCW,1 61057,IL,Commonwealth Edison Co,4110,RFCW,1 61059,IL,Commonwealth Edison Co,4110,RFCW,1 61060,IL,Commonwealth Edison Co,4110,RFCW,1 61061,IL,Commonwealth Edison Co,4110,RFCW,1 61062,IL,Commonwealth Edison Co,4110,RFCW,1 -61062,IL,Jo-Carroll Energy Coop Inc,9750,MROW,0 +61062,IL,"Jo-Carroll Energy, Inc",9750,MROW,0 61063,IL,Commonwealth Edison Co,4110,RFCW,1 61064,IL,Commonwealth Edison Co,4110,RFCW,1 61065,IL,Commonwealth Edison Co,4110,RFCW,1 @@ -44728,9 +44634,9 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 61072,IL,Rock Energy Cooperative,16196,MROE,0 61073,IL,Commonwealth Edison Co,4110,RFCW,1 61073,IL,Rock Energy Cooperative,16196,MROE,0 -61074,IL,Jo-Carroll Energy Coop Inc,9750,MROW,1 +61074,IL,"Jo-Carroll Energy, Inc",9750,MROW,1 61075,IL,Commonwealth Edison Co,4110,RFCW,1 -61075,IL,Jo-Carroll Energy Coop Inc,9750,MROW,0 +61075,IL,"Jo-Carroll Energy, Inc",9750,MROW,0 61075,IL,Scenic Rivers Energy Coop,16740,MROE,0 61077,IL,Commonwealth Edison Co,4110,RFCW,1 61078,IL,Commonwealth Edison Co,4110,RFCW,1 @@ -44741,9 +44647,9 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 61081,IL,Commonwealth Edison Co,4110,RFCW,1 61084,IL,Commonwealth Edison Co,4110,RFCW,1 61085,IL,Commonwealth Edison Co,4110,RFCW,1 -61085,IL,Jo-Carroll Energy Coop Inc,9750,MROW,0 +61085,IL,"Jo-Carroll Energy, Inc",9750,MROW,0 61087,IL,Commonwealth Edison Co,4110,RFCW,1 -61087,IL,Jo-Carroll Energy Coop Inc,9750,MROW,0 +61087,IL,"Jo-Carroll Energy, Inc",9750,MROW,0 61087,IL,Scenic Rivers Energy Coop,16740,MROE,0 61088,IL,Commonwealth Edison Co,4110,RFCW,1 61089,IL,Commonwealth Edison Co,4110,RFCW,1 @@ -44800,7 +44706,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 61250,IL,MidAmerican Energy Co,12341,MROW,0 61251,IL,Commonwealth Edison Co,4110,RFCW,1 61252,IL,Commonwealth Edison Co,4110,RFCW,1 -61252,IL,Jo-Carroll Energy Coop Inc,9750,MROW,0 +61252,IL,"Jo-Carroll Energy, Inc",9750,MROW,0 61254,IL,Ameren Illinois Company,56697,SRMW,1 61254,IL,Commonwealth Edison Co,4110,RFCW,0 61254,IL,MidAmerican Energy Co,12341,MROW,0 @@ -44819,7 +44725,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 61265,IL,MidAmerican Energy Co,12341,MROW,1 61266,IL,MidAmerican Energy Co,12341,MROW,1 61270,IL,Commonwealth Edison Co,4110,RFCW,1 -61270,IL,Jo-Carroll Energy Coop Inc,9750,MROW,0 +61270,IL,"Jo-Carroll Energy, Inc",9750,MROW,0 61272,IL,Ameren Illinois Company,56697,SRMW,1 61272,IL,MidAmerican Energy Co,12341,MROW,0 61273,IL,MidAmerican Energy Co,12341,MROW,1 @@ -44839,7 +44745,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 61283,IL,Corn Belt Energy Corporation,4362,SRMW,0 61284,IL,MidAmerican Energy Co,12341,MROW,1 61285,IL,Commonwealth Edison Co,4110,RFCW,1 -61285,IL,Jo-Carroll Energy Coop Inc,9750,MROW,0 +61285,IL,"Jo-Carroll Energy, Inc",9750,MROW,0 61299,IL,MidAmerican Energy Co,12341,MROW,1 61301,IL,Ameren Illinois Company,56697,SRMW,1 61301,IL,City of Peru - (IL),14840,SRMW,0 @@ -49168,15 +49074,13 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 65898,MO,City Utilities of Springfield - (MO),17833,SPSO,1 65899,MO,City Utilities of Springfield - (MO),17833,SPSO,1 66002,KS,Brown-Atchison E C A Inc,2354,SPNO,1 -66002,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,0 66002,KS,Westar Energy Inc,22500,SPNO,0 66006,KS,City of Baldwin City- (KS),1148,SPNO,1 +66006,KS,FreeState Electric Coop,10019,SPNO,0 66006,KS,Kansas City Power & Light Co,10000,SPNO,0 -66006,KS,Kaw Valley Electric Coop Inc,10019,SPNO,0 66006,KS,Westar Energy Inc,22500,SPNO,0 66007,KS,City of Kansas City - (KS),9996,SPNO,1 66007,KS,Kansas City Power & Light Co,10000,SPNO,0 -66007,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,0 66007,KS,Westar Energy Inc,22500,SPNO,0 66008,KS,Brown-Atchison E C A Inc,2354,SPNO,1 66008,KS,Westar Energy Inc,22500,SPNO,0 @@ -49202,8 +49106,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 66018,KS,Kansas City Power & Light Co,10000,SPNO,1 66018,KS,Westar Energy Inc,22500,SPNO,0 66019,KS,Westar Energy Inc,22500,SPNO,1 -66020,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,1 -66020,KS,Westar Energy Inc,22500,SPNO,0 +66020,KS,Westar Energy Inc,22500,SPNO,1 66021,KS,Kansas City Power & Light Co,10000,SPNO,1 66023,KS,Brown-Atchison E C A Inc,2354,SPNO,1 66023,KS,Westar Energy Inc,22500,SPNO,0 @@ -49240,34 +49143,29 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 66042,KS,"Lyon-Coffey Electric Coop, Inc",11334,SPNO,0 66043,KS,Kansas City Power & Light Co,10000,SPNO,1 66043,KS,Westar Energy Inc,22500,SPNO,0 -66044,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,1 -66044,KS,Westar Energy Inc,22500,SPNO,0 +66044,KS,Westar Energy Inc,22500,SPNO,1 66045,KS,Westar Energy Inc,22500,SPNO,1 66046,KS,Kansas City Power & Light Co,10000,SPNO,1 66046,KS,Westar Energy Inc,22500,SPNO,0 -66047,KS,Kansas City Power & Light Co,10000,SPNO,1 -66047,KS,Kaw Valley Electric Coop Inc,10019,SPNO,0 +66047,KS,FreeState Electric Coop,10019,SPNO,1 +66047,KS,Kansas City Power & Light Co,10000,SPNO,0 66047,KS,Westar Energy Inc,22500,SPNO,0 66048,KS,City of Kansas City - (KS),9996,SPNO,1 66048,KS,Kansas City Power & Light Co,10000,SPNO,0 -66048,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,0 66048,KS,Westar Energy Inc,22500,SPNO,0 -66049,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 +66049,KS,FreeState Electric Coop,10019,SPNO,1 66049,KS,Westar Energy Inc,22500,SPNO,0 -66050,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 -66050,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,0 +66050,KS,FreeState Electric Coop,10019,SPNO,1 66050,KS,Westar Energy Inc,22500,SPNO,0 66051,KS,Westar Energy Inc,22500,SPNO,1 66052,KS,Westar Energy Inc,22500,SPNO,1 66053,KS,Kansas City Power & Light Co,10000,SPNO,1 -66054,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,1 -66054,KS,Westar Energy Inc,22500,SPNO,0 +66054,KS,Westar Energy Inc,22500,SPNO,1 66056,KS,"Heartland Rural Elec Coop, Inc",16854,SPNO,1 66056,KS,Kansas City Power & Light Co,10000,SPNO,0 66058,KS,Brown-Atchison E C A Inc,2354,SPNO,1 66058,KS,Westar Energy Inc,22500,SPNO,0 66060,KS,Brown-Atchison E C A Inc,2354,SPNO,1 -66060,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,0 66060,KS,Westar Energy Inc,22500,SPNO,0 66061,KS,City of Gardner - (KS),6949,SPNO,1 66061,KS,Kansas City Power & Light Co,10000,SPNO,0 @@ -49278,22 +49176,19 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 66064,KS,City of Osawatomie - (KS),14203,SPNO,1 66064,KS,"Heartland Rural Elec Coop, Inc",16854,SPNO,0 66064,KS,Kansas City Power & Light Co,10000,SPNO,0 -66066,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,1 -66066,KS,Westar Energy Inc,22500,SPNO,0 +66066,KS,Westar Energy Inc,22500,SPNO,1 66067,KS,City of Ottawa - (KS),14229,SPNO,1 66067,KS,Kansas City Power & Light Co,10000,SPNO,0 66067,KS,"Lyon-Coffey Electric Coop, Inc",11334,SPNO,0 66067,KS,Westar Energy Inc,22500,SPNO,0 -66070,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,1 -66070,KS,Westar Energy Inc,22500,SPNO,0 +66070,KS,Westar Energy Inc,22500,SPNO,1 66071,KS,City of Osawatomie - (KS),14203,SPNO,1 66071,KS,"Heartland Rural Elec Coop, Inc",16854,SPNO,0 66071,KS,Kansas City Power & Light Co,10000,SPNO,0 66072,KS,"Heartland Rural Elec Coop, Inc",16854,SPNO,1 66072,KS,Kansas City Power & Light Co,10000,SPNO,0 66072,KS,"Lyon-Coffey Electric Coop, Inc",11334,SPNO,0 -66073,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 -66073,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,0 +66073,KS,FreeState Electric Coop,10019,SPNO,1 66073,KS,Westar Energy Inc,22500,SPNO,0 66075,KS,"Heartland Rural Elec Coop, Inc",16854,SPNO,1 66075,KS,Kansas City Power & Light Co,10000,SPNO,0 @@ -49308,11 +49203,9 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 66083,KS,Kansas City Power & Light Co,10000,SPNO,1 66083,KS,Westar Energy Inc,22500,SPNO,0 66085,KS,Kansas City Power & Light Co,10000,SPNO,1 -66086,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,1 -66086,KS,Westar Energy Inc,22500,SPNO,0 +66086,KS,Westar Energy Inc,22500,SPNO,1 66087,KS,Westar Energy Inc,22500,SPNO,1 66088,KS,Brown-Atchison E C A Inc,2354,SPNO,1 -66088,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,0 66088,KS,Westar Energy Inc,22500,SPNO,0 66090,KS,Westar Energy Inc,22500,SPNO,1 66091,KS,Kansas City Power & Light Co,10000,SPNO,1 @@ -49327,8 +49220,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 66095,KS,Kansas City Power & Light Co,10000,SPNO,1 66095,KS,"Lyon-Coffey Electric Coop, Inc",11334,SPNO,0 66095,KS,Westar Energy Inc,22500,SPNO,0 -66097,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,1 -66097,KS,Westar Energy Inc,22500,SPNO,0 +66097,KS,Westar Energy Inc,22500,SPNO,1 66101,KS,City of Kansas City - (KS),9996,SPNO,1 66102,KS,City of Kansas City - (KS),9996,SPNO,1 66103,KS,City of Kansas City - (KS),9996,SPNO,1 @@ -49405,7 +49297,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 66401,KS,Bluestem Electric Coop Inc,23826,SPNO,1 66401,KS,"Flint Hills Rural E C A, Inc",6431,SPNO,0 66401,KS,Westar Energy Inc,22500,SPNO,0 -66402,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 +66402,KS,FreeState Electric Coop,10019,SPNO,1 66402,KS,Westar Energy Inc,22500,SPNO,0 66403,KS,"Nemaha-Marshall E C A, Inc",13386,SPNO,1 66403,KS,Westar Energy Inc,22500,SPNO,0 @@ -49416,17 +49308,17 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 66407,KS,Bluestem Electric Coop Inc,23826,SPNO,1 66407,KS,Westar Energy Inc,22500,SPNO,0 66408,KS,Westar Energy Inc,22500,SPNO,1 -66409,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 +66409,KS,FreeState Electric Coop,10019,SPNO,1 66409,KS,Westar Energy Inc,22500,SPNO,0 66411,KS,Bluestem Electric Coop Inc,23826,SPNO,1 66411,KS,"Nemaha-Marshall E C A, Inc",13386,SPNO,0 66411,KS,Westar Energy Inc,22500,SPNO,0 66412,KS,"Nemaha-Marshall E C A, Inc",13386,SPNO,1 66412,KS,Westar Energy Inc,22500,SPNO,0 -66413,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 +66413,KS,FreeState Electric Coop,10019,SPNO,1 66413,KS,"Lyon-Coffey Electric Coop, Inc",11334,SPNO,0 66413,KS,Westar Energy Inc,22500,SPNO,0 -66414,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 +66414,KS,FreeState Electric Coop,10019,SPNO,1 66414,KS,Westar Energy Inc,22500,SPNO,0 66415,KS,"Nemaha-Marshall E C A, Inc",13386,SPNO,1 66415,KS,Westar Energy Inc,22500,SPNO,0 @@ -49437,19 +49329,17 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 66417,KS,"Nemaha-Marshall E C A, Inc",13386,SPNO,1 66417,KS,Westar Energy Inc,22500,SPNO,0 66418,KS,Bluestem Electric Coop Inc,23826,SPNO,1 -66418,KS,Kaw Valley Electric Coop Inc,10019,SPNO,0 -66418,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,0 +66418,KS,FreeState Electric Coop,10019,SPNO,0 66418,KS,Westar Energy Inc,22500,SPNO,0 66419,KS,Brown-Atchison E C A Inc,2354,SPNO,1 -66419,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,0 66419,KS,Westar Energy Inc,22500,SPNO,0 -66420,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 +66420,KS,FreeState Electric Coop,10019,SPNO,1 66422,KS,Bluestem Electric Coop Inc,23826,SPNO,1 -66422,KS,Kaw Valley Electric Coop Inc,10019,SPNO,0 +66422,KS,FreeState Electric Coop,10019,SPNO,0 66422,KS,Westar Energy Inc,22500,SPNO,0 66423,KS,Bluestem Electric Coop Inc,23826,SPNO,1 66423,KS,"Flint Hills Rural E C A, Inc",6431,SPNO,0 -66423,KS,Kaw Valley Electric Coop Inc,10019,SPNO,0 +66423,KS,FreeState Electric Coop,10019,SPNO,0 66423,KS,"Lyon-Coffey Electric Coop, Inc",11334,SPNO,0 66423,KS,Westar Energy Inc,22500,SPNO,0 66424,KS,Brown-Atchison E C A Inc,2354,SPNO,1 @@ -49463,13 +49353,12 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 66428,KS,Brown-Atchison E C A Inc,2354,SPNO,1 66428,KS,"Nemaha-Marshall E C A, Inc",13386,SPNO,0 66428,KS,Westar Energy Inc,22500,SPNO,0 -66429,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,1 -66429,KS,Westar Energy Inc,22500,SPNO,0 -66431,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 +66429,KS,Westar Energy Inc,22500,SPNO,1 +66431,KS,FreeState Electric Coop,10019,SPNO,1 66431,KS,"Lyon-Coffey Electric Coop, Inc",11334,SPNO,0 66431,KS,Westar Energy Inc,22500,SPNO,0 66432,KS,Bluestem Electric Coop Inc,23826,SPNO,1 -66432,KS,Kaw Valley Electric Coop Inc,10019,SPNO,0 +66432,KS,FreeState Electric Coop,10019,SPNO,0 66432,KS,"Nemaha-Marshall E C A, Inc",13386,SPNO,0 66432,KS,Westar Energy Inc,22500,SPNO,0 66434,KS,Brown-Atchison E C A Inc,2354,SPNO,1 @@ -49482,8 +49371,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 66438,KS,Westar Energy Inc,22500,SPNO,0 66439,KS,Brown-Atchison E C A Inc,2354,SPNO,1 66439,KS,Westar Energy Inc,22500,SPNO,0 -66440,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 -66440,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,0 +66440,KS,FreeState Electric Coop,10019,SPNO,1 66440,KS,Westar Energy Inc,22500,SPNO,0 66441,KS,Bluestem Electric Coop Inc,23826,SPNO,1 66441,KS,"DS&O Electric Cooperative, Inc.",4704,SPNO,0 @@ -49492,8 +49380,8 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 66442,KS,Westar Energy Inc,22500,SPNO,1 66449,KS,Bluestem Electric Coop Inc,23826,SPNO,1 66449,KS,Westar Energy Inc,22500,SPNO,0 -66451,KS,Kansas City Power & Light Co,10000,SPNO,1 -66451,KS,Kaw Valley Electric Coop Inc,10019,SPNO,0 +66451,KS,FreeState Electric Coop,10019,SPNO,1 +66451,KS,Kansas City Power & Light Co,10000,SPNO,0 66451,KS,"Lyon-Coffey Electric Coop, Inc",11334,SPNO,0 66451,KS,Westar Energy Inc,22500,SPNO,0 66501,KS,Westar Energy Inc,22500,SPNO,1 @@ -49505,20 +49393,18 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 66505,KS,Bluestem Electric Coop Inc,23826,SPNO,1 66506,KS,Westar Energy Inc,22500,SPNO,1 66507,KS,Bluestem Electric Coop Inc,23826,SPNO,1 -66507,KS,Kaw Valley Electric Coop Inc,10019,SPNO,0 +66507,KS,FreeState Electric Coop,10019,SPNO,0 66507,KS,Westar Energy Inc,22500,SPNO,0 66508,KS,"Nemaha-Marshall E C A, Inc",13386,SPNO,1 66508,KS,Westar Energy Inc,22500,SPNO,0 66509,KS,Bluestem Electric Coop Inc,23826,SPNO,1 66509,KS,Brown-Atchison E C A Inc,2354,SPNO,0 -66509,KS,Kaw Valley Electric Coop Inc,10019,SPNO,0 -66509,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,0 +66509,KS,FreeState Electric Coop,10019,SPNO,0 66509,KS,Westar Energy Inc,22500,SPNO,0 66510,KS,Kansas City Power & Light Co,10000,SPNO,1 66510,KS,"Lyon-Coffey Electric Coop, Inc",11334,SPNO,0 66510,KS,Westar Energy Inc,22500,SPNO,0 -66512,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,1 -66512,KS,Westar Energy Inc,22500,SPNO,0 +66512,KS,Westar Energy Inc,22500,SPNO,1 66514,KS,Bluestem Electric Coop Inc,23826,SPNO,1 66514,KS,"DS&O Electric Cooperative, Inc.",4704,SPNO,0 66514,KS,Westar Energy Inc,22500,SPNO,0 @@ -49539,27 +49425,27 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 66521,KS,Westar Energy Inc,22500,SPNO,0 66522,KS,Westar Energy Inc,22500,SPNO,1 66523,KS,City of Osage City - (KS),14199,SPNO,1 +66523,KS,FreeState Electric Coop,10019,SPNO,0 66523,KS,Kansas City Power & Light Co,10000,SPNO,0 -66523,KS,Kaw Valley Electric Coop Inc,10019,SPNO,0 66523,KS,"Lyon-Coffey Electric Coop, Inc",11334,SPNO,0 66523,KS,Westar Energy Inc,22500,SPNO,0 -66524,KS,Kansas City Power & Light Co,10000,SPNO,1 -66524,KS,Kaw Valley Electric Coop Inc,10019,SPNO,0 +66524,KS,FreeState Electric Coop,10019,SPNO,1 +66524,KS,Kansas City Power & Light Co,10000,SPNO,0 66524,KS,Westar Energy Inc,22500,SPNO,0 66526,KS,Bluestem Electric Coop Inc,23826,SPNO,1 -66526,KS,Kaw Valley Electric Coop Inc,10019,SPNO,0 +66526,KS,FreeState Electric Coop,10019,SPNO,0 66526,KS,Westar Energy Inc,22500,SPNO,0 66527,KS,Brown-Atchison E C A Inc,2354,SPNO,1 66527,KS,Westar Energy Inc,22500,SPNO,0 -66528,KS,Kansas City Power & Light Co,10000,SPNO,1 -66528,KS,Kaw Valley Electric Coop Inc,10019,SPNO,0 +66528,KS,FreeState Electric Coop,10019,SPNO,1 +66528,KS,Kansas City Power & Light Co,10000,SPNO,0 66528,KS,Westar Energy Inc,22500,SPNO,0 66531,KS,Bluestem Electric Coop Inc,23826,SPNO,1 66531,KS,"DS&O Electric Cooperative, Inc.",4704,SPNO,0 66531,KS,Westar Energy Inc,22500,SPNO,0 66532,KS,Brown-Atchison E C A Inc,2354,SPNO,1 66532,KS,Westar Energy Inc,22500,SPNO,0 -66533,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 +66533,KS,FreeState Electric Coop,10019,SPNO,1 66533,KS,Westar Energy Inc,22500,SPNO,0 66534,KS,Brown-Atchison E C A Inc,2354,SPNO,1 66534,KS,City of Sabetha - (KS),16518,SPNO,0 @@ -49568,28 +49454,28 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 66535,KS,Bluestem Electric Coop Inc,23826,SPNO,1 66535,KS,Westar Energy Inc,22500,SPNO,0 66536,KS,Bluestem Electric Coop Inc,23826,SPNO,1 -66536,KS,Kaw Valley Electric Coop Inc,10019,SPNO,0 +66536,KS,FreeState Electric Coop,10019,SPNO,0 66536,KS,Westar Energy Inc,22500,SPNO,0 -66537,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 +66537,KS,FreeState Electric Coop,10019,SPNO,1 66537,KS,Westar Energy Inc,22500,SPNO,0 66538,KS,City of Seneca - (KS),16922,SPNO,1 66538,KS,"Nemaha-Marshall E C A, Inc",13386,SPNO,0 66538,KS,Westar Energy Inc,22500,SPNO,0 -66539,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 +66539,KS,FreeState Electric Coop,10019,SPNO,1 66539,KS,Westar Energy Inc,22500,SPNO,0 66540,KS,Bluestem Electric Coop Inc,23826,SPNO,1 66540,KS,Brown-Atchison E C A Inc,2354,SPNO,0 -66540,KS,Kaw Valley Electric Coop Inc,10019,SPNO,0 +66540,KS,FreeState Electric Coop,10019,SPNO,0 66540,KS,"Nemaha-Marshall E C A, Inc",13386,SPNO,0 66540,KS,Westar Energy Inc,22500,SPNO,0 66541,KS,"Nemaha-Marshall E C A, Inc",13386,SPNO,1 -66542,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 +66542,KS,FreeState Electric Coop,10019,SPNO,1 66542,KS,Westar Energy Inc,22500,SPNO,0 -66543,KS,Kansas City Power & Light Co,10000,SPNO,1 -66543,KS,Kaw Valley Electric Coop Inc,10019,SPNO,0 +66543,KS,FreeState Electric Coop,10019,SPNO,1 +66543,KS,Kansas City Power & Light Co,10000,SPNO,0 66544,KS,"Nemaha-Marshall E C A, Inc",13386,SPNO,1 66544,KS,Westar Energy Inc,22500,SPNO,0 -66546,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 +66546,KS,FreeState Electric Coop,10019,SPNO,1 66546,KS,Westar Energy Inc,22500,SPNO,0 66547,KS,Bluestem Electric Coop Inc,23826,SPNO,1 66547,KS,City of Wamego - (KS),20069,SPNO,0 @@ -49616,20 +49502,19 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 66607,KS,Westar Energy Inc,22500,SPNO,1 66608,KS,Westar Energy Inc,22500,SPNO,1 66609,KS,Westar Energy Inc,22500,SPNO,1 -66610,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 +66610,KS,FreeState Electric Coop,10019,SPNO,1 66610,KS,Westar Energy Inc,22500,SPNO,0 66611,KS,Westar Energy Inc,22500,SPNO,1 66612,KS,Westar Energy Inc,22500,SPNO,1 -66614,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 +66614,KS,FreeState Electric Coop,10019,SPNO,1 66614,KS,Westar Energy Inc,22500,SPNO,0 -66615,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 +66615,KS,FreeState Electric Coop,10019,SPNO,1 66615,KS,Westar Energy Inc,22500,SPNO,0 66616,KS,Westar Energy Inc,22500,SPNO,1 -66617,KS,"Leavenworth-Jefferson E C, Inc",10801,SPNO,1 -66617,KS,Westar Energy Inc,22500,SPNO,0 -66618,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 +66617,KS,Westar Energy Inc,22500,SPNO,1 +66618,KS,FreeState Electric Coop,10019,SPNO,1 66618,KS,Westar Energy Inc,22500,SPNO,0 -66619,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 +66619,KS,FreeState Electric Coop,10019,SPNO,1 66619,KS,Westar Energy Inc,22500,SPNO,0 66620,KS,Westar Energy Inc,22500,SPNO,1 66621,KS,Westar Energy Inc,22500,SPNO,1 @@ -49642,7 +49527,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 66636,KS,Westar Energy Inc,22500,SPNO,1 66647,KS,Westar Energy Inc,22500,SPNO,1 66667,KS,Westar Energy Inc,22500,SPNO,1 -66675,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 +66675,KS,FreeState Electric Coop,10019,SPNO,1 66683,KS,Westar Energy Inc,22500,SPNO,1 66699,KS,Westar Energy Inc,22500,SPNO,1 66701,KS,"Heartland Rural Elec Coop, Inc",16854,SPNO,1 @@ -49847,7 +49732,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 66866,KS,"Flint Hills Rural E C A, Inc",6431,SPNO,0 66866,KS,Kansas Gas & Electric Co,10005,SPNO,0 66866,KS,Westar Energy Inc,22500,SPNO,0 -66868,KS,Kaw Valley Electric Coop Inc,10019,SPNO,1 +66868,KS,FreeState Electric Coop,10019,SPNO,1 66868,KS,"Lyon-Coffey Electric Coop, Inc",11334,SPNO,0 66868,KS,Westar Energy Inc,22500,SPNO,0 66869,KS,"Flint Hills Rural E C A, Inc",6431,SPNO,1 @@ -50899,7 +50784,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 68065,NE,Butler Public Power District - (NE),2643,MROW,1 68065,NE,Nebraska Public Power District,13337,MROW,0 68065,NE,Norris Public Power District,13664,MROW,0 -68065,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68066,NE,Butler Public Power District - (NE),2643,MROW,1 68066,NE,City of Wahoo - (NE),19968,MROW,0 68066,NE,Nebraska Public Power District,13337,MROW,0 @@ -50999,9 +50883,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 68310,NE,City of Beatrice - (NE),1427,MROW,1 68310,NE,Norris Public Power District,13664,MROW,0 68313,NE,Perennial Public Power Dist,21111,MROW,1 -68313,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68314,NE,Butler Public Power District - (NE),2643,MROW,1 -68314,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68315,NE,Norris Public Power District,13664,MROW,1 68316,NE,Perennial Public Power Dist,21111,MROW,1 68316,NE,Polk County Rural Pub Pwr Dist,15188,MROW,0 @@ -51032,7 +50914,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 68332,NE,Norris Public Power District,13664,MROW,0 68333,NE,City of Crete,4527,MROW,1 68333,NE,Norris Public Power District,13664,MROW,0 -68333,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68335,NE,Norris Public Power District,13664,MROW,1 68335,NE,Perennial Public Power Dist,21111,MROW,0 68335,NE,South Central Public Pwr Dist,17548,MROW,0 @@ -51040,13 +50921,11 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 68337,NE,Nebraska Public Power District,13337,MROW,1 68338,NE,Norris Public Power District,13664,MROW,1 68339,NE,Norris Public Power District,13664,MROW,1 -68339,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68340,NE,Norris Public Power District,13664,MROW,1 68340,NE,South Central Public Pwr Dist,17548,MROW,0 68341,NE,Norris Public Power District,13664,MROW,1 68342,NE,Norris Public Power District,13664,MROW,1 68343,NE,Norris Public Power District,13664,MROW,1 -68343,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68344,NE,Nebraska Public Power District,13337,MROW,1 68344,NE,Norris Public Power District,13664,MROW,0 68345,NE,Nebraska Public Power District,13337,MROW,1 @@ -51058,7 +50937,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 68350,NE,Norris Public Power District,13664,MROW,1 68351,NE,Norris Public Power District,13664,MROW,1 68351,NE,Perennial Public Power Dist,21111,MROW,0 -68351,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68352,NE,City of Fairbury,6132,MROW,1 68352,NE,Norris Public Power District,13664,MROW,0 68354,NE,Perennial Public Power Dist,21111,MROW,1 @@ -51069,9 +50947,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 68358,NE,Norris Public Power District,13664,MROW,1 68359,NE,Norris Public Power District,13664,MROW,1 68359,NE,Perennial Public Power Dist,21111,MROW,0 -68359,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68360,NE,Norris Public Power District,13664,MROW,1 -68360,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68361,NE,Perennial Public Power Dist,21111,MROW,1 68362,NE,Norris Public Power District,13664,MROW,1 68364,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,1 @@ -51081,7 +50957,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 68367,NE,Butler Public Power District - (NE),2643,MROW,1 68367,NE,Perennial Public Power Dist,21111,MROW,0 68367,NE,Polk County Rural Pub Pwr Dist,15188,MROW,0 -68367,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68368,NE,Norris Public Power District,13664,MROW,1 68370,NE,City of Hebron - (NE),8375,MROW,1 68370,NE,Norris Public Power District,13664,MROW,0 @@ -51099,11 +50974,9 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 68382,NE,Nebraska Public Power District,13337,MROW,1 68401,NE,Perennial Public Power Dist,21111,MROW,1 68402,NE,Norris Public Power District,13664,MROW,1 -68402,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68403,NE,Nebraska Public Power District,13337,MROW,1 68404,NE,Norris Public Power District,13664,MROW,1 68405,NE,Norris Public Power District,13664,MROW,1 -68405,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68406,NE,Norris Public Power District,13664,MROW,1 68406,NE,Perennial Public Power Dist,21111,MROW,0 68407,NE,Nebraska Public Power District,13337,MROW,1 @@ -51123,25 +50996,21 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 68421,NE,Nebraska Public Power District,13337,MROW,1 68422,NE,Norris Public Power District,13664,MROW,1 68423,NE,Norris Public Power District,13664,MROW,1 -68423,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68424,NE,Norris Public Power District,13664,MROW,1 68428,NE,Nebraska Public Power District,13337,MROW,1 68428,NE,Norris Public Power District,13664,MROW,0 -68428,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68429,NE,Norris Public Power District,13664,MROW,1 68430,NE,Norris Public Power District,13664,MROW,1 68431,NE,Nebraska Public Power District,13337,MROW,1 68433,NE,Nebraska Public Power District,13337,MROW,1 68434,NE,Butler Public Power District - (NE),2643,MROW,1 68434,NE,City of Seward - (NE),16953,MROW,0 -68434,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68436,NE,Norris Public Power District,13664,MROW,1 68436,NE,Perennial Public Power Dist,21111,MROW,0 68436,NE,South Central Public Pwr Dist,17548,MROW,0 68437,NE,Nebraska Public Power District,13337,MROW,1 68438,NE,Norris Public Power District,13664,MROW,1 68439,NE,Butler Public Power District - (NE),2643,MROW,1 -68439,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68440,NE,Norris Public Power District,13664,MROW,1 68441,NE,Nebraska Public Power District,13337,MROW,1 68442,NE,Nebraska Public Power District,13337,MROW,1 @@ -51161,12 +51030,10 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 68454,NE,Nebraska Public Power District,13337,MROW,1 68455,NE,Nebraska Public Power District,13337,MROW,1 68456,NE,Perennial Public Power Dist,21111,MROW,1 -68456,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68457,NE,Nebraska Public Power District,13337,MROW,1 68458,NE,Nebraska Public Power District,13337,MROW,1 68458,NE,Norris Public Power District,13664,MROW,0 68460,NE,Perennial Public Power Dist,21111,MROW,1 -68460,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68461,NE,Nebraska Public Power District,13337,MROW,1 68461,NE,Norris Public Power District,13664,MROW,0 68462,NE,Nebraska Public Power District,13337,MROW,1 @@ -51212,7 +51079,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 68527,NE,Norris Public Power District,13664,MROW,0 68528,NE,Lincoln Electric System,11018,MROW,1 68528,NE,Norris Public Power District,13664,MROW,0 -68528,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68529,NE,Lincoln Electric System,11018,MROW,1 68531,NE,Norris Public Power District,13664,MROW,1 68532,NE,Norris Public Power District,13664,MROW,1 @@ -51258,7 +51124,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 68633,NE,Nebraska Public Power District,13337,MROW,0 68634,NE,Cornhusker Public Power Dist,4373,MROW,1 68635,NE,Butler Public Power District - (NE),2643,MROW,1 -68635,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68636,NE,Cornhusker Public Power Dist,4373,MROW,1 68636,NE,Elkhorn Rural Public Pwr Dist,5780,MROW,0 68636,NE,Loup River Public Power Dist,11251,MROW,0 @@ -51321,7 +51186,6 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 68667,NE,Butler Public Power District - (NE),2643,MROW,1 68669,NE,Butler Public Power District - (NE),2643,MROW,1 68669,NE,Polk County Rural Pub Pwr Dist,15188,MROW,0 -68669,NE,Seward County Rrl Pub Pwr Dist,16954,MROW,0 68701,NE,Elkhorn Rural Public Pwr Dist,5780,MROW,1 68701,NE,Northeast Power,13739,MROW,0 68701,NE,Stanton County Public Pwr Dist,17979,MROW,0 @@ -51957,12 +51821,12 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 69366,NE,Panhandle Rural El Member Assn,14426,RMPA,0 69367,NE,Northwest Rural Pub Pwr Dist,13805,RMPA,1 70001,LA,Entergy Louisiana LLC,11241,SRMV,1 -70001,LA,Entergy New Orleans Inc,13478,SRMV,0 +70001,LA,"Entergy New Orleans, LLC",13478,SRMV,0 70002,LA,Entergy Louisiana LLC,11241,SRMV,1 70003,LA,Entergy Louisiana LLC,11241,SRMV,1 70004,LA,Entergy Louisiana LLC,11241,SRMV,1 70005,LA,Entergy Louisiana LLC,11241,SRMV,1 -70005,LA,Entergy New Orleans Inc,13478,SRMV,0 +70005,LA,"Entergy New Orleans, LLC",13478,SRMV,0 70006,LA,Entergy Louisiana LLC,11241,SRMV,1 70009,LA,Entergy Louisiana LLC,11241,SRMV,1 70010,LA,Entergy Louisiana LLC,11241,SRMV,1 @@ -51971,20 +51835,20 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 70030,LA,South Louisiana Elec Coop Assn,17565,SRMV,0 70031,LA,Entergy Louisiana LLC,11241,SRMV,1 70032,LA,Entergy Louisiana LLC,11241,SRMV,1 -70032,LA,Entergy New Orleans Inc,13478,SRMV,0 +70032,LA,"Entergy New Orleans, LLC",13478,SRMV,0 70033,LA,Entergy Louisiana LLC,11241,SRMV,1 70036,LA,Entergy Louisiana LLC,11241,SRMV,1 70036,LA,South Louisiana Elec Coop Assn,17565,SRMV,0 70037,LA,Entergy Louisiana LLC,11241,SRMV,1 -70037,LA,Entergy New Orleans Inc,13478,SRMV,0 +70037,LA,"Entergy New Orleans, LLC",13478,SRMV,0 70038,LA,Entergy Louisiana LLC,11241,SRMV,1 70039,LA,Entergy Louisiana LLC,11241,SRMV,1 70039,LA,South Louisiana Elec Coop Assn,17565,SRMV,0 70040,LA,Entergy Louisiana LLC,11241,SRMV,1 -70040,LA,Entergy New Orleans Inc,13478,SRMV,0 +70040,LA,"Entergy New Orleans, LLC",13478,SRMV,0 70041,LA,Entergy Louisiana LLC,11241,SRMV,1 70043,LA,Entergy Louisiana LLC,11241,SRMV,1 -70043,LA,Entergy New Orleans Inc,13478,SRMV,0 +70043,LA,"Entergy New Orleans, LLC",13478,SRMV,0 70044,LA,Entergy Louisiana LLC,11241,SRMV,1 70047,LA,Entergy Louisiana LLC,11241,SRMV,1 70049,LA,Entergy Louisiana LLC,11241,SRMV,1 @@ -51999,16 +51863,16 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 70052,LA,South Louisiana Elec Coop Assn,17565,SRMV,0 70052,LA,"Washington-St Tammany E C, Inc",21567,SRMV,0 70053,LA,Entergy Louisiana LLC,11241,SRMV,1 -70053,LA,Entergy New Orleans Inc,13478,SRMV,0 +70053,LA,"Entergy New Orleans, LLC",13478,SRMV,0 70054,LA,Entergy Louisiana LLC,11241,SRMV,1 70055,LA,Entergy Louisiana LLC,11241,SRMV,1 -70055,LA,Entergy New Orleans Inc,13478,SRMV,0 +70055,LA,"Entergy New Orleans, LLC",13478,SRMV,0 70056,LA,Entergy Louisiana LLC,11241,SRMV,1 -70056,LA,Entergy New Orleans Inc,13478,SRMV,0 +70056,LA,"Entergy New Orleans, LLC",13478,SRMV,0 70057,LA,Entergy Louisiana LLC,11241,SRMV,1 70057,LA,South Louisiana Elec Coop Assn,17565,SRMV,0 70058,LA,Entergy Louisiana LLC,11241,SRMV,1 -70058,LA,Entergy New Orleans Inc,13478,SRMV,0 +70058,LA,"Entergy New Orleans, LLC",13478,SRMV,0 70059,LA,Entergy Louisiana LLC,11241,SRMV,1 70060,LA,Entergy Louisiana LLC,11241,SRMV,1 70062,LA,Entergy Louisiana LLC,11241,SRMV,1 @@ -52027,11 +51891,11 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 70071,LA,Dixie Electric Membership Corp,5202,SRMV,1 70071,LA,Entergy Louisiana LLC,11241,SRMV,0 70072,LA,Entergy Louisiana LLC,11241,SRMV,1 -70072,LA,Entergy New Orleans Inc,13478,SRMV,0 +70072,LA,"Entergy New Orleans, LLC",13478,SRMV,0 70072,LA,South Louisiana Elec Coop Assn,17565,SRMV,0 70073,LA,Entergy Louisiana LLC,11241,SRMV,1 70075,LA,Entergy Louisiana LLC,11241,SRMV,1 -70075,LA,Entergy New Orleans Inc,13478,SRMV,0 +70075,LA,"Entergy New Orleans, LLC",13478,SRMV,0 70076,LA,Entergy Louisiana LLC,11241,SRMV,1 70078,LA,Entergy Louisiana LLC,11241,SRMV,1 70079,LA,Entergy Louisiana LLC,11241,SRMV,1 @@ -52054,85 +51918,85 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 70090,LA,South Louisiana Elec Coop Assn,17565,SRMV,0 70091,LA,Entergy Louisiana LLC,11241,SRMV,1 70092,LA,Entergy Louisiana LLC,11241,SRMV,1 -70092,LA,Entergy New Orleans Inc,13478,SRMV,0 +70092,LA,"Entergy New Orleans, LLC",13478,SRMV,0 70093,LA,Entergy Louisiana LLC,11241,SRMV,1 70094,LA,Entergy Louisiana LLC,11241,SRMV,1 -70094,LA,Entergy New Orleans Inc,13478,SRMV,0 +70094,LA,"Entergy New Orleans, LLC",13478,SRMV,0 70094,LA,South Louisiana Elec Coop Assn,17565,SRMV,0 70096,LA,Entergy Louisiana LLC,11241,SRMV,1 70097,LA,Entergy Louisiana LLC,11241,SRMV,1 -70112,LA,Entergy New Orleans Inc,13478,SRMV,1 -70113,LA,Entergy New Orleans Inc,13478,SRMV,1 +70112,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70113,LA,"Entergy New Orleans, LLC",13478,SRMV,1 70114,LA,Entergy Louisiana LLC,11241,SRMV,1 -70114,LA,Entergy New Orleans Inc,13478,SRMV,0 +70114,LA,"Entergy New Orleans, LLC",13478,SRMV,0 70115,LA,Entergy Louisiana LLC,11241,SRMV,1 -70115,LA,Entergy New Orleans Inc,13478,SRMV,0 -70116,LA,Entergy New Orleans Inc,13478,SRMV,1 +70115,LA,"Entergy New Orleans, LLC",13478,SRMV,0 +70116,LA,"Entergy New Orleans, LLC",13478,SRMV,1 70117,LA,Entergy Louisiana LLC,11241,SRMV,1 -70117,LA,Entergy New Orleans Inc,13478,SRMV,0 +70117,LA,"Entergy New Orleans, LLC",13478,SRMV,0 70118,LA,Entergy Louisiana LLC,11241,SRMV,1 -70118,LA,Entergy New Orleans Inc,13478,SRMV,0 -70119,LA,Entergy New Orleans Inc,13478,SRMV,1 +70118,LA,"Entergy New Orleans, LLC",13478,SRMV,0 +70119,LA,"Entergy New Orleans, LLC",13478,SRMV,1 70121,LA,Entergy Louisiana LLC,11241,SRMV,1 -70121,LA,Entergy New Orleans Inc,13478,SRMV,0 -70122,LA,Entergy New Orleans Inc,13478,SRMV,1 +70121,LA,"Entergy New Orleans, LLC",13478,SRMV,0 +70122,LA,"Entergy New Orleans, LLC",13478,SRMV,1 70123,LA,Entergy Louisiana LLC,11241,SRMV,1 -70124,LA,Entergy New Orleans Inc,13478,SRMV,1 -70125,LA,Entergy New Orleans Inc,13478,SRMV,1 -70126,LA,Entergy New Orleans Inc,13478,SRMV,1 -70127,LA,Entergy New Orleans Inc,13478,SRMV,1 +70124,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70125,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70126,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70127,LA,"Entergy New Orleans, LLC",13478,SRMV,1 70128,LA,Entergy Louisiana LLC,11241,SRMV,1 -70128,LA,Entergy New Orleans Inc,13478,SRMV,0 +70128,LA,"Entergy New Orleans, LLC",13478,SRMV,0 70129,LA,Entergy Louisiana LLC,11241,SRMV,1 -70129,LA,Entergy New Orleans Inc,13478,SRMV,0 +70129,LA,"Entergy New Orleans, LLC",13478,SRMV,0 70130,LA,Entergy Louisiana LLC,11241,SRMV,1 -70130,LA,Entergy New Orleans Inc,13478,SRMV,0 +70130,LA,"Entergy New Orleans, LLC",13478,SRMV,0 70131,LA,Entergy Louisiana LLC,11241,SRMV,1 -70131,LA,Entergy New Orleans Inc,13478,SRMV,0 -70139,LA,Entergy New Orleans Inc,13478,SRMV,1 +70131,LA,"Entergy New Orleans, LLC",13478,SRMV,0 +70139,LA,"Entergy New Orleans, LLC",13478,SRMV,1 70140,LA,Entergy New Orleans Inc,1114,SRMV,1 70141,LA,Entergy Louisiana LLC,11241,SRMV,1 -70142,LA,Entergy New Orleans Inc,13478,SRMV,1 +70142,LA,"Entergy New Orleans, LLC",13478,SRMV,1 70143,LA,Entergy Louisiana LLC,11241,SRMV,1 -70145,LA,Entergy New Orleans Inc,13478,SRMV,1 -70146,LA,Entergy New Orleans Inc,13478,SRMV,1 -70148,LA,Entergy New Orleans Inc,13478,SRMV,1 +70145,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70146,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70148,LA,"Entergy New Orleans, LLC",13478,SRMV,1 70149,LA,Entergy New Orleans Inc,1114,SRMV,1 -70150,LA,Entergy New Orleans Inc,13478,SRMV,1 -70151,LA,Entergy New Orleans Inc,13478,SRMV,1 -70152,LA,Entergy New Orleans Inc,13478,SRMV,1 -70153,LA,Entergy New Orleans Inc,13478,SRMV,1 -70154,LA,Entergy New Orleans Inc,13478,SRMV,1 -70156,LA,Entergy New Orleans Inc,13478,SRMV,1 -70157,LA,Entergy New Orleans Inc,13478,SRMV,1 -70158,LA,Entergy New Orleans Inc,13478,SRMV,1 -70159,LA,Entergy New Orleans Inc,13478,SRMV,1 -70160,LA,Entergy New Orleans Inc,13478,SRMV,1 -70161,LA,Entergy New Orleans Inc,13478,SRMV,1 -70162,LA,Entergy New Orleans Inc,13478,SRMV,1 -70163,LA,Entergy New Orleans Inc,13478,SRMV,1 -70164,LA,Entergy New Orleans Inc,13478,SRMV,1 -70165,LA,Entergy New Orleans Inc,13478,SRMV,1 -70166,LA,Entergy New Orleans Inc,13478,SRMV,1 -70167,LA,Entergy New Orleans Inc,13478,SRMV,1 -70170,LA,Entergy New Orleans Inc,13478,SRMV,1 -70172,LA,Entergy New Orleans Inc,13478,SRMV,1 -70174,LA,Entergy New Orleans Inc,13478,SRMV,1 -70175,LA,Entergy New Orleans Inc,13478,SRMV,1 -70176,LA,Entergy New Orleans Inc,13478,SRMV,1 -70177,LA,Entergy New Orleans Inc,13478,SRMV,1 -70178,LA,Entergy New Orleans Inc,13478,SRMV,1 -70179,LA,Entergy New Orleans Inc,13478,SRMV,1 +70150,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70151,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70152,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70153,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70154,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70156,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70157,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70158,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70159,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70160,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70161,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70162,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70163,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70164,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70165,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70166,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70167,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70170,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70172,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70174,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70175,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70176,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70177,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70178,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70179,LA,"Entergy New Orleans, LLC",13478,SRMV,1 70181,LA,Entergy Louisiana LLC,11241,SRMV,1 -70182,LA,Entergy New Orleans Inc,13478,SRMV,1 +70182,LA,"Entergy New Orleans, LLC",13478,SRMV,1 70183,LA,Entergy Louisiana LLC,11241,SRMV,1 -70184,LA,Entergy New Orleans Inc,13478,SRMV,1 -70185,LA,Entergy New Orleans Inc,13478,SRMV,1 -70186,LA,Entergy New Orleans Inc,13478,SRMV,1 -70187,LA,Entergy New Orleans Inc,13478,SRMV,1 -70189,LA,Entergy New Orleans Inc,13478,SRMV,1 -70190,LA,Entergy New Orleans Inc,13478,SRMV,1 -70195,LA,Entergy New Orleans Inc,13478,SRMV,1 +70184,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70185,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70186,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70187,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70189,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70190,LA,"Entergy New Orleans, LLC",13478,SRMV,1 +70195,LA,"Entergy New Orleans, LLC",13478,SRMV,1 70301,LA,Entergy Louisiana LLC,11241,SRMV,1 70301,LA,South Louisiana Elec Coop Assn,17565,SRMV,0 70302,LA,Entergy Louisiana LLC,11241,SRMV,1 @@ -53245,140 +53109,140 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 71496,LA,Cleco Power LLC,3265,SPSO,1 71497,LA,City of Natchitoches,13228,SPSO,1 71601,AR,C & L Electric Coop Corp,2678,SRMV,1 -71601,AR,Entergy Arkansas Inc,814,SRMV,0 +71601,AR,Entergy Arkansas LLC,814,SRMV,0 71601,AR,First Electric Coop Corp,6342,SRMV,0 71602,AR,C & L Electric Coop Corp,2678,SRMV,1 -71602,AR,Entergy Arkansas Inc,814,SRMV,0 +71602,AR,Entergy Arkansas LLC,814,SRMV,0 71602,AR,First Electric Coop Corp,6342,SRMV,0 71603,AR,C & L Electric Coop Corp,2678,SRMV,1 -71603,AR,Entergy Arkansas Inc,814,SRMV,0 -71611,AR,Entergy Arkansas Inc,814,SRMV,1 -71612,AR,Entergy Arkansas Inc,814,SRMV,1 -71613,AR,Entergy Arkansas Inc,814,SRMV,1 -71630,AR,Entergy Arkansas Inc,814,SRMV,1 +71603,AR,Entergy Arkansas LLC,814,SRMV,0 +71611,AR,Entergy Arkansas LLC,814,SRMV,1 +71612,AR,Entergy Arkansas LLC,814,SRMV,1 +71613,AR,Entergy Arkansas LLC,814,SRMV,1 +71630,AR,Entergy Arkansas LLC,814,SRMV,1 71631,AR,C & L Electric Coop Corp,2678,SRMV,1 -71631,AR,Entergy Arkansas Inc,814,SRMV,0 +71631,AR,Entergy Arkansas LLC,814,SRMV,0 71631,AR,Ouachita Electric Coop Corp,14238,SRMV,0 71635,AR,C & L Electric Coop Corp,2678,SRMV,1 -71635,AR,Entergy Arkansas Inc,814,SRMV,0 +71635,AR,Entergy Arkansas LLC,814,SRMV,0 71638,AR,C & L Electric Coop Corp,2678,SRMV,1 -71638,AR,Entergy Arkansas Inc,814,SRMV,0 +71638,AR,Entergy Arkansas LLC,814,SRMV,0 71639,AR,C & L Electric Coop Corp,2678,SRMV,1 -71639,AR,Entergy Arkansas Inc,814,SRMV,0 +71639,AR,Entergy Arkansas LLC,814,SRMV,0 71639,AR,First Electric Coop Corp,6342,SRMV,0 -71640,AR,Entergy Arkansas Inc,814,SRMV,1 +71640,AR,Entergy Arkansas LLC,814,SRMV,1 71642,AR,C & L Electric Coop Corp,2678,SRMV,1 -71642,AR,Entergy Arkansas Inc,814,SRMV,0 +71642,AR,Entergy Arkansas LLC,814,SRMV,0 71643,AR,C & L Electric Coop Corp,2678,SRMV,1 -71643,AR,Entergy Arkansas Inc,814,SRMV,0 +71643,AR,Entergy Arkansas LLC,814,SRMV,0 71644,AR,C & L Electric Coop Corp,2678,SRMV,1 -71644,AR,Entergy Arkansas Inc,814,SRMV,0 +71644,AR,Entergy Arkansas LLC,814,SRMV,0 71646,AR,C & L Electric Coop Corp,2678,SRMV,1 -71646,AR,Entergy Arkansas Inc,814,SRMV,0 +71646,AR,Entergy Arkansas LLC,814,SRMV,0 71647,AR,C & L Electric Coop Corp,2678,SRMV,1 -71647,AR,Entergy Arkansas Inc,814,SRMV,0 +71647,AR,Entergy Arkansas LLC,814,SRMV,0 71647,AR,Ouachita Electric Coop Corp,14238,SRMV,0 71651,AR,C & L Electric Coop Corp,2678,SRMV,1 -71651,AR,Entergy Arkansas Inc,814,SRMV,0 +71651,AR,Entergy Arkansas LLC,814,SRMV,0 71651,AR,Ouachita Electric Coop Corp,14238,SRMV,0 71652,AR,C & L Electric Coop Corp,2678,SRMV,1 -71652,AR,Entergy Arkansas Inc,814,SRMV,0 -71653,AR,Entergy Arkansas Inc,814,SRMV,1 +71652,AR,Entergy Arkansas LLC,814,SRMV,0 +71653,AR,Entergy Arkansas LLC,814,SRMV,1 71654,AR,C & L Electric Coop Corp,2678,SRMV,1 -71654,AR,Entergy Arkansas Inc,814,SRMV,0 +71654,AR,Entergy Arkansas LLC,814,SRMV,0 71655,AR,C & L Electric Coop Corp,2678,SRMV,1 -71655,AR,Entergy Arkansas Inc,814,SRMV,0 -71656,AR,Entergy Arkansas Inc,814,SRMV,1 -71657,AR,Entergy Arkansas Inc,814,SRMV,1 -71658,AR,Entergy Arkansas Inc,814,SRMV,1 -71659,AR,Entergy Arkansas Inc,814,SRMV,1 +71655,AR,Entergy Arkansas LLC,814,SRMV,0 +71656,AR,Entergy Arkansas LLC,814,SRMV,1 +71657,AR,Entergy Arkansas LLC,814,SRMV,1 +71658,AR,Entergy Arkansas LLC,814,SRMV,1 +71659,AR,Entergy Arkansas LLC,814,SRMV,1 71660,AR,C & L Electric Coop Corp,2678,SRMV,1 -71660,AR,Entergy Arkansas Inc,814,SRMV,0 +71660,AR,Entergy Arkansas LLC,814,SRMV,0 71660,AR,Ouachita Electric Coop Corp,14238,SRMV,0 -71661,AR,Entergy Arkansas Inc,814,SRMV,1 +71661,AR,Entergy Arkansas LLC,814,SRMV,1 71662,AR,C & L Electric Coop Corp,2678,SRMV,1 -71662,AR,Entergy Arkansas Inc,814,SRMV,0 -71663,AR,Entergy Arkansas Inc,814,SRMV,1 +71662,AR,Entergy Arkansas LLC,814,SRMV,0 +71663,AR,Entergy Arkansas LLC,814,SRMV,1 71665,AR,C & L Electric Coop Corp,2678,SRMV,1 -71665,AR,Entergy Arkansas Inc,814,SRMV,0 -71666,AR,Entergy Arkansas Inc,814,SRMV,1 +71665,AR,Entergy Arkansas LLC,814,SRMV,0 +71666,AR,Entergy Arkansas LLC,814,SRMV,1 71667,AR,C & L Electric Coop Corp,2678,SRMV,1 -71667,AR,Entergy Arkansas Inc,814,SRMV,0 +71667,AR,Entergy Arkansas LLC,814,SRMV,0 71670,AR,C & L Electric Coop Corp,2678,SRMV,1 -71670,AR,Entergy Arkansas Inc,814,SRMV,0 +71670,AR,Entergy Arkansas LLC,814,SRMV,0 71671,AR,C & L Electric Coop Corp,2678,SRMV,1 -71671,AR,Entergy Arkansas Inc,814,SRMV,0 +71671,AR,Entergy Arkansas LLC,814,SRMV,0 71671,AR,Ouachita Electric Coop Corp,14238,SRMV,0 71674,AR,C & L Electric Coop Corp,2678,SRMV,1 -71674,AR,Entergy Arkansas Inc,814,SRMV,0 +71674,AR,Entergy Arkansas LLC,814,SRMV,0 71674,AR,First Electric Coop Corp,6342,SRMV,0 71675,AR,C & L Electric Coop Corp,2678,SRMV,1 -71675,AR,Entergy Arkansas Inc,814,SRMV,0 -71676,AR,Entergy Arkansas Inc,814,SRMV,1 -71677,AR,Entergy Arkansas Inc,814,SRMV,1 +71675,AR,Entergy Arkansas LLC,814,SRMV,0 +71676,AR,Entergy Arkansas LLC,814,SRMV,1 +71677,AR,Entergy Arkansas LLC,814,SRMV,1 71678,AR,C & L Electric Coop Corp,2678,SRMV,1 -71678,AR,Entergy Arkansas Inc,814,SRMV,0 -71701,AR,Entergy Arkansas Inc,814,SRMV,1 +71678,AR,Entergy Arkansas LLC,814,SRMV,0 +71701,AR,Entergy Arkansas LLC,814,SRMV,1 71701,AR,Ouachita Electric Coop Corp,14238,SRMV,0 -71711,AR,Entergy Arkansas Inc,814,SRMV,1 +71711,AR,Entergy Arkansas LLC,814,SRMV,1 71711,AR,Ouachita Electric Coop Corp,14238,SRMV,0 -71720,AR,Entergy Arkansas Inc,814,SRMV,1 +71720,AR,Entergy Arkansas LLC,814,SRMV,1 71720,AR,Ouachita Electric Coop Corp,14238,SRMV,0 -71721,AR,Entergy Arkansas Inc,814,SRMV,1 -71722,AR,Entergy Arkansas Inc,814,SRMV,1 +71721,AR,Entergy Arkansas LLC,814,SRMV,1 +71722,AR,Entergy Arkansas LLC,814,SRMV,1 71722,AR,Ouachita Electric Coop Corp,14238,SRMV,0 71722,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 -71724,AR,Entergy Arkansas Inc,814,SRMV,1 +71724,AR,Entergy Arkansas LLC,814,SRMV,1 71725,AR,C & L Electric Coop Corp,2678,SRMV,1 -71725,AR,Entergy Arkansas Inc,814,SRMV,0 -71726,AR,Entergy Arkansas Inc,814,SRMV,1 +71725,AR,Entergy Arkansas LLC,814,SRMV,0 +71726,AR,Entergy Arkansas LLC,814,SRMV,1 71726,AR,Ouachita Electric Coop Corp,14238,SRMV,0 71726,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 -71728,AR,Entergy Arkansas Inc,814,SRMV,1 -71730,AR,Entergy Arkansas Inc,814,SRMV,1 +71728,AR,Entergy Arkansas LLC,814,SRMV,1 +71730,AR,Entergy Arkansas LLC,814,SRMV,1 71730,AR,Ouachita Electric Coop Corp,14238,SRMV,0 -71731,AR,Entergy Arkansas Inc,814,SRMV,1 -71740,AR,Entergy Arkansas Inc,814,SRMV,1 +71731,AR,Entergy Arkansas LLC,814,SRMV,1 +71740,AR,Entergy Arkansas LLC,814,SRMV,1 71742,AR,C & L Electric Coop Corp,2678,SRMV,1 -71742,AR,Entergy Arkansas Inc,814,SRMV,0 +71742,AR,Entergy Arkansas LLC,814,SRMV,0 71742,AR,Ouachita Electric Coop Corp,14238,SRMV,0 -71743,AR,Entergy Arkansas Inc,814,SRMV,1 +71743,AR,Entergy Arkansas LLC,814,SRMV,1 71743,AR,Ouachita Electric Coop Corp,14238,SRMV,0 71743,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 -71744,AR,Entergy Arkansas Inc,814,SRMV,1 +71744,AR,Entergy Arkansas LLC,814,SRMV,1 71744,AR,Ouachita Electric Coop Corp,14238,SRMV,0 -71745,AR,Entergy Arkansas Inc,814,SRMV,1 +71745,AR,Entergy Arkansas LLC,814,SRMV,1 71745,AR,Ouachita Electric Coop Corp,14238,SRMV,0 -71747,AR,Entergy Arkansas Inc,814,SRMV,1 -71748,AR,Entergy Arkansas Inc,814,SRMV,1 -71749,AR,Entergy Arkansas Inc,814,SRMV,1 -71750,AR,Entergy Arkansas Inc,814,SRMV,1 -71751,AR,Entergy Arkansas Inc,814,SRMV,1 +71747,AR,Entergy Arkansas LLC,814,SRMV,1 +71748,AR,Entergy Arkansas LLC,814,SRMV,1 +71749,AR,Entergy Arkansas LLC,814,SRMV,1 +71750,AR,Entergy Arkansas LLC,814,SRMV,1 +71751,AR,Entergy Arkansas LLC,814,SRMV,1 71751,AR,Ouachita Electric Coop Corp,14238,SRMV,0 -71752,AR,Entergy Arkansas Inc,814,SRMV,1 -71753,AR,Entergy Arkansas Inc,814,SRMV,1 +71752,AR,Entergy Arkansas LLC,814,SRMV,1 +71753,AR,Entergy Arkansas LLC,814,SRMV,1 71753,AR,Southwest Arkansas E C C,17671,SRMV,0 -71754,AR,Entergy Arkansas Inc,814,SRMV,1 -71758,AR,Entergy Arkansas Inc,814,SRMV,1 +71754,AR,Entergy Arkansas LLC,814,SRMV,1 +71758,AR,Entergy Arkansas LLC,814,SRMV,1 71758,AR,Ouachita Electric Coop Corp,14238,SRMV,0 -71759,AR,Entergy Arkansas Inc,814,SRMV,1 -71762,AR,Entergy Arkansas Inc,814,SRMV,1 -71763,AR,Entergy Arkansas Inc,814,SRMV,1 +71759,AR,Entergy Arkansas LLC,814,SRMV,1 +71762,AR,Entergy Arkansas LLC,814,SRMV,1 +71763,AR,Entergy Arkansas LLC,814,SRMV,1 71763,AR,Ouachita Electric Coop Corp,14238,SRMV,0 71763,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 -71764,AR,Entergy Arkansas Inc,814,SRMV,1 +71764,AR,Entergy Arkansas LLC,814,SRMV,1 71764,AR,Ouachita Electric Coop Corp,14238,SRMV,0 71765,AR,C & L Electric Coop Corp,2678,SRMV,1 -71765,AR,Entergy Arkansas Inc,814,SRMV,0 -71766,AR,Entergy Arkansas Inc,814,SRMV,1 +71765,AR,Entergy Arkansas LLC,814,SRMV,0 +71766,AR,Entergy Arkansas LLC,814,SRMV,1 71766,AR,Ouachita Electric Coop Corp,14238,SRMV,0 71768,AR,Entergy Arkansas Inc,1008,SRMV,1 -71770,AR,Entergy Arkansas Inc,814,SRMV,1 +71770,AR,Entergy Arkansas LLC,814,SRMV,1 71770,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 71770,AR,Southwest Arkansas E C C,17671,SRMV,0 -71772,AR,Entergy Arkansas Inc,814,SRMV,1 +71772,AR,Entergy Arkansas LLC,814,SRMV,1 71801,AR,City of Hope,8840,SPSO,1 -71801,AR,Entergy Arkansas Inc,814,SRMV,0 +71801,AR,Entergy Arkansas LLC,814,SRMV,0 71801,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 71801,AR,Southwest Arkansas E C C,17671,SRMV,0 71801,AR,Southwestern Electric Power Co,17698,SPSO,0 @@ -53388,16 +53252,16 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 71822,AR,Southwestern Electric Power Co,17698,SPSO,0 71823,AR,Southwest Arkansas E C C,17671,SRMV,1 71823,AR,Southwestern Electric Power Co,17698,SPSO,0 -71825,AR,Entergy Arkansas Inc,814,SRMV,1 +71825,AR,Entergy Arkansas LLC,814,SRMV,1 71825,AR,Southwestern Electric Power Co,17698,SPSO,0 -71826,AR,Entergy Arkansas Inc,814,SRMV,1 +71826,AR,Entergy Arkansas LLC,814,SRMV,1 71826,AR,Southwest Arkansas E C C,17671,SRMV,0 71826,AR,Southwestern Electric Power Co,17698,SPSO,0 -71827,AR,Entergy Arkansas Inc,814,SRMV,1 +71827,AR,Entergy Arkansas LLC,814,SRMV,1 71827,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 71827,AR,Southwest Arkansas E C C,17671,SRMV,0 71827,AR,Southwestern Electric Power Co,17698,SPSO,0 -71828,AR,Entergy Arkansas Inc,814,SRMV,1 +71828,AR,Entergy Arkansas LLC,814,SRMV,1 71828,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 71831,AR,Southwest Arkansas E C C,17671,SRMV,1 71831,AR,Southwestern Electric Power Co,17698,SPSO,0 @@ -53410,33 +53274,33 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 71834,AR,Southwest Arkansas E C C,17671,SRMV,1 71834,AR,Southwestern Electric Power Co,17698,SPSO,0 71835,AR,City of Hope,8840,SPSO,1 -71835,AR,Entergy Arkansas Inc,814,SRMV,0 +71835,AR,Entergy Arkansas LLC,814,SRMV,0 71835,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 71835,AR,Southwest Arkansas E C C,17671,SRMV,0 71835,AR,Southwestern Electric Power Co,17698,SPSO,0 71836,AR,Southwest Arkansas E C C,17671,SRMV,1 71836,AR,Southwestern Electric Power Co,17698,SPSO,0 -71837,AR,Entergy Arkansas Inc,814,SRMV,1 +71837,AR,Entergy Arkansas LLC,814,SRMV,1 71837,AR,Southwest Arkansas E C C,17671,SRMV,0 71837,AR,Southwestern Electric Power Co,17698,SPSO,0 71838,AR,Southwest Arkansas E C C,17671,SRMV,1 71838,AR,Southwestern Electric Power Co,17698,SPSO,0 -71839,AR,Entergy Arkansas Inc,814,SRMV,1 +71839,AR,Entergy Arkansas LLC,814,SRMV,1 71839,AR,Southwest Arkansas E C C,17671,SRMV,0 71839,AR,Southwestern Electric Power Co,17698,SPSO,0 -71840,AR,Entergy Arkansas Inc,814,SRMV,1 +71840,AR,Entergy Arkansas LLC,814,SRMV,1 71840,AR,Southwest Arkansas E C C,17671,SRMV,0 71841,AR,Southwest Arkansas E C C,17671,SRMV,1 71841,AR,Southwestern Electric Power Co,17698,SPSO,0 71842,AR,Southwest Arkansas E C C,17671,SRMV,1 71842,AR,Southwestern Electric Power Co,17698,SPSO,0 -71845,AR,Entergy Arkansas Inc,814,SRMV,1 +71845,AR,Entergy Arkansas LLC,814,SRMV,1 71845,AR,Southwest Arkansas E C C,17671,SRMV,0 71845,AR,Southwestern Electric Power Co,17698,SPSO,0 71846,AR,"Rich Mountain Elec Coop, Inc",15811,SRMV,1 71846,AR,Southwest Arkansas E C C,17671,SRMV,0 71846,AR,Southwestern Electric Power Co,17698,SPSO,0 -71847,AR,Entergy Arkansas Inc,814,SRMV,1 +71847,AR,Entergy Arkansas LLC,814,SRMV,1 71847,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 71847,AR,Southwestern Electric Power Co,17698,SPSO,0 71851,AR,Southwest Arkansas E C C,17671,SRMV,1 @@ -53447,102 +53311,102 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 71852,AR,Southwestern Electric Power Co,17698,SPSO,0 71853,AR,Southwest Arkansas E C C,17671,SRMV,1 71853,AR,Southwestern Electric Power Co,17698,SPSO,0 -71854,AR,Entergy Arkansas Inc,814,SRMV,1 +71854,AR,Entergy Arkansas LLC,814,SRMV,1 71854,AR,Southwest Arkansas E C C,17671,SRMV,0 71854,AR,Southwestern Electric Power Co,17698,SPSO,0 71855,AR,Southwest Arkansas E C C,17671,SRMV,1 71855,AR,Southwestern Electric Power Co,17698,SPSO,0 -71857,AR,Entergy Arkansas Inc,814,SRMV,1 +71857,AR,Entergy Arkansas LLC,814,SRMV,1 71857,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 71857,AR,Southwestern Electric Power Co,17698,SPSO,0 -71858,AR,Entergy Arkansas Inc,814,SRMV,1 +71858,AR,Entergy Arkansas LLC,814,SRMV,1 71858,AR,Ouachita Electric Coop Corp,14238,SRMV,0 71858,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 71858,AR,Southwest Arkansas E C C,17671,SRMV,0 71859,AR,Southwest Arkansas E C C,17671,SRMV,1 71859,AR,Southwestern Electric Power Co,17698,SPSO,0 -71860,AR,Entergy Arkansas Inc,814,SRMV,1 +71860,AR,Entergy Arkansas LLC,814,SRMV,1 71860,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 71860,AR,Southwest Arkansas E C C,17671,SRMV,0 -71861,AR,Entergy Arkansas Inc,814,SRMV,1 +71861,AR,Entergy Arkansas LLC,814,SRMV,1 71861,AR,Southwest Arkansas E C C,17671,SRMV,0 71862,AR,City of Hope,8840,SPSO,1 71862,AR,Southwest Arkansas E C C,17671,SRMV,0 71862,AR,Southwestern Electric Power Co,17698,SPSO,0 -71864,AR,Entergy Arkansas Inc,814,SRMV,1 +71864,AR,Entergy Arkansas LLC,814,SRMV,1 71865,AR,Southwestern Electric Power Co,17698,SPSO,1 71866,AR,Southwest Arkansas E C C,17671,SRMV,1 71866,AR,Southwestern Electric Power Co,17698,SPSO,0 -71901,AR,Entergy Arkansas Inc,814,SRMV,1 +71901,AR,Entergy Arkansas LLC,814,SRMV,1 71901,AR,First Electric Coop Corp,6342,SRMV,0 -71902,AR,Entergy Arkansas Inc,814,SRMV,1 -71903,AR,Entergy Arkansas Inc,814,SRMV,1 -71909,AR,Entergy Arkansas Inc,814,SRMV,1 +71902,AR,Entergy Arkansas LLC,814,SRMV,1 +71903,AR,Entergy Arkansas LLC,814,SRMV,1 +71909,AR,Entergy Arkansas LLC,814,SRMV,1 71909,AR,First Electric Coop Corp,6342,SRMV,0 -71910,AR,Entergy Arkansas Inc,814,SRMV,1 -71913,AR,Entergy Arkansas Inc,814,SRMV,1 -71914,AR,Entergy Arkansas Inc,814,SRMV,1 -71920,AR,Entergy Arkansas Inc,814,SRMV,1 +71910,AR,Entergy Arkansas LLC,814,SRMV,1 +71913,AR,Entergy Arkansas LLC,814,SRMV,1 +71914,AR,Entergy Arkansas LLC,814,SRMV,1 +71920,AR,Entergy Arkansas LLC,814,SRMV,1 71920,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 -71921,AR,Entergy Arkansas Inc,814,SRMV,1 +71921,AR,Entergy Arkansas LLC,814,SRMV,1 71921,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 -71922,AR,Entergy Arkansas Inc,814,SRMV,1 +71922,AR,Entergy Arkansas LLC,814,SRMV,1 71922,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 -71923,AR,Entergy Arkansas Inc,814,SRMV,1 +71923,AR,Entergy Arkansas LLC,814,SRMV,1 71923,AR,Ouachita Electric Coop Corp,14238,SRMV,0 71923,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 -71929,AR,Entergy Arkansas Inc,814,SRMV,1 +71929,AR,Entergy Arkansas LLC,814,SRMV,1 71929,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 71932,AR,"Rich Mountain Elec Coop, Inc",15811,SRMV,1 -71933,AR,Entergy Arkansas Inc,814,SRMV,1 +71933,AR,Entergy Arkansas LLC,814,SRMV,1 71933,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 -71935,AR,Entergy Arkansas Inc,814,SRMV,1 +71935,AR,Entergy Arkansas LLC,814,SRMV,1 71935,AR,"Rich Mountain Elec Coop, Inc",15811,SRMV,0 71935,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 71937,OK,Choctaw Electric Coop Inc,3527,SPSO,1 71937,OK,"Rich Mountain Elec Coop, Inc",15811,SRMV,0 71937,OK,Southwest Arkansas E C C,17671,SRMV,0 -71940,AR,Entergy Arkansas Inc,814,SRMV,1 +71940,AR,Entergy Arkansas LLC,814,SRMV,1 71940,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 -71941,AR,Entergy Arkansas Inc,814,SRMV,1 +71941,AR,Entergy Arkansas LLC,814,SRMV,1 71941,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 -71942,AR,Entergy Arkansas Inc,814,SRMV,1 -71943,AR,Entergy Arkansas Inc,814,SRMV,1 +71942,AR,Entergy Arkansas LLC,814,SRMV,1 +71943,AR,Entergy Arkansas LLC,814,SRMV,1 71943,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 71944,AR,Southwest Arkansas E C C,17671,SRMV,1 71944,AR,Southwestern Electric Power Co,17698,SPSO,0 71945,AR,"Rich Mountain Elec Coop, Inc",15811,SRMV,1 71945,AR,Southwestern Electric Power Co,17698,SPSO,0 -71949,AR,Entergy Arkansas Inc,814,SRMV,1 +71949,AR,Entergy Arkansas LLC,814,SRMV,1 71949,AR,First Electric Coop Corp,6342,SRMV,0 71950,AR,"South Central Ark El Coop, Inc",17540,SRMV,1 71952,AR,"South Central Ark El Coop, Inc",17540,SRMV,1 71953,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -71953,AR,Entergy Arkansas Inc,814,SRMV,0 +71953,AR,Entergy Arkansas LLC,814,SRMV,0 71953,AR,"Rich Mountain Elec Coop, Inc",15811,SRMV,0 71953,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 71953,AR,Southwestern Electric Power Co,17698,SPSO,0 -71956,AR,Entergy Arkansas Inc,814,SRMV,1 -71957,AR,Entergy Arkansas Inc,814,SRMV,1 +71956,AR,Entergy Arkansas LLC,814,SRMV,1 +71957,AR,Entergy Arkansas LLC,814,SRMV,1 71957,AR,"Rich Mountain Elec Coop, Inc",15811,SRMV,0 -71958,AR,Entergy Arkansas Inc,814,SRMV,1 +71958,AR,Entergy Arkansas LLC,814,SRMV,1 71958,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 71959,AR,"Rich Mountain Elec Coop, Inc",15811,SRMV,1 71959,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 -71960,AR,Entergy Arkansas Inc,814,SRMV,1 +71960,AR,Entergy Arkansas LLC,814,SRMV,1 71960,AR,"Rich Mountain Elec Coop, Inc",15811,SRMV,0 71961,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -71961,AR,Entergy Arkansas Inc,814,SRMV,0 +71961,AR,Entergy Arkansas LLC,814,SRMV,0 71961,AR,"Rich Mountain Elec Coop, Inc",15811,SRMV,0 -71962,AR,Entergy Arkansas Inc,814,SRMV,1 +71962,AR,Entergy Arkansas LLC,814,SRMV,1 71962,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 -71964,AR,Entergy Arkansas Inc,814,SRMV,1 +71964,AR,Entergy Arkansas LLC,814,SRMV,1 71965,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -71965,AR,Entergy Arkansas Inc,814,SRMV,0 -71966,AR,Entergy Arkansas Inc,814,SRMV,1 -71968,AR,Entergy Arkansas Inc,814,SRMV,1 -71969,AR,Entergy Arkansas Inc,814,SRMV,1 -71970,AR,Entergy Arkansas Inc,814,SRMV,1 +71965,AR,Entergy Arkansas LLC,814,SRMV,0 +71966,AR,Entergy Arkansas LLC,814,SRMV,1 +71968,AR,Entergy Arkansas LLC,814,SRMV,1 +71969,AR,Entergy Arkansas LLC,814,SRMV,1 +71970,AR,Entergy Arkansas LLC,814,SRMV,1 71971,AR,"Rich Mountain Elec Coop, Inc",15811,SRMV,1 71971,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 71971,AR,Southwest Arkansas E C C,17671,SRMV,0 @@ -53552,828 +53416,828 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 71972,AR,Southwestern Electric Power Co,17698,SPSO,0 71973,AR,Southwest Arkansas E C C,17671,SRMV,1 71973,AR,Southwestern Electric Power Co,17698,SPSO,0 -71998,AR,Entergy Arkansas Inc,814,SRMV,1 -71999,AR,Entergy Arkansas Inc,814,SRMV,1 +71998,AR,Entergy Arkansas LLC,814,SRMV,1 +71999,AR,Entergy Arkansas LLC,814,SRMV,1 72001,AR,First Electric Coop Corp,6342,SRMV,1 72002,AR,City of Benton - (AR),1581,SRMV,1 -72002,AR,Entergy Arkansas Inc,814,SRMV,0 +72002,AR,Entergy Arkansas LLC,814,SRMV,0 72002,AR,First Electric Coop Corp,6342,SRMV,0 -72003,AR,Entergy Arkansas Inc,814,SRMV,1 +72003,AR,Entergy Arkansas LLC,814,SRMV,1 72003,AR,First Electric Coop Corp,6342,SRMV,0 72004,AR,C & L Electric Coop Corp,2678,SRMV,1 -72004,AR,Entergy Arkansas Inc,814,SRMV,0 +72004,AR,Entergy Arkansas LLC,814,SRMV,0 72004,AR,First Electric Coop Corp,6342,SRMV,0 -72005,AR,Entergy Arkansas Inc,814,SRMV,1 -72006,AR,Entergy Arkansas Inc,814,SRMV,1 +72005,AR,Entergy Arkansas LLC,814,SRMV,1 +72006,AR,Entergy Arkansas LLC,814,SRMV,1 72006,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72007,AR,Entergy Arkansas Inc,814,SRMV,1 +72007,AR,Entergy Arkansas LLC,814,SRMV,1 72007,AR,First Electric Coop Corp,6342,SRMV,0 -72010,AR,Entergy Arkansas Inc,814,SRMV,1 +72010,AR,Entergy Arkansas LLC,814,SRMV,1 72010,AR,Woodruff Electric Coop Corp,20963,SRMV,0 72011,AR,C & L Electric Coop Corp,2678,SRMV,1 72011,AR,City of Benton - (AR),1581,SRMV,0 -72011,AR,Entergy Arkansas Inc,814,SRMV,0 +72011,AR,Entergy Arkansas LLC,814,SRMV,0 72011,AR,First Electric Coop Corp,6342,SRMV,0 -72012,AR,Entergy Arkansas Inc,814,SRMV,1 +72012,AR,Entergy Arkansas LLC,814,SRMV,1 72012,AR,First Electric Coop Corp,6342,SRMV,0 -72013,AR,Entergy Arkansas Inc,814,SRMV,1 +72013,AR,Entergy Arkansas LLC,814,SRMV,1 72013,AR,First Electric Coop Corp,6342,SRMV,0 72013,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72014,AR,Entergy Arkansas Inc,814,SRMV,1 +72014,AR,Entergy Arkansas LLC,814,SRMV,1 72015,AR,C & L Electric Coop Corp,2678,SRMV,1 72015,AR,City of Benton - (AR),1581,SRMV,0 -72015,AR,Entergy Arkansas Inc,814,SRMV,0 +72015,AR,Entergy Arkansas LLC,814,SRMV,0 72015,AR,First Electric Coop Corp,6342,SRMV,0 -72016,AR,Entergy Arkansas Inc,814,SRMV,1 +72016,AR,Entergy Arkansas LLC,814,SRMV,1 72016,AR,First Electric Coop Corp,6342,SRMV,0 -72017,AR,Entergy Arkansas Inc,814,SRMV,1 +72017,AR,Entergy Arkansas LLC,814,SRMV,1 72017,AR,Woodruff Electric Coop Corp,20963,SRMV,0 72018,AR,City of Benton - (AR),1581,SRMV,1 -72018,AR,Entergy Arkansas Inc,814,SRMV,0 +72018,AR,Entergy Arkansas LLC,814,SRMV,0 72019,AR,City of Benton - (AR),1581,SRMV,1 -72019,AR,Entergy Arkansas Inc,814,SRMV,0 +72019,AR,Entergy Arkansas LLC,814,SRMV,0 72019,AR,First Electric Coop Corp,6342,SRMV,0 -72020,AR,Entergy Arkansas Inc,814,SRMV,1 +72020,AR,Entergy Arkansas LLC,814,SRMV,1 72020,AR,First Electric Coop Corp,6342,SRMV,0 72020,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72021,AR,Entergy Arkansas Inc,814,SRMV,1 +72021,AR,Entergy Arkansas LLC,814,SRMV,1 72021,AR,Woodruff Electric Coop Corp,20963,SRMV,0 72022,AR,City of Benton - (AR),1581,SRMV,1 -72022,AR,Entergy Arkansas Inc,814,SRMV,0 +72022,AR,Entergy Arkansas LLC,814,SRMV,0 72022,AR,First Electric Coop Corp,6342,SRMV,0 -72023,AR,Entergy Arkansas Inc,814,SRMV,1 +72023,AR,Entergy Arkansas LLC,814,SRMV,1 72023,AR,First Electric Coop Corp,6342,SRMV,0 -72024,AR,Entergy Arkansas Inc,814,SRMV,1 +72024,AR,Entergy Arkansas LLC,814,SRMV,1 72024,AR,First Electric Coop Corp,6342,SRMV,0 -72025,AR,Entergy Arkansas Inc,814,SRMV,1 +72025,AR,Entergy Arkansas LLC,814,SRMV,1 72025,AR,First Electric Coop Corp,6342,SRMV,0 -72026,AR,Entergy Arkansas Inc,814,SRMV,1 +72026,AR,Entergy Arkansas LLC,814,SRMV,1 72026,AR,First Electric Coop Corp,6342,SRMV,0 72026,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72027,AR,Entergy Arkansas Inc,814,SRMV,1 +72027,AR,Entergy Arkansas LLC,814,SRMV,1 72027,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72028,AR,Entergy Arkansas Inc,814,SRMV,1 +72028,AR,Entergy Arkansas LLC,814,SRMV,1 72028,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72029,AR,Entergy Arkansas Inc,814,SRMV,1 +72029,AR,Entergy Arkansas LLC,814,SRMV,1 72029,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72030,AR,Entergy Arkansas Inc,814,SRMV,1 +72030,AR,Entergy Arkansas LLC,814,SRMV,1 72030,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72031,AR,Entergy Arkansas Inc,814,SRMV,1 +72031,AR,Entergy Arkansas LLC,814,SRMV,1 72031,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 72032,AR,Conway Corporation,4280,SRMV,1 -72032,AR,Entergy Arkansas Inc,814,SRMV,0 +72032,AR,Entergy Arkansas LLC,814,SRMV,0 72033,AR,Conway Corporation,4280,SRMV,1 -72033,AR,Entergy Arkansas Inc,814,SRMV,0 +72033,AR,Entergy Arkansas LLC,814,SRMV,0 72034,AR,Conway Corporation,4280,SRMV,1 -72034,AR,Entergy Arkansas Inc,814,SRMV,0 +72034,AR,Entergy Arkansas LLC,814,SRMV,0 72034,AR,First Electric Coop Corp,6342,SRMV,0 72035,AR,Conway Corporation,4280,SRMV,1 -72035,AR,Entergy Arkansas Inc,814,SRMV,0 -72036,AR,Entergy Arkansas Inc,814,SRMV,1 +72035,AR,Entergy Arkansas LLC,814,SRMV,0 +72036,AR,Entergy Arkansas LLC,814,SRMV,1 72036,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72037,AR,Entergy Arkansas Inc,814,SRMV,1 +72037,AR,Entergy Arkansas LLC,814,SRMV,1 72037,AR,First Electric Coop Corp,6342,SRMV,0 -72038,AR,Entergy Arkansas Inc,814,SRMV,1 +72038,AR,Entergy Arkansas LLC,814,SRMV,1 72038,AR,First Electric Coop Corp,6342,SRMV,0 72038,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72039,AR,Entergy Arkansas Inc,814,SRMV,1 +72039,AR,Entergy Arkansas LLC,814,SRMV,1 72039,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72040,AR,Entergy Arkansas Inc,814,SRMV,1 +72040,AR,Entergy Arkansas LLC,814,SRMV,1 72040,AR,First Electric Coop Corp,6342,SRMV,0 72040,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72041,AR,Entergy Arkansas Inc,814,SRMV,1 -72042,AR,Entergy Arkansas Inc,814,SRMV,1 +72041,AR,Entergy Arkansas LLC,814,SRMV,1 +72042,AR,Entergy Arkansas LLC,814,SRMV,1 72042,AR,First Electric Coop Corp,6342,SRMV,0 72042,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72043,AR,Entergy Arkansas Inc,814,SRMV,1 -72044,AR,Entergy Arkansas Inc,814,SRMV,1 +72043,AR,Entergy Arkansas LLC,814,SRMV,1 +72044,AR,Entergy Arkansas LLC,814,SRMV,1 72044,AR,First Electric Coop Corp,6342,SRMV,0 72044,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72045,AR,Entergy Arkansas Inc,814,SRMV,1 +72045,AR,Entergy Arkansas LLC,814,SRMV,1 72045,AR,First Electric Coop Corp,6342,SRMV,0 -72046,AR,Entergy Arkansas Inc,814,SRMV,1 +72046,AR,Entergy Arkansas LLC,814,SRMV,1 72046,AR,First Electric Coop Corp,6342,SRMV,0 -72047,AR,Entergy Arkansas Inc,814,SRMV,1 +72047,AR,Entergy Arkansas LLC,814,SRMV,1 72047,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72048,AR,Entergy Arkansas Inc,814,SRMV,1 +72048,AR,Entergy Arkansas LLC,814,SRMV,1 72048,AR,First Electric Coop Corp,6342,SRMV,0 72048,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72051,AR,Entergy Arkansas Inc,814,SRMV,1 +72051,AR,Entergy Arkansas LLC,814,SRMV,1 72051,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72052,AR,Entergy Arkansas Inc,814,SRMV,1 -72053,AR,Entergy Arkansas Inc,814,SRMV,1 +72052,AR,Entergy Arkansas LLC,814,SRMV,1 +72053,AR,Entergy Arkansas LLC,814,SRMV,1 72055,AR,C & L Electric Coop Corp,2678,SRMV,1 -72055,AR,Entergy Arkansas Inc,814,SRMV,0 +72055,AR,Entergy Arkansas LLC,814,SRMV,0 72055,AR,First Electric Coop Corp,6342,SRMV,0 72057,AR,C & L Electric Coop Corp,2678,SRMV,1 -72057,AR,Entergy Arkansas Inc,814,SRMV,0 -72058,AR,Entergy Arkansas Inc,814,SRMV,1 +72057,AR,Entergy Arkansas LLC,814,SRMV,0 +72058,AR,Entergy Arkansas LLC,814,SRMV,1 72058,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72059,AR,Entergy Arkansas Inc,814,SRMV,1 -72060,AR,Entergy Arkansas Inc,814,SRMV,1 +72059,AR,Entergy Arkansas LLC,814,SRMV,1 +72060,AR,Entergy Arkansas LLC,814,SRMV,1 72060,AR,First Electric Coop Corp,6342,SRMV,0 72060,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72061,AR,Entergy Arkansas Inc,814,SRMV,1 +72061,AR,Entergy Arkansas LLC,814,SRMV,1 72061,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72063,AR,Entergy Arkansas Inc,814,SRMV,1 +72063,AR,Entergy Arkansas LLC,814,SRMV,1 72063,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72064,AR,Entergy Arkansas Inc,814,SRMV,1 +72064,AR,Entergy Arkansas LLC,814,SRMV,1 72064,AR,First Electric Coop Corp,6342,SRMV,0 -72065,AR,Entergy Arkansas Inc,814,SRMV,1 +72065,AR,Entergy Arkansas LLC,814,SRMV,1 72065,AR,First Electric Coop Corp,6342,SRMV,0 -72066,AR,Entergy Arkansas Inc,814,SRMV,1 +72066,AR,Entergy Arkansas LLC,814,SRMV,1 72066,AR,First Electric Coop Corp,6342,SRMV,0 -72067,AR,Entergy Arkansas Inc,814,SRMV,1 +72067,AR,Entergy Arkansas LLC,814,SRMV,1 72067,AR,First Electric Coop Corp,6342,SRMV,0 72067,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72068,AR,Entergy Arkansas Inc,814,SRMV,1 -72069,AR,Entergy Arkansas Inc,814,SRMV,1 +72068,AR,Entergy Arkansas LLC,814,SRMV,1 +72069,AR,Entergy Arkansas LLC,814,SRMV,1 72069,AR,First Electric Coop Corp,6342,SRMV,0 72069,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72070,AR,Entergy Arkansas Inc,814,SRMV,1 +72070,AR,Entergy Arkansas LLC,814,SRMV,1 72070,AR,First Electric Coop Corp,6342,SRMV,0 -72072,AR,Entergy Arkansas Inc,814,SRMV,1 +72072,AR,Entergy Arkansas LLC,814,SRMV,1 72072,AR,First Electric Coop Corp,6342,SRMV,0 -72073,AR,Entergy Arkansas Inc,814,SRMV,1 +72073,AR,Entergy Arkansas LLC,814,SRMV,1 72073,AR,First Electric Coop Corp,6342,SRMV,0 -72074,AR,Entergy Arkansas Inc,814,SRMV,1 -72075,AR,Entergy Arkansas Inc,814,SRMV,1 -72076,AR,Entergy Arkansas Inc,814,SRMV,1 +72074,AR,Entergy Arkansas LLC,814,SRMV,1 +72075,AR,Entergy Arkansas LLC,814,SRMV,1 +72076,AR,Entergy Arkansas LLC,814,SRMV,1 72076,AR,First Electric Coop Corp,6342,SRMV,0 -72078,AR,Entergy Arkansas Inc,814,SRMV,1 -72079,AR,Entergy Arkansas Inc,814,SRMV,1 -72080,AR,Entergy Arkansas Inc,814,SRMV,1 +72078,AR,Entergy Arkansas LLC,814,SRMV,1 +72079,AR,Entergy Arkansas LLC,814,SRMV,1 +72080,AR,Entergy Arkansas LLC,814,SRMV,1 72080,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72081,AR,Entergy Arkansas Inc,814,SRMV,1 +72081,AR,Entergy Arkansas LLC,814,SRMV,1 72081,AR,First Electric Coop Corp,6342,SRMV,0 -72082,AR,Entergy Arkansas Inc,814,SRMV,1 -72083,AR,Entergy Arkansas Inc,814,SRMV,1 -72084,AR,Entergy Arkansas Inc,814,SRMV,1 +72082,AR,Entergy Arkansas LLC,814,SRMV,1 +72083,AR,Entergy Arkansas LLC,814,SRMV,1 +72084,AR,Entergy Arkansas LLC,814,SRMV,1 72084,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 -72085,AR,Entergy Arkansas Inc,814,SRMV,1 +72085,AR,Entergy Arkansas LLC,814,SRMV,1 72085,AR,First Electric Coop Corp,6342,SRMV,0 -72086,AR,Entergy Arkansas Inc,814,SRMV,1 +72086,AR,Entergy Arkansas LLC,814,SRMV,1 72086,AR,First Electric Coop Corp,6342,SRMV,0 -72087,AR,Entergy Arkansas Inc,814,SRMV,1 +72087,AR,Entergy Arkansas LLC,814,SRMV,1 72087,AR,First Electric Coop Corp,6342,SRMV,0 -72088,AR,Entergy Arkansas Inc,814,SRMV,1 +72088,AR,Entergy Arkansas LLC,814,SRMV,1 72088,AR,First Electric Coop Corp,6342,SRMV,0 72088,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72089,AR,Entergy Arkansas Inc,814,SRMV,1 -72099,AR,Entergy Arkansas Inc,814,SRMV,1 +72089,AR,Entergy Arkansas LLC,814,SRMV,1 +72099,AR,Entergy Arkansas LLC,814,SRMV,1 72099,AR,First Electric Coop Corp,6342,SRMV,0 -72101,AR,Entergy Arkansas Inc,814,SRMV,1 +72101,AR,Entergy Arkansas LLC,814,SRMV,1 72101,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72102,AR,Entergy Arkansas Inc,814,SRMV,1 +72102,AR,Entergy Arkansas LLC,814,SRMV,1 72102,AR,First Electric Coop Corp,6342,SRMV,0 -72103,AR,Entergy Arkansas Inc,814,SRMV,1 +72103,AR,Entergy Arkansas LLC,814,SRMV,1 72103,AR,First Electric Coop Corp,6342,SRMV,0 -72104,AR,Entergy Arkansas Inc,814,SRMV,1 +72104,AR,Entergy Arkansas LLC,814,SRMV,1 72104,AR,"South Central Ark El Coop, Inc",17540,SRMV,0 -72105,AR,Entergy Arkansas Inc,814,SRMV,1 -72106,AR,Entergy Arkansas Inc,814,SRMV,1 +72105,AR,Entergy Arkansas LLC,814,SRMV,1 +72106,AR,Entergy Arkansas LLC,814,SRMV,1 72106,AR,First Electric Coop Corp,6342,SRMV,0 -72107,AR,Entergy Arkansas Inc,814,SRMV,1 -72108,AR,Entergy Arkansas Inc,814,SRMV,1 +72107,AR,Entergy Arkansas LLC,814,SRMV,1 +72108,AR,Entergy Arkansas LLC,814,SRMV,1 72108,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72110,AR,Entergy Arkansas Inc,814,SRMV,1 +72110,AR,Entergy Arkansas LLC,814,SRMV,1 72110,AR,First Electric Coop Corp,6342,SRMV,0 -72111,AR,Entergy Arkansas Inc,814,SRMV,1 +72111,AR,Entergy Arkansas LLC,814,SRMV,1 72111,AR,First Electric Coop Corp,6342,SRMV,0 72111,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72112,AR,Entergy Arkansas Inc,814,SRMV,1 +72112,AR,Entergy Arkansas LLC,814,SRMV,1 72112,AR,Woodruff Electric Coop Corp,20963,SRMV,0 72113,AR,City of North Little Rock - (AR),13718,SRMV,1 -72113,AR,Entergy Arkansas Inc,814,SRMV,0 +72113,AR,Entergy Arkansas LLC,814,SRMV,0 72114,AR,City of North Little Rock - (AR),13718,SRMV,1 -72114,AR,Entergy Arkansas Inc,814,SRMV,0 +72114,AR,Entergy Arkansas LLC,814,SRMV,0 72115,AR,City of North Little Rock - (AR),13718,SRMV,1 -72115,AR,Entergy Arkansas Inc,814,SRMV,0 +72115,AR,Entergy Arkansas LLC,814,SRMV,0 72116,AR,City of North Little Rock - (AR),13718,SRMV,1 -72116,AR,Entergy Arkansas Inc,814,SRMV,0 +72116,AR,Entergy Arkansas LLC,814,SRMV,0 72117,AR,City of North Little Rock - (AR),13718,SRMV,1 -72117,AR,Entergy Arkansas Inc,814,SRMV,0 +72117,AR,Entergy Arkansas LLC,814,SRMV,0 72117,AR,First Electric Coop Corp,6342,SRMV,0 72118,AR,City of North Little Rock - (AR),13718,SRMV,1 -72118,AR,Entergy Arkansas Inc,814,SRMV,0 +72118,AR,Entergy Arkansas LLC,814,SRMV,0 72118,AR,First Electric Coop Corp,6342,SRMV,0 72119,AR,City of North Little Rock - (AR),13718,SRMV,1 -72119,AR,Entergy Arkansas Inc,814,SRMV,0 +72119,AR,Entergy Arkansas LLC,814,SRMV,0 72120,AR,City of North Little Rock - (AR),13718,SRMV,1 -72120,AR,Entergy Arkansas Inc,814,SRMV,0 +72120,AR,Entergy Arkansas LLC,814,SRMV,0 72120,AR,First Electric Coop Corp,6342,SRMV,0 -72121,AR,Entergy Arkansas Inc,814,SRMV,1 +72121,AR,Entergy Arkansas LLC,814,SRMV,1 72121,AR,First Electric Coop Corp,6342,SRMV,0 -72122,AR,Entergy Arkansas Inc,814,SRMV,1 +72122,AR,Entergy Arkansas LLC,814,SRMV,1 72122,AR,First Electric Coop Corp,6342,SRMV,0 -72123,AR,Entergy Arkansas Inc,814,SRMV,1 -72124,AR,Entergy Arkansas Inc,814,SRMV,1 -72125,AR,Entergy Arkansas Inc,814,SRMV,1 +72123,AR,Entergy Arkansas LLC,814,SRMV,1 +72124,AR,Entergy Arkansas LLC,814,SRMV,1 +72125,AR,Entergy Arkansas LLC,814,SRMV,1 72125,AR,First Electric Coop Corp,6342,SRMV,0 -72126,AR,Entergy Arkansas Inc,814,SRMV,1 +72126,AR,Entergy Arkansas LLC,814,SRMV,1 72126,AR,First Electric Coop Corp,6342,SRMV,0 72127,AR,Conway Corporation,4280,SRMV,1 -72127,AR,Entergy Arkansas Inc,814,SRMV,0 +72127,AR,Entergy Arkansas LLC,814,SRMV,0 72127,AR,First Electric Coop Corp,6342,SRMV,0 -72128,AR,Entergy Arkansas Inc,814,SRMV,1 +72128,AR,Entergy Arkansas LLC,814,SRMV,1 72129,AR,C & L Electric Coop Corp,2678,SRMV,1 -72129,AR,Entergy Arkansas Inc,814,SRMV,0 -72130,AR,Entergy Arkansas Inc,814,SRMV,1 +72129,AR,Entergy Arkansas LLC,814,SRMV,0 +72130,AR,Entergy Arkansas LLC,814,SRMV,1 72130,AR,First Electric Coop Corp,6342,SRMV,0 -72131,AR,Entergy Arkansas Inc,814,SRMV,1 +72131,AR,Entergy Arkansas LLC,814,SRMV,1 72131,AR,First Electric Coop Corp,6342,SRMV,0 72131,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72132,AR,Entergy Arkansas Inc,814,SRMV,1 +72132,AR,Entergy Arkansas LLC,814,SRMV,1 72132,AR,First Electric Coop Corp,6342,SRMV,0 -72133,AR,Entergy Arkansas Inc,814,SRMV,1 -72134,AR,Entergy Arkansas Inc,814,SRMV,1 +72133,AR,Entergy Arkansas LLC,814,SRMV,1 +72134,AR,Entergy Arkansas LLC,814,SRMV,1 72134,AR,First Electric Coop Corp,6342,SRMV,0 72134,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72135,AR,Entergy Arkansas Inc,814,SRMV,1 +72135,AR,Entergy Arkansas LLC,814,SRMV,1 72135,AR,First Electric Coop Corp,6342,SRMV,0 -72136,AR,Entergy Arkansas Inc,814,SRMV,1 +72136,AR,Entergy Arkansas LLC,814,SRMV,1 72136,AR,First Electric Coop Corp,6342,SRMV,0 -72137,AR,Entergy Arkansas Inc,814,SRMV,1 +72137,AR,Entergy Arkansas LLC,814,SRMV,1 72137,AR,First Electric Coop Corp,6342,SRMV,0 72137,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72139,AR,Entergy Arkansas Inc,814,SRMV,1 -72140,AR,Entergy Arkansas Inc,814,SRMV,1 +72139,AR,Entergy Arkansas LLC,814,SRMV,1 +72140,AR,Entergy Arkansas LLC,814,SRMV,1 72140,AR,First Electric Coop Corp,6342,SRMV,0 72140,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72141,AR,Entergy Arkansas Inc,814,SRMV,1 +72141,AR,Entergy Arkansas LLC,814,SRMV,1 72141,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72142,AR,Entergy Arkansas Inc,814,SRMV,1 +72142,AR,Entergy Arkansas LLC,814,SRMV,1 72142,AR,First Electric Coop Corp,6342,SRMV,0 -72143,AR,Entergy Arkansas Inc,814,SRMV,1 +72143,AR,Entergy Arkansas LLC,814,SRMV,1 72143,AR,First Electric Coop Corp,6342,SRMV,0 72143,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72145,AR,Entergy Arkansas Inc,814,SRMV,1 -72149,AR,Entergy Arkansas Inc,814,SRMV,1 +72145,AR,Entergy Arkansas LLC,814,SRMV,1 +72149,AR,Entergy Arkansas LLC,814,SRMV,1 72150,AR,C & L Electric Coop Corp,2678,SRMV,1 -72150,AR,Entergy Arkansas Inc,814,SRMV,0 +72150,AR,Entergy Arkansas LLC,814,SRMV,0 72150,AR,First Electric Coop Corp,6342,SRMV,0 -72152,AR,Entergy Arkansas Inc,814,SRMV,1 +72152,AR,Entergy Arkansas LLC,814,SRMV,1 72152,AR,First Electric Coop Corp,6342,SRMV,0 -72153,AR,Entergy Arkansas Inc,814,SRMV,1 +72153,AR,Entergy Arkansas LLC,814,SRMV,1 72153,AR,First Electric Coop Corp,6342,SRMV,0 72153,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72156,AR,Entergy Arkansas Inc,814,SRMV,1 -72157,AR,Entergy Arkansas Inc,814,SRMV,1 +72156,AR,Entergy Arkansas LLC,814,SRMV,1 +72157,AR,Entergy Arkansas LLC,814,SRMV,1 72158,AR,City of Benton - (AR),1581,SRMV,1 -72158,AR,Entergy Arkansas Inc,814,SRMV,0 +72158,AR,Entergy Arkansas LLC,814,SRMV,0 72160,AR,C & L Electric Coop Corp,2678,SRMV,1 -72160,AR,Entergy Arkansas Inc,814,SRMV,0 +72160,AR,Entergy Arkansas LLC,814,SRMV,0 72160,AR,First Electric Coop Corp,6342,SRMV,0 -72164,AR,Entergy Arkansas Inc,814,SRMV,1 -72165,AR,Entergy Arkansas Inc,814,SRMV,1 +72164,AR,Entergy Arkansas LLC,814,SRMV,1 +72165,AR,Entergy Arkansas LLC,814,SRMV,1 72166,AR,C & L Electric Coop Corp,2678,SRMV,1 -72166,AR,Entergy Arkansas Inc,814,SRMV,0 +72166,AR,Entergy Arkansas LLC,814,SRMV,0 72166,AR,First Electric Coop Corp,6342,SRMV,0 -72167,AR,Entergy Arkansas Inc,814,SRMV,1 +72167,AR,Entergy Arkansas LLC,814,SRMV,1 72167,AR,First Electric Coop Corp,6342,SRMV,0 -72168,AR,Entergy Arkansas Inc,814,SRMV,1 +72168,AR,Entergy Arkansas LLC,814,SRMV,1 72168,AR,First Electric Coop Corp,6342,SRMV,0 -72169,AR,Entergy Arkansas Inc,814,SRMV,1 -72170,AR,Entergy Arkansas Inc,814,SRMV,1 -72173,AR,Entergy Arkansas Inc,814,SRMV,1 +72169,AR,Entergy Arkansas LLC,814,SRMV,1 +72170,AR,Entergy Arkansas LLC,814,SRMV,1 +72173,AR,Entergy Arkansas LLC,814,SRMV,1 72173,AR,First Electric Coop Corp,6342,SRMV,0 -72175,AR,Entergy Arkansas Inc,814,SRMV,1 +72175,AR,Entergy Arkansas LLC,814,SRMV,1 72175,AR,First Electric Coop Corp,6342,SRMV,0 -72176,AR,Entergy Arkansas Inc,814,SRMV,1 +72176,AR,Entergy Arkansas LLC,814,SRMV,1 72176,AR,First Electric Coop Corp,6342,SRMV,0 -72178,AR,Entergy Arkansas Inc,814,SRMV,1 -72179,AR,Entergy Arkansas Inc,814,SRMV,1 +72178,AR,Entergy Arkansas LLC,814,SRMV,1 +72179,AR,Entergy Arkansas LLC,814,SRMV,1 72179,AR,First Electric Coop Corp,6342,SRMV,0 -72180,AR,Entergy Arkansas Inc,814,SRMV,1 -72181,AR,Entergy Arkansas Inc,814,SRMV,1 -72182,AR,Entergy Arkansas Inc,814,SRMV,1 -72183,AR,Entergy Arkansas Inc,814,SRMV,1 +72180,AR,Entergy Arkansas LLC,814,SRMV,1 +72181,AR,Entergy Arkansas LLC,814,SRMV,1 +72182,AR,Entergy Arkansas LLC,814,SRMV,1 +72183,AR,Entergy Arkansas LLC,814,SRMV,1 72190,AR,City of North Little Rock - (AR),13718,SRMV,1 -72190,AR,Entergy Arkansas Inc,814,SRMV,0 +72190,AR,Entergy Arkansas LLC,814,SRMV,0 72198,AR,Entergy Arkansas Inc,1008,SRMV,1 72198,AR,First Electric Coop Corp,1257,SRMV,0 72199,AR,City of North Little Rock - (AR),13718,SRMV,1 -72199,AR,Entergy Arkansas Inc,814,SRMV,0 +72199,AR,Entergy Arkansas LLC,814,SRMV,0 72199,AR,First Electric Coop Corp,6342,SRMV,0 72201,AR,City of North Little Rock - (AR),13718,SRMV,1 -72201,AR,Entergy Arkansas Inc,814,SRMV,0 +72201,AR,Entergy Arkansas LLC,814,SRMV,0 72202,AR,City of North Little Rock - (AR),13718,SRMV,1 -72202,AR,Entergy Arkansas Inc,814,SRMV,0 -72203,AR,Entergy Arkansas Inc,814,SRMV,1 -72204,AR,Entergy Arkansas Inc,814,SRMV,1 -72205,AR,Entergy Arkansas Inc,814,SRMV,1 +72202,AR,Entergy Arkansas LLC,814,SRMV,0 +72203,AR,Entergy Arkansas LLC,814,SRMV,1 +72204,AR,Entergy Arkansas LLC,814,SRMV,1 +72205,AR,Entergy Arkansas LLC,814,SRMV,1 72206,AR,City of North Little Rock - (AR),13718,SRMV,1 -72206,AR,Entergy Arkansas Inc,814,SRMV,0 +72206,AR,Entergy Arkansas LLC,814,SRMV,0 72206,AR,First Electric Coop Corp,6342,SRMV,0 72207,AR,City of North Little Rock - (AR),13718,SRMV,1 -72207,AR,Entergy Arkansas Inc,814,SRMV,0 -72209,AR,Entergy Arkansas Inc,814,SRMV,1 +72207,AR,Entergy Arkansas LLC,814,SRMV,0 +72209,AR,Entergy Arkansas LLC,814,SRMV,1 72209,AR,First Electric Coop Corp,6342,SRMV,0 -72210,AR,Entergy Arkansas Inc,814,SRMV,1 +72210,AR,Entergy Arkansas LLC,814,SRMV,1 72210,AR,First Electric Coop Corp,6342,SRMV,0 -72211,AR,Entergy Arkansas Inc,814,SRMV,1 +72211,AR,Entergy Arkansas LLC,814,SRMV,1 72212,AR,City of North Little Rock - (AR),13718,SRMV,1 -72212,AR,Entergy Arkansas Inc,814,SRMV,0 -72214,AR,Entergy Arkansas Inc,814,SRMV,1 -72215,AR,Entergy Arkansas Inc,814,SRMV,1 -72216,AR,Entergy Arkansas Inc,814,SRMV,1 -72217,AR,Entergy Arkansas Inc,814,SRMV,1 -72219,AR,Entergy Arkansas Inc,814,SRMV,1 -72221,AR,Entergy Arkansas Inc,814,SRMV,1 -72222,AR,Entergy Arkansas Inc,814,SRMV,1 -72223,AR,Entergy Arkansas Inc,814,SRMV,1 +72212,AR,Entergy Arkansas LLC,814,SRMV,0 +72214,AR,Entergy Arkansas LLC,814,SRMV,1 +72215,AR,Entergy Arkansas LLC,814,SRMV,1 +72216,AR,Entergy Arkansas LLC,814,SRMV,1 +72217,AR,Entergy Arkansas LLC,814,SRMV,1 +72219,AR,Entergy Arkansas LLC,814,SRMV,1 +72221,AR,Entergy Arkansas LLC,814,SRMV,1 +72222,AR,Entergy Arkansas LLC,814,SRMV,1 +72223,AR,Entergy Arkansas LLC,814,SRMV,1 72223,AR,First Electric Coop Corp,6342,SRMV,0 -72225,AR,Entergy Arkansas Inc,814,SRMV,1 -72227,AR,Entergy Arkansas Inc,814,SRMV,1 -72231,AR,Entergy Arkansas Inc,814,SRMV,1 -72260,AR,Entergy Arkansas Inc,814,SRMV,1 -72295,AR,Entergy Arkansas Inc,814,SRMV,1 +72225,AR,Entergy Arkansas LLC,814,SRMV,1 +72227,AR,Entergy Arkansas LLC,814,SRMV,1 +72231,AR,Entergy Arkansas LLC,814,SRMV,1 +72260,AR,Entergy Arkansas LLC,814,SRMV,1 +72295,AR,Entergy Arkansas LLC,814,SRMV,1 72301,AR,City of West Memphis - (AR),20382,SRMW,1 -72301,AR,Entergy Arkansas Inc,814,SRMV,0 +72301,AR,Entergy Arkansas LLC,814,SRMV,0 72303,AR,City of West Memphis - (AR),20382,SRMW,1 -72303,AR,Entergy Arkansas Inc,814,SRMV,0 -72310,AR,Entergy Arkansas Inc,814,SRMV,1 -72311,AR,Entergy Arkansas Inc,814,SRMV,1 -72312,AR,Entergy Arkansas Inc,814,SRMV,1 -72313,AR,Entergy Arkansas Inc,814,SRMV,1 -72315,AR,Entergy Arkansas Inc,814,SRMV,1 +72303,AR,Entergy Arkansas LLC,814,SRMV,0 +72310,AR,Entergy Arkansas LLC,814,SRMV,1 +72311,AR,Entergy Arkansas LLC,814,SRMV,1 +72312,AR,Entergy Arkansas LLC,814,SRMV,1 +72313,AR,Entergy Arkansas LLC,814,SRMV,1 +72315,AR,Entergy Arkansas LLC,814,SRMV,1 72315,AR,Mississippi County Electric Co,12681,SRMV,0 -72316,AR,Entergy Arkansas Inc,814,SRMV,1 -72319,AR,Entergy Arkansas Inc,814,SRMV,1 -72320,AR,Entergy Arkansas Inc,814,SRMV,1 +72316,AR,Entergy Arkansas LLC,814,SRMV,1 +72319,AR,Entergy Arkansas LLC,814,SRMV,1 +72320,AR,Entergy Arkansas LLC,814,SRMV,1 72320,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72321,AR,Entergy Arkansas Inc,814,SRMV,1 -72322,AR,Entergy Arkansas Inc,814,SRMV,1 +72321,AR,Entergy Arkansas LLC,814,SRMV,1 +72322,AR,Entergy Arkansas LLC,814,SRMV,1 72322,AR,Woodruff Electric Coop Corp,20963,SRMV,0 72324,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72324,AR,Entergy Arkansas Inc,814,SRMV,0 +72324,AR,Entergy Arkansas LLC,814,SRMV,0 72324,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72325,AR,Entergy Arkansas Inc,814,SRMV,1 -72326,AR,Entergy Arkansas Inc,814,SRMV,1 +72325,AR,Entergy Arkansas LLC,814,SRMV,1 +72326,AR,Entergy Arkansas LLC,814,SRMV,1 72326,AR,Woodruff Electric Coop Corp,20963,SRMV,0 72327,AR,City of West Memphis - (AR),20382,SRMW,1 72327,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72327,AR,Entergy Arkansas Inc,814,SRMV,0 -72328,AR,Entergy Arkansas Inc,814,SRMV,1 -72329,AR,Entergy Arkansas Inc,814,SRMV,1 -72330,AR,Entergy Arkansas Inc,814,SRMV,1 +72327,AR,Entergy Arkansas LLC,814,SRMV,0 +72328,AR,Entergy Arkansas LLC,814,SRMV,1 +72329,AR,Entergy Arkansas LLC,814,SRMV,1 +72330,AR,Entergy Arkansas LLC,814,SRMV,1 72330,AR,Mississippi County Electric Co,12681,SRMV,0 72331,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72331,AR,Entergy Arkansas Inc,814,SRMV,0 +72331,AR,Entergy Arkansas LLC,814,SRMV,0 72331,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72332,AR,Entergy Arkansas Inc,814,SRMV,1 -72333,AR,Entergy Arkansas Inc,814,SRMV,1 +72332,AR,Entergy Arkansas LLC,814,SRMV,1 +72333,AR,Entergy Arkansas LLC,814,SRMV,1 72333,AR,First Electric Coop Corp,6342,SRMV,0 72333,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72335,AR,Entergy Arkansas Inc,814,SRMV,1 +72335,AR,Entergy Arkansas LLC,814,SRMV,1 72335,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72336,AR,Entergy Arkansas Inc,814,SRMV,1 +72336,AR,Entergy Arkansas LLC,814,SRMV,1 72338,TN,City of Memphis - (TN),12293,SRTV,1 -72338,TN,Entergy Arkansas Inc,814,SRMV,0 +72338,TN,Entergy Arkansas LLC,814,SRMV,0 72338,TN,Southwest Tennessee E M C,17694,SRTV,0 72338,TN,Tennessee Valley Authority,18642,SRTV,0 -72339,AR,Entergy Arkansas Inc,814,SRMV,1 -72340,AR,Entergy Arkansas Inc,814,SRMV,1 -72341,AR,Entergy Arkansas Inc,814,SRMV,1 +72339,AR,Entergy Arkansas LLC,814,SRMV,1 +72340,AR,Entergy Arkansas LLC,814,SRMV,1 +72341,AR,Entergy Arkansas LLC,814,SRMV,1 72341,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72342,AR,Entergy Arkansas Inc,814,SRMV,1 +72342,AR,Entergy Arkansas LLC,814,SRMV,1 72342,AR,Woodruff Electric Coop Corp,20963,SRMV,0 72346,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72346,AR,Entergy Arkansas Inc,814,SRMV,0 +72346,AR,Entergy Arkansas LLC,814,SRMV,0 72346,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72347,AR,Entergy Arkansas Inc,814,SRMV,1 +72347,AR,Entergy Arkansas LLC,814,SRMV,1 72347,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72348,AR,Entergy Arkansas Inc,814,SRMV,1 +72348,AR,Entergy Arkansas LLC,814,SRMV,1 72348,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72350,AR,Entergy Arkansas Inc,814,SRMV,1 -72351,AR,Entergy Arkansas Inc,814,SRMV,1 -72352,AR,Entergy Arkansas Inc,814,SRMV,1 -72353,AR,Entergy Arkansas Inc,814,SRMV,1 +72350,AR,Entergy Arkansas LLC,814,SRMV,1 +72351,AR,Entergy Arkansas LLC,814,SRMV,1 +72352,AR,Entergy Arkansas LLC,814,SRMV,1 +72353,AR,Entergy Arkansas LLC,814,SRMV,1 72354,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72354,AR,Entergy Arkansas Inc,814,SRMV,0 +72354,AR,Entergy Arkansas LLC,814,SRMV,0 72354,AR,Mississippi County Electric Co,12681,SRMV,0 -72355,AR,Entergy Arkansas Inc,814,SRMV,1 +72355,AR,Entergy Arkansas LLC,814,SRMV,1 72355,AR,Woodruff Electric Coop Corp,20963,SRMV,0 72358,AR,City of Osceola - (AR),14216,SRMV,1 -72358,AR,Entergy Arkansas Inc,814,SRMV,0 +72358,AR,Entergy Arkansas LLC,814,SRMV,0 72358,AR,Mississippi County Electric Co,12681,SRMV,0 -72359,AR,Entergy Arkansas Inc,814,SRMV,1 -72360,AR,Entergy Arkansas Inc,814,SRMV,1 +72359,AR,Entergy Arkansas LLC,814,SRMV,1 +72360,AR,Entergy Arkansas LLC,814,SRMV,1 72360,AR,Woodruff Electric Coop Corp,20963,SRMV,0 72364,AR,City of West Memphis - (AR),20382,SRMW,1 72364,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72364,AR,Entergy Arkansas Inc,814,SRMV,0 +72364,AR,Entergy Arkansas LLC,814,SRMV,0 72365,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72365,AR,Entergy Arkansas Inc,814,SRMV,0 +72365,AR,Entergy Arkansas LLC,814,SRMV,0 72365,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72366,AR,Entergy Arkansas Inc,814,SRMV,1 +72366,AR,Entergy Arkansas LLC,814,SRMV,1 72366,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72367,AR,Entergy Arkansas Inc,814,SRMV,1 -72368,AR,Entergy Arkansas Inc,814,SRMV,1 +72367,AR,Entergy Arkansas LLC,814,SRMV,1 +72368,AR,Entergy Arkansas LLC,814,SRMV,1 72368,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72369,AR,Entergy Arkansas Inc,814,SRMV,1 +72369,AR,Entergy Arkansas LLC,814,SRMV,1 72370,AR,City of Osceola - (AR),14216,SRMV,1 72370,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72370,AR,Entergy Arkansas Inc,814,SRMV,0 +72370,AR,Entergy Arkansas LLC,814,SRMV,0 72370,AR,Mississippi County Electric Co,12681,SRMV,0 -72372,AR,Entergy Arkansas Inc,814,SRMV,1 +72372,AR,Entergy Arkansas LLC,814,SRMV,1 72372,AR,Woodruff Electric Coop Corp,20963,SRMV,0 72373,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72373,AR,Entergy Arkansas Inc,814,SRMV,0 +72373,AR,Entergy Arkansas LLC,814,SRMV,0 72373,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72374,AR,Entergy Arkansas Inc,814,SRMV,1 +72374,AR,Entergy Arkansas LLC,814,SRMV,1 72374,AR,Woodruff Electric Coop Corp,20963,SRMV,0 72376,AR,City of West Memphis - (AR),20382,SRMW,1 72376,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72376,AR,Entergy Arkansas Inc,814,SRMV,0 +72376,AR,Entergy Arkansas LLC,814,SRMV,0 72377,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72377,AR,Entergy Arkansas Inc,814,SRMV,0 -72379,AR,Entergy Arkansas Inc,814,SRMV,1 -72383,AR,Entergy Arkansas Inc,814,SRMV,1 +72377,AR,Entergy Arkansas LLC,814,SRMV,0 +72379,AR,Entergy Arkansas LLC,814,SRMV,1 +72383,AR,Entergy Arkansas LLC,814,SRMV,1 72384,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72384,AR,Entergy Arkansas Inc,814,SRMV,0 +72384,AR,Entergy Arkansas LLC,814,SRMV,0 72386,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72386,AR,Entergy Arkansas Inc,814,SRMV,0 -72387,AR,Entergy Arkansas Inc,814,SRMV,1 +72386,AR,Entergy Arkansas LLC,814,SRMV,0 +72387,AR,Entergy Arkansas LLC,814,SRMV,1 72387,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72389,AR,Entergy Arkansas Inc,814,SRMV,1 -72390,AR,Entergy Arkansas Inc,814,SRMV,1 +72389,AR,Entergy Arkansas LLC,814,SRMV,1 +72390,AR,Entergy Arkansas LLC,814,SRMV,1 72390,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72391,AR,Entergy Arkansas Inc,814,SRMV,1 -72392,AR,Entergy Arkansas Inc,814,SRMV,1 +72391,AR,Entergy Arkansas LLC,814,SRMV,1 +72392,AR,Entergy Arkansas LLC,814,SRMV,1 72392,AR,Woodruff Electric Coop Corp,20963,SRMV,0 -72394,AR,Entergy Arkansas Inc,814,SRMV,1 +72394,AR,Entergy Arkansas LLC,814,SRMV,1 72394,AR,Woodruff Electric Coop Corp,20963,SRMV,0 72395,AR,City of Osceola - (AR),14216,SRMV,1 -72395,AR,Entergy Arkansas Inc,814,SRMV,0 +72395,AR,Entergy Arkansas LLC,814,SRMV,0 72395,AR,Mississippi County Electric Co,12681,SRMV,0 -72396,AR,Entergy Arkansas Inc,814,SRMV,1 +72396,AR,Entergy Arkansas LLC,814,SRMV,1 72396,AR,Woodruff Electric Coop Corp,20963,SRMV,0 72401,AR,City Water and Light Plant,9879,SPSO,1 72401,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72401,AR,Entergy Arkansas Inc,814,SRMV,0 +72401,AR,Entergy Arkansas LLC,814,SRMV,0 72402,AR,City Water and Light Plant,9879,SPSO,1 -72402,AR,Entergy Arkansas Inc,814,SRMV,0 +72402,AR,Entergy Arkansas LLC,814,SRMV,0 72403,AR,City Water and Light Plant,9879,SPSO,1 -72403,AR,Entergy Arkansas Inc,814,SRMV,0 +72403,AR,Entergy Arkansas LLC,814,SRMV,0 72404,AR,City Water and Light Plant,9879,SPSO,1 72404,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72404,AR,Entergy Arkansas Inc,814,SRMV,0 +72404,AR,Entergy Arkansas LLC,814,SRMV,0 72410,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72410,AR,Entergy Arkansas Inc,814,SRMV,0 +72410,AR,Entergy Arkansas LLC,814,SRMV,0 72411,AR,City Water and Light Plant,9879,SPSO,1 72411,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72411,AR,Entergy Arkansas Inc,814,SRMV,0 +72411,AR,Entergy Arkansas LLC,814,SRMV,0 72412,AR,Clay County Electric Coop Corp,3712,SRMV,1 72412,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72412,AR,Entergy Arkansas Inc,814,SRMV,0 +72412,AR,Entergy Arkansas LLC,814,SRMV,0 72413,AR,Clay County Electric Coop Corp,3712,SRMV,1 -72413,AR,Entergy Arkansas Inc,814,SRMV,0 +72413,AR,Entergy Arkansas LLC,814,SRMV,0 72414,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72414,AR,Entergy Arkansas Inc,814,SRMV,0 +72414,AR,Entergy Arkansas LLC,814,SRMV,0 72415,AR,Clay County Electric Coop Corp,3712,SRMV,1 72415,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72415,AR,Entergy Arkansas Inc,814,SRMV,0 +72415,AR,Entergy Arkansas LLC,814,SRMV,0 72416,AR,City Water and Light Plant,9879,SPSO,1 72416,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72416,AR,Entergy Arkansas Inc,814,SRMV,0 +72416,AR,Entergy Arkansas LLC,814,SRMV,0 72417,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72417,AR,Entergy Arkansas Inc,814,SRMV,0 +72417,AR,Entergy Arkansas LLC,814,SRMV,0 72419,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72419,AR,Entergy Arkansas Inc,814,SRMV,0 +72419,AR,Entergy Arkansas LLC,814,SRMV,0 72419,AR,Mississippi County Electric Co,12681,SRMV,0 72421,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72421,AR,Entergy Arkansas Inc,814,SRMV,0 +72421,AR,Entergy Arkansas LLC,814,SRMV,0 72422,AR,Clay County Electric Coop Corp,3712,SRMV,1 -72422,AR,Entergy Arkansas Inc,814,SRMV,0 +72422,AR,Entergy Arkansas LLC,814,SRMV,0 72424,AR,Clay County Electric Coop Corp,3712,SRMV,1 -72424,AR,Entergy Arkansas Inc,814,SRMV,0 +72424,AR,Entergy Arkansas LLC,814,SRMV,0 72425,AR,Clay County Electric Coop Corp,3712,SRMV,1 72425,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72425,AR,Entergy Arkansas Inc,814,SRMV,0 -72426,AR,Entergy Arkansas Inc,814,SRMV,1 +72425,AR,Entergy Arkansas LLC,814,SRMV,0 +72426,AR,Entergy Arkansas LLC,814,SRMV,1 72427,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72427,AR,Entergy Arkansas Inc,814,SRMV,0 +72427,AR,Entergy Arkansas LLC,814,SRMV,0 72428,AR,Mississippi County Electric Co,12681,SRMV,1 -72429,AR,Entergy Arkansas Inc,814,SRMV,1 +72429,AR,Entergy Arkansas LLC,814,SRMV,1 72430,AR,Clay County Electric Coop Corp,3712,SRMV,1 -72430,AR,Entergy Arkansas Inc,814,SRMV,0 -72431,AR,Entergy Arkansas Inc,814,SRMV,1 +72430,AR,Entergy Arkansas LLC,814,SRMV,0 +72431,AR,Entergy Arkansas LLC,814,SRMV,1 72432,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72432,AR,Entergy Arkansas Inc,814,SRMV,0 +72432,AR,Entergy Arkansas LLC,814,SRMV,0 72432,AR,Woodruff Electric Coop Corp,20963,SRMV,0 72433,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72433,AR,Entergy Arkansas Inc,814,SRMV,0 +72433,AR,Entergy Arkansas LLC,814,SRMV,0 72434,AR,Clay County Electric Coop Corp,3712,SRMV,1 72434,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72434,AR,Entergy Arkansas Inc,814,SRMV,0 +72434,AR,Entergy Arkansas LLC,814,SRMV,0 72435,AR,Clay County Electric Coop Corp,3712,SRMV,1 72435,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72435,AR,Entergy Arkansas Inc,814,SRMV,0 +72435,AR,Entergy Arkansas LLC,814,SRMV,0 72436,AR,Clay County Electric Coop Corp,3712,SRMV,1 72436,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72436,AR,Entergy Arkansas Inc,814,SRMV,0 +72436,AR,Entergy Arkansas LLC,814,SRMV,0 72437,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72437,AR,Entergy Arkansas Inc,814,SRMV,0 +72437,AR,Entergy Arkansas LLC,814,SRMV,0 72438,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72438,AR,Entergy Arkansas Inc,814,SRMV,0 +72438,AR,Entergy Arkansas LLC,814,SRMV,0 72438,AR,Mississippi County Electric Co,12681,SRMV,0 72439,AR,Craighead Electric Coop Corp,61691,SRMV,1 72439,AR,Entergy Arkansas Inc,1008,SRMV,0 72440,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72440,AR,Entergy Arkansas Inc,814,SRMV,0 +72440,AR,Entergy Arkansas LLC,814,SRMV,0 72441,AR,Clay County Electric Coop Corp,3712,SRMV,1 -72441,AR,Entergy Arkansas Inc,814,SRMV,0 +72441,AR,Entergy Arkansas LLC,814,SRMV,0 72442,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72442,AR,Entergy Arkansas Inc,814,SRMV,0 +72442,AR,Entergy Arkansas LLC,814,SRMV,0 72442,AR,Mississippi County Electric Co,12681,SRMV,0 72443,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72443,AR,Entergy Arkansas Inc,814,SRMV,0 +72443,AR,Entergy Arkansas LLC,814,SRMV,0 72444,AR,Clay County Electric Coop Corp,3712,SRMV,1 -72444,AR,Entergy Arkansas Inc,814,SRMV,0 +72444,AR,Entergy Arkansas LLC,814,SRMV,0 72445,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72445,AR,Entergy Arkansas Inc,814,SRMV,0 +72445,AR,Entergy Arkansas LLC,814,SRMV,0 72447,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72447,AR,Entergy Arkansas Inc,814,SRMV,0 +72447,AR,Entergy Arkansas LLC,814,SRMV,0 72447,AR,Mississippi County Electric Co,12681,SRMV,0 72449,AR,Clay County Electric Coop Corp,3712,SRMV,1 72449,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72449,AR,Entergy Arkansas Inc,814,SRMV,0 +72449,AR,Entergy Arkansas LLC,814,SRMV,0 72450,AR,Clay County Electric Coop Corp,3712,SRMV,1 72450,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72450,AR,Entergy Arkansas Inc,814,SRMV,0 +72450,AR,Entergy Arkansas LLC,814,SRMV,0 72450,AR,Paragould Light & Water Comm,14446,SPSO,0 -72451,AR,Entergy Arkansas Inc,814,SRMV,1 +72451,AR,Entergy Arkansas LLC,814,SRMV,1 72451,AR,Paragould Light & Water Comm,14446,SPSO,0 72453,AR,Clay County Electric Coop Corp,3712,SRMV,1 72453,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72453,AR,Entergy Arkansas Inc,814,SRMV,0 +72453,AR,Entergy Arkansas LLC,814,SRMV,0 72454,AR,Clay County Electric Coop Corp,3712,SRMV,1 -72454,AR,Entergy Arkansas Inc,814,SRMV,0 +72454,AR,Entergy Arkansas LLC,814,SRMV,0 72455,AR,Clay County Electric Coop Corp,3712,SRMV,1 72455,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72455,AR,Entergy Arkansas Inc,814,SRMV,0 +72455,AR,Entergy Arkansas LLC,814,SRMV,0 72456,AR,Clay County Electric Coop Corp,3712,SRMV,1 -72456,AR,Entergy Arkansas Inc,814,SRMV,0 -72457,AR,Entergy Arkansas Inc,814,SRMV,1 +72456,AR,Entergy Arkansas LLC,814,SRMV,0 +72457,AR,Entergy Arkansas LLC,814,SRMV,1 72458,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72458,AR,Entergy Arkansas Inc,814,SRMV,0 +72458,AR,Entergy Arkansas LLC,814,SRMV,0 72459,AR,Clay County Electric Coop Corp,3712,SRMV,1 72459,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72459,AR,Entergy Arkansas Inc,814,SRMV,0 +72459,AR,Entergy Arkansas LLC,814,SRMV,0 72459,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 72460,AR,Clay County Electric Coop Corp,3712,SRMV,1 -72460,AR,Entergy Arkansas Inc,814,SRMV,0 +72460,AR,Entergy Arkansas LLC,814,SRMV,0 72461,AR,Clay County Electric Coop Corp,3712,SRMV,1 72461,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72461,AR,Entergy Arkansas Inc,814,SRMV,0 +72461,AR,Entergy Arkansas LLC,814,SRMV,0 72462,AR,Clay County Electric Coop Corp,3712,SRMV,1 -72462,AR,Entergy Arkansas Inc,814,SRMV,0 +72462,AR,Entergy Arkansas LLC,814,SRMV,0 72464,AR,Clay County Electric Coop Corp,3712,SRMV,1 -72464,AR,Entergy Arkansas Inc,814,SRMV,0 +72464,AR,Entergy Arkansas LLC,814,SRMV,0 72465,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72465,AR,Entergy Arkansas Inc,814,SRMV,0 +72465,AR,Entergy Arkansas LLC,814,SRMV,0 72466,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72466,AR,Entergy Arkansas Inc,814,SRMV,0 +72466,AR,Entergy Arkansas LLC,814,SRMV,0 72466,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 72467,AR,City Water and Light Plant,9879,SPSO,1 -72467,AR,Entergy Arkansas Inc,814,SRMV,0 +72467,AR,Entergy Arkansas LLC,814,SRMV,0 72469,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72469,AR,Entergy Arkansas Inc,814,SRMV,0 +72469,AR,Entergy Arkansas LLC,814,SRMV,0 72469,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 72470,AR,Clay County Electric Coop Corp,3712,SRMV,1 -72470,AR,Entergy Arkansas Inc,814,SRMV,0 +72470,AR,Entergy Arkansas LLC,814,SRMV,0 72471,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72471,AR,Entergy Arkansas Inc,814,SRMV,0 +72471,AR,Entergy Arkansas LLC,814,SRMV,0 72472,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72472,AR,Entergy Arkansas Inc,814,SRMV,0 +72472,AR,Entergy Arkansas LLC,814,SRMV,0 72472,AR,Woodruff Electric Coop Corp,20963,SRMV,0 72473,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72473,AR,Entergy Arkansas Inc,814,SRMV,0 -72474,AR,Entergy Arkansas Inc,814,SRMV,1 -72475,AR,Entergy Arkansas Inc,814,SRMV,1 +72473,AR,Entergy Arkansas LLC,814,SRMV,0 +72474,AR,Entergy Arkansas LLC,814,SRMV,1 +72475,AR,Entergy Arkansas LLC,814,SRMV,1 72476,AR,Clay County Electric Coop Corp,3712,SRMV,1 72476,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72476,AR,Entergy Arkansas Inc,814,SRMV,0 +72476,AR,Entergy Arkansas LLC,814,SRMV,0 72478,AR,Clay County Electric Coop Corp,3712,SRMV,1 -72478,AR,Entergy Arkansas Inc,814,SRMV,0 +72478,AR,Entergy Arkansas LLC,814,SRMV,0 72479,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72479,AR,Entergy Arkansas Inc,814,SRMV,0 +72479,AR,Entergy Arkansas LLC,814,SRMV,0 72482,AR,Clay County Electric Coop Corp,3712,SRMV,1 72482,AR,Craighead Electric Coop Corp,4509,SRMV,0 -72482,AR,Entergy Arkansas Inc,814,SRMV,0 +72482,AR,Entergy Arkansas LLC,814,SRMV,0 72482,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72501,AR,Entergy Arkansas Inc,814,SRMV,1 -72503,AR,Entergy Arkansas Inc,814,SRMV,1 -72512,AR,Entergy Arkansas Inc,814,SRMV,1 +72501,AR,Entergy Arkansas LLC,814,SRMV,1 +72503,AR,Entergy Arkansas LLC,814,SRMV,1 +72512,AR,Entergy Arkansas LLC,814,SRMV,1 72512,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72513,AR,Entergy Arkansas Inc,814,SRMV,1 +72513,AR,Entergy Arkansas LLC,814,SRMV,1 72513,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72515,AR,Entergy Arkansas Inc,814,SRMV,1 +72515,AR,Entergy Arkansas LLC,814,SRMV,1 72515,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72517,AR,Entergy Arkansas Inc,814,SRMV,1 +72517,AR,Entergy Arkansas LLC,814,SRMV,1 72517,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72519,AR,Entergy Arkansas Inc,814,SRMV,1 +72519,AR,Entergy Arkansas LLC,814,SRMV,1 72519,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72520,AR,Entergy Arkansas Inc,814,SRMV,1 +72520,AR,Entergy Arkansas LLC,814,SRMV,1 72520,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72521,AR,Entergy Arkansas Inc,814,SRMV,1 +72521,AR,Entergy Arkansas LLC,814,SRMV,1 72521,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72522,AR,Entergy Arkansas Inc,814,SRMV,1 -72523,AR,Entergy Arkansas Inc,814,SRMV,1 +72522,AR,Entergy Arkansas LLC,814,SRMV,1 +72523,AR,Entergy Arkansas LLC,814,SRMV,1 72523,AR,First Electric Coop Corp,6342,SRMV,0 72524,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72524,AR,Entergy Arkansas Inc,814,SRMV,0 -72525,AR,Entergy Arkansas Inc,814,SRMV,1 -72526,AR,Entergy Arkansas Inc,814,SRMV,1 -72527,AR,Entergy Arkansas Inc,814,SRMV,1 -72528,AR,Entergy Arkansas Inc,814,SRMV,1 +72524,AR,Entergy Arkansas LLC,814,SRMV,0 +72525,AR,Entergy Arkansas LLC,814,SRMV,1 +72526,AR,Entergy Arkansas LLC,814,SRMV,1 +72527,AR,Entergy Arkansas LLC,814,SRMV,1 +72528,AR,Entergy Arkansas LLC,814,SRMV,1 72528,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72529,AR,Entergy Arkansas Inc,814,SRMV,1 +72529,AR,Entergy Arkansas LLC,814,SRMV,1 72529,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72530,AR,Entergy Arkansas Inc,814,SRMV,1 +72530,AR,Entergy Arkansas LLC,814,SRMV,1 72530,AR,First Electric Coop Corp,6342,SRMV,0 -72531,AR,Entergy Arkansas Inc,814,SRMV,1 +72531,AR,Entergy Arkansas LLC,814,SRMV,1 72531,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72532,AR,Entergy Arkansas Inc,814,SRMV,1 +72532,AR,Entergy Arkansas LLC,814,SRMV,1 72532,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72533,AR,Entergy Arkansas Inc,814,SRMV,1 +72533,AR,Entergy Arkansas LLC,814,SRMV,1 72533,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72534,AR,Entergy Arkansas Inc,814,SRMV,1 +72534,AR,Entergy Arkansas LLC,814,SRMV,1 72534,AR,First Electric Coop Corp,6342,SRMV,0 -72536,AR,Entergy Arkansas Inc,814,SRMV,1 +72536,AR,Entergy Arkansas LLC,814,SRMV,1 72536,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72537,AR,Entergy Arkansas Inc,814,SRMV,1 +72537,AR,Entergy Arkansas LLC,814,SRMV,1 72537,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72538,AR,Entergy Arkansas Inc,814,SRMV,1 +72538,AR,Entergy Arkansas LLC,814,SRMV,1 72538,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72539,AR,Entergy Arkansas Inc,814,SRMV,1 +72539,AR,Entergy Arkansas LLC,814,SRMV,1 72539,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72540,AR,Entergy Arkansas Inc,814,SRMV,1 +72540,AR,Entergy Arkansas LLC,814,SRMV,1 72540,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 72542,AR,Clay County Electric Coop Corp,3712,SRMV,1 -72542,AR,Entergy Arkansas Inc,814,SRMV,0 +72542,AR,Entergy Arkansas LLC,814,SRMV,0 72542,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72543,AR,Entergy Arkansas Inc,814,SRMV,1 +72543,AR,Entergy Arkansas LLC,814,SRMV,1 72543,AR,First Electric Coop Corp,6342,SRMV,0 -72544,AR,Entergy Arkansas Inc,814,SRMV,1 +72544,AR,Entergy Arkansas LLC,814,SRMV,1 72544,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72545,AR,Entergy Arkansas Inc,814,SRMV,1 -72546,AR,Entergy Arkansas Inc,814,SRMV,1 +72545,AR,Entergy Arkansas LLC,814,SRMV,1 +72546,AR,Entergy Arkansas LLC,814,SRMV,1 72546,AR,First Electric Coop Corp,6342,SRMV,0 -72550,AR,Entergy Arkansas Inc,814,SRMV,1 +72550,AR,Entergy Arkansas LLC,814,SRMV,1 72550,AR,First Electric Coop Corp,6342,SRMV,0 -72553,AR,Entergy Arkansas Inc,814,SRMV,1 +72553,AR,Entergy Arkansas LLC,814,SRMV,1 72554,AR,Clay County Electric Coop Corp,3712,SRMV,1 -72554,AR,Entergy Arkansas Inc,814,SRMV,0 +72554,AR,Entergy Arkansas LLC,814,SRMV,0 72554,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72555,AR,Entergy Arkansas Inc,814,SRMV,1 -72556,AR,Entergy Arkansas Inc,814,SRMV,1 +72555,AR,Entergy Arkansas LLC,814,SRMV,1 +72556,AR,Entergy Arkansas LLC,814,SRMV,1 72556,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72560,AR,Entergy Arkansas Inc,814,SRMV,1 +72560,AR,Entergy Arkansas LLC,814,SRMV,1 72560,AR,First Electric Coop Corp,6342,SRMV,0 72560,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72561,AR,Entergy Arkansas Inc,814,SRMV,1 -72562,AR,Entergy Arkansas Inc,814,SRMV,1 -72564,AR,Entergy Arkansas Inc,814,SRMV,1 -72565,AR,Entergy Arkansas Inc,814,SRMV,1 +72561,AR,Entergy Arkansas LLC,814,SRMV,1 +72562,AR,Entergy Arkansas LLC,814,SRMV,1 +72564,AR,Entergy Arkansas LLC,814,SRMV,1 +72565,AR,Entergy Arkansas LLC,814,SRMV,1 72565,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72566,AR,Entergy Arkansas Inc,814,SRMV,1 +72566,AR,Entergy Arkansas LLC,814,SRMV,1 72566,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72567,AR,Entergy Arkansas Inc,814,SRMV,1 -72568,AR,Entergy Arkansas Inc,814,SRMV,1 +72567,AR,Entergy Arkansas LLC,814,SRMV,1 +72568,AR,Entergy Arkansas LLC,814,SRMV,1 72568,AR,First Electric Coop Corp,6342,SRMV,0 72569,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72569,AR,Entergy Arkansas Inc,814,SRMV,0 +72569,AR,Entergy Arkansas LLC,814,SRMV,0 72569,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72571,AR,Entergy Arkansas Inc,814,SRMV,1 +72571,AR,Entergy Arkansas LLC,814,SRMV,1 72572,AR,Craighead Electric Coop Corp,4509,SRMV,1 -72572,AR,Entergy Arkansas Inc,814,SRMV,0 -72573,AR,Entergy Arkansas Inc,814,SRMV,1 -72575,AR,Entergy Arkansas Inc,814,SRMV,1 -72576,AR,Entergy Arkansas Inc,814,SRMV,1 +72572,AR,Entergy Arkansas LLC,814,SRMV,0 +72573,AR,Entergy Arkansas LLC,814,SRMV,1 +72575,AR,Entergy Arkansas LLC,814,SRMV,1 +72576,AR,Entergy Arkansas LLC,814,SRMV,1 72576,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72577,AR,Entergy Arkansas Inc,814,SRMV,1 +72577,AR,Entergy Arkansas LLC,814,SRMV,1 72577,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72578,AR,Entergy Arkansas Inc,814,SRMV,1 +72578,AR,Entergy Arkansas LLC,814,SRMV,1 72578,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72579,AR,Entergy Arkansas Inc,814,SRMV,1 +72579,AR,Entergy Arkansas LLC,814,SRMV,1 72579,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72581,AR,Entergy Arkansas Inc,814,SRMV,1 +72581,AR,Entergy Arkansas LLC,814,SRMV,1 72581,AR,First Electric Coop Corp,6342,SRMV,0 -72583,AR,Entergy Arkansas Inc,814,SRMV,1 +72583,AR,Entergy Arkansas LLC,814,SRMV,1 72583,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72584,AR,Entergy Arkansas Inc,814,SRMV,1 +72584,AR,Entergy Arkansas LLC,814,SRMV,1 72584,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72585,AR,Entergy Arkansas Inc,814,SRMV,1 +72585,AR,Entergy Arkansas LLC,814,SRMV,1 72585,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72587,AR,Entergy Arkansas Inc,814,SRMV,1 +72587,AR,Entergy Arkansas LLC,814,SRMV,1 72587,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 72601,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72601,AR,Entergy Arkansas Inc,814,SRMV,0 +72601,AR,Entergy Arkansas LLC,814,SRMV,0 72601,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72602,AR,Entergy Arkansas Inc,814,SRMV,1 +72602,AR,Entergy Arkansas LLC,814,SRMV,1 72611,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72611,AR,Entergy Arkansas Inc,814,SRMV,0 +72611,AR,Entergy Arkansas LLC,814,SRMV,0 72613,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72613,AR,Entergy Arkansas Inc,814,SRMV,0 -72615,AR,Entergy Arkansas Inc,814,SRMV,1 +72613,AR,Entergy Arkansas LLC,814,SRMV,0 +72615,AR,Entergy Arkansas LLC,814,SRMV,1 72616,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72616,AR,Entergy Arkansas Inc,814,SRMV,0 +72616,AR,Entergy Arkansas LLC,814,SRMV,0 72616,AR,Southwestern Electric Power Co,17698,SPSO,0 -72617,AR,Entergy Arkansas Inc,814,SRMV,1 +72617,AR,Entergy Arkansas LLC,814,SRMV,1 72617,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72619,AR,Entergy Arkansas Inc,814,SRMV,1 +72619,AR,Entergy Arkansas LLC,814,SRMV,1 72619,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72623,AR,Entergy Arkansas Inc,814,SRMV,1 +72623,AR,Entergy Arkansas LLC,814,SRMV,1 72623,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 72624,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72624,AR,Entergy Arkansas Inc,814,SRMV,0 -72626,AR,Entergy Arkansas Inc,814,SRMV,1 +72624,AR,Entergy Arkansas LLC,814,SRMV,0 +72626,AR,Entergy Arkansas LLC,814,SRMV,1 72626,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 72628,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 72628,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,0 -72628,AR,Entergy Arkansas Inc,814,SRMV,0 +72628,AR,Entergy Arkansas LLC,814,SRMV,0 72628,AR,Ozarks Electric Coop Corp - (AR),14289,SPSO,0 -72629,AR,Entergy Arkansas Inc,814,SRMV,1 +72629,AR,Entergy Arkansas LLC,814,SRMV,1 72629,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72630,AR,Entergy Arkansas Inc,814,SRMV,1 +72630,AR,Entergy Arkansas LLC,814,SRMV,1 72631,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 72631,AR,Southwestern Electric Power Co,17698,SPSO,0 72632,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72632,AR,Entergy Arkansas Inc,814,SRMV,0 +72632,AR,Entergy Arkansas LLC,814,SRMV,0 72632,AR,Southwestern Electric Power Co,17698,SPSO,0 -72633,AR,Entergy Arkansas Inc,814,SRMV,1 -72634,AR,Entergy Arkansas Inc,814,SRMV,1 +72633,AR,Entergy Arkansas LLC,814,SRMV,1 +72634,AR,Entergy Arkansas LLC,814,SRMV,1 72634,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72635,AR,Entergy Arkansas Inc,814,SRMV,1 +72635,AR,Entergy Arkansas LLC,814,SRMV,1 72635,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72636,AR,Entergy Arkansas Inc,814,SRMV,1 +72636,AR,Entergy Arkansas LLC,814,SRMV,1 72636,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 72638,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72638,AR,Entergy Arkansas Inc,814,SRMV,0 -72639,AR,Entergy Arkansas Inc,814,SRMV,1 +72638,AR,Entergy Arkansas LLC,814,SRMV,0 +72639,AR,Entergy Arkansas LLC,814,SRMV,1 72639,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 72639,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 72640,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72640,AR,Entergy Arkansas Inc,814,SRMV,0 +72640,AR,Entergy Arkansas LLC,814,SRMV,0 72641,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72641,AR,Entergy Arkansas Inc,814,SRMV,0 -72642,AR,Entergy Arkansas Inc,814,SRMV,1 +72641,AR,Entergy Arkansas LLC,814,SRMV,0 +72642,AR,Entergy Arkansas LLC,814,SRMV,1 72642,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72644,AR,Entergy Arkansas Inc,814,SRMV,1 -72645,AR,Entergy Arkansas Inc,814,SRMV,1 +72644,AR,Entergy Arkansas LLC,814,SRMV,1 +72645,AR,Entergy Arkansas LLC,814,SRMV,1 72645,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 72648,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72648,AR,Entergy Arkansas Inc,814,SRMV,0 -72650,AR,Entergy Arkansas Inc,814,SRMV,1 +72648,AR,Entergy Arkansas LLC,814,SRMV,0 +72650,AR,Entergy Arkansas LLC,814,SRMV,1 72650,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72651,AR,Entergy Arkansas Inc,814,SRMV,1 +72651,AR,Entergy Arkansas LLC,814,SRMV,1 72651,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72653,AR,Entergy Arkansas Inc,814,SRMV,1 +72653,AR,Entergy Arkansas LLC,814,SRMV,1 72653,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72654,AR,Entergy Arkansas Inc,814,SRMV,1 +72654,AR,Entergy Arkansas LLC,814,SRMV,1 72655,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72655,AR,Entergy Arkansas Inc,814,SRMV,0 +72655,AR,Entergy Arkansas LLC,814,SRMV,0 72655,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72657,AR,Entergy Arkansas Inc,814,SRMV,1 -72658,AR,Entergy Arkansas Inc,814,SRMV,1 +72657,AR,Entergy Arkansas LLC,814,SRMV,1 +72658,AR,Entergy Arkansas LLC,814,SRMV,1 72658,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 -72659,AR,Entergy Arkansas Inc,814,SRMV,1 +72659,AR,Entergy Arkansas LLC,814,SRMV,1 72659,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 72660,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72660,AR,Entergy Arkansas Inc,814,SRMV,0 -72661,AR,Entergy Arkansas Inc,814,SRMV,1 +72660,AR,Entergy Arkansas LLC,814,SRMV,0 +72661,AR,Entergy Arkansas LLC,814,SRMV,1 72661,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 72662,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72662,AR,Entergy Arkansas Inc,814,SRMV,0 -72663,AR,Entergy Arkansas Inc,814,SRMV,1 +72662,AR,Entergy Arkansas LLC,814,SRMV,0 +72663,AR,Entergy Arkansas LLC,814,SRMV,1 72666,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72666,AR,Entergy Arkansas Inc,814,SRMV,0 -72668,AR,Entergy Arkansas Inc,814,SRMV,1 -72669,AR,Entergy Arkansas Inc,814,SRMV,1 +72666,AR,Entergy Arkansas LLC,814,SRMV,0 +72668,AR,Entergy Arkansas LLC,814,SRMV,1 +72669,AR,Entergy Arkansas LLC,814,SRMV,1 72670,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72670,AR,Entergy Arkansas Inc,814,SRMV,0 -72672,AR,Entergy Arkansas Inc,814,SRMV,1 +72670,AR,Entergy Arkansas LLC,814,SRMV,0 +72672,AR,Entergy Arkansas LLC,814,SRMV,1 72675,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72675,AR,Entergy Arkansas Inc,814,SRMV,0 +72675,AR,Entergy Arkansas LLC,814,SRMV,0 72675,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72677,AR,Entergy Arkansas Inc,814,SRMV,1 -72679,AR,Entergy Arkansas Inc,814,SRMV,1 +72677,AR,Entergy Arkansas LLC,814,SRMV,1 +72679,AR,Entergy Arkansas LLC,814,SRMV,1 72679,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72680,AR,Entergy Arkansas Inc,814,SRMV,1 +72680,AR,Entergy Arkansas LLC,814,SRMV,1 72680,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72682,AR,Entergy Arkansas Inc,814,SRMV,1 +72682,AR,Entergy Arkansas LLC,814,SRMV,1 72683,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72683,AR,Entergy Arkansas Inc,814,SRMV,0 +72683,AR,Entergy Arkansas LLC,814,SRMV,0 72685,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72685,AR,Entergy Arkansas Inc,814,SRMV,0 +72685,AR,Entergy Arkansas LLC,814,SRMV,0 72685,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 72686,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 72686,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,0 -72686,AR,Entergy Arkansas Inc,814,SRMV,0 +72686,AR,Entergy Arkansas LLC,814,SRMV,0 72686,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72687,AR,Entergy Arkansas Inc,814,SRMV,1 +72687,AR,Entergy Arkansas LLC,814,SRMV,1 72687,AR,"North Arkansas Elec Coop, Inc",13676,SRMV,0 72687,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 72701,AR,Ozarks Electric Coop Corp - (AR),14289,SPSO,1 @@ -54436,11 +54300,11 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 72739,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 72739,AR,Southwestern Electric Power Co,17698,SPSO,0 72740,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72740,AR,Entergy Arkansas Inc,814,SRMV,0 +72740,AR,Entergy Arkansas LLC,814,SRMV,0 72740,AR,Ozarks Electric Coop Corp - (AR),14289,SPSO,0 72741,AR,Southwestern Electric Power Co,17698,SPSO,1 72742,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 -72742,AR,Entergy Arkansas Inc,814,SRMV,0 +72742,AR,Entergy Arkansas LLC,814,SRMV,0 72742,AR,Ozarks Electric Coop Corp - (AR),14289,SPSO,0 72744,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 72744,AR,Ozarks Electric Coop Corp - (AR),14289,SPSO,0 @@ -54457,14 +54321,14 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 72751,AR,Southwestern Electric Power Co,17698,SPSO,0 72752,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 72752,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,0 -72752,AR,Entergy Arkansas Inc,814,SRMV,0 +72752,AR,Entergy Arkansas LLC,814,SRMV,0 72752,AR,Ozarks Electric Coop Corp - (AR),14289,SPSO,0 72753,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 72753,AR,Ozarks Electric Coop Corp - (AR),14289,SPSO,0 72753,AR,Southwestern Electric Power Co,17698,SPSO,0 72756,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 72756,AR,City of Bentonville - (AR),1586,SPSO,0 -72756,AR,Entergy Arkansas Inc,814,SRMV,0 +72756,AR,Entergy Arkansas LLC,814,SRMV,0 72756,AR,Ozarks Electric Coop Corp - (AR),14289,SPSO,0 72756,AR,Southwestern Electric Power Co,17698,SPSO,0 72757,AR,Southwestern Electric Power Co,17698,SPSO,1 @@ -54502,91 +54366,91 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 72774,AR,Southwestern Electric Power Co,17698,SPSO,0 72776,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,1 72776,AR,Ozarks Electric Coop Corp - (AR),14289,SPSO,0 -72801,AR,Entergy Arkansas Inc,814,SRMV,1 +72801,AR,Entergy Arkansas LLC,814,SRMV,1 72802,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72802,AR,Entergy Arkansas Inc,814,SRMV,0 -72811,AR,Entergy Arkansas Inc,814,SRMV,1 -72812,AR,Entergy Arkansas Inc,814,SRMV,1 +72802,AR,Entergy Arkansas LLC,814,SRMV,0 +72811,AR,Entergy Arkansas LLC,814,SRMV,1 +72812,AR,Entergy Arkansas LLC,814,SRMV,1 72820,AR,Oklahoma Gas & Electric Co,14063,SPSO,1 72821,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72821,AR,Entergy Arkansas Inc,814,SRMV,0 +72821,AR,Entergy Arkansas LLC,814,SRMV,0 72821,AR,Oklahoma Gas & Electric Co,14063,SPSO,0 -72823,AR,Entergy Arkansas Inc,814,SRMV,1 +72823,AR,Entergy Arkansas LLC,814,SRMV,1 72823,AR,First Electric Coop Corp,6342,SRMV,0 72823,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 72824,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72824,AR,Entergy Arkansas Inc,814,SRMV,0 +72824,AR,Entergy Arkansas LLC,814,SRMV,0 72824,AR,Oklahoma Gas & Electric Co,14063,SPSO,0 72826,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 72827,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72827,AR,Entergy Arkansas Inc,814,SRMV,0 -72828,AR,Entergy Arkansas Inc,814,SRMV,1 -72829,AR,Entergy Arkansas Inc,814,SRMV,1 +72827,AR,Entergy Arkansas LLC,814,SRMV,0 +72828,AR,Entergy Arkansas LLC,814,SRMV,1 +72829,AR,Entergy Arkansas LLC,814,SRMV,1 72830,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 72830,AR,Clarksville Light & Water Co,3705,SPSO,0 -72830,AR,Entergy Arkansas Inc,814,SRMV,0 +72830,AR,Entergy Arkansas LLC,814,SRMV,0 72830,AR,Oklahoma Gas & Electric Co,14063,SPSO,0 72832,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72832,AR,Entergy Arkansas Inc,814,SRMV,0 +72832,AR,Entergy Arkansas LLC,814,SRMV,0 72832,AR,Oklahoma Gas & Electric Co,14063,SPSO,0 72833,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72833,AR,Entergy Arkansas Inc,814,SRMV,0 +72833,AR,Entergy Arkansas LLC,814,SRMV,0 72834,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72834,AR,Entergy Arkansas Inc,814,SRMV,0 +72834,AR,Entergy Arkansas LLC,814,SRMV,0 72834,AR,First Electric Coop Corp,6342,SRMV,0 72834,AR,Oklahoma Gas & Electric Co,14063,SPSO,0 72835,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72835,AR,Entergy Arkansas Inc,814,SRMV,0 +72835,AR,Entergy Arkansas LLC,814,SRMV,0 72835,AR,Oklahoma Gas & Electric Co,14063,SPSO,0 72837,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72837,AR,Entergy Arkansas Inc,814,SRMV,0 -72838,AR,Entergy Arkansas Inc,814,SRMV,1 +72837,AR,Entergy Arkansas LLC,814,SRMV,0 +72838,AR,Entergy Arkansas LLC,814,SRMV,1 72839,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 72839,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,0 -72839,AR,Entergy Arkansas Inc,814,SRMV,0 +72839,AR,Entergy Arkansas LLC,814,SRMV,0 72840,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72840,AR,Entergy Arkansas Inc,814,SRMV,0 +72840,AR,Entergy Arkansas LLC,814,SRMV,0 72840,AR,Oklahoma Gas & Electric Co,14063,SPSO,0 72841,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72841,AR,Entergy Arkansas Inc,814,SRMV,0 +72841,AR,Entergy Arkansas LLC,814,SRMV,0 72842,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72842,AR,Entergy Arkansas Inc,814,SRMV,0 -72843,AR,Entergy Arkansas Inc,814,SRMV,1 +72842,AR,Entergy Arkansas LLC,814,SRMV,0 +72843,AR,Entergy Arkansas LLC,814,SRMV,1 72843,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 72845,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72845,AR,Entergy Arkansas Inc,814,SRMV,0 +72845,AR,Entergy Arkansas LLC,814,SRMV,0 72845,AR,Oklahoma Gas & Electric Co,14063,SPSO,0 72846,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 72846,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,0 -72846,AR,Entergy Arkansas Inc,814,SRMV,0 +72846,AR,Entergy Arkansas LLC,814,SRMV,0 72846,AR,Oklahoma Gas & Electric Co,14063,SPSO,0 72847,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72847,AR,Entergy Arkansas Inc,814,SRMV,0 +72847,AR,Entergy Arkansas LLC,814,SRMV,0 72847,AR,Oklahoma Gas & Electric Co,14063,SPSO,0 72851,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72851,AR,Entergy Arkansas Inc,814,SRMV,0 +72851,AR,Entergy Arkansas LLC,814,SRMV,0 72851,AR,Oklahoma Gas & Electric Co,14063,SPSO,0 72852,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72852,AR,Entergy Arkansas Inc,814,SRMV,0 -72853,AR,Entergy Arkansas Inc,814,SRMV,1 +72852,AR,Entergy Arkansas LLC,814,SRMV,0 +72853,AR,Entergy Arkansas LLC,814,SRMV,1 72853,AR,First Electric Coop Corp,6342,SRMV,0 72854,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 72854,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,0 -72854,AR,Entergy Arkansas Inc,814,SRMV,0 +72854,AR,Entergy Arkansas LLC,814,SRMV,0 72855,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72855,AR,Entergy Arkansas Inc,814,SRMV,0 +72855,AR,Entergy Arkansas LLC,814,SRMV,0 72855,AR,Oklahoma Gas & Electric Co,14063,SPSO,0 72856,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 72856,AR,Carroll Electric Coop Corp - (AR),3093,SPSO,0 -72856,AR,Entergy Arkansas Inc,814,SRMV,0 +72856,AR,Entergy Arkansas LLC,814,SRMV,0 72856,AR,Petit Jean Electric Coop Corp,14864,SRMV,0 -72857,AR,Entergy Arkansas Inc,814,SRMV,1 +72857,AR,Entergy Arkansas LLC,814,SRMV,1 72857,AR,First Electric Coop Corp,6342,SRMV,0 -72858,AR,Entergy Arkansas Inc,814,SRMV,1 -72860,AR,Entergy Arkansas Inc,814,SRMV,1 +72858,AR,Entergy Arkansas LLC,814,SRMV,1 +72860,AR,Entergy Arkansas LLC,814,SRMV,1 72863,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 72863,AR,Clarksville Light & Water Co,3705,SPSO,0 -72863,AR,Entergy Arkansas Inc,814,SRMV,0 +72863,AR,Entergy Arkansas LLC,814,SRMV,0 72863,AR,Oklahoma Gas & Electric Co,14063,SPSO,0 72865,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 72865,AR,Oklahoma Gas & Electric Co,14063,SPSO,0 @@ -54614,11 +54478,11 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 72923,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 72923,AR,Oklahoma Gas & Electric Co,14063,SPSO,0 72926,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72926,AR,Entergy Arkansas Inc,814,SRMV,0 +72926,AR,Entergy Arkansas LLC,814,SRMV,0 72926,AR,"Rich Mountain Elec Coop, Inc",15811,SRMV,0 72926,AR,Southwestern Electric Power Co,17698,SPSO,0 72927,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72927,AR,Entergy Arkansas Inc,814,SRMV,0 +72927,AR,Entergy Arkansas LLC,814,SRMV,0 72927,AR,Oklahoma Gas & Electric Co,14063,SPSO,0 72927,AR,Southwestern Electric Power Co,17698,SPSO,0 72928,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 @@ -54661,12 +54525,12 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 72948,AR,Ozarks Electric Coop Corp - (AR),14289,SPSO,0 72948,AR,Southwestern Electric Power Co,17698,SPSO,0 72949,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72949,AR,Entergy Arkansas Inc,814,SRMV,0 +72949,AR,Entergy Arkansas LLC,814,SRMV,0 72949,AR,Oklahoma Gas & Electric Co,14063,SPSO,0 72949,AR,Ozarks Electric Coop Corp - (AR),14289,SPSO,0 72949,AR,Southwestern Electric Power Co,17698,SPSO,0 72950,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72950,AR,Entergy Arkansas Inc,814,SRMV,0 +72950,AR,Entergy Arkansas LLC,814,SRMV,0 72951,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 72951,AR,Oklahoma Gas & Electric Co,14063,SPSO,0 72952,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 @@ -54680,7 +54544,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 72956,AR,Southwestern Electric Power Co,17698,SPSO,0 72957,AR,Oklahoma Gas & Electric Co,14063,SPSO,1 72958,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 -72958,AR,Entergy Arkansas Inc,814,SRMV,0 +72958,AR,Entergy Arkansas LLC,814,SRMV,0 72958,AR,Oklahoma Gas & Electric Co,14063,SPSO,0 72958,AR,Southwestern Electric Power Co,17698,SPSO,0 72959,AR,Arkansas Valley Elec Coop Corp,817,SRMV,1 @@ -56243,13 +56107,13 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75009,TX,"Denton County Elec Coop, Inc",5078,ERCT,1 75009,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,0 75010,TX,"Denton County Elec Coop, Inc",5078,ERCT,1 -75011,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75011,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75013,TX,"Denton County Elec Coop, Inc",5078,ERCT,1 75013,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,0 -75014,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75015,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75016,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75017,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75014,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75015,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75016,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75017,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75019,TX,"Denton County Elec Coop, Inc",5078,ERCT,1 75020,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,1 75021,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,1 @@ -56264,7 +56128,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75027,TX,"Denton County Elec Coop, Inc",5078,ERCT,1 75028,TX,"Denton County Elec Coop, Inc",5078,ERCT,1 75029,TX,"Denton County Elec Coop, Inc",5078,ERCT,1 -75030,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75030,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75032,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75033,TX,"Denton County Elec Coop, Inc",5078,ERCT,1 75034,TX,"Denton County Elec Coop, Inc",5078,ERCT,1 @@ -56289,7 +56153,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75050,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75051,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75052,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -75053,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75053,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75054,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75056,TX,"Denton County Elec Coop, Inc",5078,ERCT,1 75057,TX,"Denton County Elec Coop, Inc",5078,ERCT,1 @@ -56318,8 +56182,8 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75081,TX,City of Garland - (TX),6958,ERCT,1 75082,TX,City of Garland - (TX),6958,ERCT,1 75082,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,0 -75083,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75085,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75083,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75085,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75086,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,1 75087,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,1 75088,TX,City of Garland - (TX),6958,ERCT,1 @@ -56340,18 +56204,18 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75103,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75104,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75105,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -75106,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75106,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75109,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75110,TX,"Navarro County Elec Coop, Inc",13332,ERCT,1 75114,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75115,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75116,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75117,TX,"Farmers Electric Coop, Inc - (TX)",6182,ERCT,1 -75118,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75118,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75119,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -75120,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75120,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75121,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,1 -75123,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75123,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75124,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75125,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75126,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 @@ -56361,7 +56225,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75134,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75135,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,1 75137,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -75138,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75138,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75140,TX,"Farmers Electric Coop, Inc - (TX)",6182,ERCT,1 75140,TX,Southwestern Electric Power Co,17698,SPSO,0 75140,TX,"Wood County Electric Coop, Inc",20927,SPSO,0 @@ -56374,7 +56238,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75148,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75149,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75150,TX,City of Garland - (TX),6958,ERCT,1 -75151,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75151,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75152,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75153,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75154,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 @@ -56390,15 +56254,15 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75165,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75166,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,1 75167,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -75168,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75168,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75169,TX,"Farmers Electric Coop, Inc - (TX)",6182,ERCT,1 75172,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75173,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,1 75180,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75181,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75182,TX,City of Garland - (TX),6958,ERCT,1 -75185,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75187,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75185,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75187,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75189,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,1 75201,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75202,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 @@ -56419,8 +56283,8 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75218,TX,City of Garland - (TX),6958,ERCT,1 75219,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75220,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -75221,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75222,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75221,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75222,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75223,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75224,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75225,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 @@ -56447,74 +56311,74 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75247,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75248,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,1 75249,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -75250,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75250,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75251,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75252,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,1 75253,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75254,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -75260,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75261,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75262,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75263,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75264,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75265,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75266,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75267,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75260,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75261,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75262,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75263,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75264,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75265,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75266,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75267,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75270,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75275,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -75277,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75283,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75284,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75285,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75277,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75283,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75284,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75285,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75286,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75287,TX,"Denton County Elec Coop, Inc",5078,ERCT,1 75287,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,0 -75301,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75303,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75301,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75303,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75310,TX,TXU Energy Retail Co LP [Energy Future Holdings Corp],408224,ERCT,1 -75312,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75313,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75315,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75320,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75312,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75313,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75315,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75320,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75323,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -75326,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75326,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75334,TX,TXU Energy Retail Co LP [Energy Future Holdings Corp],408224,ERCT,1 -75336,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75339,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75336,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75339,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75340,TX,TXU Energy Retail Co LP [Energy Future Holdings Corp],408224,ERCT,1 -75342,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75342,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75343,TX,TXU Energy Retail Co LP [Energy Future Holdings Corp],408224,ERCT,1 75344,TX,TXU Energy Retail Co LP [Energy Future Holdings Corp],408224,ERCT,1 -75354,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75355,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75356,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75357,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75358,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75359,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75360,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75367,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75368,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75354,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75355,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75356,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75357,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75358,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75359,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75360,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75367,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75368,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75370,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,1 -75371,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75372,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75373,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75374,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75376,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75378,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75371,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75372,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75373,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75374,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75376,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75378,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75379,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,1 -75380,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75381,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75382,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75380,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75381,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75382,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75387,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -75389,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75390,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75391,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75392,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75393,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75394,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75395,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75397,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75398,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75389,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75390,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75391,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75392,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75393,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75394,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75395,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75397,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75398,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75401,TX,City of Greenville - (TX),7634,ERCT,1 75402,TX,City of Greenville - (TX),7634,ERCT,1 75403,TX,City of Greenville - (TX),7634,ERCT,1 @@ -56536,7 +56400,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75417,TX,Lamar County Elec Coop Assn,10649,ERCT,0 75417,TX,Southwestern Electric Power Co,17698,SPSO,0 75418,TX,Fannin County Electric Coop,6173,ERCT,1 -75420,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75420,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75421,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75422,TX,Sharyland Utilities LP,17008,ERCT,1 75423,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,1 @@ -56544,7 +56408,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75425,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75426,TX,Lamar County Elec Coop Assn,10649,ERCT,1 75428,TX,Sharyland Utilities LP,17008,ERCT,1 -75429,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75429,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75431,TX,Southwestern Electric Power Co,17698,SPSO,1 75432,TX,"Farmers Electric Coop, Inc - (TX)",6182,ERCT,1 75432,TX,Lamar County Elec Coop Assn,10649,ERCT,0 @@ -56560,7 +56424,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75439,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,1 75440,TX,"Farmers Electric Coop, Inc - (TX)",6182,ERCT,1 75440,TX,Southwestern Electric Power Co,17698,SPSO,0 -75441,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75441,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75442,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,1 75443,TX,Texas New Mexico Power Co [PNM Resources Inc],1174,ERCT,1 75444,TX,Southwestern Electric Power Co,17698,SPSO,1 @@ -56589,7 +56453,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75459,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,1 75460,TX,"Farmers Electric Coop, Inc - (TX)",6182,ERCT,1 75460,TX,Lamar County Elec Coop Assn,10649,ERCT,0 -75461,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75461,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75462,TX,Lamar County Electric Coop Association,61978,ERCT,1 75462,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,0 75462,TX,Texas New Mexico Power Co [PNM Resources Inc],1174,ERCT,0 @@ -56601,7 +56465,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75472,TX,"Farmers Electric Coop, Inc - (TX)",6182,ERCT,1 75473,TX,Lamar County Elec Coop Assn,10649,ERCT,1 75474,TX,"Farmers Electric Coop, Inc - (TX)",6182,ERCT,1 -75475,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75475,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75476,TX,Fannin County Electric Coop,62073,ERCT,1 75476,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,0 75477,TX,"Farmers Electric Coop, Inc - (TX)",6182,ERCT,1 @@ -56617,7 +56481,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75481,TX,Southwestern Electric Power Co,17698,SPSO,0 75482,TX,"Farmers Electric Coop, Inc - (TX)",6182,ERCT,1 75482,TX,Southwestern Electric Power Co,17698,SPSO,0 -75483,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75483,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75485,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,1 75486,TX,Fannin County Electric Coop,6173,ERCT,1 75487,TX,"Farmers Electric Coop, Inc - (TX)",6182,ERCT,1 @@ -56818,10 +56682,10 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75707,TX,Southwestern Electric Power Co [American Electric Power Co Inc],1164,SPSO,0 75708,TX,Southwestern Electric Power Co,17698,SPSO,1 75709,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -75710,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75711,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75712,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75713,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75710,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75711,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75712,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75713,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75750,TX,Southwestern Electric Power Co,17698,SPSO,1 75751,TX,Trinity Valley Elec Coop Inc,18976,ERCT,1 75752,TX,Trinity Valley Elec Coop Inc,18976,ERCT,1 @@ -56832,12 +56696,12 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75756,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75757,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75758,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -75759,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75759,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75760,TX,Cherokee County Elec Coop Assn,3470,ERCT,1 75760,TX,Southwestern Electric Power Co,17698,SPSO,0 75762,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75763,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -75764,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75764,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75765,TX,Southwestern Electric Power Co,17698,SPSO,1 75765,TX,Upshur Rural Elec Coop Corp,19579,SPSO,0 75765,TX,"Wood County Electric Coop, Inc",20927,SPSO,0 @@ -56845,27 +56709,27 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75766,TX,Southwestern Electric Power Co,17698,SPSO,0 75770,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75771,TX,Southwestern Electric Power Co,17698,SPSO,1 -75772,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75772,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75773,TX,Southwestern Electric Power Co,17698,SPSO,1 75773,TX,"Wood County Electric Coop, Inc",20927,SPSO,0 75778,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75779,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -75780,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75780,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75782,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75783,TX,Southwestern Electric Power Co,17698,SPSO,1 75783,TX,"Wood County Electric Coop, Inc",20927,SPSO,0 75784,TX,Cherokee County Elec Coop Assn,3470,ERCT,1 75784,TX,Southwestern Electric Power Co,17698,SPSO,0 75785,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -75788,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75788,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75789,TX,Cherokee County Elec Coop Assn,3470,ERCT,1 75789,TX,Southwestern Electric Power Co,17698,SPSO,0 75790,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75791,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75792,TX,Southwestern Electric Power Co,17698,SPSO,1 75797,TX,Southwestern Electric Power Co,17698,SPSO,1 -75798,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75799,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75798,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75799,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75801,TX,Entergy Texas Inc.,55937,SRMV,1 75801,TX,Houston County Elec Coop Inc,8898,ERCT,0 75802,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 @@ -56875,7 +56739,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75831,TX,Entergy Texas Inc.,55937,SRMV,1 75831,TX,Houston County Elec Coop Inc,8898,ERCT,0 75831,TX,"Navasota Valley Elec Coop, Inc",16146,ERCT,0 -75832,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75832,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75833,TX,Entergy Texas Inc.,55937,SRMV,1 75833,TX,Houston County Elec Coop Inc,8898,ERCT,0 75833,TX,Mid-South Electric Coop Assn,12452,ERCT,0 @@ -56902,7 +56766,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75847,TX,Entergy Texas Inc.,55937,SRMV,0 75847,TX,Houston County Elec Coop Inc,8898,ERCT,0 75848,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -75849,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75849,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75850,TX,Entergy Texas Inc.,55937,SRMV,1 75850,TX,Mid-South Electric Coop Assn,12452,ERCT,0 75851,TX,Entergy Texas Inc.,55937,SRMV,1 @@ -56933,11 +56797,11 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75886,TX,Trinity Valley Elec Coop Inc,18976,ERCT,1 75901,TX,Entergy Texas Inc.,55937,SRMV,1 75901,TX,Sam Houston Electric Coop Inc,16613,SRMV,0 -75902,TX,TXU Energy Retail Co LP,19327,ERCT,1 -75903,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75902,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +75903,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75904,TX,Entergy Texas Inc.,55937,SRMV,1 75904,TX,Houston County Elec Coop Inc,8898,ERCT,0 -75915,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75915,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75925,TX,Cherokee County Elec Coop Assn,3470,ERCT,1 75925,TX,Houston County Elec Coop Inc,8898,ERCT,0 75926,TX,Entergy Texas Inc.,55937,SRMV,1 @@ -56996,7 +56860,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75954,TX,Southwestern Electric Power Co,17698,SPSO,0 75956,TX,Entergy Texas Inc.,55937,SRMV,1 75956,TX,"Jasper-Newton Elec Coop, Inc",9668,ERCT,0 -75958,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75958,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75959,TX,Deep East Texas Elec Coop Inc,4975,ERCT,1 75959,TX,Southwestern Electric Power Co,17698,SPSO,0 75960,TX,Entergy Texas Inc.,55937,SRMV,1 @@ -57004,7 +56868,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75961,TX,Deep East Texas Elec Coop Inc,4975,ERCT,1 75961,TX,Southwestern Electric Power Co,17698,SPSO,0 75962,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -75963,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75963,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75964,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 75965,TX,"Rusk County Electric Coop, Inc",16461,SPSO,1 75965,TX,Southwestern Electric Power Co,17698,SPSO,0 @@ -57029,7 +56893,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75976,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,0 75977,TX,Entergy Texas Inc.,55937,SRMV,1 75977,TX,"Jasper-Newton Elec Coop, Inc",9668,ERCT,0 -75978,TX,TXU Energy Retail Co LP,19327,ERCT,1 +75978,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 75979,TX,Entergy Texas Inc.,55937,SRMV,1 75979,TX,"Jasper-Newton Elec Coop, Inc",9668,ERCT,0 75979,TX,Sam Houston Electric Coop Inc,16613,SRMV,0 @@ -57040,11 +56904,11 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 75990,TX,Entergy Texas Inc.,55937,SRMV,1 76001,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76002,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76003,TX,TXU Energy Retail Co LP,19327,ERCT,1 -76004,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76003,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +76004,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76005,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76006,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76007,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76007,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76008,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76009,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76010,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 @@ -57056,7 +56920,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 76016,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76017,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76018,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76019,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76019,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76020,TX,Wise Electric Coop Inc,20948,ERCT,1 76021,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76022,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 @@ -57091,13 +56955,13 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 76058,TX,United Electric Coop Service Inc - (TX),19490,ERCT,1 76059,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76060,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76061,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76061,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76063,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76064,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76065,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76066,TX,"Tri-County Electric Coop, Inc",19159,ERCT,1 76067,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76068,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76068,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76070,TX,Heart of Texas Electric Coop,55982,ERCT,1 76070,TX,United Electric Coop Service Inc - (TX),19490,ERCT,0 76071,TX,Wise Electric Coop Inc,20948,ERCT,1 @@ -57116,13 +56980,13 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 76092,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76093,TX,Heart of Texas Electric Coop,55982,ERCT,1 76093,TX,"HILCO Electric Cooperative, Inc.",8620,ERCT,0 -76094,TX,TXU Energy Retail Co LP,19327,ERCT,1 -76095,TX,TXU Energy Retail Co LP,19327,ERCT,1 -76096,TX,TXU Energy Retail Co LP,19327,ERCT,1 -76097,TX,TXU Energy Retail Co LP,19327,ERCT,1 -76098,TX,TXU Energy Retail Co LP,19327,ERCT,1 -76099,TX,TXU Energy Retail Co LP,19327,ERCT,1 -76101,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76094,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +76095,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +76096,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +76097,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +76098,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +76099,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +76101,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76102,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76103,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76104,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 @@ -57134,7 +56998,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 76110,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76111,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76112,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76113,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76113,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76114,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76115,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76116,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 @@ -57142,46 +57006,46 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 76118,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76119,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76120,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76121,TX,TXU Energy Retail Co LP,19327,ERCT,1 -76122,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76121,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +76122,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76123,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76124,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76124,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76126,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76127,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76129,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76130,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76130,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76131,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76132,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76133,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76134,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76135,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76136,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76136,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76137,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76140,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76147,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76147,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76148,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76150,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76150,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76155,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76161,TX,TXU Energy Retail Co LP,19327,ERCT,1 -76162,TX,TXU Energy Retail Co LP,19327,ERCT,1 -76163,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76161,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +76162,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +76163,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76164,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76166,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76166,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76177,TX,"Denton County Elec Coop, Inc",5078,ERCT,1 76177,TX,"Tri-County Electric Coop, Inc",19159,ERCT,0 76179,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76180,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76181,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76181,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76182,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76185,TX,TXU Energy Retail Co LP,19327,ERCT,1 -76191,TX,TXU Energy Retail Co LP,19327,ERCT,1 -76192,TX,TXU Energy Retail Co LP,19327,ERCT,1 -76193,TX,TXU Energy Retail Co LP,19327,ERCT,1 -76195,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76185,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +76191,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +76192,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +76193,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +76195,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76196,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76197,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76198,TX,TXU Energy Retail Co LP,19327,ERCT,1 -76199,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76198,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +76199,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76201,TX,City of Denton - (TX),5063,ERCT,1 76201,TX,"Denton County Elec Coop, Inc",5078,ERCT,0 76202,TX,City of Denton - (TX),5063,ERCT,1 @@ -57222,7 +57086,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 76240,TX,Cooke County Elec Coop Assn,4262,ERCT,1 76240,TX,"Denton County Elec Coop, Inc",5078,ERCT,0 76240,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,0 -76241,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76241,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76244,TX,"Denton County Elec Coop, Inc",5078,ERCT,1 76245,TX,"Grayson-Collin Elec Coop, Inc",7559,ERCT,1 76246,TX,Cooke County Elec Coop Assn,4262,ERCT,1 @@ -57270,13 +57134,13 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 76302,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76305,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76306,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76307,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76307,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76308,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76309,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76310,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76311,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76351,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76352,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76352,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76354,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76357,TX,Cotton Electric Coop Inc,61682,SPSO,1 76357,TX,J A C Electric Coop Inc,61891,ERCT,0 @@ -57291,7 +57155,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 76366,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,0 76366,TX,Texas New Mexico Power Co [PNM Resources Inc],1174,ERCT,0 76367,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -76369,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76369,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76370,TX,Fort Belknap Electric Coop Inc,6611,ERCT,1 76371,TX,AEP Texas North Co [American Electric Power Co Inc],1189,ERCT,1 76372,TX,Fort Belknap Electric Coop Inc,6611,ERCT,1 @@ -57326,7 +57190,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 76435,TX,Comanche County Elec Coop Assn,4295,ERCT,1 76436,TX,Heart of Texas Electric Coop,55982,ERCT,1 76437,TX,Comanche County Elec Coop Assn,4295,ERCT,1 -76439,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76439,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76442,TX,Comanche County Elec Coop Assn,4295,ERCT,1 76442,TX,Hamilton County Elec Coop Assn,7979,ERCT,0 76443,TX,"Coleman County Elec Coop, Inc",3938,ERCT,1 @@ -57353,14 +57217,14 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 76459,TX,Texas New Mexico Power Co [PNM Resources Inc],1174,ERCT,0 76460,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76460,TX,Texas New Mexico Power Co [PNM Resources Inc],1174,ERCT,0 -76461,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76461,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76462,TX,"Tri-County Electric Coop, Inc",19159,ERCT,1 76463,TX,Texas New Mexico Power Co [PNM Resources Inc],1174,ERCT,1 76464,TX,Comanche County Elec Coop Assn,4295,ERCT,1 76465,TX,Texas New Mexico Power Co [PNM Resources Inc],1174,ERCT,1 -76466,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76466,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76467,TX,United Electric Coop Service Inc - (TX),19490,ERCT,1 -76468,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76468,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76469,TX,AEP Texas North Co [American Electric Power Co Inc],1189,ERCT,1 76470,TX,Comanche County Elec Coop Assn,4295,ERCT,1 76471,TX,Comanche County Elec Coop Assn,4295,ERCT,1 @@ -57509,12 +57373,12 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 76599,TX,Heart of Texas Electric Coop,55982,ERCT,1 76621,TX,Heart of Texas Electric Coop,55982,ERCT,1 76622,TX,Heart of Texas Electric Coop,55982,ERCT,1 -76623,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76623,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76624,TX,Heart of Texas Electric Coop,55982,ERCT,1 76626,TX,"Navarro County Elec Coop, Inc",13332,ERCT,1 76627,TX,Heart of Texas Electric Coop,55982,ERCT,1 76627,TX,"HILCO Electric Cooperative, Inc.",8620,ERCT,0 -76628,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76628,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76629,TX,"Bartlett Electric Coop, Inc",1273,ERCT,1 76629,TX,Entergy Texas Inc.,55937,SRMV,0 76629,TX,Heart of Texas Electric Coop,55982,ERCT,0 @@ -57538,7 +57402,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 76648,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76649,TX,Heart of Texas Electric Coop,55982,ERCT,1 76649,TX,United Electric Coop Service Inc - (TX),19490,ERCT,0 -76650,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76650,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76651,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 76652,TX,Heart of Texas Electric Coop,55982,ERCT,1 76652,TX,"HILCO Electric Cooperative, Inc.",8620,ERCT,0 @@ -57605,8 +57469,8 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 76801,TX,Comanche County Elec Coop Assn,4295,ERCT,0 76801,TX,Hamilton County Elec Coop Assn,7979,ERCT,0 76802,TX,Comanche County Elec Coop Assn,4295,ERCT,1 -76803,TX,TXU Energy Retail Co LP,19327,ERCT,1 -76804,TX,TXU Energy Retail Co LP,19327,ERCT,1 +76803,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +76804,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 76820,TX,"Central Texas Elec Coop, Inc",3282,ERCT,1 76821,TX,"Coleman County Elec Coop, Inc",3938,ERCT,1 76823,TX,"Coleman County Elec Coop, Inc",3938,ERCT,1 @@ -59057,7 +58921,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 78681,TX,"Pedernales Electric Coop, Inc",14626,ERCT,0 78682,TX,"Bartlett Electric Coop, Inc",1273,ERCT,1 78683,TX,"Bartlett Electric Coop, Inc",1273,ERCT,1 -78691,TX,TXU Energy Retail Co LP,19327,ERCT,1 +78691,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 78701,TX,Austin Energy,1015,ERCT,1 78702,TX,Austin Energy,1015,ERCT,1 78703,TX,Austin Energy,1015,ERCT,1 @@ -59731,7 +59595,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 79510,TX,Comanche County Elec Coop Assn,4295,ERCT,0 79511,TX,Sharyland Utilities LP,17008,ERCT,1 79512,TX,Concho Valley Elec Coop Inc,4146,ERCT,1 -79516,TX,TXU Energy Retail Co LP,19327,ERCT,1 +79516,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 79517,TX,"Big Country Electric Coop, Inc",1591,ERCT,1 79517,TX,"Lyntegar Electric Coop, Inc",11364,SPSO,0 79518,TX,South Plains Electric Coop Inc,17561,ERCT,1 @@ -59775,7 +59639,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 79548,TX,"Big Country Electric Coop, Inc",1591,ERCT,1 79549,TX,"Big Country Electric Coop, Inc",1591,ERCT,1 79549,TX,South Plains Electric Coop Inc,17561,ERCT,0 -79550,TX,TXU Energy Retail Co LP,19327,ERCT,1 +79550,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 79553,TX,"Big Country Electric Coop, Inc",1591,ERCT,1 79556,TX,"Big Country Electric Coop, Inc",1591,ERCT,1 79556,TX,Taylor Electric Coop Inc - (TX),27369,ERCT,0 @@ -59811,10 +59675,10 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 79705,TX,Sharyland Utilities LP,17008,ERCT,1 79706,TX,Sharyland Utilities LP,17008,ERCT,1 79707,TX,Sharyland Utilities LP,17008,ERCT,1 -79708,TX,TXU Energy Retail Co LP,19327,ERCT,1 -79710,TX,TXU Energy Retail Co LP,19327,ERCT,1 -79711,TX,TXU Energy Retail Co LP,19327,ERCT,1 -79712,TX,TXU Energy Retail Co LP,19327,ERCT,1 +79708,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +79710,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +79711,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +79712,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 79713,TX,"Lyntegar Electric Coop, Inc",11364,SPSO,1 79714,TX,"Lyntegar Electric Coop, Inc",11364,SPSO,1 79714,TX,Southwestern Public Service Co,17718,SPSO,0 @@ -59823,12 +59687,12 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 79720,TX,"Big Country Electric Coop, Inc",1591,ERCT,1 79720,TX,Concho Valley Elec Coop Inc,4146,ERCT,0 79720,TX,"Lyntegar Electric Coop, Inc",11364,SPSO,0 -79721,TX,TXU Energy Retail Co LP,19327,ERCT,1 +79721,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 79730,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 79730,TX,Texas New Mexico Power Co [PNM Resources Inc],1174,ERCT,0 79731,TX,AEP Texas North Co [American Electric Power Co Inc],1189,ERCT,1 79731,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,0 -79733,TX,TXU Energy Retail Co LP,19327,ERCT,1 +79733,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 79734,TX,"Rio Grande Electric Coop, Inc",16057,ERCT,1 79735,TX,"Rio Grande Electric Coop, Inc",16057,ERCT,1 79735,TX,"Southwest Texas Elec Coop, Inc",17693,ERCT,0 @@ -59854,7 +59718,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 79756,TX,Texas New Mexico Power Co [PNM Resources Inc],1174,ERCT,0 79758,TX,Sharyland Utilities LP,17008,ERCT,1 79759,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 -79760,TX,TXU Energy Retail Co LP,19327,ERCT,1 +79760,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 79761,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 79762,TX,Sharyland Utilities LP,17008,ERCT,1 79763,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 @@ -59862,11 +59726,11 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 79765,TX,Oncor Electric Delivery [Energy Future Holdings Corp],1173,ERCT,1 79765,TX,Sharyland Utilities LP,1268,ERCT,0 79766,TX,Sharyland Utilities LP,17008,ERCT,1 -79768,TX,TXU Energy Retail Co LP,19327,ERCT,1 -79769,TX,TXU Energy Retail Co LP,19327,ERCT,1 +79768,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 +79769,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 79770,TX,Southwestern Public Service Co,17718,SPSO,1 79772,TX,"Rio Grande Electric Coop, Inc",16057,ERCT,1 -79776,TX,TXU Energy Retail Co LP,19327,ERCT,1 +79776,TX,"TXU Energy Retail Co, LLC",19327,ERCT,1 79777,TX,Texas New Mexico Power Co [PNM Resources Inc],1174,ERCT,1 79778,TX,"Southwest Texas Elec Coop, Inc",17693,ERCT,1 79780,TX,AEP Texas North Co [American Electric Power Co Inc],1189,ERCT,1 @@ -60159,20 +60023,20 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 80294,CO,Public Service Co of Colorado,15466,RMPA,1 80295,CO,Public Service Co of Colorado,15466,RMPA,1 80299,CO,Public Service Co of Colorado,15466,RMPA,1 -80301,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 +80301,CO,"Poudre Valley REA, Inc",15257,RMPA,1 80301,CO,Public Service Co of Colorado,15466,RMPA,0 80301,CO,"United Power, Inc",19499,RMPA,0 -80302,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 +80302,CO,"Poudre Valley REA, Inc",15257,RMPA,1 80302,CO,Public Service Co of Colorado,15466,RMPA,0 80302,CO,"United Power, Inc",19499,RMPA,0 80303,CO,Public Service Co of Colorado,15466,RMPA,1 80303,CO,"United Power, Inc",19499,RMPA,0 -80304,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 +80304,CO,"Poudre Valley REA, Inc",15257,RMPA,1 80304,CO,Public Service Co of Colorado,15466,RMPA,0 80305,CO,Public Service Co of Colorado,15466,RMPA,1 80306,CO,Public Service Co of Colorado,15466,RMPA,1 80307,CO,Public Service Co of Colorado,15466,RMPA,1 -80308,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 +80308,CO,"Poudre Valley REA, Inc",15257,RMPA,1 80309,CO,Public Service Co of Colorado,15466,RMPA,1 80310,CO,Public Service Co of Colorado,15466,RMPA,1 80314,CO,Public Service Co of Colorado,15466,RMPA,1 @@ -60243,7 +60107,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 80452,CO,"United Power, Inc",19499,RMPA,0 80453,CO,Public Service Co of Colorado,15466,RMPA,1 80454,CO,Public Service Co of Colorado,15466,RMPA,1 -80455,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 +80455,CO,"Poudre Valley REA, Inc",15257,RMPA,1 80455,CO,Public Service Co of Colorado,15466,RMPA,0 80456,CO,Intermountain Rural Elec Assn,9336,RMPA,1 80456,CO,Public Service Co of Colorado,15466,RMPA,0 @@ -60284,7 +60148,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 80480,CO,Public Service Co of Colorado,15466,RMPA,0 80480,CO,Yampa Valley Electric Assn Inc,21081,RMPA,0 80481,CO,"Mountain Parks Electric, Inc",13050,RMPA,1 -80481,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80481,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80481,CO,Public Service Co of Colorado,15466,RMPA,0 80482,CO,"Mountain Parks Electric, Inc",13050,RMPA,1 80482,CO,Public Service Co of Colorado,15466,RMPA,0 @@ -60297,101 +60161,101 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 80498,CO,Public Service Co of Colorado,15466,RMPA,0 80498,CO,Yampa Valley Electric Assn Inc,21081,RMPA,0 80501,CO,City of Longmont,11187,RMPA,1 -80501,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80501,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80501,CO,Public Service Co of Colorado,15466,RMPA,0 80501,CO,"United Power, Inc",19499,RMPA,0 80502,CO,City of Longmont,11187,RMPA,1 80503,CO,City of Longmont,11187,RMPA,1 -80503,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80503,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80503,CO,Public Service Co of Colorado,15466,RMPA,0 80503,CO,"United Power, Inc",19499,RMPA,0 80504,CO,City of Longmont,11187,RMPA,1 -80504,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80504,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80504,CO,Public Service Co of Colorado,15466,RMPA,0 80504,CO,Town of Frederick - (CO),6752,RMPA,0 80504,CO,"United Power, Inc",19499,RMPA,0 80510,CO,"Mountain Parks Electric, Inc",13050,RMPA,1 -80510,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80510,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80510,CO,Public Service Co of Colorado,15466,RMPA,0 80511,CO,Public Service Co of Colorado,15466,RMPA,1 80512,CO,"Mountain Parks Electric, Inc",13050,RMPA,1 -80512,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80512,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80512,CO,Public Service Co of Colorado,15466,RMPA,0 -80513,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 +80513,CO,"Poudre Valley REA, Inc",15257,RMPA,1 80513,CO,Public Service Co of Colorado,15466,RMPA,0 80514,CO,Town of Frederick - (CO),6752,RMPA,1 80514,CO,"United Power, Inc",19499,RMPA,0 -80515,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 +80515,CO,"Poudre Valley REA, Inc",15257,RMPA,1 80515,CO,Public Service Co of Colorado,15466,RMPA,0 80516,CO,Public Service Co of Colorado,15466,RMPA,1 80516,CO,Town of Frederick - (CO),6752,RMPA,0 80516,CO,"United Power, Inc",19499,RMPA,0 80517,CO,"Mountain Parks Electric, Inc",13050,RMPA,1 -80517,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80517,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80517,CO,Public Service Co of Colorado,15466,RMPA,0 80517,CO,Town of Estes Park,5997,RMPA,0 80520,CO,Town of Frederick - (CO),6752,RMPA,1 80520,CO,"United Power, Inc",19499,RMPA,0 80521,CO,City of Fort Collins - (CO),6604,RMPA,1 -80521,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80521,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80521,CO,Public Service Co of Colorado,15466,RMPA,0 80522,CO,City of Fort Collins - (CO),6604,RMPA,1 80523,CO,City of Loveland - (CO),11256,RMPA,1 80524,CO,City of Fort Collins - (CO),6604,RMPA,1 -80524,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80524,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80524,CO,Public Service Co of Colorado,15466,RMPA,0 80525,CO,City of Fort Collins - (CO),6604,RMPA,1 -80525,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80525,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80525,CO,Public Service Co of Colorado,15466,RMPA,0 80526,CO,City of Fort Collins - (CO),6604,RMPA,1 80526,CO,City of Loveland - (CO),11256,RMPA,0 -80526,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80526,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80526,CO,Public Service Co of Colorado,15466,RMPA,0 80527,CO,City of Fort Collins - (CO),6604,RMPA,1 80528,CO,City of Fort Collins - (CO),6604,RMPA,1 -80528,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80528,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80528,CO,Public Service Co of Colorado,15466,RMPA,0 80530,CO,Town of Frederick - (CO),6752,RMPA,1 80530,CO,"United Power, Inc",19499,RMPA,0 -80532,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 -80533,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 -80534,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 +80532,CO,"Poudre Valley REA, Inc",15257,RMPA,1 +80533,CO,"Poudre Valley REA, Inc",15257,RMPA,1 +80534,CO,"Poudre Valley REA, Inc",15257,RMPA,1 80534,CO,Public Service Co of Colorado,15466,RMPA,0 80534,CO,"United Power, Inc",19499,RMPA,0 -80535,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 +80535,CO,"Poudre Valley REA, Inc",15257,RMPA,1 80535,CO,Public Service Co of Colorado,15466,RMPA,0 80536,CO,"High West Energy, Inc",27058,RMPA,1 -80536,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80536,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80536,CO,Public Service Co of Colorado,15466,RMPA,0 80537,CO,City of Loveland - (CO),11256,RMPA,1 -80537,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80537,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80537,CO,Public Service Co of Colorado,15466,RMPA,0 80538,CO,City of Loveland - (CO),11256,RMPA,1 -80538,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80538,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80538,CO,Public Service Co of Colorado,15466,RMPA,0 80539,CO,City of Loveland - (CO),11256,RMPA,1 80540,CO,"Mountain Parks Electric, Inc",13050,RMPA,1 -80540,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80540,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80540,CO,Public Service Co of Colorado,15466,RMPA,0 -80541,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 -80542,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 +80541,CO,"Poudre Valley REA, Inc",15257,RMPA,1 +80542,CO,"Poudre Valley REA, Inc",15257,RMPA,1 80542,CO,Public Service Co of Colorado,15466,RMPA,0 80542,CO,"United Power, Inc",19499,RMPA,0 -80543,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 +80543,CO,"Poudre Valley REA, Inc",15257,RMPA,1 80543,CO,Public Service Co of Colorado,15466,RMPA,0 80543,CO,"United Power, Inc",19499,RMPA,0 80544,CO,Public Service Co of Colorado,15466,RMPA,1 80545,CO,"Mountain Parks Electric, Inc",13050,RMPA,1 -80545,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80545,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80545,CO,Public Service Co of Colorado,15466,RMPA,0 -80546,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 -80547,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 +80546,CO,"Poudre Valley REA, Inc",15257,RMPA,1 +80547,CO,"Poudre Valley REA, Inc",15257,RMPA,1 80547,CO,Public Service Co of Colorado,15466,RMPA,0 -80549,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 +80549,CO,"Poudre Valley REA, Inc",15257,RMPA,1 80549,CO,Public Service Co of Colorado,15466,RMPA,0 -80550,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 +80550,CO,"Poudre Valley REA, Inc",15257,RMPA,1 80550,CO,Public Service Co of Colorado,15466,RMPA,0 -80551,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 +80551,CO,"Poudre Valley REA, Inc",15257,RMPA,1 80553,CO,City of Fort Collins - (CO),6604,RMPA,1 80601,CO,"United Power, Inc",19499,RMPA,1 80602,CO,Public Service Co of Colorado,15466,RMPA,1 @@ -60399,7 +60263,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 80603,CO,Public Service Co of Colorado,15466,RMPA,1 80603,CO,"United Power, Inc",19499,RMPA,0 80610,CO,"High West Energy, Inc",27058,RMPA,1 -80610,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80610,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80610,CO,Public Service Co of Colorado,15466,RMPA,0 80610,CO,"United Power, Inc",19499,RMPA,0 80611,CO,"High West Energy, Inc",27058,RMPA,1 @@ -60407,9 +60271,9 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 80611,CO,Public Service Co of Colorado,15466,RMPA,0 80611,CO,"United Power, Inc",19499,RMPA,0 80612,CO,"High West Energy, Inc",27058,RMPA,1 -80612,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80612,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80614,CO,Public Service Co of Colorado,15466,RMPA,1 -80615,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 +80615,CO,"Poudre Valley REA, Inc",15257,RMPA,1 80615,CO,Public Service Co of Colorado,15466,RMPA,0 80615,CO,"United Power, Inc",19499,RMPA,0 80620,CO,Public Service Co of Colorado,15466,RMPA,1 @@ -60421,12 +60285,12 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 80624,CO,Morgan County Rural Elec Assn,12860,RMPA,1 80624,CO,Public Service Co of Colorado,15466,RMPA,0 80624,CO,"United Power, Inc",19499,RMPA,0 -80631,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 +80631,CO,"Poudre Valley REA, Inc",15257,RMPA,1 80631,CO,Public Service Co of Colorado,15466,RMPA,0 80631,CO,"United Power, Inc",19499,RMPA,0 80632,CO,Public Service Co of Colorado,15466,RMPA,1 80633,CO,Public Service Co of Colorado,15466,RMPA,1 -80634,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 +80634,CO,"Poudre Valley REA, Inc",15257,RMPA,1 80634,CO,Public Service Co of Colorado,15466,RMPA,0 80634,CO,"United Power, Inc",19499,RMPA,0 80638,CO,Public Service Co of Colorado,15466,RMPA,1 @@ -60446,11 +60310,11 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 80645,CO,"United Power, Inc",19499,RMPA,0 80646,CO,Public Service Co of Colorado,15466,RMPA,1 80648,CO,"High West Energy, Inc",27058,RMPA,1 -80648,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80648,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80648,CO,Public Service Co of Colorado,15466,RMPA,0 80648,CO,"United Power, Inc",19499,RMPA,0 80649,CO,Morgan County Rural Elec Assn,12860,RMPA,1 -80650,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,1 +80650,CO,"Poudre Valley REA, Inc",15257,RMPA,1 80650,CO,Public Service Co of Colorado,15466,RMPA,0 80651,CO,Public Service Co of Colorado,15466,RMPA,1 80651,CO,"United Power, Inc",19499,RMPA,0 @@ -60474,7 +60338,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 80728,CO,Morgan County Rural Elec Assn,12860,RMPA,0 80729,CO,"High West Energy, Inc",27058,RMPA,1 80729,CO,Morgan County Rural Elec Assn,12860,RMPA,0 -80729,CO,"Poudre Valley Associated Services, Inc.",15257,RMPA,0 +80729,CO,"Poudre Valley REA, Inc",15257,RMPA,0 80729,CO,Public Service Co of Colorado,15466,RMPA,0 80731,CO,Highline Electric Assn,8570,RMPA,1 80732,CO,"High West Energy, Inc",27058,RMPA,1 @@ -60532,22 +60396,22 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 80808,CO,Intermountain Rural Elec Assn,9336,RMPA,1 80808,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 80808,CO,Southeast Colorado Power Assn,17592,RMPA,0 -80809,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80809,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80809,CO,Intermountain Rural Elec Assn,9336,RMPA,0 80810,CO,K C Electric Association,10066,RMPA,1 80810,CO,Southeast Colorado Power Assn,17592,RMPA,0 80810,CO,"Wheatland Electric Coop, Inc",20510,SPNO,0 80812,CO,K C Electric Association,10066,RMPA,1 80812,CO,Y-W Electric Assn Inc,21075,RMPA,0 -80813,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80813,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80813,CO,Intermountain Rural Elec Assn,9336,RMPA,0 -80814,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80814,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80814,CO,Intermountain Rural Elec Assn,9336,RMPA,0 80815,CO,K C Electric Association,10066,RMPA,1 80815,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 -80816,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80816,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80816,CO,Intermountain Rural Elec Assn,9336,RMPA,0 -80817,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80817,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80817,CO,City of Fountain,6638,RMPA,0 80817,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 80818,CO,Intermountain Rural Elec Assn,9336,RMPA,1 @@ -60556,14 +60420,14 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 80818,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 80818,CO,Y-W Electric Assn Inc,21075,RMPA,0 80819,CO,Intermountain Rural Elec Assn,9336,RMPA,1 -80820,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80820,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80820,CO,Intermountain Rural Elec Assn,9336,RMPA,0 80820,CO,Sangre De Cristo Elec Assn Inc,16649,RMPA,0 80821,CO,K C Electric Association,10066,RMPA,1 80821,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 80822,CO,K C Electric Association,10066,RMPA,1 80822,CO,Y-W Electric Assn Inc,21075,RMPA,0 -80823,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80823,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80823,CO,K C Electric Association,10066,RMPA,0 80823,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 80823,CO,Southeast Colorado Power Assn,17592,RMPA,0 @@ -60575,7 +60439,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 80826,CO,"Mountain View Elec Assn, Inc",13058,RMPA,1 80827,CO,Intermountain Rural Elec Assn,9336,RMPA,1 80828,CO,"Mountain View Elec Assn, Inc",13058,RMPA,1 -80829,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80829,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80829,CO,City of Colorado Springs - (CO),3989,RMPA,0 80830,CO,"Mountain View Elec Assn, Inc",13058,RMPA,1 80831,CO,City of Colorado Springs - (CO),3989,RMPA,1 @@ -60588,53 +60452,53 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 80834,CO,Y-W Electric Assn Inc,21075,RMPA,0 80835,CO,"Mountain View Elec Assn, Inc",13058,RMPA,1 80836,CO,K C Electric Association,10066,RMPA,1 -80840,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80840,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80840,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 80841,CO,Mountain View Electric Association Inc,62321,RMPA,1 -80860,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80860,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80861,CO,K C Electric Association,10066,RMPA,1 80862,CO,K C Electric Association,10066,RMPA,1 80862,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 -80863,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80863,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80863,CO,Intermountain Rural Elec Assn,9336,RMPA,0 80864,CO,"Mountain View Elec Assn, Inc",13058,RMPA,1 80864,CO,Southeast Colorado Power Assn,17592,RMPA,0 80866,CO,Intermountain Rural Elec Assn,9336,RMPA,1 80901,CO,City of Colorado Springs - (CO),3989,RMPA,1 -80902,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80902,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80902,CO,City of Colorado Springs - (CO),3989,RMPA,0 80903,CO,City of Colorado Springs - (CO),3989,RMPA,1 -80904,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80904,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80904,CO,City of Colorado Springs - (CO),3989,RMPA,0 80904,CO,Intermountain Rural Elec Assn,9336,RMPA,0 80904,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 80905,CO,City of Colorado Springs - (CO),3989,RMPA,1 -80906,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80906,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80906,CO,City of Colorado Springs - (CO),3989,RMPA,0 80907,CO,City of Colorado Springs - (CO),3989,RMPA,1 80908,CO,City of Colorado Springs - (CO),3989,RMPA,1 80908,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 80909,CO,City of Colorado Springs - (CO),3989,RMPA,1 -80910,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80910,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80910,CO,City of Colorado Springs - (CO),3989,RMPA,0 -80911,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80911,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80911,CO,City of Colorado Springs - (CO),3989,RMPA,0 80911,CO,City of Fountain,6638,RMPA,0 80911,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 80912,CO,"Mountain View Elec Assn, Inc",13058,RMPA,1 -80913,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80913,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80913,CO,City of Colorado Springs - (CO),3989,RMPA,0 80914,CO,City of Colorado Springs - (CO),3989,RMPA,1 80915,CO,City of Colorado Springs - (CO),3989,RMPA,1 80915,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 -80916,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80916,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80916,CO,City of Colorado Springs - (CO),3989,RMPA,0 80916,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 80917,CO,City of Colorado Springs - (CO),3989,RMPA,1 80917,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 80918,CO,City of Colorado Springs - (CO),3989,RMPA,1 80918,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 -80919,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80919,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80919,CO,City of Colorado Springs - (CO),3989,RMPA,0 80919,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 80920,CO,City of Colorado Springs - (CO),3989,RMPA,1 @@ -60647,15 +60511,15 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 80923,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 80924,CO,City of Colorado Springs - (CO),3989,RMPA,1 80924,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 -80925,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80925,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80925,CO,City of Colorado Springs - (CO),3989,RMPA,0 80925,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 -80926,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80926,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80926,CO,City of Colorado Springs - (CO),3989,RMPA,0 80926,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 80927,CO,City of Colorado Springs - (CO),3989,RMPA,1 80927,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 -80928,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +80928,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 80928,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 80928,CO,Southeast Colorado Power Assn,17592,RMPA,0 80929,CO,City of Colorado Springs - (CO),3989,RMPA,1 @@ -60689,41 +60553,41 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 80977,CO,City of Colorado Springs - (CO),3989,RMPA,1 80995,CO,City of Colorado Springs - (CO),3989,RMPA,1 80997,CO,"Mountain View Elec Assn, Inc",13058,RMPA,1 -81001,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81001,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81001,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 81002,CO,Black Hills Colorado Electric Utility Co LP,407959,RMPA,1 -81003,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 -81004,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81003,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 +81004,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81004,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 -81005,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81005,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81005,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 -81006,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81006,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81006,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 81006,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 -81007,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81007,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81007,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 81007,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 -81008,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81008,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81008,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 81009,CO,Black Hills Colorado Electric Utility Co LP,407959,RMPA,1 81010,CO,Black Hills Colorado Electric Utility Co LP,407959,RMPA,1 81011,CO,Black Hills Colorado Electric Utility Co LP,407959,RMPA,1 81012,CO,Black Hills Colorado Electric Utility Co LP,407959,RMPA,1 -81019,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81019,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81019,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 81020,CO,"San Isabel Electric Assn, Inc",16616,RMPA,1 -81021,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81021,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81021,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 81021,CO,Southeast Colorado Power Assn,17592,RMPA,0 -81022,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81022,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81022,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 -81023,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81023,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81023,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 81024,CO,"San Isabel Electric Assn, Inc",16616,RMPA,1 -81025,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81025,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81025,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 81025,CO,Southeast Colorado Power Assn,17592,RMPA,0 -81027,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81027,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81027,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 81027,CO,Southeast Colorado Power Assn,17592,RMPA,0 81027,CO,Southwestern Electric Coop Inc - (NM),17715,AZNM,0 @@ -60732,72 +60596,72 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 81030,CO,Black Hills Colorado Electric Utility Co LP,407959,RMPA,1 81030,CO,La Junta Municipal Utilities,61962,RMPA,0 81033,CO,Black Hills Colorado Electric Utility Co LP,407959,RMPA,1 -81034,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81034,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81036,CO,K C Electric Association,10066,RMPA,1 81036,CO,Southeast Colorado Power Assn,17592,RMPA,0 81038,CO,K C Electric Association,10066,RMPA,1 -81039,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81039,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81039,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 81039,CO,Southeast Colorado Power Assn,17592,RMPA,0 -81040,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81040,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81040,CO,Public Service Co of Colorado,15466,RMPA,0 81040,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 81040,CO,Sangre De Cristo Elec Assn Inc,16649,RMPA,0 81041,CO,Southeast Colorado Power Assn,17592,RMPA,1 81043,CO,Southeast Colorado Power Assn,17592,RMPA,1 -81044,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81044,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81044,CO,Southeast Colorado Power Assn,17592,RMPA,0 -81045,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81045,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81045,CO,K C Electric Association,10066,RMPA,0 81045,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 81045,CO,Southeast Colorado Power Assn,17592,RMPA,0 81046,CO,"San Isabel Electric Assn, Inc",16616,RMPA,1 81047,CO,Southeast Colorado Power Assn,17592,RMPA,1 81047,CO,"Wheatland Electric Coop, Inc",20510,SPNO,0 -81049,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81049,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81049,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 81049,CO,Southeast Colorado Power Assn,17592,RMPA,0 81049,CO,Southwestern Electric Coop Inc - (NM),17715,AZNM,0 -81050,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81050,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81050,CO,Southeast Colorado Power Assn,17592,RMPA,0 -81052,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81052,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81052,CO,Southeast Colorado Power Assn,17592,RMPA,0 -81054,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81054,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81054,CO,Southeast Colorado Power Assn,17592,RMPA,0 81055,CO,Public Service Co of Colorado,15466,RMPA,1 81055,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 -81057,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81057,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81057,CO,Southeast Colorado Power Assn,17592,RMPA,0 -81058,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 -81059,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81058,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 +81059,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81059,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 -81062,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81062,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81062,CO,Southeast Colorado Power Assn,17592,RMPA,0 -81063,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81063,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81063,CO,"Mountain View Elec Assn, Inc",13058,RMPA,0 81063,CO,Southeast Colorado Power Assn,17592,RMPA,0 -81064,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81064,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81064,CO,Southeast Colorado Power Assn,17592,RMPA,0 81064,CO,Southwestern Electric Coop Inc - (NM),17715,AZNM,0 81064,CO,"Tri-County Electric Coop, Inc",19160,SPSO,0 -81067,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81067,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81067,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 81067,CO,Southeast Colorado Power Assn,17592,RMPA,0 -81069,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81069,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81069,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 81071,CO,K C Electric Association,10066,RMPA,1 81071,CO,Southeast Colorado Power Assn,17592,RMPA,0 81071,CO,"Wheatland Electric Coop, Inc",20510,SPNO,0 -81073,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81073,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81073,CO,Southeast Colorado Power Assn,17592,RMPA,0 -81076,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81076,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81076,CO,Southeast Colorado Power Assn,17592,RMPA,0 -81077,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81077,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81081,CO,"San Isabel Electric Assn, Inc",16616,RMPA,1 81082,CO,"San Isabel Electric Assn, Inc",16616,RMPA,1 81084,CO,Southeast Colorado Power Assn,17592,RMPA,1 81087,CO,Southeast Colorado Power Assn,17592,RMPA,1 -81089,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81089,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81089,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 81090,CO,Southeast Colorado Power Assn,17592,RMPA,1 81090,CO,"Tri-County Electric Coop, Inc",19160,SPSO,0 @@ -60818,7 +60682,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 81123,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 81123,CO,"San Luis Valley R E C, Inc",16603,RMPA,0 81124,CO,"San Luis Valley R E C, Inc",16603,RMPA,1 -81125,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81125,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81125,CO,Public Service Co of Colorado,15466,RMPA,0 81125,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 81125,CO,"San Luis Valley R E C, Inc",16603,RMPA,0 @@ -60831,7 +60695,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 81130,CO,"La Plata Electric Assn, Inc",10539,RMPA,0 81130,CO,Public Service Co of Colorado,15466,RMPA,0 81130,CO,"San Luis Valley R E C, Inc",16603,RMPA,0 -81131,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81131,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81131,CO,Public Service Co of Colorado,15466,RMPA,0 81131,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 81131,CO,"San Luis Valley R E C, Inc",16603,RMPA,0 @@ -60851,13 +60715,13 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 81140,CO,Public Service Co of Colorado,15466,RMPA,1 81140,CO,"San Luis Valley R E C, Inc",16603,RMPA,0 81141,CO,Public Service Co of Colorado,15466,RMPA,1 -81143,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81143,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81143,CO,Public Service Co of Colorado,15466,RMPA,0 81143,CO,"San Luis Valley R E C, Inc",16603,RMPA,0 81143,CO,Sangre De Cristo Elec Assn Inc,16649,RMPA,0 81144,CO,Public Service Co of Colorado,15466,RMPA,1 81144,CO,"San Luis Valley R E C, Inc",16603,RMPA,0 -81146,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81146,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81146,CO,Public Service Co of Colorado,15466,RMPA,0 81146,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 81146,CO,"San Luis Valley R E C, Inc",16603,RMPA,0 @@ -60875,12 +60739,12 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 81154,CO,"La Plata Electric Assn, Inc",10539,RMPA,1 81154,CO,Public Service Co of Colorado,15466,RMPA,0 81154,CO,"San Luis Valley R E C, Inc",16603,RMPA,0 -81155,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81155,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81155,CO,Public Service Co of Colorado,15466,RMPA,0 81155,CO,"San Luis Valley R E C, Inc",16603,RMPA,0 81155,CO,Sangre De Cristo Elec Assn Inc,16649,RMPA,0 81157,CO,"La Plata Electric Assn, Inc",10539,RMPA,1 -81201,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81201,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81201,CO,Gunnison County Elec Assn.,7787,RMPA,0 81201,CO,Intermountain Rural Elec Assn,9336,RMPA,0 81201,CO,Public Service Co of Colorado,15466,RMPA,0 @@ -60892,7 +60756,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 81211,CO,Intermountain Rural Elec Assn,9336,RMPA,0 81211,CO,Public Service Co of Colorado,15466,RMPA,0 81211,CO,Sangre De Cristo Elec Assn Inc,16649,RMPA,0 -81212,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81212,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81212,CO,Intermountain Rural Elec Assn,9336,RMPA,0 81212,CO,Sangre De Cristo Elec Assn Inc,16649,RMPA,0 81215,CO,Black Hills Colorado Electric Utility Co LP,407959,RMPA,1 @@ -60900,16 +60764,16 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 81220,CO,Gunnison County Elec Assn.,7787,RMPA,0 81220,CO,"San Miguel Power Assn, Inc",16622,RMPA,0 81221,CO,Black Hills Colorado Electric Utility Co LP,407959,RMPA,1 -81222,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81222,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81222,CO,Public Service Co of Colorado,15466,RMPA,0 81222,CO,Sangre De Cristo Elec Assn Inc,16649,RMPA,0 -81223,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81223,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81223,CO,Public Service Co of Colorado,15466,RMPA,0 81223,CO,Sangre De Cristo Elec Assn Inc,16649,RMPA,0 81224,CO,Gunnison County Elec Assn.,7787,RMPA,1 81224,CO,Public Service Co of Colorado,15466,RMPA,0 81225,CO,Gunnison County Elec Assn.,7787,RMPA,1 -81226,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81226,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81226,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 81226,CO,Sangre De Cristo Elec Assn Inc,16649,RMPA,0 81227,CO,Sangre De Cristo Elec Assn Inc,16649,RMPA,1 @@ -60922,9 +60786,9 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 81230,CO,Gunnison County Elec Assn.,7787,RMPA,0 81230,CO,Public Service Co of Colorado,15466,RMPA,0 81231,CO,City of Gunnison - (CO),7826,RMPA,1 -81232,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81232,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81232,CO,Sangre De Cristo Elec Assn Inc,16649,RMPA,0 -81233,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81233,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81233,CO,Public Service Co of Colorado,15466,RMPA,0 81233,CO,Sangre De Cristo Elec Assn Inc,16649,RMPA,0 81235,CO,Delta Montrose Electric Assn,5086,RMPA,1 @@ -60938,23 +60802,23 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 81236,CO,Sangre De Cristo Elec Assn Inc,16649,RMPA,0 81237,CO,Gunnison County Elec Assn.,7787,RMPA,1 81239,CO,Gunnison County Elec Assn.,7787,RMPA,1 -81240,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81240,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81241,CO,Gunnison County Elec Assn.,7787,RMPA,1 81242,CO,Public Service Co of Colorado,15466,RMPA,1 81243,CO,Delta Montrose Electric Assn,5086,RMPA,1 81243,CO,Gunnison County Elec Assn.,7787,RMPA,0 81243,CO,"San Miguel Power Assn, Inc",16622,RMPA,0 -81244,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81244,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81247,CO,City of Gunnison - (CO),7826,RMPA,1 81248,CO,Gunnison County Elec Assn.,7787,RMPA,1 81251,CO,Intermountain Rural Elec Assn,9336,RMPA,1 81251,CO,Public Service Co of Colorado,15466,RMPA,0 81251,CO,Sangre De Cristo Elec Assn Inc,16649,RMPA,0 -81252,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81252,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81252,CO,Public Service Co of Colorado,15466,RMPA,0 81252,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 81252,CO,Sangre De Cristo Elec Assn Inc,16649,RMPA,0 -81253,CO,Black Hills/Colorado Elec.Util,56146,RMPA,1 +81253,CO,"Black Hills Colorado Electric, LLC",56146,RMPA,1 81253,CO,"San Isabel Electric Assn, Inc",16616,RMPA,0 81253,CO,Sangre De Cristo Elec Assn Inc,16649,RMPA,0 81290,CO,Black Hills Colorado Electric Utility Co LP,407959,RMPA,1 @@ -61149,27 +61013,27 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 81657,CO,Public Service Co of Colorado,15466,RMPA,0 81657,CO,Yampa Valley Electric Assn Inc,21081,RMPA,0 81658,CO,Public Service Co of Colorado,15466,RMPA,1 -82001,WY,Cheyenne Light Fuel & Power d/b/a Black Hills Energy,3461,RMPA,1 +82001,WY,Cheyenne Light Fuel & Power d/b/a Black,3461,RMPA,1 82001,WY,"High West Energy, Inc",27058,RMPA,0 -82002,WY,Cheyenne Light Fuel & Power d/b/a Black Hills Energy,3461,RMPA,1 -82003,WY,Cheyenne Light Fuel & Power d/b/a Black Hills Energy,3461,RMPA,1 -82005,WY,Cheyenne Light Fuel & Power d/b/a Black Hills Energy,3461,RMPA,1 -82006,WY,Cheyenne Light Fuel & Power d/b/a Black Hills Energy,3461,RMPA,1 -82007,WY,Cheyenne Light Fuel & Power d/b/a Black Hills Energy,3461,RMPA,1 +82002,WY,Cheyenne Light Fuel & Power d/b/a Black,3461,RMPA,1 +82003,WY,Cheyenne Light Fuel & Power d/b/a Black,3461,RMPA,1 +82005,WY,Cheyenne Light Fuel & Power d/b/a Black,3461,RMPA,1 +82006,WY,Cheyenne Light Fuel & Power d/b/a Black,3461,RMPA,1 +82007,WY,Cheyenne Light Fuel & Power d/b/a Black,3461,RMPA,1 82007,WY,"High West Energy, Inc",27058,RMPA,0 -82008,WY,Cheyenne Light Fuel & Power d/b/a Black Hills Energy,3461,RMPA,1 +82008,WY,Cheyenne Light Fuel & Power d/b/a Black,3461,RMPA,1 82009,WY,"Carbon Power & Light, Inc",2998,RMPA,1 -82009,WY,Cheyenne Light Fuel & Power d/b/a Black Hills Energy,3461,RMPA,0 +82009,WY,Cheyenne Light Fuel & Power d/b/a Black,3461,RMPA,0 82009,WY,"High West Energy, Inc",27058,RMPA,0 82009,WY,PacifiCorp,14354,NWPP,0 82009,WY,Wyrulec Company,21079,RMPA,0 -82010,WY,Cheyenne Light Fuel & Power d/b/a Black Hills Energy,3461,RMPA,1 +82010,WY,Cheyenne Light Fuel & Power d/b/a Black,3461,RMPA,1 82050,WY,"High West Energy, Inc",27058,RMPA,1 82050,WY,Wyrulec Company,21079,RMPA,0 82051,WY,"Carbon Power & Light, Inc",2998,RMPA,1 -82051,WY,Cheyenne Light Fuel & Power d/b/a Black Hills Energy,3461,RMPA,0 +82051,WY,Cheyenne Light Fuel & Power d/b/a Black,3461,RMPA,0 82052,WY,"Carbon Power & Light, Inc",2998,RMPA,1 -82052,WY,Cheyenne Light Fuel & Power d/b/a Black Hills Energy,3461,RMPA,0 +82052,WY,Cheyenne Light Fuel & Power d/b/a Black,3461,RMPA,0 82052,WY,"High West Energy, Inc",27058,RMPA,0 82052,WY,PacifiCorp,14354,NWPP,0 82053,WY,"High West Energy, Inc",27058,RMPA,1 @@ -61177,18 +61041,18 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 82055,WY,"Carbon Power & Light, Inc",2998,RMPA,1 82058,WY,"Carbon Power & Light, Inc",2998,RMPA,1 82058,WY,PacifiCorp,14354,NWPP,0 -82059,WY,Cheyenne Light Fuel & Power d/b/a Black Hills Energy,3461,RMPA,1 +82059,WY,Cheyenne Light Fuel & Power d/b/a Black,3461,RMPA,1 82059,WY,"High West Energy, Inc",27058,RMPA,0 82060,WY,"High West Energy, Inc",27058,RMPA,1 82061,WY,Cheyenne Light Fuel & Power Co [Black Hills Corp],61066,NWPP,1 82063,CO,"Mountain Parks Electric, Inc",13050,RMPA,1 82070,WY,"Carbon Power & Light, Inc",2998,RMPA,1 -82070,WY,Cheyenne Light Fuel & Power d/b/a Black Hills Energy,3461,RMPA,0 +82070,WY,Cheyenne Light Fuel & Power d/b/a Black,3461,RMPA,0 82070,WY,"High West Energy, Inc",27058,RMPA,0 82070,WY,PacifiCorp,14354,NWPP,0 82071,WY,PacifiCorp,14354,NWPP,1 82072,WY,"Carbon Power & Light, Inc",2998,RMPA,1 -82072,WY,Cheyenne Light Fuel & Power d/b/a Black Hills Energy,3461,RMPA,0 +82072,WY,Cheyenne Light Fuel & Power d/b/a Black,3461,RMPA,0 82072,WY,PacifiCorp,14354,NWPP,0 82073,WY,PacifiCorp,14354,NWPP,1 82081,WY,"High West Energy, Inc",27058,RMPA,1 @@ -63616,6 +63480,8 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 87544,NM,"Jemez Mountains Elec Coop, Inc",9699,AZNM,1 87544,NM,Los Alamos County,11204,AZNM,0 87545,NM,Los Alamos County,11204,AZNM,1 +87547,NM,"Jemez Mountains Elec Coop, Inc",9699,AZNM,1 +87547,NM,Los Alamos County,11204,AZNM,0 87548,NM,"Jemez Mountains Elec Coop, Inc",9699,AZNM,1 87548,NM,"Kit Carson Electric Coop, Inc",10378,AZNM,0 87549,NM,"Jemez Mountains Elec Coop, Inc",9699,AZNM,1 @@ -65778,7 +65644,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 93101,CA,Southern California Edison Co,17609,CAMX,1 93102,CA,Southern California Edison Co,17609,CAMX,1 93103,CA,Southern California Edison Co,17609,CAMX,1 -93105,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93105,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93105,CA,Southern California Edison Co,17609,CAMX,0 93106,CA,Southern California Edison Co,17609,CAMX,1 93107,CA,Southern California Edison Co,17609,CAMX,1 @@ -65787,7 +65653,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 93110,CA,Southern California Edison Co,17609,CAMX,1 93111,CA,Southern California Edison Co,17609,CAMX,1 93116,CA,Southern California Edison Co,17609,CAMX,1 -93117,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93117,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93117,CA,Southern California Edison Co,17609,CAMX,0 93118,CA,Southern California Edison Co,17609,CAMX,1 93120,CA,Southern California Edison Co,17609,CAMX,1 @@ -65798,183 +65664,183 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 93160,CA,Southern California Edison Co,17609,CAMX,1 93190,CA,Southern California Edison Co,17609,CAMX,1 93199,CA,Southern California Edison Co,17609,CAMX,1 -93201,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93201,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93202,CA,Southern California Edison Co,17609,CAMX,1 -93203,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93203,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93203,CA,Southern California Edison Co,17609,CAMX,0 -93204,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93204,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93205,CA,Southern California Edison Co,17609,CAMX,1 -93206,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93206,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93207,CA,Southern California Edison Co,17609,CAMX,1 93208,CA,Southern California Edison Co,17609,CAMX,1 -93210,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93212,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93210,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93212,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93212,CA,Southern California Edison Co,17609,CAMX,0 -93215,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93215,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93215,CA,Southern California Edison Co,17609,CAMX,0 93216,CA,Southern California Edison Co,17609,CAMX,1 93218,CA,Southern California Edison Co,17609,CAMX,1 -93219,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93219,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93219,CA,Southern California Edison Co,17609,CAMX,0 93220,CA,Southern California Edison Co,17609,CAMX,1 93221,CA,Southern California Edison Co,17609,CAMX,1 -93222,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93222,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93222,CA,Southern California Edison Co,17609,CAMX,0 93223,CA,Southern California Edison Co,17609,CAMX,1 -93224,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93225,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93224,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93225,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93225,CA,Southern California Edison Co,17609,CAMX,0 93226,CA,Southern California Edison Co,17609,CAMX,1 93227,CA,Southern California Edison Co,17609,CAMX,1 -93230,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93230,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93230,CA,Southern California Edison Co,17609,CAMX,0 93232,CA,Southern California Edison Co,17609,CAMX,1 -93234,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93234,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93235,CA,Southern California Edison Co,17609,CAMX,1 93237,CA,Southern California Edison Co,17609,CAMX,1 93238,CA,Southern California Edison Co,17609,CAMX,1 -93239,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93239,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93240,CA,Southern California Edison Co,17609,CAMX,1 -93241,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93242,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93243,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93241,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93242,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93243,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93243,CA,Southern California Edison Co,17609,CAMX,0 93244,CA,Southern California Edison Co,17609,CAMX,1 -93245,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93245,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93245,CA,Southern California Edison Co,17609,CAMX,0 -93246,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93246,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93247,CA,Southern California Edison Co,17609,CAMX,1 -93249,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93250,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93249,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93250,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93250,CA,Southern California Edison Co,17609,CAMX,0 -93251,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93252,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93251,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93252,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93252,CA,Southern California Edison Co,17609,CAMX,0 -93254,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93254,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93254,CA,Southern California Edison Co,17609,CAMX,0 93255,CA,Southern California Edison Co,17609,CAMX,1 -93256,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93256,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93256,CA,Southern California Edison Co,17609,CAMX,0 93257,CA,Southern California Edison Co,17609,CAMX,1 93258,CA,Southern California Edison Co,17609,CAMX,1 93260,CA,Southern California Edison Co,17609,CAMX,1 93261,CA,Southern California Edison Co,17609,CAMX,1 -93262,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93262,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93262,CA,Southern California Edison Co,17609,CAMX,0 -93263,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93263,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93265,CA,Southern California Edison Co,17609,CAMX,1 -93266,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93266,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93267,CA,Southern California Edison Co,17609,CAMX,1 -93268,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93268,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93270,CA,Southern California Edison Co,17609,CAMX,1 93271,CA,Los Angeles Department of Water & Power,11208,CAMX,1 -93271,CA,Pacific Gas & Electric Co,14328,CAMX,0 +93271,CA,Pacific Gas & Electric Co.,14328,CAMX,0 93271,CA,Southern California Edison Co,17609,CAMX,0 -93272,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93272,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93272,CA,Southern California Edison Co,17609,CAMX,0 -93274,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93274,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93274,CA,Southern California Edison Co,17609,CAMX,0 93275,CA,Southern California Edison Co,17609,CAMX,1 -93276,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93276,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93277,CA,Southern California Edison Co,17609,CAMX,1 93278,CA,Southern California Edison Co,17609,CAMX,1 93279,CA,Southern California Edison Co,17609,CAMX,1 -93280,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93280,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93280,CA,Southern California Edison Co,17609,CAMX,0 -93282,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93282,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93283,CA,Southern California Edison Co,17609,CAMX,1 93285,CA,Southern California Edison Co,17609,CAMX,1 -93286,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93286,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93286,CA,Southern California Edison Co,17609,CAMX,0 93287,CA,Southern California Edison Co,17609,CAMX,1 93290,CA,Southern California Edison Co,17609,CAMX,1 -93291,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93291,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93291,CA,Southern California Edison Co,17609,CAMX,0 -93292,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93292,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93292,CA,Southern California Edison Co,17609,CAMX,0 -93301,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93302,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93303,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93304,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93305,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93306,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93301,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93302,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93303,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93304,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93305,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93306,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93306,CA,Southern California Edison Co,17609,CAMX,0 -93307,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93307,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93307,CA,Southern California Edison Co,17609,CAMX,0 -93308,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93308,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93308,CA,Southern California Edison Co,17609,CAMX,0 -93309,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93311,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93312,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93313,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93314,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93380,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93383,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93384,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93385,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93386,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93387,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93388,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93389,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93390,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93401,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93402,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93403,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93405,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93406,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93407,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93408,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93409,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93410,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93412,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93420,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93421,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93422,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93423,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93424,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93426,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93427,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93309,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93311,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93312,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93313,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93314,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93380,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93383,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93384,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93385,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93386,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93387,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93388,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93389,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93390,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93401,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93402,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93403,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93405,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93406,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93407,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93408,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93409,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93410,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93412,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93420,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93421,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93422,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93423,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93424,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93426,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93427,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93427,CA,Southern California Edison Co,17609,CAMX,0 -93428,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93429,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93430,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93432,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93433,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93434,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93435,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93428,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93429,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93430,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93432,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93433,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93434,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93435,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93436,CA,City of Lompoc - (CA),11148,CAMX,1 -93436,CA,Pacific Gas & Electric Co,14328,CAMX,0 +93436,CA,Pacific Gas & Electric Co.,14328,CAMX,0 93436,CA,Southern California Edison Co,17609,CAMX,0 -93437,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93437,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93438,CA,City of Lompoc - (CA),11148,CAMX,1 -93440,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93441,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93442,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93443,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93444,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93445,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93446,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93447,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93448,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93449,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93450,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93451,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93452,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93453,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93454,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93455,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93456,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93457,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93458,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93460,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93440,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93441,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93442,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93443,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93444,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93445,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93446,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93447,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93448,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93449,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93450,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93451,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93452,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93453,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93454,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93455,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93456,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93457,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93458,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93460,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93460,CA,Southern California Edison Co,17609,CAMX,0 -93461,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93463,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93461,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93463,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93463,CA,Southern California Edison Co,17609,CAMX,0 -93464,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93465,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93475,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93483,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93464,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93465,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93475,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93483,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93501,CA,Southern California Edison Co,17609,CAMX,1 93502,CA,Southern California Edison Co,17609,CAMX,1 93504,CA,Southern California Edison Co,17609,CAMX,1 @@ -65983,19 +65849,19 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 93512,CA,Southern California Edison Co,17609,CAMX,1 93512,CA,"Valley Electric Assn, Inc",19840,NWPP,0 93513,CA,Los Angeles Department of Water & Power,11208,CAMX,1 -93513,CA,Pacific Gas & Electric Co,14328,CAMX,0 +93513,CA,Pacific Gas & Electric Co.,14328,CAMX,0 93513,CA,Southern California Edison Co,17609,CAMX,0 93513,CA,"Valley Electric Assn, Inc",19840,NWPP,0 93514,CA,Los Angeles Department of Water & Power,11208,CAMX,1 -93514,CA,Pacific Gas & Electric Co,14328,CAMX,0 +93514,CA,Pacific Gas & Electric Co.,14328,CAMX,0 93514,CA,Southern California Edison Co,17609,CAMX,0 93514,CA,"Valley Electric Assn, Inc",19840,NWPP,0 93515,CA,Los Angeles Department of Water & Power,11208,CAMX,1 93516,CA,Southern California Edison Co,17609,CAMX,1 93517,CA,Liberty Utilities,57483,CAMX,1 -93517,CA,Pacific Gas & Electric Co,14328,CAMX,0 +93517,CA,Pacific Gas & Electric Co.,14328,CAMX,0 93517,CA,Southern California Edison Co,17609,CAMX,0 -93518,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93518,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93518,CA,Southern California Edison Co,17609,CAMX,0 93519,CA,Southern California Edison Co,17609,CAMX,1 93522,CA,Los Angeles Department of Water & Power,11208,CAMX,1 @@ -66003,13 +65869,13 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 93523,CA,Southern California Edison Co,17609,CAMX,1 93524,CA,Southern California Edison Co,17609,CAMX,1 93526,CA,Los Angeles Department of Water & Power,11208,CAMX,1 -93526,CA,Pacific Gas & Electric Co,14328,CAMX,0 +93526,CA,Pacific Gas & Electric Co.,14328,CAMX,0 93526,CA,Southern California Edison Co,17609,CAMX,0 93526,CA,"Valley Electric Assn, Inc",19840,NWPP,0 93527,CA,Los Angeles Department of Water & Power,11208,CAMX,1 93527,CA,Southern California Edison Co,17609,CAMX,0 93528,CA,Southern California Edison Co,17609,CAMX,1 -93529,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93529,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93529,CA,Southern California Edison Co,17609,CAMX,0 93530,CA,Los Angeles Department of Water & Power,11208,CAMX,1 93530,CA,Southern California Edison Co,17609,CAMX,0 @@ -66017,7 +65883,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 93532,CA,Southern California Edison Co,17609,CAMX,1 93534,CA,Southern California Edison Co,17609,CAMX,1 93535,CA,Southern California Edison Co,17609,CAMX,1 -93536,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93536,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93536,CA,Southern California Edison Co,17609,CAMX,0 93539,CA,Southern California Edison Co,17609,CAMX,1 93541,CA,Southern California Edison Co,17609,CAMX,1 @@ -66027,7 +65893,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 93545,CA,Los Angeles Department of Water & Power,11208,CAMX,1 93545,CA,Southern California Edison Co,17609,CAMX,0 93545,CA,"Valley Electric Assn, Inc",19840,NWPP,0 -93546,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93546,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93546,CA,Southern California Edison Co,17609,CAMX,0 93549,CA,Los Angeles Department of Water & Power,11208,CAMX,1 93549,CA,Southern California Edison Co,17609,CAMX,0 @@ -66040,7 +65906,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 93556,CA,Southern California Edison Co,17609,CAMX,1 93558,CA,Southern California Edison Co,17609,CAMX,1 93560,CA,Southern California Edison Co,17609,CAMX,1 -93561,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93561,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93561,CA,Southern California Edison Co,17609,CAMX,0 93562,CA,Southern California Edison Co,17609,CAMX,1 93563,CA,Southern California Edison Co,17609,CAMX,1 @@ -66052,230 +65918,230 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 93592,CA,Southern California Edison Co,17609,CAMX,1 93596,CA,Southern California Edison Co,17609,CAMX,1 93599,CA,Southern California Edison Co,17609,CAMX,1 -93601,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93602,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93601,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93602,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93602,CA,Southern California Edison Co,17609,CAMX,0 -93603,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93603,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93603,CA,Southern California Edison Co,17609,CAMX,0 -93604,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93604,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93604,CA,Southern California Edison Co,17609,CAMX,0 93605,CA,Southern California Edison Co,17609,CAMX,1 -93606,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93607,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93608,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93609,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93610,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93611,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93612,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93613,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93614,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93615,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93606,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93607,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93608,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93609,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93610,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93611,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93612,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93613,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93614,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93615,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93615,CA,Southern California Edison Co,17609,CAMX,0 -93616,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93618,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93616,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93618,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93618,CA,Southern California Edison Co,17609,CAMX,0 -93619,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93620,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93621,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93622,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93623,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93624,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93625,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93626,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93627,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93619,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93620,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93621,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93622,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93623,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93624,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93625,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93626,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93627,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93628,CA,Los Angeles Department of Water & Power,11208,CAMX,1 -93628,CA,Pacific Gas & Electric Co,14328,CAMX,0 -93630,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93631,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93628,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +93630,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93631,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93631,CA,Southern California Edison Co,17609,CAMX,0 -93633,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93634,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93633,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93634,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93634,CA,Southern California Edison Co,17609,CAMX,0 -93635,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93636,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93637,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93638,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93639,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93640,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93641,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93642,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93635,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93636,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93637,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93638,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93639,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93640,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93641,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93642,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93642,CA,Southern California Edison Co,17609,CAMX,0 -93643,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93643,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93643,CA,Southern California Edison Co,17609,CAMX,0 -93644,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93645,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93646,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93647,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93644,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93645,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93646,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93647,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93647,CA,Southern California Edison Co,17609,CAMX,0 -93648,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93649,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93650,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93651,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93652,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93653,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93654,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93656,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93657,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93660,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93661,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93662,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93648,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93649,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93650,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93651,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93652,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93653,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93654,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93656,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93657,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93660,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93661,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93662,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93664,CA,Los Angeles Department of Water & Power,11208,CAMX,1 -93664,CA,Pacific Gas & Electric Co,14328,CAMX,0 +93664,CA,Pacific Gas & Electric Co.,14328,CAMX,0 93664,CA,Southern California Edison Co,17609,CAMX,0 -93665,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93666,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93667,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93668,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93669,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93665,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93666,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93667,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93668,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93669,CA,Pacific Gas & Electric Co.,14328,CAMX,1 93670,CA,Southern California Edison Co,17609,CAMX,1 -93673,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93675,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93701,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93702,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93703,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93704,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93705,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93706,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93707,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93708,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93709,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93710,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93711,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93712,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93714,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93715,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93716,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93717,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93718,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93720,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93721,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93722,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93723,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93724,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93725,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93726,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93727,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93728,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93729,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93730,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93737,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93740,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93741,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93744,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93745,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93747,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93750,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93755,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93760,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93761,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93764,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93765,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93771,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93772,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93773,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93774,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93775,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93776,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93777,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93778,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93779,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93786,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93790,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93791,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93792,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93793,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93794,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93844,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93888,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93901,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93902,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93905,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93906,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93907,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93908,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93912,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93915,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93920,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93921,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93922,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93923,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93924,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93925,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93926,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93927,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93928,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93930,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93932,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93933,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93940,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93942,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93943,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93944,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93950,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93953,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93954,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93955,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93960,CA,Pacific Gas & Electric Co,14328,CAMX,1 -93962,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94002,CA,Pacific Gas & Electric Co,14328,CAMX,1 +93673,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93675,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93701,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93702,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93703,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93704,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93705,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93706,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93707,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93708,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93709,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93710,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93711,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93712,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93714,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93715,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93716,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93717,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93718,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93720,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93721,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93722,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93723,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93724,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93725,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93726,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93727,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93728,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93729,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93730,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93737,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93740,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93741,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93744,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93745,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93747,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93750,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93755,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93760,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93761,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93764,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93765,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93771,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93772,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93773,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93774,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93775,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93776,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93777,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93778,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93779,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93786,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93790,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93791,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93792,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93793,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93794,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93844,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93888,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93901,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93902,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93905,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93906,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93907,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93908,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93912,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93915,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93920,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93921,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93922,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93923,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93924,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93925,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93926,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93927,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93928,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93930,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93932,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93933,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93940,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93942,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93943,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93944,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93950,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93953,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93954,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93955,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93960,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +93962,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94002,CA,Pacific Gas & Electric Co.,14328,CAMX,1 94005,CA,City & County of San Francisco,16612,CAMX,1 -94005,CA,Pacific Gas & Electric Co,14328,CAMX,0 -94010,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94011,CA,Pacific Gas & Electric Co,14328,CAMX,1 +94005,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +94010,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94011,CA,Pacific Gas & Electric Co.,14328,CAMX,1 94013,CA,Pacific Gas & Electric Co,1133,CAMX,1 94014,CA,City & County of San Francisco,16612,CAMX,1 -94014,CA,Pacific Gas & Electric Co,14328,CAMX,0 +94014,CA,Pacific Gas & Electric Co.,14328,CAMX,0 94015,CA,City & County of San Francisco,16612,CAMX,1 -94015,CA,Pacific Gas & Electric Co,14328,CAMX,0 +94015,CA,Pacific Gas & Electric Co.,14328,CAMX,0 94016,CA,City & County of San Francisco,16612,CAMX,1 -94017,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94018,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94019,CA,Pacific Gas & Electric Co,14328,CAMX,1 +94017,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94018,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94019,CA,Pacific Gas & Electric Co.,14328,CAMX,1 94020,CA,City of Palo Alto - (CA),14401,CAMX,1 -94020,CA,Pacific Gas & Electric Co,14328,CAMX,0 -94021,CA,Pacific Gas & Electric Co,14328,CAMX,1 +94020,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +94021,CA,Pacific Gas & Electric Co.,14328,CAMX,1 94022,CA,City of Palo Alto - (CA),14401,CAMX,1 -94022,CA,Pacific Gas & Electric Co,14328,CAMX,0 -94023,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94024,CA,Pacific Gas & Electric Co,14328,CAMX,1 +94022,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +94023,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94024,CA,Pacific Gas & Electric Co.,14328,CAMX,1 94025,CA,City of Palo Alto - (CA),14401,CAMX,1 -94025,CA,Pacific Gas & Electric Co,14328,CAMX,0 -94026,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94027,CA,Pacific Gas & Electric Co,14328,CAMX,1 +94025,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +94026,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94027,CA,Pacific Gas & Electric Co.,14328,CAMX,1 94028,CA,City of Palo Alto - (CA),14401,CAMX,1 -94028,CA,Pacific Gas & Electric Co,14328,CAMX,0 -94030,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94035,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94037,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94038,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94039,CA,Pacific Gas & Electric Co,14328,CAMX,1 +94028,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +94030,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94035,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94037,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94038,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94039,CA,Pacific Gas & Electric Co.,14328,CAMX,1 94040,CA,City of Palo Alto - (CA),14401,CAMX,1 -94040,CA,Pacific Gas & Electric Co,14328,CAMX,0 -94041,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94042,CA,Pacific Gas & Electric Co,14328,CAMX,1 +94040,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +94041,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94042,CA,Pacific Gas & Electric Co.,14328,CAMX,1 94043,CA,City of Palo Alto - (CA),14401,CAMX,1 -94043,CA,Pacific Gas & Electric Co,14328,CAMX,0 -94044,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94060,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94061,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94062,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94063,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94064,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94065,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94066,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94070,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94074,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94080,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94083,CA,Pacific Gas & Electric Co,14328,CAMX,1 +94043,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +94044,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94060,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94061,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94062,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94063,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94064,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94065,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94066,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94070,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94074,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94080,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94083,CA,Pacific Gas & Electric Co.,14328,CAMX,1 94085,CA,City of Santa Clara - (CA),16655,CAMX,1 -94085,CA,Pacific Gas & Electric Co,14328,CAMX,0 +94085,CA,Pacific Gas & Electric Co.,14328,CAMX,0 94086,CA,City of Santa Clara - (CA),16655,CAMX,1 -94086,CA,Pacific Gas & Electric Co,14328,CAMX,0 +94086,CA,Pacific Gas & Electric Co.,14328,CAMX,0 94087,CA,City of Santa Clara - (CA),16655,CAMX,1 -94087,CA,Pacific Gas & Electric Co,14328,CAMX,0 -94088,CA,Pacific Gas & Electric Co,14328,CAMX,1 +94087,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +94088,CA,Pacific Gas & Electric Co.,14328,CAMX,1 94089,CA,City of Santa Clara - (CA),16655,CAMX,1 -94089,CA,Pacific Gas & Electric Co,14328,CAMX,0 +94089,CA,Pacific Gas & Electric Co.,14328,CAMX,0 94101,CA,City & County of San Francisco,61081,CAMX,1 94102,CA,City & County of San Francisco,16612,CAMX,1 94103,CA,City & County of San Francisco,16612,CAMX,1 @@ -66287,7 +66153,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 94110,CA,City & County of San Francisco,16612,CAMX,1 94111,CA,City & County of San Francisco,16612,CAMX,1 94112,CA,City & County of San Francisco,16612,CAMX,1 -94112,CA,Pacific Gas & Electric Co,14328,CAMX,0 +94112,CA,Pacific Gas & Electric Co.,14328,CAMX,0 94114,CA,City & County of San Francisco,16612,CAMX,1 94115,CA,City & County of San Francisco,16612,CAMX,1 94116,CA,City & County of San Francisco,16612,CAMX,1 @@ -66299,21 +66165,21 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 94122,CA,City & County of San Francisco,16612,CAMX,1 94123,CA,City & County of San Francisco,16612,CAMX,1 94124,CA,City & County of San Francisco,16612,CAMX,1 -94124,CA,Pacific Gas & Electric Co,14328,CAMX,0 +94124,CA,Pacific Gas & Electric Co.,14328,CAMX,0 94125,CA,City & County of San Francisco,16612,CAMX,1 94126,CA,City & County of San Francisco,16612,CAMX,1 94127,CA,City & County of San Francisco,16612,CAMX,1 -94128,CA,Pacific Gas & Electric Co,14328,CAMX,1 +94128,CA,Pacific Gas & Electric Co.,14328,CAMX,1 94129,CA,City & County of San Francisco,16612,CAMX,1 94130,CA,City & County of San Francisco,16612,CAMX,1 94130,CA,City of Alameda,207,CAMX,0 94131,CA,City & County of San Francisco,16612,CAMX,1 94132,CA,City & County of San Francisco,16612,CAMX,1 -94132,CA,Pacific Gas & Electric Co,14328,CAMX,0 +94132,CA,Pacific Gas & Electric Co.,14328,CAMX,0 94133,CA,City & County of San Francisco,16612,CAMX,1 -94133,CA,Pacific Gas & Electric Co,14328,CAMX,0 +94133,CA,Pacific Gas & Electric Co.,14328,CAMX,0 94134,CA,City & County of San Francisco,16612,CAMX,1 -94134,CA,Pacific Gas & Electric Co,14328,CAMX,0 +94134,CA,Pacific Gas & Electric Co.,14328,CAMX,0 94137,CA,City & County of San Francisco,16612,CAMX,1 94139,CA,City & County of San Francisco,16612,CAMX,1 94140,CA,City & County of San Francisco,16612,CAMX,1 @@ -66401,478 +66267,478 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 94298,CA,Sacramento Municipal Util Dist,16534,CAMX,1 94299,CA,Sacramento Municipal Util Dist,16534,CAMX,1 94301,CA,City of Palo Alto - (CA),14401,CAMX,1 -94301,CA,Pacific Gas & Electric Co,14328,CAMX,0 +94301,CA,Pacific Gas & Electric Co.,14328,CAMX,0 94302,CA,City of Palo Alto - (CA),14401,CAMX,1 94303,CA,City of Palo Alto - (CA),14401,CAMX,1 -94303,CA,Pacific Gas & Electric Co,14328,CAMX,0 +94303,CA,Pacific Gas & Electric Co.,14328,CAMX,0 94304,CA,City of Palo Alto - (CA),14401,CAMX,1 -94304,CA,Pacific Gas & Electric Co,14328,CAMX,0 +94304,CA,Pacific Gas & Electric Co.,14328,CAMX,0 94305,CA,City of Palo Alto - (CA),14401,CAMX,1 -94305,CA,Pacific Gas & Electric Co,14328,CAMX,0 +94305,CA,Pacific Gas & Electric Co.,14328,CAMX,0 94306,CA,City of Palo Alto - (CA),14401,CAMX,1 -94306,CA,Pacific Gas & Electric Co,14328,CAMX,0 -94309,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94401,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94402,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94403,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94404,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94497,CA,Pacific Gas & Electric Co,14328,CAMX,1 +94306,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +94309,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94401,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94402,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94403,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94404,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94497,CA,Pacific Gas & Electric Co.,14328,CAMX,1 94501,CA,City of Alameda,207,CAMX,1 -94501,CA,Pacific Gas & Electric Co,14328,CAMX,0 -94502,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94503,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94505,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94506,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94507,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94508,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94509,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94510,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94511,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94512,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94513,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94514,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94515,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94516,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94517,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94518,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94519,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94520,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94521,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94522,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94523,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94524,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94525,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94526,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94527,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94528,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94529,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94530,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94531,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94533,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94534,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94535,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94536,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94537,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94538,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94539,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94540,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94541,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94542,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94543,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94544,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94545,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94546,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94547,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94548,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94549,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94550,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94551,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94552,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94553,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94555,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94556,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94557,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94558,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94559,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94560,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94561,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94562,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94563,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94564,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94565,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94566,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94567,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94568,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94569,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94570,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94571,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94572,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94573,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94574,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94575,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94576,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94577,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94578,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94579,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94580,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94581,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94582,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94583,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94585,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94586,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94587,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94588,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94589,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94590,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94591,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94592,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94595,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94596,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94597,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94598,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94599,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94601,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94602,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94603,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94604,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94605,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94606,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94607,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94608,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94609,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94610,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94611,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94612,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94613,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94614,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94615,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94617,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94618,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94619,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94620,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94621,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94622,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94623,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94624,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94649,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94659,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94660,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94661,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94662,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94666,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94701,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94702,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94703,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94704,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94705,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94706,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94707,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94708,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94709,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94710,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94712,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94720,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94801,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94802,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94803,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94804,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94805,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94806,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94807,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94808,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94820,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94850,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94901,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94903,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94904,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94912,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94913,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94914,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94915,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94920,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94922,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94923,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94924,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94925,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94926,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94927,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94928,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94929,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94930,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94931,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94933,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94937,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94938,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94939,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94940,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94941,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94942,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94945,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94946,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94947,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94948,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94949,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94950,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94951,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94952,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94953,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94954,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94955,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94956,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94957,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94960,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94963,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94964,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94965,CA,Pacific Gas & Electric Co,14328,CAMX,1 +94501,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +94502,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94503,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94505,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94506,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94507,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94508,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94509,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94510,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94511,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94512,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94513,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94514,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94515,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94516,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94517,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94518,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94519,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94520,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94521,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94522,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94523,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94524,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94525,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94526,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94527,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94528,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94529,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94530,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94531,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94533,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94534,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94535,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94536,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94537,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94538,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94539,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94540,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94541,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94542,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94543,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94544,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94545,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94546,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94547,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94548,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94549,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94550,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94551,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94552,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94553,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94555,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94556,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94557,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94558,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94559,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94560,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94561,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94562,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94563,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94564,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94565,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94566,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94567,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94568,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94569,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94570,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94571,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94572,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94573,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94574,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94575,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94576,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94577,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94578,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94579,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94580,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94581,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94582,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94583,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94585,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94586,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94587,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94588,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94589,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94590,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94591,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94592,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94595,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94596,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94597,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94598,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94599,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94601,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94602,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94603,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94604,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94605,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94606,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94607,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94608,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94609,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94610,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94611,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94612,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94613,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94614,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94615,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94617,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94618,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94619,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94620,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94621,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94622,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94623,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94624,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94649,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94659,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94660,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94661,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94662,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94666,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94701,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94702,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94703,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94704,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94705,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94706,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94707,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94708,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94709,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94710,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94712,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94720,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94801,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94802,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94803,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94804,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94805,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94806,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94807,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94808,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94820,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94850,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94901,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94903,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94904,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94912,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94913,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94914,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94915,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94920,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94922,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94923,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94924,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94925,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94926,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94927,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94928,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94929,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94930,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94931,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94933,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94937,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94938,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94939,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94940,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94941,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94942,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94945,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94946,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94947,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94948,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94949,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94950,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94951,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94952,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94953,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94954,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94955,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94956,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94957,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94960,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94963,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94964,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94965,CA,Pacific Gas & Electric Co.,14328,CAMX,1 94966,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94970,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94971,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94972,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94973,CA,Pacific Gas & Electric Co,14328,CAMX,1 +94970,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94971,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94972,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94973,CA,Pacific Gas & Electric Co.,14328,CAMX,1 94974,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94975,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94976,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94977,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94978,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94979,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94998,CA,Pacific Gas & Electric Co,14328,CAMX,1 -94999,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95001,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95002,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95003,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95004,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95005,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95006,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95007,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95008,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95009,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95010,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95011,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95012,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95013,CA,Pacific Gas & Electric Co,14328,CAMX,1 +94975,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94976,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94977,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94978,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94979,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94998,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +94999,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95001,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95002,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95003,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95004,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95005,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95006,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95007,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95008,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95009,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95010,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95011,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95012,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95013,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95014,CA,City of Palo Alto - (CA),14401,CAMX,1 95014,CA,City of Santa Clara - (CA),16655,CAMX,0 -95014,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95015,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95017,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95018,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95019,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95020,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95021,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95023,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95024,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95026,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95030,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95031,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95032,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95014,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95015,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95017,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95018,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95019,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95020,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95021,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95023,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95024,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95026,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95030,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95031,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95032,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95033,CA,City of Palo Alto - (CA),14401,CAMX,1 -95033,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95035,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95036,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95037,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95038,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95039,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95041,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95042,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95043,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95044,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95045,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95046,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95033,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95035,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95036,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95037,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95038,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95039,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95041,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95042,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95043,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95044,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95045,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95046,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95050,CA,City of Santa Clara - (CA),16655,CAMX,1 -95050,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95050,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95051,CA,City of Santa Clara - (CA),16655,CAMX,1 -95051,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95051,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95052,CA,City of Santa Clara - (CA),16655,CAMX,1 95053,CA,City of Santa Clara - (CA),16655,CAMX,1 95054,CA,City of Santa Clara - (CA),16655,CAMX,1 -95054,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95054,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95055,CA,City of Santa Clara - (CA),16655,CAMX,1 95056,CA,City of Santa Clara - (CA),16655,CAMX,1 -95060,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95061,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95062,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95063,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95064,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95065,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95066,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95067,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95060,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95061,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95062,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95063,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95064,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95065,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95066,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95067,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95070,CA,City of Palo Alto - (CA),14401,CAMX,1 -95070,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95071,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95073,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95075,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95076,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95077,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95101,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95103,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95106,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95108,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95109,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95070,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95071,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95073,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95075,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95076,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95077,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95101,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95103,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95106,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95108,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95109,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95110,CA,City of Santa Clara - (CA),16655,CAMX,1 -95110,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95111,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95112,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95113,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95115,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95116,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95117,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95118,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95119,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95120,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95121,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95122,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95123,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95124,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95125,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95110,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95111,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95112,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95113,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95115,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95116,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95117,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95118,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95119,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95120,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95121,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95122,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95123,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95124,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95125,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95126,CA,City of Santa Clara - (CA),16655,CAMX,1 -95126,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95127,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95126,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95127,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95128,CA,City of Santa Clara - (CA),16655,CAMX,1 -95128,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95128,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95129,CA,City of Santa Clara - (CA),16655,CAMX,1 -95129,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95130,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95131,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95132,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95133,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95129,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95130,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95131,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95132,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95133,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95134,CA,City of Santa Clara - (CA),16655,CAMX,1 -95134,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95135,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95136,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95138,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95139,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95140,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95141,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95148,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95150,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95151,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95152,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95153,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95154,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95155,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95156,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95157,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95158,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95159,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95160,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95161,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95164,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95170,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95172,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95173,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95190,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95191,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95192,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95193,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95194,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95196,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95201,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95202,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95203,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95204,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95205,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95206,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95207,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95208,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95209,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95210,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95211,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95212,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95213,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95134,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95135,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95136,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95138,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95139,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95140,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95141,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95148,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95150,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95151,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95152,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95153,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95154,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95155,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95156,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95157,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95158,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95159,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95160,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95161,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95164,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95170,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95172,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95173,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95190,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95191,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95192,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95193,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95194,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95196,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95201,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95202,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95203,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95204,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95205,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95206,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95207,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95208,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95209,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95210,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95211,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95212,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95213,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95215,CA,Modesto Irrigation District,12745,CAMX,1 -95215,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95219,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95215,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95219,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95220,CA,City of Lodi - (CA),11124,CAMX,1 -95220,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95220,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95220,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95221,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95222,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95223,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95224,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95225,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95226,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95227,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95221,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95222,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95223,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95224,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95225,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95226,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95227,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95228,CA,Modesto Irrigation District,12745,CAMX,1 -95228,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95229,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95228,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95229,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95230,CA,Modesto Irrigation District,12745,CAMX,1 -95230,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95231,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95232,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95233,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95234,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95230,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95231,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95232,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95233,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95234,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95236,CA,Modesto Irrigation District,12745,CAMX,1 -95236,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95237,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95236,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95237,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95240,CA,City of Lodi - (CA),11124,CAMX,1 -95240,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95240,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95241,CA,City of Lodi - (CA),11124,CAMX,1 95242,CA,City of Lodi - (CA),11124,CAMX,1 -95242,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95242,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95242,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95245,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95246,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95247,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95248,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95249,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95245,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95246,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95247,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95248,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95249,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95250,CA,Pacific Gas & Electric Co,1133,CAMX,1 -95251,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95251,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95252,CA,Modesto Irrigation District,12745,CAMX,1 -95252,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95253,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95254,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95255,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95257,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95258,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95267,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95269,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95296,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95297,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95252,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95253,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95254,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95255,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95257,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95258,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95267,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95269,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95296,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95297,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95301,CA,Merced Irrigation District,12312,CAMX,1 -95301,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95301,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95303,CA,Merced Irrigation District,12312,CAMX,1 -95303,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95303,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95303,CA,Turlock Irrigation District,19281,CAMX,0 95304,CA,Modesto Irrigation District,12745,CAMX,1 -95304,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95305,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95306,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95304,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95305,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95306,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95307,CA,Modesto Irrigation District,12745,CAMX,1 95307,CA,Turlock Irrigation District,19281,CAMX,0 -95309,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95310,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95311,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95309,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95310,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95311,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95312,CA,Merced Irrigation District,12312,CAMX,1 -95313,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95313,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95313,CA,Turlock Irrigation District,19281,CAMX,0 95314,CA,Pacific Gas & Electric Co,1133,CAMX,1 95315,CA,Turlock Irrigation District,19281,CAMX,1 -95316,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95316,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95316,CA,Turlock Irrigation District,19281,CAMX,0 -95317,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95318,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95317,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95318,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95319,CA,Modesto Irrigation District,12745,CAMX,1 95320,CA,Modesto Irrigation District,12745,CAMX,1 -95320,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95321,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95322,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95320,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95321,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95322,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95323,CA,Modesto Irrigation District,12745,CAMX,1 -95323,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95323,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95323,CA,Turlock Irrigation District,19281,CAMX,0 -95324,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95324,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95324,CA,Turlock Irrigation District,19281,CAMX,0 -95325,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95325,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95326,CA,Modesto Irrigation District,12745,CAMX,1 95326,CA,Turlock Irrigation District,19281,CAMX,0 95327,CA,Modesto Irrigation District,12745,CAMX,1 -95327,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95327,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95328,CA,Turlock Irrigation District,19281,CAMX,1 95329,CA,Modesto Irrigation District,12745,CAMX,1 -95329,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95329,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95329,CA,Turlock Irrigation District,19281,CAMX,0 -95330,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95330,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95333,CA,Merced Irrigation District,12312,CAMX,1 -95333,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95333,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95334,CA,Merced Irrigation District,12312,CAMX,1 -95334,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95334,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95334,CA,Turlock Irrigation District,19281,CAMX,0 -95335,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95335,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95336,CA,Modesto Irrigation District,12745,CAMX,1 -95336,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95336,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95337,CA,Modesto Irrigation District,12745,CAMX,1 -95337,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95338,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95337,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95338,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95340,CA,Merced Irrigation District,12312,CAMX,1 -95340,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95340,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95341,CA,Merced Irrigation District,12312,CAMX,1 -95341,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95341,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95343,CA,Merced Irrigation District,12312,CAMX,1 95344,CA,Merced Irrigation District,12312,CAMX,1 -95345,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95346,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95347,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95345,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95346,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95347,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95348,CA,Merced Irrigation District,12312,CAMX,1 -95348,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95348,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95350,CA,Modesto Irrigation District,12745,CAMX,1 95351,CA,Modesto Irrigation District,12745,CAMX,1 95351,CA,Turlock Irrigation District,19281,CAMX,0 @@ -66881,369 +66747,369 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 95354,CA,Modesto Irrigation District,12745,CAMX,1 95355,CA,Modesto Irrigation District,12745,CAMX,1 95356,CA,Modesto Irrigation District,12745,CAMX,1 -95356,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95356,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95357,CA,Modesto Irrigation District,12745,CAMX,1 -95357,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95357,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95358,CA,Modesto Irrigation District,12745,CAMX,1 -95358,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95358,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95358,CA,Turlock Irrigation District,19281,CAMX,0 -95360,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95360,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95360,CA,Turlock Irrigation District,19281,CAMX,0 95361,CA,Modesto Irrigation District,12745,CAMX,1 -95361,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95363,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95361,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95363,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95363,CA,Turlock Irrigation District,19281,CAMX,0 -95364,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95364,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95364,CA,Southern California Edison Co,17609,CAMX,0 95365,CA,Merced Irrigation District,12312,CAMX,1 -95365,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95365,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95366,CA,Modesto Irrigation District,12745,CAMX,1 -95366,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95366,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95367,CA,Modesto Irrigation District,12745,CAMX,1 -95367,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95367,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95368,CA,Modesto Irrigation District,12745,CAMX,1 -95368,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95368,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95369,CA,Merced Irrigation District,12312,CAMX,1 -95369,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95369,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95369,CA,Turlock Irrigation District,19281,CAMX,0 -95370,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95372,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95373,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95370,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95372,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95373,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95374,CA,Merced Irrigation District,12312,CAMX,1 -95374,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95374,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95374,CA,Turlock Irrigation District,19281,CAMX,0 -95375,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95376,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95377,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95378,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95379,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95380,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95375,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95376,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95377,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95378,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95379,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95380,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95380,CA,Turlock Irrigation District,19281,CAMX,0 95381,CA,Turlock Irrigation District,19281,CAMX,1 95382,CA,Turlock Irrigation District,19281,CAMX,1 -95383,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95383,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95385,CA,Modesto Irrigation District,12745,CAMX,1 -95385,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95385,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95386,CA,Modesto Irrigation District,12745,CAMX,1 -95386,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95386,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95386,CA,Turlock Irrigation District,19281,CAMX,0 -95387,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95387,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95388,CA,Merced Irrigation District,12312,CAMX,1 -95388,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95389,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95388,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95389,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95389,CA,Southern California Edison Co,17609,CAMX,0 -95391,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95391,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95397,CA,Turlock Irrigation District,19281,CAMX,1 -95401,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95402,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95403,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95404,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95405,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95406,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95407,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95409,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95410,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95412,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95415,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95416,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95417,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95418,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95419,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95420,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95421,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95422,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95423,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95424,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95425,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95426,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95427,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95428,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95429,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95430,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95431,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95432,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95433,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95435,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95436,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95437,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95439,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95441,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95442,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95443,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95444,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95445,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95446,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95401,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95402,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95403,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95404,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95405,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95406,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95407,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95409,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95410,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95412,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95415,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95416,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95417,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95418,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95419,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95420,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95421,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95422,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95423,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95424,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95425,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95426,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95427,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95428,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95429,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95430,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95431,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95432,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95433,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95435,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95436,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95437,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95439,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95441,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95442,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95443,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95444,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95445,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95446,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95448,CA,City of Healdsburg - (CA),8348,CAMX,1 -95448,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95449,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95450,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95451,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95452,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95453,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95454,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95456,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95457,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95458,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95459,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95460,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95461,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95462,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95463,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95464,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95465,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95466,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95467,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95468,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95469,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95470,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95471,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95472,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95473,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95476,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95480,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95481,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95448,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95449,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95450,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95451,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95452,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95453,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95454,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95456,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95457,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95458,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95459,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95460,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95461,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95462,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95463,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95464,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95465,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95466,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95467,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95468,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95469,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95470,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95471,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95472,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95473,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95476,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95480,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95481,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95482,CA,City of Ukiah - (CA),19397,CAMX,1 -95482,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95485,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95486,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95487,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95488,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95490,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95492,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95493,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95494,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95497,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95501,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95502,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95503,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95511,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95514,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95518,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95519,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95521,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95524,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95525,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95482,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95485,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95486,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95487,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95488,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95490,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95492,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95493,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95494,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95497,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95501,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95502,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95503,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95511,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95514,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95518,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95519,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95521,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95524,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95525,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95525,CA,PacifiCorp,14354,NWPP,0 -95526,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95527,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95528,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95526,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95527,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95528,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95531,CA,PacifiCorp,14354,NWPP,1 95532,CA,PacifiCorp,14354,NWPP,1 -95534,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95536,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95537,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95534,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95536,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95537,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95538,CA,PacifiCorp,14354,NWPP,1 -95540,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95542,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95540,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95542,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95543,CA,PacifiCorp,14354,NWPP,1 -95545,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95546,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95547,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95548,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95545,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95546,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95547,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95548,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95548,CA,PacifiCorp,14354,NWPP,0 -95549,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95550,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95551,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95552,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95553,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95554,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95555,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95549,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95550,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95551,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95552,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95553,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95554,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95555,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95555,CA,PacifiCorp,14354,NWPP,0 -95556,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95556,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95556,CA,PacifiCorp,14354,NWPP,0 -95558,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95559,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95560,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95562,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95558,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95559,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95560,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95562,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95563,CA,Pacific Gas & Electric Co,14328,CAMX,1 95563,CA,Trinity Public Utilities District,63328,CAMX,0 -95564,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95565,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95564,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95565,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95567,CA,PacifiCorp,14354,NWPP,1 -95568,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95568,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95568,CA,PacifiCorp,14354,NWPP,0 -95569,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95570,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95571,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95573,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95585,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95587,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95589,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95595,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95601,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95602,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95603,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95569,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95570,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95571,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95573,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95585,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95587,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95589,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95595,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95601,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95602,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95603,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95604,CA,Liberty Utilities,57483,CAMX,1 -95605,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95605,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95605,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95606,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95607,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95606,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95607,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95608,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95609,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95610,CA,City of Roseville - (CA),16295,CAMX,1 -95610,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95610,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95610,CA,Sacramento Municipal Util Dist,16534,CAMX,0 95611,CA,Sacramento Municipal Util Dist,16534,CAMX,1 -95612,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95612,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95612,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95613,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95614,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95615,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95613,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95614,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95615,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95615,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95616,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95617,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95618,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95619,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95620,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95616,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95617,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95618,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95619,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95620,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95621,CA,City of Roseville - (CA),16295,CAMX,1 95621,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95623,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95623,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95624,CA,Sacramento Municipal Util Dist,16534,CAMX,1 -95625,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95626,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95625,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95626,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95626,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95627,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95627,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95628,CA,Sacramento Municipal Util Dist,16534,CAMX,1 -95629,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95630,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95629,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95630,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95630,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95631,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95632,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95631,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95632,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95632,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95633,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95634,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95635,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95636,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95637,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95638,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95633,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95634,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95635,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95636,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95637,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95638,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95638,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95639,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95639,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95639,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95640,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95640,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95640,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95641,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95641,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95641,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95642,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95644,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95645,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95646,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95648,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95650,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95651,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95642,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95644,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95645,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95646,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95648,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95650,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95651,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95652,CA,Sacramento Municipal Util Dist,16534,CAMX,1 -95653,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95654,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95653,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95654,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95655,CA,Sacramento Municipal Util Dist,16534,CAMX,1 -95656,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95658,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95659,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95656,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95658,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95659,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95659,CA,Sacramento Municipal Util Dist,16534,CAMX,0 95660,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95661,CA,City of Roseville - (CA),16295,CAMX,1 -95661,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95661,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95661,CA,Sacramento Municipal Util Dist,16534,CAMX,0 95662,CA,City of Roseville - (CA),16295,CAMX,1 -95662,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95662,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95662,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95663,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95664,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95665,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95666,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95667,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95663,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95664,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95665,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95666,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95667,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95668,CA,City of Roseville - (CA),16295,CAMX,1 -95668,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95668,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95668,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95669,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95669,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95669,CA,Sacramento Municipal Util Dist,16534,CAMX,0 95670,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95671,CA,Sacramento Municipal Util Dist,16534,CAMX,1 -95672,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95672,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95673,CA,Sacramento Municipal Util Dist,16534,CAMX,1 -95674,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95675,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95676,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95674,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95675,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95676,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95677,CA,City of Roseville - (CA),16295,CAMX,1 -95677,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95677,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95678,CA,City of Roseville - (CA),16295,CAMX,1 -95678,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95678,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95678,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95679,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95679,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95680,CA,Sacramento Municipal Util Dist,16534,CAMX,1 -95681,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95682,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95681,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95682,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95682,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95683,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95683,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95683,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95684,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95685,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95686,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95687,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95688,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95689,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95690,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95684,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95685,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95686,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95687,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95688,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95689,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95690,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95690,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95691,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95691,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95691,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95692,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95692,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95693,CA,Sacramento Municipal Util Dist,16534,CAMX,1 -95694,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95695,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95696,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95697,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95698,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95699,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95701,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95703,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95709,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95712,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95713,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95714,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95715,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95717,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95720,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95721,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95722,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95694,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95695,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95696,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95697,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95698,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95699,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95701,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95703,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95709,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95712,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95713,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95714,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95715,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95717,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95720,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95721,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95722,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95724,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95726,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95726,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95728,CA,Liberty Utilities,57483,CAMX,1 -95728,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95735,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95736,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95728,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95735,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95736,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95741,CA,Sacramento Municipal Util Dist,16534,CAMX,1 -95742,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95742,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95742,CA,Sacramento Municipal Util Dist,16534,CAMX,0 95746,CA,City of Roseville - (CA),16295,CAMX,1 -95746,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95746,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95746,CA,Sacramento Municipal Util Dist,16534,CAMX,0 95747,CA,City of Roseville - (CA),16295,CAMX,1 -95747,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95747,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95747,CA,Sacramento Municipal Util Dist,16534,CAMX,0 95757,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95758,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95759,CA,Sacramento Municipal Util Dist,16534,CAMX,1 -95762,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95762,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95762,CA,Sacramento Municipal Util Dist,16534,CAMX,0 95763,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95765,CA,City of Roseville - (CA),16295,CAMX,1 -95765,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95776,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95765,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95776,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95776,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95798,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95799,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95798,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95799,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95811,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95812,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95813,CA,Sacramento Municipal Util Dist,16534,CAMX,1 -95814,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95814,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95814,CA,Sacramento Municipal Util Dist,16534,CAMX,0 95815,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95816,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95817,CA,Sacramento Municipal Util Dist,16534,CAMX,1 -95818,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95818,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95818,CA,Sacramento Municipal Util Dist,16534,CAMX,0 95819,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95820,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95821,CA,Sacramento Municipal Util Dist,16534,CAMX,1 -95822,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95822,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95822,CA,Sacramento Municipal Util Dist,16534,CAMX,0 95823,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95824,CA,Sacramento Municipal Util Dist,16534,CAMX,1 @@ -67253,24 +67119,24 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 95828,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95829,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95830,CA,Sacramento Municipal Util Dist,16534,CAMX,1 -95831,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95831,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95831,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95832,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95832,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95832,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95833,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95833,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95833,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95834,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95834,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95834,CA,Sacramento Municipal Util Dist,16534,CAMX,0 95835,CA,Sacramento Municipal Util Dist,16534,CAMX,1 -95836,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95836,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95836,CA,Sacramento Municipal Util Dist,16534,CAMX,0 -95837,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95837,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95837,CA,Sacramento Municipal Util Dist,16534,CAMX,0 95838,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95840,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95841,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95842,CA,Sacramento Municipal Util Dist,16534,CAMX,1 -95843,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95843,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95843,CA,Sacramento Municipal Util Dist,16534,CAMX,0 95851,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95852,CA,Sacramento Municipal Util Dist,16534,CAMX,1 @@ -67282,207 +67148,207 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 95867,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95887,CA,Sacramento Municipal Util Dist,16534,CAMX,1 95894,CA,Sacramento Municipal Util Dist,16534,CAMX,1 -95899,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95901,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95903,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95910,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95912,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95913,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95914,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95915,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95916,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95917,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95918,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95919,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95920,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95922,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95923,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95924,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95925,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95926,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95927,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95928,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95929,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95930,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95932,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95934,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95935,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95936,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95937,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95938,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95939,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95940,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95941,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95942,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95943,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95944,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95945,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95946,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95899,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95901,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95903,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95910,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95912,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95913,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95914,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95915,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95916,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95917,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95918,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95919,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95920,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95922,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95923,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95924,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95925,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95926,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95927,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95928,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95929,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95930,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95932,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95934,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95935,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95936,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95937,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95938,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95939,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95940,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95941,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95942,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95943,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95944,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95945,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95946,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95947,CA,Lassen Municipal Utility District,10724,CAMX,1 -95947,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95948,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95949,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95950,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95951,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95953,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95954,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95955,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95956,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95957,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95958,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95947,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95948,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95949,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95950,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95951,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95953,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95954,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95955,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95956,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95957,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95958,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95959,CA,Liberty Utilities,57483,CAMX,1 -95959,CA,Pacific Gas & Electric Co,14328,CAMX,0 -95960,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95961,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95962,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95963,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95965,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95966,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95967,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95968,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95969,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95970,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95971,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95959,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +95960,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95961,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95962,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95963,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95965,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95966,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95967,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95968,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95969,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95970,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95971,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95971,CA,Plumas-Sierra Rural Elec Coop,15308,CAMX,0 -95972,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95973,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95974,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95975,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95976,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95977,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95978,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95979,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95980,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95981,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95982,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95972,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95973,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95974,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95975,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95976,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95977,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95978,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95979,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95980,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95981,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95982,CA,Pacific Gas & Electric Co.,14328,CAMX,1 95983,CA,Lassen Municipal Utility District,10724,CAMX,1 -95983,CA,Pacific Gas & Electric Co,14328,CAMX,0 +95983,CA,Pacific Gas & Electric Co.,14328,CAMX,0 95983,CA,Plumas-Sierra Rural Elec Coop,15308,CAMX,0 -95984,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95986,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95987,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95988,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95991,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95992,CA,Pacific Gas & Electric Co,14328,CAMX,1 -95993,CA,Pacific Gas & Electric Co,14328,CAMX,1 +95984,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95986,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95987,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95988,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95991,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95992,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +95993,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96001,CA,City of Redding - (CA),15783,CAMX,1 -96001,CA,Pacific Gas & Electric Co,14328,CAMX,0 -96002,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96001,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +96002,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96003,CA,City of Redding - (CA),15783,CAMX,1 96003,CA,City of Shasta Lake - (CA),17896,CAMX,0 -96003,CA,Pacific Gas & Electric Co,14328,CAMX,0 +96003,CA,Pacific Gas & Electric Co.,14328,CAMX,0 96006,CA,PacifiCorp,14354,NWPP,1 96006,CA,Surprise Valley Electrification,18260,NWPP,0 -96007,CA,Pacific Gas & Electric Co,14328,CAMX,1 -96008,CA,Pacific Gas & Electric Co,14328,CAMX,1 -96009,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96007,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +96008,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +96009,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96009,CA,Surprise Valley Electrification,18260,NWPP,0 -96010,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96010,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96010,CA,PacifiCorp,14354,NWPP,0 -96011,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96011,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96011,CA,PacifiCorp,14354,NWPP,0 -96013,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96013,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96013,CA,PacifiCorp,14354,NWPP,0 96014,CA,PacifiCorp,14354,NWPP,1 96015,CA,PacifiCorp,14354,NWPP,1 96015,CA,Surprise Valley Electrification,18260,NWPP,0 -96016,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96016,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96017,CA,PacifiCorp,14354,NWPP,1 96019,CA,City of Shasta Lake - (CA),17896,CAMX,1 -96019,CA,Pacific Gas & Electric Co,14328,CAMX,0 +96019,CA,Pacific Gas & Electric Co.,14328,CAMX,0 96020,CA,Lassen Municipal Utility District,10724,CAMX,1 -96020,CA,Pacific Gas & Electric Co,14328,CAMX,0 -96021,CA,Pacific Gas & Electric Co,14328,CAMX,1 -96022,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96020,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +96021,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +96022,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96023,CA,PacifiCorp,14354,NWPP,1 -96024,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96024,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96025,CA,PacifiCorp,14354,NWPP,1 96027,CA,PacifiCorp,14354,NWPP,1 -96028,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96028,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96028,CA,PacifiCorp,14354,NWPP,0 96028,CA,Surprise Valley Electrification,18260,NWPP,0 -96029,CA,Pacific Gas & Electric Co,14328,CAMX,1 -96031,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96029,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +96031,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96031,CA,PacifiCorp,14354,NWPP,0 96032,CA,PacifiCorp,14354,NWPP,1 -96033,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96033,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96033,CA,PacifiCorp,14354,NWPP,0 96034,CA,PacifiCorp,14354,NWPP,1 -96035,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96035,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96037,CA,PacifiCorp,14354,NWPP,1 96038,CA,PacifiCorp,14354,NWPP,1 -96039,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96039,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96039,CA,PacifiCorp,14354,NWPP,0 96040,CA,Lassen Municipal Utility District,10724,CAMX,1 -96040,CA,Pacific Gas & Electric Co,14328,CAMX,0 +96040,CA,Pacific Gas & Electric Co.,14328,CAMX,0 96041,CA,Trinity Public Utilities District,63328,CAMX,1 96044,CA,PacifiCorp,14354,NWPP,1 -96046,CA,Pacific Gas & Electric Co,14328,CAMX,1 -96047,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96046,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +96047,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96048,CA,PacifiCorp,14354,NWPP,1 96049,CA,PacifiCorp,14354,NWPP,1 96050,CA,PacifiCorp,14354,NWPP,1 -96051,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96051,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96051,CA,PacifiCorp,14354,NWPP,0 -96052,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96052,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96052,CA,PacifiCorp,14354,NWPP,0 -96054,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96054,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96054,CA,PacifiCorp,14354,NWPP,0 96054,CA,Surprise Valley Electrification,18260,NWPP,0 -96055,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96055,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96056,CA,Lassen Municipal Utility District,10724,CAMX,1 -96056,CA,Pacific Gas & Electric Co,14328,CAMX,0 +96056,CA,Pacific Gas & Electric Co.,14328,CAMX,0 96056,CA,PacifiCorp,14354,NWPP,0 96056,CA,Surprise Valley Electrification,18260,NWPP,0 96057,CA,PacifiCorp,14354,NWPP,1 -96058,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96058,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96058,CA,PacifiCorp,14354,NWPP,0 96058,CA,Surprise Valley Electrification,18260,NWPP,0 -96059,CA,Pacific Gas & Electric Co,14328,CAMX,1 -96061,CA,Pacific Gas & Electric Co,14328,CAMX,1 -96062,CA,Pacific Gas & Electric Co,14328,CAMX,1 -96063,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96059,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +96061,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +96062,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +96063,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96064,CA,PacifiCorp,14354,NWPP,1 -96065,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96065,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96065,CA,PacifiCorp,14354,NWPP,0 96067,CA,PacifiCorp,14354,NWPP,1 -96068,CA,Pacific Gas & Electric Co,14328,CAMX,1 -96069,CA,Pacific Gas & Electric Co,14328,CAMX,1 -96070,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96068,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +96069,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +96070,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96071,CA,Lassen Municipal Utility District,10724,CAMX,1 -96071,CA,Pacific Gas & Electric Co,14328,CAMX,0 -96073,CA,Pacific Gas & Electric Co,14328,CAMX,1 -96074,CA,Pacific Gas & Electric Co,14328,CAMX,1 -96075,CA,Pacific Gas & Electric Co,14328,CAMX,1 -96076,CA,Pacific Gas & Electric Co,14328,CAMX,1 -96078,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96071,CA,Pacific Gas & Electric Co.,14328,CAMX,0 +96073,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +96074,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +96075,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +96076,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +96078,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96079,CA,City of Shasta Lake - (CA),17896,CAMX,1 -96080,CA,Pacific Gas & Electric Co,14328,CAMX,1 -96084,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96080,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +96084,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96085,CA,PacifiCorp,14354,NWPP,1 96086,CA,PacifiCorp,14354,NWPP,1 -96087,CA,Pacific Gas & Electric Co,14328,CAMX,1 -96088,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96087,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +96088,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96089,CA,City of Shasta Lake - (CA),17896,CAMX,1 -96090,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96090,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96091,CA,PacifiCorp,14354,NWPP,1 -96092,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96092,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96093,CA,Trinity Public Utilities District,63328,CAMX,1 96094,CA,PacifiCorp,14354,NWPP,1 -96095,CA,Pacific Gas & Electric Co,14328,CAMX,1 -96096,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96095,CA,Pacific Gas & Electric Co.,14328,CAMX,1 +96096,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96097,CA,PacifiCorp,14354,NWPP,1 -96099,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96099,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96101,CA,PacifiCorp,14354,NWPP,1 96101,CA,Surprise Valley Electrification,18260,NWPP,0 -96103,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96103,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96103,CA,Plumas-Sierra Rural Elec Coop,15308,CAMX,0 96104,CA,PacifiCorp,14354,NWPP,1 96104,CA,Surprise Valley Electrification,18260,NWPP,0 96105,CA,Plumas-Sierra Rural Elec Coop,15308,CAMX,1 96106,CA,Plumas-Sierra Rural Elec Coop,15308,CAMX,1 96107,CA,Liberty Utilities,57483,CAMX,1 -96107,CA,Pacific Gas & Electric Co,14328,CAMX,0 +96107,CA,Pacific Gas & Electric Co.,14328,CAMX,0 96107,CA,Southern California Edison Co,17609,CAMX,0 96108,CA,PacifiCorp,14354,NWPP,1 96108,CA,Surprise Valley Electrification,18260,NWPP,0 @@ -67495,7 +67361,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 96112,CA,Surprise Valley Electrification,18260,NWPP,0 96113,CA,Plumas-Sierra Rural Elec Coop,15308,CAMX,1 96114,CA,Lassen Municipal Utility District,10724,CAMX,1 -96114,CA,Pacific Gas & Electric Co,14328,CAMX,0 +96114,CA,Pacific Gas & Electric Co.,14328,CAMX,0 96114,CA,Plumas-Sierra Rural Elec Coop,15308,CAMX,0 96115,CA,PacifiCorp,14354,NWPP,1 96115,CA,Surprise Valley Electrification,18260,NWPP,0 @@ -67503,34 +67369,34 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 96117,CA,Lassen Municipal Utility District,10724,CAMX,1 96117,CA,Plumas-Sierra Rural Elec Coop,15308,CAMX,0 96118,CA,Liberty Utilities,57483,CAMX,1 -96118,CA,Pacific Gas & Electric Co,14328,CAMX,0 +96118,CA,Pacific Gas & Electric Co.,14328,CAMX,0 96118,CA,Plumas-Sierra Rural Elec Coop,15308,CAMX,0 -96119,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96119,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96119,CA,Surprise Valley Electrification,18260,NWPP,0 96120,CA,Liberty Utilities,57483,CAMX,1 -96120,CA,Pacific Gas & Electric Co,14328,CAMX,0 +96120,CA,Pacific Gas & Electric Co.,14328,CAMX,0 96120,CA,Southern California Edison Co,17609,CAMX,0 96121,CA,Lassen Municipal Utility District,10724,CAMX,1 96121,CA,Plumas-Sierra Rural Elec Coop,15308,CAMX,0 -96122,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96122,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96122,CA,Plumas-Sierra Rural Elec Coop,15308,CAMX,0 96123,CA,Lassen Municipal Utility District,10724,CAMX,1 96123,CA,Surprise Valley Electrification,18260,NWPP,0 96124,CA,Liberty Utilities,57483,CAMX,1 -96124,CA,Pacific Gas & Electric Co,14328,CAMX,0 +96124,CA,Pacific Gas & Electric Co.,14328,CAMX,0 96124,CA,Plumas-Sierra Rural Elec Coop,15308,CAMX,0 96125,CA,Liberty Utilities,57483,CAMX,1 -96125,CA,Pacific Gas & Electric Co,14328,CAMX,0 +96125,CA,Pacific Gas & Electric Co.,14328,CAMX,0 96125,CA,Plumas-Sierra Rural Elec Coop,15308,CAMX,0 96126,CA,Liberty Utilities,57483,CAMX,1 -96126,CA,Pacific Gas & Electric Co,14328,CAMX,0 +96126,CA,Pacific Gas & Electric Co.,14328,CAMX,0 96126,CA,Plumas-Sierra Rural Elec Coop,15308,CAMX,0 96127,CA,Lassen Municipal Utility District,10724,CAMX,1 96128,CA,Lassen Municipal Utility District,10724,CAMX,1 96128,CA,Plumas-Sierra Rural Elec Coop,15308,CAMX,0 96129,CA,Plumas-Sierra Rural Elec Coop,15308,CAMX,1 96130,CA,Lassen Municipal Utility District,10724,CAMX,1 -96130,CA,Pacific Gas & Electric Co,14328,CAMX,0 +96130,CA,Pacific Gas & Electric Co.,14328,CAMX,0 96130,CA,Plumas-Sierra Rural Elec Coop,15308,CAMX,0 96130,CA,Surprise Valley Electrification,18260,NWPP,0 96132,CA,Surprise Valley Electrification,18260,NWPP,1 @@ -67541,26 +67407,26 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 96136,CA,Lassen Municipal Utility District,10724,CAMX,1 96136,CA,Plumas-Sierra Rural Elec Coop,15308,CAMX,0 96137,CA,Lassen Municipal Utility District,10724,CAMX,1 -96137,CA,Pacific Gas & Electric Co,14328,CAMX,0 +96137,CA,Pacific Gas & Electric Co.,14328,CAMX,0 96140,CA,Liberty Utilities,57483,CAMX,1 96141,CA,Liberty Utilities,57483,CAMX,1 -96141,CA,Pacific Gas & Electric Co,14328,CAMX,0 +96141,CA,Pacific Gas & Electric Co.,14328,CAMX,0 96142,CA,Liberty Utilities,57483,CAMX,1 -96142,CA,Pacific Gas & Electric Co,14328,CAMX,0 +96142,CA,Pacific Gas & Electric Co.,14328,CAMX,0 96143,CA,Liberty Utilities,57483,CAMX,1 96145,CA,Liberty Utilities,57483,CAMX,1 96146,CA,Liberty Utilities,57483,CAMX,1 -96146,CA,Pacific Gas & Electric Co,14328,CAMX,0 +96146,CA,Pacific Gas & Electric Co.,14328,CAMX,0 96148,CA,Liberty Utilities,57483,CAMX,1 96150,CA,Liberty Utilities,57483,CAMX,1 -96150,CA,Pacific Gas & Electric Co,14328,CAMX,0 +96150,CA,Pacific Gas & Electric Co.,14328,CAMX,0 96151,CA,Liberty Utilities,57483,CAMX,1 96151,CA,Sierra Pacific Power Co [Berkshire Hathaway Inc],1157,NWPP,0 96152,CA,Liberty Utilities,57483,CAMX,1 96152,CA,Sierra Pacific Power Co [Berkshire Hathaway Inc],1157,NWPP,0 96154,CA,Liberty Utilities,57483,CAMX,1 96154,CA,Sierra Pacific Power Co [Berkshire Hathaway Inc],1157,NWPP,0 -96155,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96155,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96156,CA,Liberty Utilities,57483,CAMX,1 96156,CA,Sierra Pacific Power Co [Berkshire Hathaway Inc],1157,NWPP,0 96157,CA,Liberty Utilities,57483,CAMX,1 @@ -67569,9 +67435,9 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 96158,CA,Sierra Pacific Power Co [Berkshire Hathaway Inc],1157,NWPP,0 96160,CA,Truckee Donner P U D,19229,NWPP,1 96161,CA,Liberty Utilities,57483,CAMX,1 -96161,CA,Pacific Gas & Electric Co,14328,CAMX,0 +96161,CA,Pacific Gas & Electric Co.,14328,CAMX,0 96161,CA,Truckee Donner P U D,19229,NWPP,0 -96162,CA,Pacific Gas & Electric Co,14328,CAMX,1 +96162,CA,Pacific Gas & Electric Co.,14328,CAMX,1 96701,HI,Hawaiian Electric Co Inc,19547,HIOA,1 96703,HI,Kauai Island Utility Cooperative,10071,HIMS,1 96704,HI,Hawaii Electric Light Co Inc,8287,HIMS,1 @@ -70120,7 +69986,7 @@ zip,state,UtilName,trim_util_code,SUBRGN,Predominant Utility 99826,AK,Yakutat Power Inc,63089,AKMS,0 99827,AK,Alaska Power and Telephone Co,219,AKMS,1 99829,AK,Inside Passage Electric Coop,62681,AKMS,1 -99829,AK,Tenakee Springs AK (City of),61462,AKMS,0 +99829,AK,Tenakee Springs AK (City of),61462,CAMX,0 99830,AK,Alaska Power and Telephone Co,219,AKMS,1 99830,AK,Petersburg Borough - (AK),14856,AKMS,0 99832,AK,Pelican Utility District,62359,AKMS,1 diff --git a/app/dist/prod/bundle.js b/app/dist/prod/bundle.js new file mode 100644 index 0000000..c04032e --- /dev/null +++ b/app/dist/prod/bundle.js @@ -0,0 +1,7 @@ +!function(t){var e=window.webpackHotUpdate;window.webpackHotUpdate=function(t,n){!function(t,e){if(!_[t]||!b[t])return;for(var n in b[t]=!1,e)Object.prototype.hasOwnProperty.call(e,n)&&(h[n]=e[n]);0==--m&&0===g&&A()}(t,n),e&&e(t,n)};var n,r=!0,a="24c41d059da3ac9c055c",i={},o=[],s=[];function l(t){var e=C[t];if(!e)return $;var r=function(r){return e.hot.active?(C[r]?-1===C[r].parents.indexOf(t)&&C[r].parents.push(t):(o=[t],n=r),-1===e.children.indexOf(r)&&e.children.push(r)):(console.warn("[HMR] unexpected require("+r+") from disposed module "+t),o=[]),$(r)},a=function(t){return{configurable:!0,enumerable:!0,get:function(){return $[t]},set:function(e){$[t]=e}}};for(var i in $)Object.prototype.hasOwnProperty.call($,i)&&"e"!==i&&"t"!==i&&Object.defineProperty(r,i,a(i));return r.e=function(t){return"ready"===d&&p("prepare"),g++,$.e(t).then(e,(function(t){throw e(),t}));function e(){g--,"prepare"===d&&(y[t]||R(t),0===g&&0===m&&A())}},r.t=function(t,e){return 1&e&&(t=r(t)),$.t(t,-2&e)},r}function c(t){var e={_acceptedDependencies:{},_declinedDependencies:{},_selfAccepted:!1,_selfDeclined:!1,_disposeHandlers:[],_main:n!==t,active:!0,accept:function(t,n){if(void 0===t)e._selfAccepted=!0;else if("function"==typeof t)e._selfAccepted=t;else if("object"==typeof t)for(var r=0;r=0&&e._disposeHandlers.splice(n,1)},check:w,apply:E,status:function(t){if(!t)return d;u.push(t)},addStatusHandler:function(t){u.push(t)},removeStatusHandler:function(t){var e=u.indexOf(t);e>=0&&u.splice(e,1)},data:i[t]};return n=void 0,e}var u=[],d="idle";function p(t){d=t;for(var e=0;e0;){var a=r.pop(),i=a.id,o=a.chain;if((l=C[i])&&!l.hot._selfAccepted){if(l.hot._selfDeclined)return{type:"self-declined",chain:o,moduleId:i};if(l.hot._main)return{type:"unaccepted",chain:o,moduleId:i};for(var s=0;s ")),R.type){case"self-declined":e.onDeclined&&e.onDeclined(R),e.ignoreDeclined||(A=new Error("Aborted because of self decline: "+R.moduleId+k));break;case"declined":e.onDeclined&&e.onDeclined(R),e.ignoreDeclined||(A=new Error("Aborted because of declined dependency: "+R.moduleId+" in "+R.parentId+k));break;case"unaccepted":e.onUnaccepted&&e.onUnaccepted(R),e.ignoreUnaccepted||(A=new Error("Aborted because "+c+" is not accepted"+k));break;case"accepted":e.onAccepted&&e.onAccepted(R),E=!0;break;case"disposed":e.onDisposed&&e.onDisposed(R),S=!0;break;default:throw new Error("Unexception type "+R.type)}if(A)return p("abort"),Promise.reject(A);if(E)for(c in y[c]=h[c],f(g,R.outdatedModules),R.outdatedDependencies)Object.prototype.hasOwnProperty.call(R.outdatedDependencies,c)&&(m[c]||(m[c]=[]),f(m[c],R.outdatedDependencies[c]));S&&(f(g,[R.moduleId]),y[c]=b)}var F,O=[];for(r=0;r0;)if(c=T.pop(),l=C[c]){var I={},N=l.hot._disposeHandlers;for(s=0;s=0&&j.parents.splice(F,1))}}for(c in m)if(Object.prototype.hasOwnProperty.call(m,c)&&(l=C[c]))for(D=m[c],s=0;s=0&&l.children.splice(F,1);for(c in p("apply"),a=v,y)Object.prototype.hasOwnProperty.call(y,c)&&(t[c]=y[c]);var P=null;for(c in m)if(Object.prototype.hasOwnProperty.call(m,c)&&(l=C[c])){D=m[c];var L=[];for(r=0;r=0&&Math.floor(e)===e&&isFinite(t)}function f(t){return i(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function h(t){return null==t?"":Array.isArray(t)||u(t)&&t.toString===c?JSON.stringify(t,null,2):String(t)}function v(t){var e=parseFloat(t);return isNaN(e)?t:e}function m(t,e){for(var n=Object.create(null),r=t.split(","),a=0;a-1)return t.splice(n,1)}}var b=Object.prototype.hasOwnProperty;function _(t,e){return b.call(t,e)}function x(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}var w=/-(\w)/g,R=x((function(t){return t.replace(w,(function(t,e){return e?e.toUpperCase():""}))})),A=x((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),E=/\B([A-Z])/g,C=x((function(t){return t.replace(E,"-$1").toLowerCase()}));var $=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n};function S(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function k(t,e){for(var n in e)t[n]=e[n];return t}function F(t){for(var e={},n=0;n0,Z=Y&&Y.indexOf("edge/")>0,J=(Y&&Y.indexOf("android"),Y&&/iphone|ipad|ipod|ios/.test(Y)||"ios"===V),Q=(Y&&/chrome\/\d+/.test(Y),Y&&/phantomjs/.test(Y),Y&&Y.match(/firefox\/(\d+)/)),tt={}.watch,et=!1;if(W)try{var nt={};Object.defineProperty(nt,"passive",{get:function(){et=!0}}),window.addEventListener("test-passive",null,nt)}catch(t){}var rt=function(){return void 0===G&&(G=!W&&!q&&void 0!==t&&(t.process&&"server"===t.process.env.VUE_ENV)),G},at=W&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function it(t){return"function"==typeof t&&/native code/.test(t.toString())}var ot,st="undefined"!=typeof Symbol&&it(Symbol)&&"undefined"!=typeof Reflect&&it(Reflect.ownKeys);ot="undefined"!=typeof Set&&it(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var lt=O,ct=0,ut=function(){this.id=ct++,this.subs=[]};ut.prototype.addSub=function(t){this.subs.push(t)},ut.prototype.removeSub=function(t){y(this.subs,t)},ut.prototype.depend=function(){ut.target&&ut.target.addDep(this)},ut.prototype.notify=function(){var t=this.subs.slice();for(var e=0,n=t.length;e-1)if(i&&!_(a,"default"))o=!1;else if(""===o||o===C(t)){var l=Ht(String,a.type);(l<0||s0&&(ue((l=t(l,(n||"")+"_"+r))[0])&&ue(u)&&(d[c]=gt(u.text+l[0].text),l.shift()),d.push.apply(d,l)):s(l)?ue(u)?d[c]=gt(u.text+l):""!==l&&d.push(gt(l)):ue(l)&&ue(u)?d[c]=gt(u.text+l.text):(o(e._isVList)&&i(l.tag)&&a(l.key)&&i(n)&&(l.key="__vlist"+n+"_"+r+"__"),d.push(l)));return d}(t):void 0}function ue(t){return i(t)&&i(t.text)&&!1===t.isComment}function de(t,e){if(t){for(var n=Object.create(null),r=st?Reflect.ownKeys(t):Object.keys(t),a=0;a0,o=t?!!t.$stable:!i,s=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(o&&n&&n!==r&&s===n.$key&&!i&&!n.$hasNormal)return n;for(var l in a={},t)t[l]&&"$"!==l[0]&&(a[l]=ve(e,l,t[l]))}else a={};for(var c in e)c in a||(a[c]=me(e,c));return t&&Object.isExtensible(t)&&(t._normalized=a),H(a,"$stable",o),H(a,"$key",s),H(a,"$hasNormal",i),a}function ve(t,e,n){var r=function(){var t=arguments.length?n.apply(null,arguments):n({});return(t=t&&"object"==typeof t&&!Array.isArray(t)?[t]:ce(t))&&(0===t.length||1===t.length&&t[0].isComment)?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:r,enumerable:!0,configurable:!0}),r}function me(t,e){return function(){return t[e]}}function ge(t,e){var n,r,a,o,s;if(Array.isArray(t)||"string"==typeof t)for(n=new Array(t.length),r=0,a=t.length;rdocument.createEvent("Event").timeStamp&&(ln=function(){return cn.now()})}function un(){var t,e;for(sn=ln(),an=!0,tn.sort((function(t,e){return t.id-e.id})),on=0;onon&&tn[n].id>t.id;)n--;tn.splice(n+1,0,t)}else tn.push(t);rn||(rn=!0,ee(un))}}(this)},pn.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||l(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){Ut(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},pn.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},pn.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},pn.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||y(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var fn={enumerable:!0,configurable:!0,get:O,set:O};function hn(t,e,n){fn.get=function(){return this[e][n]},fn.set=function(t){this[e][n]=t},Object.defineProperty(t,n,fn)}function vn(t){t._watchers=[];var e=t.$options;e.props&&function(t,e){var n=t.$options.propsData||{},r=t._props={},a=t.$options._propKeys=[];t.$parent&&Rt(!1);var i=function(i){a.push(i);var o=Pt(i,e,n,t);Ct(r,i,o),i in t||hn(t,"_props",i)};for(var o in e)i(o);Rt(!0)}(t,e.props),e.methods&&function(t,e){t.$options.props;for(var n in e)t[n]="function"!=typeof e[n]?O:$(e[n],t)}(t,e.methods),e.data?function(t){var e=t.$options.data;u(e=t._data="function"==typeof e?function(t,e){pt();try{return t.call(e,e)}catch(t){return Ut(t,e,"data()"),{}}finally{ft()}}(e,t):e||{})||(e={});var n=Object.keys(e),r=t.$options.props,a=(t.$options.methods,n.length);for(;a--;){var i=n[a];0,r&&_(r,i)||(o=void 0,36!==(o=(i+"").charCodeAt(0))&&95!==o&&hn(t,"_data",i))}var o;Et(e,!0)}(t):Et(t._data={},!0),e.computed&&function(t,e){var n=t._computedWatchers=Object.create(null),r=rt();for(var a in e){var i=e[a],o="function"==typeof i?i:i.get;0,r||(n[a]=new pn(t,o||O,O,mn)),a in t||gn(t,a,i)}}(t,e.computed),e.watch&&e.watch!==tt&&function(t,e){for(var n in e){var r=e[n];if(Array.isArray(r))for(var a=0;a-1:"string"==typeof t?t.split(",").indexOf(e)>-1:!!d(t)&&t.test(e)}function $n(t,e){var n=t.cache,r=t.keys,a=t._vnode;for(var i in n){var o=n[i];if(o){var s=En(o.componentOptions);s&&!e(s)&&Sn(n,i,r,a)}}}function Sn(t,e,n,r){var a=t[e];!a||r&&a.tag===r.tag||a.componentInstance.$destroy(),t[e]=null,y(n,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=xn++,e._isVue=!0,t&&t._isComponent?function(t,e){var n=t.$options=Object.create(t.constructor.options),r=e._parentVnode;n.parent=e.parent,n._parentVnode=r;var a=r.componentOptions;n.propsData=a.propsData,n._parentListeners=a.listeners,n._renderChildren=a.children,n._componentTag=a.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=Nt(wn(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&Ye(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,n=t.$vnode=e._parentVnode,a=n&&n.context;t.$slots=pe(e._renderChildren,a),t.$scopedSlots=r,t._c=function(e,n,r,a){return Le(t,e,n,r,a,!1)},t.$createElement=function(e,n,r,a){return Le(t,e,n,r,a,!0)};var i=n&&n.data;Ct(t,"$attrs",i&&i.attrs||r,null,!0),Ct(t,"$listeners",e._parentListeners||r,null,!0)}(e),Qe(e,"beforeCreate"),function(t){var e=de(t.$options.inject,t);e&&(Rt(!1),Object.keys(e).forEach((function(n){Ct(t,n,e[n])})),Rt(!0))}(e),vn(e),function(t){var e=t.$options.provide;e&&(t._provided="function"==typeof e?e.call(t):e)}(e),Qe(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}(Rn),function(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=$t,t.prototype.$delete=St,t.prototype.$watch=function(t,e,n){if(u(e))return _n(this,t,e,n);(n=n||{}).user=!0;var r=new pn(this,t,e,n);if(n.immediate)try{e.call(this,r.value)}catch(t){Ut(t,this,'callback for immediate watcher "'+r.expression+'"')}return function(){r.teardown()}}}(Rn),function(t){var e=/^hook:/;t.prototype.$on=function(t,n){var r=this;if(Array.isArray(t))for(var a=0,i=t.length;a1?S(n):n;for(var r=S(arguments,1),a='event handler for "'+t+'"',i=0,o=n.length;iparseInt(this.max)&&Sn(o,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={get:function(){return L}};Object.defineProperty(t,"config",e),t.util={warn:lt,extend:k,mergeOptions:Nt,defineReactive:Ct},t.set=$t,t.delete=St,t.nextTick=ee,t.observable=function(t){return Et(t),t},t.options=Object.create(null),j.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,k(t.options.components,Fn),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=S(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=Nt(this.options,t),this}}(t),An(t),function(t){j.forEach((function(e){t[e]=function(t,n){return n?("component"===e&&u(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}))}(t)}(Rn),Object.defineProperty(Rn.prototype,"$isServer",{get:rt}),Object.defineProperty(Rn.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(Rn,"FunctionalRenderContext",{value:Me}),Rn.version="2.6.10";var On=m("style,class"),Mn=m("input,textarea,option,select,progress"),Dn=m("contenteditable,draggable,spellcheck"),Tn=m("events,caret,typing,plaintext-only"),In=m("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Nn="http://www.w3.org/1999/xlink",jn=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Pn=function(t){return jn(t)?t.slice(6,t.length):""},Ln=function(t){return null==t||!1===t};function Bn(t){for(var e=t.data,n=t,r=t;i(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(e=Hn(r.data,e));for(;i(n=n.parent);)n&&n.data&&(e=Hn(e,n.data));return function(t,e){if(i(t)||i(e))return Un(t,Gn(e));return""}(e.staticClass,e.class)}function Hn(t,e){return{staticClass:Un(t.staticClass,e.staticClass),class:i(t.class)?[t.class,e.class]:e.class}}function Un(t,e){return t?e?t+" "+e:t:e||""}function Gn(t){return Array.isArray(t)?function(t){for(var e,n="",r=0,a=t.length;r-1?pr(t,e,n):In(e)?Ln(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):Dn(e)?t.setAttribute(e,function(t,e){return Ln(e)||"false"===e?"false":"contenteditable"===t&&Tn(e)?e:"true"}(e,n)):jn(e)?Ln(n)?t.removeAttributeNS(Nn,Pn(e)):t.setAttributeNS(Nn,e,n):pr(t,e,n)}function pr(t,e,n){if(Ln(n))t.removeAttribute(e);else{if(K&&!X&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var fr={create:ur,update:ur};function hr(t,e){var n=e.elm,r=e.data,o=t.data;if(!(a(r.staticClass)&&a(r.class)&&(a(o)||a(o.staticClass)&&a(o.class)))){var s=Bn(e),l=n._transitionClasses;i(l)&&(s=Un(s,Gn(l))),s!==n._prevClass&&(n.setAttribute("class",s),n._prevClass=s)}}var vr,mr={create:hr,update:hr};function gr(t,e,n){var r=vr;return function a(){var i=e.apply(null,arguments);null!==i&&_r(t,a,n,r)}}var yr=Vt&&!(Q&&Number(Q[1])<=53);function br(t,e,n,r){if(yr){var a=sn,i=e;e=i._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=a||t.timeStamp<=0||t.target.ownerDocument!==document)return i.apply(this,arguments)}}vr.addEventListener(t,e,et?{capture:n,passive:r}:n)}function _r(t,e,n,r){(r||vr).removeEventListener(t,e._wrapper||e,n)}function xr(t,e){if(!a(t.data.on)||!a(e.data.on)){var n=e.data.on||{},r=t.data.on||{};vr=e.elm,function(t){if(i(t.__r)){var e=K?"change":"input";t[e]=[].concat(t.__r,t[e]||[]),delete t.__r}i(t.__c)&&(t.change=[].concat(t.__c,t.change||[]),delete t.__c)}(n),oe(n,r,br,_r,gr,e.context),vr=void 0}}var wr,Rr={create:xr,update:xr};function Ar(t,e){if(!a(t.data.domProps)||!a(e.data.domProps)){var n,r,o=e.elm,s=t.data.domProps||{},l=e.data.domProps||{};for(n in i(l.__ob__)&&(l=e.data.domProps=k({},l)),s)n in l||(o[n]="");for(n in l){if(r=l[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),r===s[n])continue;1===o.childNodes.length&&o.removeChild(o.childNodes[0])}if("value"===n&&"PROGRESS"!==o.tagName){o._value=r;var c=a(r)?"":String(r);Er(o,c)&&(o.value=c)}else if("innerHTML"===n&&qn(o.tagName)&&a(o.innerHTML)){(wr=wr||document.createElement("div")).innerHTML=""+r+"";for(var u=wr.firstChild;o.firstChild;)o.removeChild(o.firstChild);for(;u.firstChild;)o.appendChild(u.firstChild)}else if(r!==s[n])try{o[n]=r}catch(t){}}}}function Er(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(t,e)||function(t,e){var n=t.value,r=t._vModifiers;if(i(r)){if(r.number)return v(n)!==v(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}(t,e))}var Cr={create:Ar,update:Ar},$r=x((function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach((function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}})),e}));function Sr(t){var e=kr(t.style);return t.staticStyle?k(t.staticStyle,e):e}function kr(t){return Array.isArray(t)?F(t):"string"==typeof t?$r(t):t}var Fr,Or=/^--/,Mr=/\s*!important$/,Dr=function(t,e,n){if(Or.test(e))t.style.setProperty(e,n);else if(Mr.test(n))t.style.setProperty(C(e),n.replace(Mr,""),"important");else{var r=Ir(e);if(Array.isArray(n))for(var a=0,i=n.length;a-1?e.split(Pr).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function Br(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Pr).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function Hr(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&k(e,Ur(t.name||"v")),k(e,t),e}return"string"==typeof t?Ur(t):void 0}}var Ur=x((function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}})),Gr=W&&!X,zr="transition",Wr="transitionend",qr="animation",Vr="animationend";Gr&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(zr="WebkitTransition",Wr="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(qr="WebkitAnimation",Vr="webkitAnimationEnd"));var Yr=W?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Kr(t){Yr((function(){Yr(t)}))}function Xr(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),Lr(t,e))}function Zr(t,e){t._transitionClasses&&y(t._transitionClasses,e),Br(t,e)}function Jr(t,e,n){var r=ta(t,e),a=r.type,i=r.timeout,o=r.propCount;if(!a)return n();var s="transition"===a?Wr:Vr,l=0,c=function(){t.removeEventListener(s,u),n()},u=function(e){e.target===t&&++l>=o&&c()};setTimeout((function(){l0&&(n="transition",u=o,d=i.length):"animation"===e?c>0&&(n="animation",u=c,d=l.length):d=(n=(u=Math.max(o,c))>0?o>c?"transition":"animation":null)?"transition"===n?i.length:l.length:0,{type:n,timeout:u,propCount:d,hasTransform:"transition"===n&&Qr.test(r[zr+"Property"])}}function ea(t,e){for(;t.length1}function sa(t,e){!0!==e.data.show&&ra(e)}var la=function(t){var e,n,r={},l=t.modules,c=t.nodeOps;for(e=0;eh?b(t,a(n[g+1])?null:n[g+1].elm,n,f,g,r):f>g&&x(0,e,p,h)}(p,m,g,n,u):i(g)?(i(t.text)&&c.setTextContent(p,""),b(p,null,g,0,g.length-1,n)):i(m)?x(0,m,0,m.length-1):i(t.text)&&c.setTextContent(p,""):t.text!==e.text&&c.setTextContent(p,e.text),i(h)&&i(f=h.hook)&&i(f=f.postpatch)&&f(t,e)}}}function E(t,e,n){if(o(n)&&i(t.parent))t.parent.data.pendingInsert=e;else for(var r=0;r-1,o.selected!==i&&(o.selected=i);else if(T(fa(o),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));a||(t.selectedIndex=-1)}}function pa(t,e){return e.every((function(e){return!T(e,t)}))}function fa(t){return"_value"in t?t._value:t.value}function ha(t){t.target.composing=!0}function va(t){t.target.composing&&(t.target.composing=!1,ma(t.target,"input"))}function ma(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function ga(t){return!t.componentInstance||t.data&&t.data.transition?t:ga(t.componentInstance._vnode)}var ya={model:ca,show:{bind:function(t,e,n){var r=e.value,a=(n=ga(n)).data&&n.data.transition,i=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&a?(n.data.show=!0,ra(n,(function(){t.style.display=i}))):t.style.display=r?i:"none"},update:function(t,e,n){var r=e.value;!r!=!e.oldValue&&((n=ga(n)).data&&n.data.transition?(n.data.show=!0,r?ra(n,(function(){t.style.display=t.__vOriginalDisplay})):aa(n,(function(){t.style.display="none"}))):t.style.display=r?t.__vOriginalDisplay:"none")},unbind:function(t,e,n,r,a){a||(t.style.display=t.__vOriginalDisplay)}}},ba={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function _a(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?_a(ze(e.children)):t}function xa(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var a=n._parentListeners;for(var i in a)e[R(i)]=a[i];return e}function wa(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var Ra=function(t){return t.tag||Ge(t)},Aa=function(t){return"show"===t.name},Ea={name:"transition",props:ba,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(Ra)).length){0;var r=this.mode;0;var a=n[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return a;var i=_a(a);if(!i)return a;if(this._leaving)return wa(t,a);var o="__transition-"+this._uid+"-";i.key=null==i.key?i.isComment?o+"comment":o+i.tag:s(i.key)?0===String(i.key).indexOf(o)?i.key:o+i.key:i.key;var l=(i.data||(i.data={})).transition=xa(this),c=this._vnode,u=_a(c);if(i.data.directives&&i.data.directives.some(Aa)&&(i.data.show=!0),u&&u.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(i,u)&&!Ge(u)&&(!u.componentInstance||!u.componentInstance._vnode.isComment)){var d=u.data.transition=k({},l);if("out-in"===r)return this._leaving=!0,se(d,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),wa(t,a);if("in-out"===r){if(Ge(i))return c;var p,f=function(){p()};se(l,"afterEnter",f),se(l,"enterCancelled",f),se(d,"delayLeave",(function(t){p=t}))}}return a}}},Ca=k({tag:String,moveClass:String},ba);function $a(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function Sa(t){t.data.newPos=t.elm.getBoundingClientRect()}function ka(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,a=e.top-n.top;if(r||a){t.data.moved=!0;var i=t.elm.style;i.transform=i.WebkitTransform="translate("+r+"px,"+a+"px)",i.transitionDuration="0s"}}delete Ca.mode;var Fa={Transition:Ea,TransitionGroup:{props:Ca,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var a=Xe(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,a(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,a=this.$slots.default||[],i=this.children=[],o=xa(this),s=0;s-1?Yn[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:Yn[t]=/HTMLUnknownElement/.test(e.toString())},k(Rn.options.directives,ya),k(Rn.options.components,Fa),Rn.prototype.__patch__=W?la:O,Rn.prototype.$mount=function(t,e){return function(t,e,n){var r;return t.$el=e,t.$options.render||(t.$options.render=mt),Qe(t,"beforeMount"),r=function(){t._update(t._render(),n)},new pn(t,r,O,{before:function(){t._isMounted&&!t._isDestroyed&&Qe(t,"beforeUpdate")}},!0),n=!1,null==t.$vnode&&(t._isMounted=!0,Qe(t,"mounted")),t}(this,t=t&&W?function(t){if("string"==typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}(t):void 0,e)},W&&setTimeout((function(){L.devtools&&at&&at.emit("init",Rn)}),0),e.default=Rn}.call(this,n(62),n(90).setImmediate)},function(t,e){var n,r,a=Object.create(null);"undefined"!=typeof window&&(window.__VUE_HOT_MAP__=a);var i=!1,o="beforeCreate";function s(t,e){if(e.functional){var n=e.render;e.render=function(e,r){var i=a[t].instances;return r&&i.indexOf(r.parent)<0&&i.push(r.parent),n(e,r)}}else l(e,o,(function(){var e=a[t];e.Ctor||(e.Ctor=this.constructor),e.instances.push(this)})),l(e,"beforeDestroy",(function(){var e=a[t].instances;e.splice(e.indexOf(this),1)}))}function l(t,e,n){var r=t[e];t[e]=r?Array.isArray(r)?r.concat(n):[r,n]:[n]}function c(t){return function(e,n){try{t(e,n)}catch(t){console.error(t),console.warn("Something went wrong during Vue component hot-reload. Full reload required.")}}}function u(t,e){for(var n in t)n in e||delete t[n];for(var r in e)t[r]=e[r]}e.install=function(t,a){i||(i=!0,n=t.__esModule?t.default:t,r=n.version.split(".").map(Number),a,n.config._lifecycleHooks.indexOf("init")>-1&&(o="init"),e.compatible=r[0]>=2,e.compatible||console.warn("[HMR] You are using a version of vue-hot-reload-api that is only compatible with Vue.js core ^2.0.0."))},e.createRecord=function(t,e){if(!a[t]){var n=null;"function"==typeof e&&(e=(n=e).options),s(t,e),a[t]={Ctor:n,options:e,instances:[]}}},e.isRecorded=function(t){return void 0!==a[t]},e.rerender=c((function(t,e){var n=a[t];if(e){if("function"==typeof e&&(e=e.options),n.Ctor)n.Ctor.options.render=e.render,n.Ctor.options.staticRenderFns=e.staticRenderFns,n.instances.slice().forEach((function(t){t.$options.render=e.render,t.$options.staticRenderFns=e.staticRenderFns,t._staticTrees&&(t._staticTrees=[]),Array.isArray(n.Ctor.options.cached)&&(n.Ctor.options.cached=[]),Array.isArray(t.$options.cached)&&(t.$options.cached=[]);var r=function(t){if(!t._u)return;var e=t._u;return t._u=function(t){try{return e(t,!0)}catch(n){return e(t,null,!0)}},function(){t._u=e}}(t);t.$forceUpdate(),t.$nextTick(r)}));else if(n.options.render=e.render,n.options.staticRenderFns=e.staticRenderFns,n.options.functional){if(Object.keys(e).length>2)u(n.options,e);else{var r=n.options._injectStyles;if(r){var i=e.render;n.options.render=function(t,e){return r.call(e),i(t,e)}}}n.options._Ctor=null,Array.isArray(n.options.cached)&&(n.options.cached=[]),n.instances.slice().forEach((function(t){t.$forceUpdate()}))}}else n.instances.slice().forEach((function(t){t.$forceUpdate()}))})),e.reload=c((function(t,e){var n=a[t];if(e)if("function"==typeof e&&(e=e.options),s(t,e),n.Ctor){r[1]<2&&(n.Ctor.extendOptions=e);var i=n.Ctor.super.extend(e);n.Ctor.options=i.options,n.Ctor.cid=i.cid,n.Ctor.prototype=i.prototype,i.release&&i.release()}else u(n.options,e);n.instances.slice().forEach((function(t){t.$vnode&&t.$vnode.context?t.$vnode.context.$forceUpdate():console.warn("Root or manually mounted instance modified. Full reload required.")}))}))},function(t,e,n){"use strict";n.d(e,"a",(function(){return r}));var r={data:[],update:function(t){this.data=t}}},function(t,e,n){"use strict";n.d(e,"a",(function(){return r}));var r={data:{},update:function(t){this.data=t}}},function(t,e,n){"use strict";function r(t){$(t).on({mouseover:function(){var t=$(this).attr("title");$(this).data("tipText",t).removeAttr("title"),$('

').text(t).appendTo("#app").fadeIn("fast")},mouseout:function(){$(this).attr("title",$(this).data("tipText"));for(var t=document.querySelectorAll(".tooltip"),e=0;en.parts.length&&(r.parts.length=n.parts.length)}else{var o=[];for(a=0;a svg").clone().css({verticalAlign:"top",width:"166px",height:"100px"});$("#print-map").append(n),$("#print-fuel-mix").append($("#fuelMixContainer").clone()),$("#print-fuel-mix svg").css({marginTop:"0",height:"480px",width:"347px"}),$("#print-emission-rates").append("

Emission Rates

"),$("#print-emission-rates").append($("#emRatesDescription").clone()),$("#print-emission-rates").append($("#subco2EmissionRate").clone().css({display:"inline-block",height:"443px"})),$("#print-emission-rates").append($("#subso2EmissionRate").clone().css({display:"inline-block",height:"443px"})),$("#print-emission-rates").append($("#subnoxEmissionRate").clone().css({display:"inline-block",height:"443px"})),$("#printReportMain").hide(),t.showReport=!0}else $("#print-main-map").html(""),$("#print-main-fuel-mix").html(""),$("#print-main-emission-rates").html(""),$("#print-main-map").append("

eGRID Subregion Map

"),$("#print-main-map").append($("#subregionMap > svg").clone().css({width:"296px",height:"178px"})),$("#print-main-fuel-mix").append($("#nationalFuelMix").clone()),$("#print-main-fuel-mix #fuelRadios").css({display:"none"}),$("#print-main-emission-rates").append("

Emission Rates

"),$("#print-main-emission-rates").append($("#nationalEmissionRate > p:nth-child(2)").clone()),$("#print-main-emission-rates").append($("#nationalEmissionRateGraph").clone()),$("#print-main-emission-rates > #nationalEmissionRateGraph > svg").css({display:"inline-block"}),$("#printReport").hide(),t.showMainReport=!0})),window.addEventListener("afterprint",(function(e){t.showReport=!1,t.showMainReport=!1})),$(window).width()<950?(h.a.data.fuelMixOrientation="vertical",h.a.data.emissionRatesOrientation="vertical"):(h.a.data.fuelMixOrientation="horizontal",h.a.data.emissionRatesOrientation="horizontal"),"home"==this.$route.name&&(this.showMain=!0)},watch:{$route:function(t,e){"home"==t.name&&(this.showMain=!0),$("#result").hide()}}};e.a=v},function(t,e,n){"use strict";var r=n(6),a=n(2),i=(n(7),n(83)),o=n(84),s=n(85),l={components:{subregionFuelMixChart:i.a,subregionEmissionRateChart:o.a,emissionsCalculator:s.a},data:function(){return{subregion:{},dataLoaded:!1}},mounted:function(){this.subregion=a.a.data,this.dataLoaded=!0,this.$root.$children[0].subregionSelected=!0,this.$root.$children[0].showMain=!1},watch:{$route:function(t,e){t!==e&&(this.subregion=a.a.data,this.$children[1].update(),this.$children[2].update())}},beforeCreate:function(){var t=this.$router.history.current.params.subregion,e=r.a.data.filter((function(e){return e.properties.name==t}));e.length>0?($(".map").css({fill:""}),$("."+e[0].properties.name).css({fill:"steelblue"}),$("#regionSelectionDropdown").val(e[0].properties.name),a.a.update(e[0])):(this.dataLoaded=!1,this.$router.push("/"))}};e.a=l},function(t,e,n){"use strict";var r={components:{subregionSelection:n(73).a}};e.a=r},function(t,e,n){"use strict";var r={components:{appDescription:n(59).a},mounted:function(){document.getElementById("more-info-ok").focus(),$("#appDescription").show()}};e.a=r},function(t,e,n){"use strict";var r={mounted:function(){document.getElementById("resources-ok").focus()}};e.a=r},function(t,e,n){"use strict";var r={mounted:function(){document.getElementById("subregions-ok").focus()}};e.a=r},function(t,e,n){"use strict";var r={mounted:function(){document.getElementById("megawatt-ok").focus()}};e.a=r},function(t,e,n){"use strict";var r=n(6),a=n(7),i=n(2),o=n(1),s=n(3),l=n(80),c=n(8),u={components:{emissionRateChart:l.a},data:function(){return{nationalFeature:{},subregionData:[],w:0,h:0,domElement:"",sortState:"alphabetically",fuels:["gas","coal","nuclear","hydro","wind","biomass","solar","oil","geothermal","otherFossilFuel","otherUnknownFuel"],renewableAndNon:["renewable","non-renewable"],renewableNonNuclearAndHydro:["hydro","renewable (excluding hydro)","non-renewable (excluding nuclear)","nuclear"],allFuelsColorRange:["#fdae61","#313695","#f46d43","#74add1","#abd9e9","#4575b4","#ffffbf","#d73027","#fee090","#e0f3f8","#a50026"],renewableAndNonColors:["#abdda4","#d7191c"],renewableNonNuclearAndHydroColors:["#2b83ba","#abdda4","#d7191c","#fdae61"],subregions:{},sortedFuel:"",selectedFuelCategory:"allFuels",orientation:"",selectedRegion:{}}},mounted:function(){var t=this;this.orientation=o.a.data.fuelMixOrientation,this.initialize($("#main-charts").width(),350,"#nationalFuelMix"),this.subregionData=r.a.data,this.nationalFeature=a.a.data,this.display(this.selectedFuelCategory),this.selectedRegion=i.a.data,this.show(this.selectedRegion),$("#resetNationalFuelMix").css("visibility","hidden"),$(window).on("resize",(function(){$(window).width()<950?(t.orientation="vertical",t.$children[0].orientation="vertical"):(t.orientation="horizontal",t.$children[0].orientation="horizontal"),t.reset()}))},methods:{initialize:function(t,e,n){this.w=t,this.h=e,this.domElement=n},display:function(t){var e,n,r,a=this;$(this.domElement).show();"alphabetically"==this.sortState?this.subregionData.sort((function(t,e){return d3.ascending(t.properties.name,e.properties.name)})):"ascending"==this.sortState?this.subregionData.sort((function(t,e){return d3.ascending(t.properties.emissionFactor[a.$children[0].selectedPollutantAll].value,e.properties.emissionFactor[a.$children[0].selectedPollutantAll].value)})):"descending"==this.sortState?this.subregionData.sort((function(t,e){return d3.descending(t.properties.emissionFactor[a.$children[0].selectedPollutantAll].value,e.properties.emissionFactor[a.$children[0].selectedPollutantAll].value)})):"subregionFuels"==this.sortState&&this.subregionData.sort((function(t,e){return d3.descending(t.properties.fuelMix[""],e.properties.fuelMix[""])})),"allFuels"==t?(e=this.fuels,n="fuelMix",r=this.allFuelsColorRange):"renewableAndNon"==t?(e=this.renewableAndNon,n="fuelMixCategories",r=this.renewableAndNonColors):"renewableNonNuclearAndHydro"==t&&(e=this.renewableNonNuclearAndHydro,n="fuelMixCategories",r=this.renewableNonNuclearAndHydroColors),"horizontal"==this.orientation?this.displayHorizontal(r,e,n):"vertical"==this.orientation&&this.displayVertical(r,e,n),Object(c.a)(".fuelMixTooltip")},displayHorizontal:function(t,e,n){for(var r=this,a=30,i=60,o=140,l=70,c=this.w-l-i,u=this.h-a-o,d=d3.scale.ordinal().rangeRoundBands([0,c],.2),p=d3.scale.linear().range([u,0]),f=d3.scale.ordinal().range(t).domain(e),h=d3.svg.axis().scale(d).outerTickSize(0).orient("bottom"),v=d3.svg.axis().scale(p).orient("left").tickFormat((function(t){return t+"%"})),m=d3.select(r.domElement).append("svg").attr("width",c+l+i).attr("height",u+a+o).append("g").attr("transform","translate("+l+","+a+")"),g=0;gn&&(n=t.length),"translate(0,-60)";if(1===e)return t.length>n&&(n=t.length),"translate(0,-120)";if(2===e)return t.length>n&&(n=t.length),"translate(0,-100)";if(3===e)return t.length>n&&(n=t.length),"translate(0,-80)"}else{if(0===e)return t.length>n&&(n=t.length),"translate(0,-100)";if(1===e)return t.length>n&&(n=t.length),"translate(0,-80)";if(2===e)return t.length>n&&(n=t.length),"translate(0,-60)";if(3===e)return t.length>a&&(a=t.length),"translate("+(n+80)+","+-100+")";if(4===e)return t.length>a&&(a=t.length),"translate("+(n+80)+","+-80+")";if(5===e)return t.length>a&&(a=t.length),"translate("+(n+80)+","+-60+")";if(6===e)return"translate("+(a+160+20)+","+-100+")";if(7===e)return"translate("+(a+160+20)+","+-80+")";if(8===e)return"translate("+(a+160+20)+","+-60+")";if(9===e)return"translate("+(a+160+140)+","+-100+")";if(10===e)return"translate("+(a+160+140)+","+-70+")"}})).on("click",(function(t){var e={name:t,chart:r.selectedFuelCategory};d3.selectAll(".textselected").style("font-weight",(function(t){return t==e.name?"bold":"normal"})),r.selectedFuel=e.name,r.handleFuelClick(e,n,d,p,_,v,h,r.orientation)}));C.append("rect").attr("x",0).attr("y",0).attr("width",10).attr("height",10).style("fill",f),C.append("text").attr("x",20).attr("y",10).text((function(t,e){if("otherFossilFuel"!=t&&"otherUnknownFuel"!=t)return Object(s.c)(t)})).attr("class",(function(t){return"otherFossilFuel"==t||"otherUnknownFuel"==t?"lgLabel textselected":"textselected"})).style("text-anchor","start").style("font-size",15);var $,S=d3.selectAll(".lgLabel");S.append("tspan").text((function(t){return $=t.match(/[A-Z]*[^A-Z]+/g),"otherFossilFuel"==t?$[0].charAt(0).toUpperCase(1)+$[0].substr(1)+" "+$[1]:$[0].charAt(0).toUpperCase(1)+$[0].substr(1)})),S.append("tspan").attr("x",20).attr("y",25).attr("class",(function(t){if("otherUnknownFuel"==t)return"unknown"})).text((function(t){return"otherFossilFuel"==t?$[2]:"otherUnknownFuel"==t?$[1]:void 0})),d3.selectAll(".unknown").append("tspan").attr("x",20).attr("y",40).text((function(t){return"Fuel"}));r.sortedFuel&&r.sortVerticalBarChart(r.sortedFuel,{sub:300,x:0},n,d,p,_,h),Object(s.a)(m,c-60,u+50)},sortVerticalBarChart:function(t,e,n,r,a,i,s){var l=this;l.sortedFuel=t,o.a.sortedFuel=l.sortedFuel,$("#resetNationalFuelMix").css("visibility","visible");var c=[],u=a.domain(l.subregionData.sort((function(e,r){return r.properties[n][t.name]-e.properties[n][t.name]})).map((function(t){return t.properties.name}))).copy();d3.selectAll("."+t.chart).style("opacity",(function(e){return e.name==t.name?1:.5})).attr("x",(function(e){if(e.name==t.name)return d3.select(this).attr("class",t.chart+" selected"),c.push({subregion:e.subregion,newBase:e.val}),r(0);d3.select(this).attr("class",t.chart+" unselected")})),d3.selectAll(".unselected").attr("x",(function(e){if(e.name!=t.name)for(var n=0;n a").show(),$("#nationalFuelMixSortingStatus").html("This chart is sorted by decreasing % of "+this.selectedFuel+"."),$("#nationalEmissionRateSortingStatus").html("This chart is sorted by decreasing % of "+this.selectedFuel+"."),this.updateChild("subregionFuels",t)},handleSortReset:function(){this.subregionData.sort((function(t,e){return d3.ascending(t.properties.name,e.properties.name)})),this.sortState="alphabetically",o.a.sortedFuel="",this.sortedFuel=o.a.sortedFuel,this.reset(),this.updateChild("alphabetically",""),$("#resetNationalFuelMix").css("visibility","hidden"),$("#sortAlphabeticallyEmissionRate").css("display","none"),$("#sortAscendingEmissionRate").css("display","inline"),$("#sortDescendingEmissionRate").css("display","inline"),$("#nationalEmissionRateSortingStatus").html("This chart is sorted alphabetically A → Z by region."),$("#nationalFuelMixSortingStatus").html("This chart is sorted alphabetically A → Z by region.")},addHovertext:function(t,e,n){return"non-renewable (excluding nuclear)"==t.name?e="non-renewable":"renewable (excluding hydro)"==t.name&&(e="renewable"),Object(s.c)(e)+" accounts for "+n(t.val)+"% of the fuel mix "+Object(s.b)(t.subregion)},updateChild:function(t,e){var n=this.$children[0];e&&(n.selectedFuel=e.name),o.a.sortState=t,n.update()}},watch:{selectedFuelCategory:function(){this.reset(),this.show(this.selectedRegion)},orientation:function(t){o.a.data.fuelMixOrientation=t,this.reset()},selectedRegion:function(){this.reset(),this.show(this.selectedRegion)}}};e.a=u},function(t,e,n){"use strict";var r=n(2),a={data:function(){return{subregion:{},dataLoaded:!1}},mounted:function(){this.subregion=r.a.data,this.dataLoaded=!0},watch:{$route:function(t,e){t!==e&&(this.subregion=r.a.data)}}};e.a=a},function(t,e,n){"use strict";var r=n(3),a=n(7),i=n(2),o=n(8),s={data:function(){return{graphData:[]}},mounted:function(){var t=this;this.graphData.push(a.a.data[0]),this.graphData.push(i.a.data),this.display(this.graphData),$(window).on("resize",(function(){t.update()}))},methods:{display:function(t){for(var e=40,n=30,a=180,i=50,s=$("#fuelMix").width()-i-n,l=500-e-a,c=d3.scale.ordinal().rangeRoundBands([0,s],.3),u=d3.scale.linear().rangeRound([l,0]),d=d3.scale.ordinal().range(["#fdae61","#313695","#f46d43","#74add1","#abd9e9","#4575b4","#ffffbf","#d73027","#fee090","#e0f3f8","#a50026"]).domain(["gas","coal","nuclear","hydro","wind","biomass","solar","oil","geothermal","otherFossilFuel","otherUnknownFuel"]),p=d3.svg.axis().scale(c).outerTickSize(0).orient("bottom"),f=d3.svg.axis().scale(u).orient("left").tickFormat((function(t){return t+"%"})),h=d3.select("#fuelMix").append("svg").attr("width",s+i+n).attr("height",l+e+a).append("g").attr("transform","translate("+i+","+e+")"),v=0;v svg").css("margin-top","25%"),Object(o.a)(".subFuelMixTooltip")},update:function(){this.graphData=[],this.graphData.push(a.a.data[0]),this.graphData.push(i.a.data),d3.selectAll("#fuelMix svg").remove(),this.display(this.graphData)}}};e.a=s},function(t,e,n){"use strict";var r=n(3),a=n(7),i=n(2),o=n(8),s={data:function(){return{data:[],selectedPollutantSub:"co2EmissionRate"}},mounted:function(){var t=this;this.data=[a.a.data[0],i.a.data],this.display(this.data),$(window).on("resize",(function(){d3.selectAll("#emissionRate svg").remove(),t.update()})),$("#pollutantSelectSub button").on("click",(function(e){$(this).css({"background-color":"#2B7D3B"}),$(this).siblings().css({"background-color":"#0071bc"}),t.selectedPollutantSub=$(this).val(),$("#sub"+t.selectedPollutantSub).show(),$("#sub"+t.selectedPollutantSub).siblings("svg").hide()})),$("#defaultPollutantSub").trigger("click")},methods:{display:function(t){for(var e=$("#emissionRate").width(),n=500-($("#select-offset-2").height()-20),a=["so2EmissionRate","co2EmissionRate","noxEmissionRate"],i={national:"#2b83ba",subregion:"#e66101",co2EmissionRate:"#d7191c",so2EmissionRate:"#008837",noxEmissionRate:"#7b3294"},s=0;s950?this.emissionsResultsWidth=$(window).width()/4:this.emissionsResultsWidth=250,this.emissionsResultsHeight=340},methods:{displayMonthlyAverage:function(){var t=this;this.resultsFunction="monthlyAverage";var e=$("#userMonthlyAverageInput").val(),n=12*e;function r(e,n){return 12*n*e*.001*(1+t.gridLoss.value)}this.userEmissions={co2:r(this.emissionFactors.co2EmissionRate.value,e),so2:r(this.emissionFactors.so2EmissionRate.value,e),nox:r(this.emissionFactors.noxEmissionRate.value,e)},this.subregionEmissions={co2:t.calculateSubregionEmissions(this.emissionFactors.co2EmissionRate.value,this.gridLoss.value),so2:t.calculateSubregionEmissions(this.emissionFactors.so2EmissionRate.value,this.gridLoss.value),nox:t.calculateSubregionEmissions(this.emissionFactors.noxEmissionRate.value,this.gridLoss.value)},this.nationalEmissions={co2:t.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.co2EmissionRate.value),so2:t.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.so2EmissionRate.value),nox:t.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.noxEmissionRate.value)};var a=Math.round(this.userEmissions.co2).toLocaleString(),i=Math.round(this.userEmissions.nox).toLocaleString(),o=Math.round(this.userEmissions.so2).toLocaleString();$("#egrid-subregion-acronym").html(this.selectedSubregion.properties.name),$("#egrid-subregion-name").html(this.selectedSubregion.properties.fullName),$("#percent-line-loss").html(this.gridLoss.display),$("#estimated-annual-electricity-use").html(n.toLocaleString()),$("#pounds-of-co2").html(a),$("#pounds-of-so2").html(o),$("#pounds-of-nox").html(i),$("#no-of-tree-seedlings").html(t.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).trees),$("#acres-of-forests").html(t.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).acres);var s=24e3;12*e>s&&(s=12*e);var l=100,c=12*e/(12*this.nationalAverage)*100;c>l&&(l=c),d3.selectAll("#chart-gauge svg").remove(),$("#chart-gauge").attr("class","pane-content row cols-3"),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,s,12*this.nationalAverage,"National Annual","Electricity Use",!1),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,s,12*e,"Your Annual","Electricity Use",!1),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,l,c,"Your Electricity Use","Compared to the National Average",!0),d3.selectAll("#resultGraphs svg").remove(),d3.selectAll("#resultGraphs-rpt svg").remove(),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs",this.emissionsResultsWidth,this.emissionsResultsHeight),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs-rpt",247,340),$("#resultGraphs").show(),$("#annual-results-text").show(),$("#national-avg-annual-results-text").hide(),$("#result-subheader").html("Average Monthly Electricity Use"),$("#result").show()},displayMonthlyActual:function(){var t=this;this.resultsFunction="monthlyActual";var e=$("#calculateMonthlyActualForm input").map((function(){return $(this).val()})).get().reduce((function(t,e){return parseFloat(t)+parseFloat(e)}),0);function n(e,n){return n*e/1e3*(1+t.gridLoss.value)}this.nationalEmissions={co2:this.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.co2EmissionRate.value),so2:this.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.so2EmissionRate.value),nox:this.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.noxEmissionRate.value)},this.subregionEmissions={co2:this.calculateSubregionEmissions(this.emissionFactors.co2EmissionRate.value,this.gridLoss.value),so2:this.calculateSubregionEmissions(this.emissionFactors.so2EmissionRate.value,this.gridLoss.value),nox:this.calculateSubregionEmissions(this.emissionFactors.noxEmissionRate.value,this.gridLoss.value)},this.userEmissions={co2:n(this.emissionFactors.co2EmissionRate.value,e),so2:n(this.emissionFactors.so2EmissionRate.value,e),nox:n(this.emissionFactors.noxEmissionRate.value,e)};var r=Math.round(this.userEmissions.co2).toLocaleString(),a=Math.round(this.userEmissions.nox).toLocaleString(),i=Math.round(this.userEmissions.so2).toLocaleString();$("#egrid-subregion-acronym").html(this.selectedSubregion.properties.name),$("#egrid-subregion-name").html(this.selectedSubregion.properties.fullName),$("#percent-line-loss").html(this.gridLoss.display),$("#estimated-annual-electricity-use").html(e.toLocaleString()),$("#pounds-of-co2").html(r),$("#pounds-of-so2").html(i),$("#pounds-of-nox").html(a),$("#no-of-tree-seedlings").html(this.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).trees),$("#acres-of-forests").html(this.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).acres);var o=24e3;e>o&&(o=e);var s=100,l=e/(12*this.nationalAverage)*100;l>s&&(s=l),d3.selectAll("#chart-gauge svg").remove(),$("#chart-gauge").attr("class","pane-content row cols-3"),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,o,12*this.nationalAverage,"National Annual","Electricity Use",!1),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,o,e,"Your Annual","Electricity Use",!1),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,s,l,"Your Annual Electricity Use","Compared to the National Average",!0),d3.selectAll("#resultGraphs svg").remove(),d3.selectAll("#resultGraphs-rpt svg").remove(),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs",this.emissionsResultsWidth,this.emissionsResultsHeight),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs-rpt",247,340),$("#resultGraphs").show(),$("#annual-results-text").show(),$("#national-avg-annual-results-text").hide(),$("#result-subheader").html("Actual Monthly Electricity Use"),$("#result").show()},displayNationalAverage:function(t){var e=this;function n(t,n){return 12*n*t/1e3*(1+e.gridLoss.value)}if(this.resultsFunction="nationalAverage",this.nationalEmissions={co2:n(this.nationalFeature[0].properties.emissionFactor.co2EmissionRate.value,this.nationalAverage),so2:n(this.nationalFeature[0].properties.emissionFactor.so2EmissionRate.value,this.nationalAverage),nox:n(this.nationalFeature[0].properties.emissionFactor.noxEmissionRate.value,this.nationalAverage)},this.subregionEmissions={},this.userEmissions={co2:n(this.emissionFactors.co2EmissionRate.value,this.nationalAverage),so2:n(this.emissionFactors.so2EmissionRate.value,this.nationalAverage),nox:n(this.emissionFactors.noxEmissionRate.value,this.nationalAverage)},$("#chart-gauge").children.length>3&&d3.selectAll("#chart-gauge svg").remove(),0==this.residentialMode){var r=24e3;this.nationalAverage=1.22*this.squareFootage,$("#resultGraphs").hide(),$("#result-subheader").html("National Average Electricity Use for Commercial Customers"),d3.selectAll("#chart-gauge svg").remove(),$("#chart-gauge").attr("class","pane-content row cols-4"),12*this.nationalAverage>24e3&&(r=12*this.nationalAverage),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,r,12*this.nationalAverage,"Your Annual","Electricity Use",!1),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#chart-gauge",this.emissionsResultsWidth,this.emissionsResultsHeight),d3.selectAll("#resultGraphs-rpt svg").remove(),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs-rpt",247,340)}else this.nationalAverage=1011,$("#resultGraphs").hide(),$("#result-subheader").html("National Average Electricity Use"),$("#commercialCustomersForm").hide(),d3.selectAll("#chart-gauge svg").remove(),$("#chart-gauge").attr("class","pane-content row cols-4"),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,24e3,12*this.nationalAverage,"Your Annual","Electricity Use",!1),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#chart-gauge",this.emissionsResultsWidth,this.emissionsResultsHeight),d3.selectAll("#resultGraphs-rpt svg").remove(),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs-rpt",247,340);var a=Math.round(this.userEmissions.co2).toLocaleString(),i=Math.round(this.userEmissions.nox).toLocaleString(),o=Math.round(this.userEmissions.so2).toLocaleString();$("#nat-egrid-subregion-acronym").html(this.selectedSubregion.properties.name),$("#nat-egrid-subregion-name").html(this.selectedSubregion.properties.fullName),$("#nat-percent-line-loss").html(this.gridLoss.display),$("#nat-estimated-annual-electricity-use").html((12*this.nationalAverage).toLocaleString()),$("#nat-pounds-of-co2").html(a),$("#nat-pounds-of-so2").html(o),$("#nat-pounds-of-nox").html(i),$("#nat-no-of-tree-seedlings").html(this.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).trees),$("#nat-acres-of-forests").html(this.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).acres),$("#commercialCustomersLink").click((function(){this.commercialCustomerForm=!0,$("#residentialCustomersButton").show(),$("#customerText").hide(),$("#commercialCustomersForm").show()})),$("#commercialCustomersForm").on("submit",(function(t){t.preventDefault(),this.squareFootage=$("#squareFootage").val(),this.residentialMode=!1,$("#nationalAverageLink").trigger("click"),$("#nat-em-rpt-intro-2").html("estimated from the national average electricity consumption of 1.22 kWh/sq. ft./month for commercial customers and")})),$("#residentialCustomersButton").click((function(){this.commercialCustomerForm=!1,this.residentialMode=!0,$("#nationalAverageLink").trigger("click"),$("#nat-em-rpt-intro-2").html("estimated from the average home consumption of 1,011 kWh/month and")})),$("#annual-results-text").hide(),$("#national-avg-annual-results-text").show(),$("#result").show()},gaugeChart:function(t,e,n,r,a,i,o){var s=Math.PI;d=0,p=0;var l=d3.svg.arc().innerRadius(60).outerRadius(80).startAngle(s/180*-90),c=d3.select("#chart-gauge").append("svg").attr("width",t).attr("height",e).attr("class","col").append("g").attr("transform","translate("+(t/2-20)+","+(e/2+50)+")");c.append("text").attr("class","gauge-title").attr("transform","translate(0,-105)").attr("text-anchor","middle").text(a),c.append("text").attr("class","gauge-title").attr("transform","translate(0,-90)").attr("text-anchor","middle").text(i);c.append("path").datum({endAngle:s/180*90}).style("fill","#ddd").attr("d",l);var u=c.append("path").datum({endAngle:s/180*-90}).style("fill","#008837").attr("d",l),d=(c.append("text").attr("transform","translate(70,15)").attr("text-anchor","middle").attr("class","gauge-chart-label").style("font-family","Helvetica").text((function(){return 1==o?Math.round(n).toLocaleString()+"%":Math.round(n).toLocaleString()+" kWh"})),c.append("text").attr("transform","translate(-70,15)").attr("text-anchor","middle").style("font-family","Helvetica").text(d)),p=c.append("text").attr("transform","translate(0,-15)").attr("text-anchor","middle").style("font-size","15").style("font-family","Helvetica").text(p),f=Math.floor(r-n/2)*(s/n);p.transition().text((function(){return 1==o?Math.round(r).toLocaleString()+"%":Math.round(r).toLocaleString()})),u.transition().duration((function(t){return 750})).styleTween("fill",(function(){return d3.interpolate("#008837","#008837")})).call((function(t,e){t.attrTween("d",(function(t){var n=d3.interpolate(t.endAngle,e);return function(e){return t.endAngle=n(e),l(t)}}))}),f),d3.selectAll("#chart-gauge svg text").style("font-family","'Source Sans Pro', 'Helvetica Neue', 'Helvetica', 'Roboto', 'Arial', sans-serif"),d3.selectAll("#chart-gauge svg .y.axis path, #resultGraphs svg .axis line").style("fill","none").style("stroke","#000").style("shape-rendering","crispEdges")},calculateNationalEmissions:function(t){return 12132*t/1e3*1.0448},calculateSubregionEmissions:function(t,e){return 12132*t/1e3*(1+e)},calculateCarbonOffset:function(t){return{trees:(t/(44/12*23.2)).toLocaleString(void 0,{maximumFractionDigits:0}),acres:(t/(.85*2204.6)).toLocaleString(void 0,{maximumFractionDigits:0})}},displayUserAndNationalEmissions:function(t,e,n,r,a,o){for(var s=["co2","so2","nox"],l=0;l1){$("#errorMessage").hide(),$("#utilitySelect").children()&&$("#utilitySelect").show(),e.utilArr=[];for(var r=[],a=[""],o=0;o"+t[o].UtilName+""),-1==r.indexOf(t[o].SUBRGN)&&r.push(t[o].SUBRGN);if(r.length>1)$("#utilitySelect").html(a.join()),$("#utilitySelect").attr("required",!0),$("#utilitySelectDiv").show();else{var s=i.a.data.filter((function(t){for(var e=0;ePlease enter a valid zip code.

")})):($("#errorMessage").show(),$("#errorMessage").html("

Please enter a valid zip code.

"))},handleSelectChange:function(t){$("#userLocation").val(""),$("#utilitySelectDiv").hide();var e=t.target.options[t.target.options.selectedIndex].value;this.selectedSubregion=i.a.data.filter((function(t){return t.properties.name==e}))[0],this.$root.$emit("subregionSelected",this.selectedSubregion)}},mounted:function(){var t=this;document.getElementById("zipForm").addEventListener("submit",this.processZipForm),$("#utilitySelect").on("change",(function(e){var n=$("#utilitySelect").val(),r=i.a.data.filter((function(e){return e.properties.name==t.utilArr[n].SUBRGN}));t.$root.$emit("subregionSelected",r[0])}))}};e.a=o},function(t,e,n){"use strict";var r=n(6),a=n(7),i=n(2),o=n(3),s=n(81),l=n(82),c=n(1),u=n(8),d={components:{emissionRateMap:s.a,renewablesMap:l.a},data:function(){return{nationalFeature:{},subregionData:[],subregions:{},w:0,h:0,domElement:"",orientation:"",parameters:["so2EmissionRate","co2EmissionRate","noxEmissionRate"],emRatesColors:{national:"#2b83ba",subregion:"#e66101",co2EmissionRate:"#d7191c",so2EmissionRate:"#008837",noxEmissionRate:"#7b3294"},selectedRegion:{},selectedPollutantAll:"co2EmissionRate",pollutantText:"CO2",sortState:"alphabetically",selectedFuel:"",currentMap:1}},mounted:function(){var t=this;this.orientation=c.a.data.emissionRatesOrientation,this.initialize($("#main-charts").width(),290,"#nationalEmissionRateGraph"),this.display(this.orientation),this.selectedRegion=i.a.data,$("#defaultPollutantAll").css({"background-color":"#2B7D3B"}),$("#sortAlphabeticallyEmissionRate").hide(),$(window).on("resize",(function(){"home"==t.$route.name&&t.update()})),c.a.sortState&&(this.sortState=c.a.sortState,"ascending"==this.sortState?$("#sortAscendingEmissionRate").trigger("click"):"descending"==this.sortState?$("#sortDescendingEmissionRate").trigger("click"):"alphabetically"==this.sortState&&$("#sortAlphabeticallyEmissionRate").trigger("click"))},methods:{initialize:function(t,e,n){this.w=t,this.h=e,this.domElement=n,this.subregionData=r.a.data,this.nationalFeature=a.a.data},display:function(t){$(this.domElement).show();for(var e=0;eThis chart is sorted by "+e+" "+t+" emission rates.
":"alphabetically"==e?"This chart is sorted alphabetically A → Z by region.":void 0},handlePollutantButton:function(t){var e=t.target;"BUTTON"!==e.tagName&&(e=e.parentNode),$(e).css({"background-color":"#2B7D3B"}),$(e).siblings().css({"background-color":"#0071bc"}),this.selectedPollutantAll=$(e).val(),c.a.selectedPollutantAll=$(e).val(),this.update(),this.$children[0].clear&&(this.$children[0].clear(),this.$children[0].display(this.selectedPollutantAll,this.orientation)),this.pollutantText=$(e).html();var n=this.updateStatus(this.pollutantText,this.sortState);$("#nationalEmissionRateSortingStatus").html(n),$("#nationalFuelMixSortingStatus").html(n)},handleSortLink:function(t){var e=t.srcElement,n=e.id;if(this.setPollutantText(),"sortAlphabeticallyEmissionRate"==n){c.a.sortState="alphabetically";var r=this.updateStatus(this.pollutantText,c.a.sortState);$(e).hide(),$(e).siblings().show(),$("#nationalEmissionRateSortingStatus").html(r),$("#nationalFuelMixSortingStatus").html(r),$("#resetNationalFuelMix").css("visibility","hidden")}else if("sortAscendingEmissionRate"==n){c.a.sortState="ascending";r=this.updateStatus(this.pollutantText,c.a.sortState);$(e).hide(),$(e).siblings().show(),$("#nationalEmissionRateSortingStatus").html(r),$("#nationalFuelMixSortingStatus").html(r),$("#resetNationalFuelMix").css("visibility","visible")}else if("sortDescendingEmissionRate"==n){c.a.sortState="descending";r=this.updateStatus(this.pollutantText,c.a.sortState);$(e).hide(),$(e).siblings().show(),$("#nationalEmissionRateSortingStatus").html(r),$("#nationalFuelMixSortingStatus").html(r),$("#resetNationalFuelMix").css("visibility","visible")}this.update(),c.a.sortedFuel="",this.$parent.reset(),this.$parent.show(this.$parent.selectedRegion)}},watch:{selectedRegion:function(){this.clear(),this.sort(this.sortState,this.selectedPollutantAll),this.display(this.orientation),this.show(this.subregionData),this.showSelection(this.selectedPollutantAll)},orientation:function(t){c.a.data.emissionRatesOrientation=t,this.clear(),this.initialize($("#main-charts").width(),290,"#nationalEmissionRateGraph"),this.display(this.orientation)},currentMap:function(t){c.a.currentMap=t}}};e.a=d},function(t,e,n){"use strict";var r=n(9),a=n(6),i=n(7),o=n(8),s={data:function(){return{allData:[],nationalFeature:{},subregionData:[],w:425,h:255}},beforeCreate:function(){var t=this;$.ajax({url:r.a.SUBREGION_JSON,success:function(e){t.allData=e.features,t.nationalFeature=e.features.slice(52,53),t.subregionData=e.features.slice(53,e.features.length),a.a.update(t.subregionData),i.a.update(t.nationalFeature),t.$parent.$parent.$parent.subregionJSONLoaded=!0,t.displayMap("#subregionMap",t.allData)}})},methods:{displayMap:function(t,e){var n=this,r=d3.geo.albersUsa().translate([this.w/2,this.h/2]).scale([this.w+100]),a=d3.geo.path().projection(r),i=d3.select(t).append("svg").attr("width",this.w).attr("height",this.h).attr("viewBox",(function(){return"0 0 "+n.w+" "+n.h})).attr("preserveAspectRatio","xMidYMid meet").attr("fill","gainsboro"),s=this.w/this.h;$(window).on("resize",(function(){var t=$("#subregionMap").width();i.attr("width",t),i.attr("height",Math.round(t/s))})).trigger("resize"),i.selectAll("g").data(e).enter().append("g").attr("class","mapTooltip").attr("title",(function(t){if(t.properties.name)return t.properties.name+" ("+t.properties.fullName+")"})).append("path").attr("class",(function(t){return t.properties.hasOwnProperty("STATE")?"state":"map "+t.properties.name})).attr("d",a).style("stroke",(function(t){return t.properties.hasOwnProperty("STATE")?"#a9a9a9":"#2B2B2B"})).style("stroke-width","1").on("click",(function(t){$("#userLocation").val(""),$("#utilitySelectDiv").hide(),n.$root.$emit("subregionSelected",t)})),Object(o.a)(".mapTooltip")}}};e.a=s},function(t,e,n){"use strict";var r=n(3),a=n(32),i=n(6),o=n(1),s=n(8),l={data:function(){return{orientation:"",width:600,height:300,domElement:"",projection:{},path:{},containerHeight:0,subregionData:[]}},mounted:function(){this.orientation=o.a.data.emissionRatesOrientation,this.initialize(600,300,"#emissionRatesHeatMap"),this.createProjection(),this.display(this.$parent.selectedPollutantAll,this.orientation)},methods:{initialize:function(t,e,n){this.width=t,this.height=e,this.domElement=n,this.subregionData=i.a.data},createProjection:function(){this.projection=d3.geo.albersUsa().translate([this.width/2,this.height/2]).scale([this.width+100]),this.path=d3.geo.path().projection(this.projection)},clear:function(){d3.selectAll("#emissionRatesHeatMap svg").remove()},hide:function(){$(this.domElement).parent().hide()},show:function(){$(this.domElement).parent().show(),$(window).trigger("resize")},display:function(t,e){var n=d3.select(this.domElement).append("svg").attr("class","col size-4of5").attr("width",this.width).attr("height",this.height).attr("viewBox","0 0 "+this.width+" "+this.height).attr("preserveAspectRatio","xMidYMid meet").attr("fill","gainsboro"),i=this.width/this.height;$(window).on("resize",(function(){var t=$("#main-charts").width();n.attr("width",t),n.attr("height",Math.round(t/i))})).trigger("resize");var o=d3.max(this.subregionData,(function(e){return e.properties.emissionFactor[t].value})),l=d3.scale.linear().domain([0,o]).range(["#eeeeee",this.$parent.emRatesColors[t]]);"horizontal"==this.orientation?(this.containerHeight=400,this.svgGradient=d3.select(this.domElement).append("svg").attr("class","col size-1of5").attr("width",100).attr("height",this.containerHeight)):"vertical"==this.orientation&&(this.containerHeight=120,this.svgGradient=d3.select(this.domElement).append("svg").attr("width",400).attr("height",this.containerHeight));var c="",u=(this.svgGradient.append("text").attr("y",20).attr("x",20).append("tspan").text((function(){return"co2EmissionRate"==t?(c="carbon dioxide","CO"):"so2EmissionRate"==t?(c="sulfur dioxide","SO"):"noxEmissionRate"==t?(c="nitrogen oxides","NO"):void 0})).append("tspan").attr("baseline-shift","sub").text((function(){return"co2EmissionRate"==t||"so2EmissionRate"==t?"2":"noxEmissionRate"==t?"x":void 0})),this.svgGradient.append("defs").append("linearGradient").attr("class","legend").attr("id","linear-gradient"));if("horizontal"==this.orientation){u.attr("x1","0%").attr("y1","100%").attr("x2","0%").attr("y2","0%"),u.append("stop").attr("offset","0%").attr("stop-color","#eeeeee"),u.append("stop").attr("offset","100%").attr("stop-color",this.$parent.emRatesColors[t]);var d=1*this.containerHeight/5;this.svgGradient.append("rect").attr("width",30).attr("height",.6*this.containerHeight).attr("transform","translate(20,"+d+")").attr("stroke","black").style("fill","url(#linear-gradient)"),this.svgGradient.append("text").attr("x",20).attr("y",50).text("(lbs/MWh)");var p=d3.scale.linear().domain(l.domain()).range([.6*this.containerHeight,0]),f=d3.svg.axis().scale(p).orient("right").tickFormat((function(e){return"co2EmissionRate"!==t?d3.format(".2n")(e):0==e?e:d3.format(",.2r")(e)}));0==o&&svgGradient.attr("display","none"),this.svgGradient.attr("class","axis gradient").append("g").attr("transform","translate(50, "+d+")").call(f),d3.selectAll("#emissionRatesHeatMap .tick line").attr("x1","-30"),d3.selectAll("#emissionRatesHeatMap .tick line").attr("x2","0")}else if("vertical"==this.orientation){u.attr("x1","0%").attr("y1","0%").attr("x2","100%").attr("y2","0%"),u.append("stop").attr("offset","0%").attr("stop-color","#eeeeee"),u.append("stop").attr("offset","100%").attr("stop-color",this.$parent.emRatesColors[t]);d=1*this.containerHeight/5+20;this.svgGradient.append("rect").attr("width",370).attr("height",this.containerHeight/6).attr("transform","translate(20,"+d+")").attr("stroke","black").style("fill","url(#linear-gradient)"),this.svgGradient.append("text").attr("x",50).attr("y",20).text("(lbs/MWh)");p=d3.scale.linear().domain(l.domain()).range([0,370]),f=d3.svg.axis().scale(p).orient("bottom").tickFormat((function(e){return"co2EmissionRate"!==t?d3.format(".2n")(e):0==e?e:d3.format(",.2r")(e)}));0==o&&svgGradient.attr("display","none"),this.svgGradient.attr("class","axis gradient").append("g").attr("transform","translate(20, "+(d+20)+")").call(f),d3.selectAll("#emissionRatesHeatMap .tick line").attr("y1","-20").attr("y2","5")}n.selectAll("g").data(this.subregionData).enter().append("g").attr("class","emissionRateMapTooltip").attr("title",(function(e){return e.properties.fullName+" average "+c+" rate: "+e.properties.emissionFactor[t].display+" lbs/MWh"})).append("path").attr("class",(function(t){return t.properties.hasOwnProperty("STATE")?"state":"heatmap name"+t.properties.name})).attr("d",this.path).style("stroke",(function(t){return t.properties.hasOwnProperty("STATE")?"#a9a9a9":"#2B2B2B"})).style("stroke-width","1").style("fill",(function(e){var n=e.properties.emissionFactor[t].value;return n?l(n):"rgb(213,222,217)"}));var h=n.append("g");Object(a.a)(h,this.path,this.subregionData),"horizontal"==e?Object(r.a)(this.svgGradient,30,this.containerHeight-30):"vertical"==e&&Object(r.a)(this.svgGradient,30,this.containerHeight),Object(s.a)(".emissionRateMapTooltip")}}};e.a=l},function(t,e,n){"use strict";var r=n(3),a=n(32),i=n(6),o=n(1),s=n(8),l={data:function(){return{orientation:"",width:600,height:300,domElement:"#renewablesMap",projection:{},path:{},containerHeight:0,subregionData:[],selectedRenewable:"renewable"}},mounted:function(){this.orientation=o.a.data.emissionRatesOrientation,this.subregionData=i.a.data,this.createProjection(),this.display(this.selectedRenewable,this.$parent.orientation)},methods:{createProjection:function(){this.projection=d3.geo.albersUsa().translate([this.width/2,this.height/2]).scale([this.width+100]),this.path=d3.geo.path().projection(this.projection)},display:function(t,e){var n=d3.scale.ordinal().domain([10,20,30,40,50,60,70,80,90,100]).range(["#D73027","#F46D43","#FDAE61","#FEE08B","#FFFFBF","#D9EF8B","#A6D96A","#66BD63","#1A9850","#006837"]),i=d3.select(this.domElement).append("svg").attr("class","col size-4of5").attr("width",this.width).attr("height",this.height).attr("viewBox","0 0 "+this.width+" "+this.height).attr("preserveAspectRatio","xMidYMid meet").attr("fill","gainsboro"),o=this.width/this.height;$(window).on("resize",(function(){var t=$("#main-charts").width();i.attr("width",t),i.attr("height",Math.round(t/o))})).trigger("resize"),i.selectAll("g").data(this.subregionData).enter().append("g").attr("class","renewablesMapTooltip").attr("title",(function(e){return e.properties.fullName+" "+t+" generation: "+e.properties.fuelMixCategories[t]+"%"})).append("path").attr("class",(function(t){return t.properties.hasOwnProperty("STATE")?"state":"renewablesmap name"+t.properties.name})).attr("d",this.path).style("stroke",(function(t){return t.properties.hasOwnProperty("STATE")?"#a9a9a9":"#2B2B2B"})).style("stroke-width","1").style("fill",(function(e){var r=e.properties.fuelMixCategories[t];if(r){var a=10*Math.ceil(r/10);return n(a)}return"rgb(213,222,217)"}));var l=i.append("g");if(Object(s.a)(".renewablesMapTooltip"),"horizontal"==e){var c=d3.select(this.domElement).append("svg").attr("class","col size-1of5").attr("width",150).attr("height",this.height+107),u=c.selectAll(".renewables-legend").data(n.domain()).enter().append("g").attr("class","renewables-legend"),d=-20;u.append("rect").attr("x",0).attr("y",(function(t,e){return e+(d+=25)})).attr("width",15).attr("height",15).style("fill",n);var p=-5;u.append("text").attr("x",25).attr("y",(function(t,e){return e+(p+=25)})).style("fill","black").text((function(t,e){return n.domain()[e]-10+"-"+n.domain()[e]+"%"})),Object(a.a)(l,this.path,this.subregionData),Object(r.a)(c,30,this.height)}else{var f=d3.select(this.domElement).append("svg").attr("width",this.width+70).attr("height",40),h=f.selectAll(".renewables-legend").data(n.domain()).enter().append("g").attr("class","renewables-legend"),v=-40;h.append("rect").attr("y",0).attr("x",(function(t,e){return e+(v+=50)})).attr("width",15).attr("height",15).style("fill",n);var m=-50;h.append("text").attr("y",40).attr("x",(function(t,e){return e+(m+=50)})).style("fill","black").text((function(t,e){return n.domain()[e]-10+"-"+n.domain()[e]+"%"})),Object(a.a)(l,this.path,this.subregionData),Object(r.a)(f,30,this.height)}}}};e.a=l},function(t,e,n){"use strict";var r=n(16),a=n(0),i=Object(a.a)({},r.render,r.staticRenderFns,!1,null,null,null),o=n(5);o.install(n(4)),o.compatible&&(t.hot.accept(),t.hot.data?o.reload("4087686a",i.options):o.createRecord("4087686a",i.options),t.hot.accept(16,function(t){r=n(16),o.rerender("4087686a",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),i.options.__file="src/components/AppDescription.vue",e.a=i.exports},function(t,e,n){"use strict";var r=n(13),a=n(43),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("41df47ae",o.options):s.createRecord("41df47ae",o.options),t.hot.accept(13,function(t){r=n(13),s.rerender("41df47ae",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionCharts.vue",e.a=o.exports},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n.map:hover {\r\n fill-opacity: .7;\r\n fill: steelblue;\n}\n.map {\r\n fill-opacity: .5;\n}\r\n",""])},function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#selectionBox > .pane-content {\r\n padding: 0;\n}\n#zipFormDiv {\r\n color: white;\r\n position: relative;\r\n margin: 0 auto;\r\n width: 100%;\r\n background-position: 50%;\r\n background-repeat: no-repeat;\r\n height: 378px;\r\n text-align: center;\r\n background-image: url(https://www.epa.gov/sites/production/files/2018-12/power-profiler-sm-no-text.png);\n}\n#zipFormDiv h2 {\r\n padding-top: 1em;\n}\n#regionSelectionDiv {\r\n background-color: #FAFAFA;\r\n padding-top: 1em;\r\n text-align: center;\n}\n#subregionMapContainer {\r\n background-color: #FAFAFA;\n}\n#formContainer{\r\n padding-bottom: 0;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#intro {\r\n padding: 1.3529em 1em;\n}\r\n\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n.legendBottom, .legendTop {\r\n cursor: pointer;\n}\n.ui-tooltip{\r\n pointer-events: none;\n}\n#nationalFuelMix > h3 , #nationalEmissionRate > h3 {\r\n display: inline-block;\n}\n#nationalEmissionRate {\r\n margin-top: 20px;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#select-fuel-category, #fuelRadios, #resetNationalFuelMixDiv, #sortingDiv {\r\n text-align: center;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#result {\r\n display: none;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#printReport {\r\n width: 900px;\n}\n#kpis-and-map h3 {\r\n display: inline-block;\n}\n#kpis-print > p {\r\n display: inline-block;\r\n margin-left: 50px;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#printReportMain {\r\n width: 900px;\n}\n.page-break {\r\n display: block;\r\n page-break-after: always;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,'\ninput[type=number]::-webkit-inner-spin-button, \r\ninput[type=number]::-webkit-outer-spin-button { \r\n -webkit-appearance: none; \r\n margin: 0;\n}\n.subregionLabels, .selectedRegionValue, .nationalX text, .nationalBar text, .y.axis text, .ui-tooltip {\r\n font-size: 15px;\n}\n.axis line, .y.axis path, .nationalY > .domain, .nationalBarV > .domain {\r\n fill: none;\r\n stroke: #000;\r\n shape-rendering: crispEdges;\n}\n.x.axis path, #emissionRatesHeatMap > svg.axis.gradient > g > path {\r\n display: none;\n}\n#emissionRatesHeatMap > svg.axis > g > path {\r\n fill: none;\n}\n#kpis div, #kpis .pane-title,#mapSelect, .select-pollutant-label, #pollutantSelectAll, #pollutantSelectSub {\r\n text-align: center;\n}\n#app p {\r\n padding-bottom: 0.7em;\n}\n#app {\r\n padding-left: 1em;\n}\n.select-pollutant-label, #nationalEmissionRateSortingStatus, #nationalFuelMixSortingStatus{\r\n padding-bottom: 0 !important;\n}\n#sidebar {\r\n background-color: #FAFAFA;\r\n border: 1px solid black;\n}\n.modal-mask {\r\n position: fixed;\r\n z-index: 9998;\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n height: 100%;\r\n background-color: rgba(0, 0, 0, .5);\r\n display: table;\r\n transition: opacity .3s ease;\n}\n.modal-wrapper {\r\n display: table-cell;\r\n vertical-align: middle;\n}\n.modal-container {\r\n width: 70%;\r\n margin: 0px auto;\r\n padding: 20px 30px;\r\n background-color: #fff;\r\n border-radius: 2px;\r\n box-shadow: 0 2px 8px rgba(0, 0, 0, .33);\r\n transition: all .3s ease;\r\n font-family: Helvetica, Arial, sans-serif;\n}\n.modal-body {\r\n margin: 20px 0;\n}\n.modal-default-button {\r\n float: right;\n}\n.tooltip {\r\n\tdisplay:none;\r\n\tposition:absolute;\r\n\tborder:1px solid #D3D3D3;\r\n\tbackground-color:#fff;\r\n\tborder-radius:5px;\r\n\tpadding:8px;\r\n\tcolor:#161616;\r\n\tfont-size:12px Arial;\n}\r\n/* transition="modal" styles */\n.modal-enter {\r\n opacity: 0;\n}\n.modal-leave-active {\r\n opacity: 0;\n}\n.modal-enter .modal-container,\r\n.modal-leave-active .modal-container {\r\n -webkit-transform: scale(1.1);\r\n transform: scale(1.1);\n}\n#appDescription, #printReportMain, #printReport {\r\n display: none;\n}\n@media print {\n#app, #block-pane-official-website-header, .sitewide-alert, .ui-tooltip, footer, nav, .skip-links {\r\n display: none;\n}\nheader {\r\n padding: 0 0 0 0;\n}\n#appDescription, #printReportMain, #printReport {\r\n display: block;\n}\n}\r\n',""])},function(t,e,n){"use strict";var r=n(12),a=n(42),i=(n(100),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("7ba5bd90",o.options):s.createRecord("7ba5bd90",o.options),t.hot.accept(12,function(t){r=n(12),s.rerender("7ba5bd90",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/App.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(14),a=n(44),i=(n(94),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("3eca7188",o.options):s.createRecord("3eca7188",o.options),t.hot.accept(14,function(t){r=n(14),s.rerender("3eca7188",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SideBar.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(27),a=n(54),i=(n(93),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("97fa4630",o.options):s.createRecord("97fa4630",o.options),t.hot.accept(27,function(t){r=n(27),s.rerender("97fa4630",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionSelection.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(29),a=n(56),i=(n(89),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("0f7d0bb8",o.options):s.createRecord("0f7d0bb8",o.options),t.hot.accept(29,function(t){r=n(29),s.rerender("0f7d0bb8",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionMap.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(15),a=n(45),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("03f5295e",o.options):s.createRecord("03f5295e",o.options),t.hot.accept(15,function(t){r=n(15),s.rerender("03f5295e",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/modals/MoreInfoModal.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(17),a=n(46),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("12dcf111",o.options):s.createRecord("12dcf111",o.options),t.hot.accept(17,function(t){r=n(17),s.rerender("12dcf111",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/modals/ResourcesModal.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(18),a=n(47),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("2c108a16",o.options):s.createRecord("2c108a16",o.options),t.hot.accept(18,function(t){r=n(18),s.rerender("2c108a16",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/modals/SubregionsModal.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(19),a=n(48),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("2be4cad8",o.options):s.createRecord("2be4cad8",o.options),t.hot.accept(19,function(t){r=n(19),s.rerender("2be4cad8",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/modals/MegawattModal.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(20),a=n(49),i=(n(95),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("44adda9e",o.options):s.createRecord("44adda9e",o.options),t.hot.accept(20,function(t){r=n(20),s.rerender("44adda9e",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/MainCharts.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(28),a=n(55),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("79c68597",o.options):s.createRecord("79c68597",o.options),t.hot.accept(28,function(t){r=n(28),s.rerender("79c68597",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/EmissionRateChart.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(30),a=n(57),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("1a110f56",o.options):s.createRecord("1a110f56",o.options),t.hot.accept(30,function(t){r=n(30),s.rerender("1a110f56",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/EmissionRateMap.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(31),a=n(58),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("4d7ad460",o.options):s.createRecord("4d7ad460",o.options),t.hot.accept(31,function(t){r=n(31),s.rerender("4d7ad460",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/RenewablesMap.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(24),a=n(51),i=(n(96),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("740cdc0c",o.options):s.createRecord("740cdc0c",o.options),t.hot.accept(24,function(t){r=n(24),s.rerender("740cdc0c",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionFuelMixChart.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(25),a=n(52),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("dfeefa1a",o.options):s.createRecord("dfeefa1a",o.options),t.hot.accept(25,function(t){r=n(25),s.rerender("dfeefa1a",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionEmissionRateChart.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(26),a=n(53),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("a4edba24",o.options):s.createRecord("a4edba24",o.options),t.hot.accept(26,function(t){r=n(26),s.rerender("a4edba24",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/EmissionsCalculator.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(21),a=(n(97),n(0)),i=Object(a.a)({},r.render,r.staticRenderFns,!1,null,null,null),o=n(5);o.install(n(4)),o.compatible&&(t.hot.accept(),t.hot.data?o.reload("69e40894",i.options):o.createRecord("69e40894",i.options),t.hot.accept(21,function(t){r=n(21),o.rerender("69e40894",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),i.options.__file="src/components/CalculatorResults.vue",e.a=i.exports},function(t,e,n){"use strict";var r=n(22),a=n(50),i=(n(98),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("5aa5b3c1",o.options):s.createRecord("5aa5b3c1",o.options),t.hot.accept(22,function(t){r=n(22),s.rerender("5aa5b3c1",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/PrintReport.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(23),a=(n(99),n(0)),i=Object(a.a)({},r.render,r.staticRenderFns,!1,null,null,null),o=n(5);o.install(n(4)),o.compatible&&(t.hot.accept(),t.hot.data?o.reload("32e028c8",i.options):o.createRecord("32e028c8",i.options),t.hot.accept(23,function(t){r=n(23),o.rerender("32e028c8",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),i.options.__file="src/components/MainPrintReport.vue",e.a=i.exports},function(t,e,n){"use strict";var r=n(33);n.n(r).a},function(t,e,n){(function(t){var r=void 0!==t&&t||"undefined"!=typeof self&&self||window,a=Function.prototype.apply;function i(t,e){this._id=t,this._clearFn=e}e.setTimeout=function(){return new i(a.call(setTimeout,r,arguments),clearTimeout)},e.setInterval=function(){return new i(a.call(setInterval,r,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},i.prototype.unref=i.prototype.ref=function(){},i.prototype.close=function(){this._clearFn.call(r,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout((function(){t._onTimeout&&t._onTimeout()}),e))},n(91),e.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==t&&t.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==t&&t.clearImmediate||this&&this.clearImmediate}).call(this,n(62))},function(t,e,n){(function(t,e){!function(t,n){"use strict";if(!t.setImmediate){var r,a,i,o,s,l=1,c={},u=!1,d=t.document,p=Object.getPrototypeOf&&Object.getPrototypeOf(t);p=p&&p.setTimeout?p:t,"[object process]"==={}.toString.call(t.process)?r=function(t){e.nextTick((function(){h(t)}))}:!function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=n,e}}()?t.MessageChannel?((i=new MessageChannel).port1.onmessage=function(t){h(t.data)},r=function(t){i.port2.postMessage(t)}):d&&"onreadystatechange"in d.createElement("script")?(a=d.documentElement,r=function(t){var e=d.createElement("script");e.onreadystatechange=function(){h(t),e.onreadystatechange=null,a.removeChild(e),e=null},a.appendChild(e)}):r=function(t){setTimeout(h,0,t)}:(o="setImmediate$"+Math.random()+"$",s=function(e){e.source===t&&"string"==typeof e.data&&0===e.data.indexOf(o)&&h(+e.data.slice(o.length))},t.addEventListener?t.addEventListener("message",s,!1):t.attachEvent("onmessage",s),r=function(e){t.postMessage(o+e,"*")}),p.setImmediate=function(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),n=0;n1)for(var n=1;n-1}function o(t,e){for(var n in e)t[n]=e[n];return t}var s={name:"RouterView",functional:!0,props:{name:{type:String,default:"default"}},render:function(t,e){var n=e.props,r=e.children,a=e.parent,i=e.data;i.routerView=!0;for(var s=a.$createElement,l=n.name,c=a.$route,u=a._routerViewCache||(a._routerViewCache={}),d=0,p=!1;a&&a._routerRoot!==a;){var f=a.$vnode&&a.$vnode.data;f&&(f.routerView&&d++,f.keepAlive&&a._inactive&&(p=!0)),a=a.$parent}if(i.routerViewDepth=d,p)return s(u[l],i,r);var h=c.matched[d];if(!h)return u[l]=null,s();var v=u[l]=h.components[l];i.registerRouteInstance=function(t,e){var n=h.instances[l];(e&&n!==t||!e&&n===t)&&(h.instances[l]=e)},(i.hook||(i.hook={})).prepatch=function(t,e){h.instances[l]=e.componentInstance},i.hook.init=function(t){t.data.keepAlive&&t.componentInstance&&t.componentInstance!==h.instances[l]&&(h.instances[l]=t.componentInstance)};var m=i.props=function(t,e){switch(typeof e){case"undefined":return;case"object":return e;case"function":return e(t);case"boolean":return e?t.params:void 0;default:0}}(c,h.props&&h.props[l]);if(m){m=i.props=o({},m);var g=i.attrs=i.attrs||{};for(var y in m)v.props&&y in v.props||(g[y]=m[y],delete m[y])}return s(v,i,r)}};var l=/[!'()*]/g,c=function(t){return"%"+t.charCodeAt(0).toString(16)},u=/%2C/g,d=function(t){return encodeURIComponent(t).replace(l,c).replace(u,",")},p=decodeURIComponent;function f(t){var e={};return(t=t.trim().replace(/^(\?|#|&)/,""))?(t.split("&").forEach((function(t){var n=t.replace(/\+/g," ").split("="),r=p(n.shift()),a=n.length>0?p(n.join("=")):null;void 0===e[r]?e[r]=a:Array.isArray(e[r])?e[r].push(a):e[r]=[e[r],a]})),e):e}function h(t){var e=t?Object.keys(t).map((function(e){var n=t[e];if(void 0===n)return"";if(null===n)return d(e);if(Array.isArray(n)){var r=[];return n.forEach((function(t){void 0!==t&&(null===t?r.push(d(e)):r.push(d(e)+"="+d(t)))})),r.join("&")}return d(e)+"="+d(n)})).filter((function(t){return t.length>0})).join("&"):null;return e?"?"+e:""}var v=/\/?$/;function m(t,e,n,r){var a=r&&r.options.stringifyQuery,i=e.query||{};try{i=g(i)}catch(t){}var o={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:i,params:e.params||{},fullPath:_(e,a),matched:t?b(t):[]};return n&&(o.redirectedFrom=_(n,a)),Object.freeze(o)}function g(t){if(Array.isArray(t))return t.map(g);if(t&&"object"==typeof t){var e={};for(var n in t)e[n]=g(t[n]);return e}return t}var y=m(null,{path:"/"});function b(t){for(var e=[];t;)e.unshift(t),t=t.parent;return e}function _(t,e){var n=t.path,r=t.query;void 0===r&&(r={});var a=t.hash;return void 0===a&&(a=""),(n||"/")+(e||h)(r)+a}function x(t,e){return e===y?t===e:!!e&&(t.path&&e.path?t.path.replace(v,"")===e.path.replace(v,"")&&t.hash===e.hash&&w(t.query,e.query):!(!t.name||!e.name)&&(t.name===e.name&&t.hash===e.hash&&w(t.query,e.query)&&w(t.params,e.params)))}function w(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t),r=Object.keys(e);return n.length===r.length&&n.every((function(n){var r=t[n],a=e[n];return"object"==typeof r&&"object"==typeof a?w(r,a):String(r)===String(a)}))}var R,A={name:"RouterLink",props:{to:{type:[String,Object],required:!0},tag:{type:String,default:"a"},exact:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,event:{type:[String,Array],default:"click"}},render:function(t){var e=this,n=this.$router,r=this.$route,a=n.resolve(this.to,r,this.append),i=a.location,s=a.route,l=a.href,c={},u=n.options.linkActiveClass,d=n.options.linkExactActiveClass,p=null==u?"router-link-active":u,f=null==d?"router-link-exact-active":d,h=null==this.activeClass?p:this.activeClass,g=null==this.exactActiveClass?f:this.exactActiveClass,y=i.path?m(null,i,null,n):s;c[g]=x(r,y),c[h]=this.exact?c[g]:function(t,e){return 0===t.path.replace(v,"/").indexOf(e.path.replace(v,"/"))&&(!e.hash||t.hash===e.hash)&&function(t,e){for(var n in e)if(!(n in t))return!1;return!0}(t.query,e.query)}(r,y);var b=function(t){E(t)&&(e.replace?n.replace(i):n.push(i))},_={click:E};Array.isArray(this.event)?this.event.forEach((function(t){_[t]=b})):_[this.event]=b;var w={class:c};if("a"===this.tag)w.on=_,w.attrs={href:l};else{var R=function t(e){var n;if(e)for(var r=0;r=0&&(e=t.slice(r),t=t.slice(0,r));var a=t.indexOf("?");return a>=0&&(n=t.slice(a+1),t=t.slice(0,a)),{path:t,query:n,hash:e}}(a.path||""),c=e&&e.path||"/",u=l.path?S(l.path,c,n||a.append):c,d=function(t,e,n){void 0===e&&(e={});var r,a=n||f;try{r=a(t||"")}catch(t){r={}}for(var i in e)r[i]=e[i];return r}(l.query,a.query,r&&r.options.parseQuery),p=a.hash||l.hash;return p&&"#"!==p.charAt(0)&&(p="#"+p),{_normalized:!0,path:u,query:d,hash:p}}function Z(t,e){var n=Y(t),r=n.pathList,a=n.pathMap,i=n.nameMap;function o(t,n,o){var s=X(t,n,!1,e),c=s.name;if(c){var u=i[c];if(!u)return l(null,s);var d=u.regex.keys.filter((function(t){return!t.optional})).map((function(t){return t.name}));if("object"!=typeof s.params&&(s.params={}),n&&"object"==typeof n.params)for(var p in n.params)!(p in s.params)&&d.indexOf(p)>-1&&(s.params[p]=n.params[p]);if(u)return s.path=V(u.path,s.params),l(u,s,o)}else if(s.path){s.params={};for(var f=0;f=t.length?n():t[a]?e(t[a],(function(){r(a+1)})):r(a+1)};r(0)}function mt(t){return function(e,n,r){var a=!1,o=0,s=null;gt(t,(function(t,e,n,l){if("function"==typeof t&&void 0===t.cid){a=!0,o++;var c,u=_t((function(e){var a;((a=e).__esModule||bt&&"Module"===a[Symbol.toStringTag])&&(e=e.default),t.resolved="function"==typeof e?e:R.extend(e),n.components[l]=e,--o<=0&&r()})),d=_t((function(t){var e="Failed to resolve async component "+l+": "+t;s||(s=i(t)?t:new Error(e),r(s))}));try{c=t(u,d)}catch(t){d(t)}if(c)if("function"==typeof c.then)c.then(u,d);else{var p=c.component;p&&"function"==typeof p.then&&p.then(u,d)}}})),a||r()}}function gt(t,e){return yt(t.map((function(t){return Object.keys(t.components).map((function(n){return e(t.components[n],t.instances[n],t,n)}))})))}function yt(t){return Array.prototype.concat.apply([],t)}var bt="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;function _t(t){var e=!1;return function(){for(var n=[],r=arguments.length;r--;)n[r]=arguments[r];if(!e)return e=!0,t.apply(this,n)}}var xt=function(t,e){this.router=t,this.base=function(t){if(!t)if(C){var e=document.querySelector("base");t=(t=e&&e.getAttribute("href")||"/").replace(/^https?:\/\/[^\/]+/,"")}else t="/";"/"!==t.charAt(0)&&(t="/"+t);return t.replace(/\/$/,"")}(e),this.current=y,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[]};function wt(t,e,n,r){var a=gt(t,(function(t,r,a,i){var o=function(t,e){"function"!=typeof t&&(t=R.extend(t));return t.options[e]}(t,e);if(o)return Array.isArray(o)?o.map((function(t){return n(t,r,a,i)})):n(o,r,a,i)}));return yt(r?a.reverse():a)}function Rt(t,e){if(e)return function(){return t.apply(e,arguments)}}xt.prototype.listen=function(t){this.cb=t},xt.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},xt.prototype.onError=function(t){this.errorCbs.push(t)},xt.prototype.transitionTo=function(t,e,n){var r=this,a=this.router.match(t,this.current);this.confirmTransition(a,(function(){r.updateRoute(a),e&&e(a),r.ensureURL(),r.ready||(r.ready=!0,r.readyCbs.forEach((function(t){t(a)})))}),(function(t){n&&n(t),t&&!r.ready&&(r.ready=!0,r.readyErrorCbs.forEach((function(e){e(t)})))}))},xt.prototype.confirmTransition=function(t,e,n){var r=this,a=this.current,o=function(t){i(t)&&(r.errorCbs.length?r.errorCbs.forEach((function(e){e(t)})):console.error(t)),n&&n(t)};if(x(t,a)&&t.matched.length===a.matched.length)return this.ensureURL(),o();var s=function(t,e){var n,r=Math.max(t.length,e.length);for(n=0;n-1?decodeURI(t.slice(0,r))+t.slice(r):decodeURI(t)}else n>-1&&(t=decodeURI(t.slice(0,n))+t.slice(n));return t}function kt(t){var e=window.location.href,n=e.indexOf("#");return(n>=0?e.slice(0,n):e)+"#"+t}function Ft(t){lt?ft(kt(t)):window.location.hash=t}function Ot(t){lt?ht(kt(t)):window.location.replace(kt(t))}var Mt=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index+1).concat(t),r.index++,e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index).concat(t),e&&e(t)}),n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var r=this.stack[n];this.confirmTransition(r,(function(){e.index=n,e.updateRoute(r)}))}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(xt),Dt=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=Z(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!lt&&!1!==t.fallback,this.fallback&&(e="hash"),C||(e="abstract"),this.mode=e,e){case"history":this.history=new At(this,t.base);break;case"hash":this.history=new Ct(this,t.base,this.fallback);break;case"abstract":this.history=new Mt(this,t.base);break;default:0}},Tt={currentRoute:{configurable:!0}};function It(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}Dt.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},Tt.currentRoute.get=function(){return this.history&&this.history.current},Dt.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",(function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null)})),!this.app){this.app=t;var n=this.history;if(n instanceof At)n.transitionTo(n.getCurrentLocation());else if(n instanceof Ct){var r=function(){n.setupListeners()};n.transitionTo(n.getCurrentLocation(),r,r)}n.listen((function(t){e.apps.forEach((function(e){e._route=t}))}))}},Dt.prototype.beforeEach=function(t){return It(this.beforeHooks,t)},Dt.prototype.beforeResolve=function(t){return It(this.resolveHooks,t)},Dt.prototype.afterEach=function(t){return It(this.afterHooks,t)},Dt.prototype.onReady=function(t,e){this.history.onReady(t,e)},Dt.prototype.onError=function(t){this.history.onError(t)},Dt.prototype.push=function(t,e,n){this.history.push(t,e,n)},Dt.prototype.replace=function(t,e,n){this.history.replace(t,e,n)},Dt.prototype.go=function(t){this.history.go(t)},Dt.prototype.back=function(){this.go(-1)},Dt.prototype.forward=function(){this.go(1)},Dt.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map((function(t){return Object.keys(t.components).map((function(e){return t.components[e]}))}))):[]},Dt.prototype.resolve=function(t,e,n){var r=X(t,e=e||this.history.current,n,this),a=this.match(r,e),i=a.redirectedFrom||a.fullPath;return{location:r,route:a,href:function(t,e,n){var r="hash"===n?"#"+e:e;return t?k(t+"/"+r):r}(this.history.base,i,this.mode),normalizedTo:r,resolved:a}},Dt.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==y&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(Dt.prototype,Tt),Dt.install=function t(e){if(!t.installed||R!==e){t.installed=!0,R=e;var n=function(t){return void 0!==t},r=function(t,e){var r=t.$options._parentVnode;n(r)&&n(r=r.data)&&n(r=r.registerRouteInstance)&&r(t,e)};e.mixin({beforeCreate:function(){n(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),e.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,r(this,this)},destroyed:function(){r(this)}}),Object.defineProperty(e.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(e.prototype,"$route",{get:function(){return this._routerRoot._route}}),e.component("RouterView",s),e.component("RouterLink",A);var a=e.config.optionMergeStrategies;a.beforeRouteEnter=a.beforeRouteLeave=a.beforeRouteUpdate=a.created}},Dt.version="3.0.6",C&&window.Vue&&window.Vue.use(Dt);var Nt=Dt,jt=n(60);r.default.use(Nt);var Pt=new Nt({routes:[{path:"/",name:"home"},{path:"/:subregion",name:"subregion",component:jt.a}]}),Lt=n(2),Bt=n(9);new r.default({el:"#app",render:function(t){return t(a.a)},router:Pt,beforeCreate:function(){Bt.a.SUBREGION_JSON="/sites/production/files/2019-06/subregion.json",Bt.a.ZIP_UTILITY="/sites/production/files/2018-12/zip.csv",Bt.a.EGRID_LOGO="/sites/production/files/2018-12/egrid-text-logo.png"}}).$on("subregionSelected",(function(t){Lt.a.update(t),this.$children[0].$children[4].$children[0].selectedRegion=Lt.a.data,this.$children[0].$children[4].selectedRegion=Lt.a.data,$(".map").css({fill:""}),$("."+t.properties.name).css({fill:"steelblue"}),$("#regionSelectionDropdown").val(t.properties.name),Pt.push(t.properties.name)})),"function"==typeof ga&&Pt.afterEach((function(t){ga("EPA.set","page",location.pathname+"#"+t.fullPath),ga("EPA.send","pageview")}))}]); \ No newline at end of file diff --git a/dist/prod/index.html b/app/dist/prod/index.html similarity index 100% rename from dist/prod/index.html rename to app/dist/prod/index.html diff --git a/app/dist/stag/bundle.js b/app/dist/stag/bundle.js new file mode 100644 index 0000000..8c39bd4 --- /dev/null +++ b/app/dist/stag/bundle.js @@ -0,0 +1,7 @@ +!function(t){var e=window.webpackHotUpdate;window.webpackHotUpdate=function(t,n){!function(t,e){if(!_[t]||!b[t])return;for(var n in b[t]=!1,e)Object.prototype.hasOwnProperty.call(e,n)&&(h[n]=e[n]);0==--m&&0===g&&A()}(t,n),e&&e(t,n)};var n,r=!0,a="114502217d6d09dee115",i={},o=[],s=[];function l(t){var e=C[t];if(!e)return $;var r=function(r){return e.hot.active?(C[r]?-1===C[r].parents.indexOf(t)&&C[r].parents.push(t):(o=[t],n=r),-1===e.children.indexOf(r)&&e.children.push(r)):(console.warn("[HMR] unexpected require("+r+") from disposed module "+t),o=[]),$(r)},a=function(t){return{configurable:!0,enumerable:!0,get:function(){return $[t]},set:function(e){$[t]=e}}};for(var i in $)Object.prototype.hasOwnProperty.call($,i)&&"e"!==i&&"t"!==i&&Object.defineProperty(r,i,a(i));return r.e=function(t){return"ready"===d&&p("prepare"),g++,$.e(t).then(e,(function(t){throw e(),t}));function e(){g--,"prepare"===d&&(y[t]||R(t),0===g&&0===m&&A())}},r.t=function(t,e){return 1&e&&(t=r(t)),$.t(t,-2&e)},r}function c(t){var e={_acceptedDependencies:{},_declinedDependencies:{},_selfAccepted:!1,_selfDeclined:!1,_disposeHandlers:[],_main:n!==t,active:!0,accept:function(t,n){if(void 0===t)e._selfAccepted=!0;else if("function"==typeof t)e._selfAccepted=t;else if("object"==typeof t)for(var r=0;r=0&&e._disposeHandlers.splice(n,1)},check:w,apply:E,status:function(t){if(!t)return d;u.push(t)},addStatusHandler:function(t){u.push(t)},removeStatusHandler:function(t){var e=u.indexOf(t);e>=0&&u.splice(e,1)},data:i[t]};return n=void 0,e}var u=[],d="idle";function p(t){d=t;for(var e=0;e0;){var a=r.pop(),i=a.id,o=a.chain;if((l=C[i])&&!l.hot._selfAccepted){if(l.hot._selfDeclined)return{type:"self-declined",chain:o,moduleId:i};if(l.hot._main)return{type:"unaccepted",chain:o,moduleId:i};for(var s=0;s ")),R.type){case"self-declined":e.onDeclined&&e.onDeclined(R),e.ignoreDeclined||(A=new Error("Aborted because of self decline: "+R.moduleId+k));break;case"declined":e.onDeclined&&e.onDeclined(R),e.ignoreDeclined||(A=new Error("Aborted because of declined dependency: "+R.moduleId+" in "+R.parentId+k));break;case"unaccepted":e.onUnaccepted&&e.onUnaccepted(R),e.ignoreUnaccepted||(A=new Error("Aborted because "+c+" is not accepted"+k));break;case"accepted":e.onAccepted&&e.onAccepted(R),E=!0;break;case"disposed":e.onDisposed&&e.onDisposed(R),S=!0;break;default:throw new Error("Unexception type "+R.type)}if(A)return p("abort"),Promise.reject(A);if(E)for(c in y[c]=h[c],f(g,R.outdatedModules),R.outdatedDependencies)Object.prototype.hasOwnProperty.call(R.outdatedDependencies,c)&&(m[c]||(m[c]=[]),f(m[c],R.outdatedDependencies[c]));S&&(f(g,[R.moduleId]),y[c]=b)}var F,O=[];for(r=0;r0;)if(c=T.pop(),l=C[c]){var I={},N=l.hot._disposeHandlers;for(s=0;s=0&&j.parents.splice(F,1))}}for(c in m)if(Object.prototype.hasOwnProperty.call(m,c)&&(l=C[c]))for(D=m[c],s=0;s=0&&l.children.splice(F,1);for(c in p("apply"),a=v,y)Object.prototype.hasOwnProperty.call(y,c)&&(t[c]=y[c]);var P=null;for(c in m)if(Object.prototype.hasOwnProperty.call(m,c)&&(l=C[c])){D=m[c];var L=[];for(r=0;r=0&&Math.floor(e)===e&&isFinite(t)}function f(t){return i(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function h(t){return null==t?"":Array.isArray(t)||u(t)&&t.toString===c?JSON.stringify(t,null,2):String(t)}function v(t){var e=parseFloat(t);return isNaN(e)?t:e}function m(t,e){for(var n=Object.create(null),r=t.split(","),a=0;a-1)return t.splice(n,1)}}var b=Object.prototype.hasOwnProperty;function _(t,e){return b.call(t,e)}function x(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}var w=/-(\w)/g,R=x((function(t){return t.replace(w,(function(t,e){return e?e.toUpperCase():""}))})),A=x((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),E=/\B([A-Z])/g,C=x((function(t){return t.replace(E,"-$1").toLowerCase()}));var $=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n};function S(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function k(t,e){for(var n in e)t[n]=e[n];return t}function F(t){for(var e={},n=0;n0,Z=Y&&Y.indexOf("edge/")>0,J=(Y&&Y.indexOf("android"),Y&&/iphone|ipad|ipod|ios/.test(Y)||"ios"===V),Q=(Y&&/chrome\/\d+/.test(Y),Y&&/phantomjs/.test(Y),Y&&Y.match(/firefox\/(\d+)/)),tt={}.watch,et=!1;if(W)try{var nt={};Object.defineProperty(nt,"passive",{get:function(){et=!0}}),window.addEventListener("test-passive",null,nt)}catch(t){}var rt=function(){return void 0===G&&(G=!W&&!q&&void 0!==t&&(t.process&&"server"===t.process.env.VUE_ENV)),G},at=W&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function it(t){return"function"==typeof t&&/native code/.test(t.toString())}var ot,st="undefined"!=typeof Symbol&&it(Symbol)&&"undefined"!=typeof Reflect&&it(Reflect.ownKeys);ot="undefined"!=typeof Set&&it(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var lt=O,ct=0,ut=function(){this.id=ct++,this.subs=[]};ut.prototype.addSub=function(t){this.subs.push(t)},ut.prototype.removeSub=function(t){y(this.subs,t)},ut.prototype.depend=function(){ut.target&&ut.target.addDep(this)},ut.prototype.notify=function(){var t=this.subs.slice();for(var e=0,n=t.length;e-1)if(i&&!_(a,"default"))o=!1;else if(""===o||o===C(t)){var l=Ht(String,a.type);(l<0||s0&&(ue((l=t(l,(n||"")+"_"+r))[0])&&ue(u)&&(d[c]=gt(u.text+l[0].text),l.shift()),d.push.apply(d,l)):s(l)?ue(u)?d[c]=gt(u.text+l):""!==l&&d.push(gt(l)):ue(l)&&ue(u)?d[c]=gt(u.text+l.text):(o(e._isVList)&&i(l.tag)&&a(l.key)&&i(n)&&(l.key="__vlist"+n+"_"+r+"__"),d.push(l)));return d}(t):void 0}function ue(t){return i(t)&&i(t.text)&&!1===t.isComment}function de(t,e){if(t){for(var n=Object.create(null),r=st?Reflect.ownKeys(t):Object.keys(t),a=0;a0,o=t?!!t.$stable:!i,s=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(o&&n&&n!==r&&s===n.$key&&!i&&!n.$hasNormal)return n;for(var l in a={},t)t[l]&&"$"!==l[0]&&(a[l]=ve(e,l,t[l]))}else a={};for(var c in e)c in a||(a[c]=me(e,c));return t&&Object.isExtensible(t)&&(t._normalized=a),H(a,"$stable",o),H(a,"$key",s),H(a,"$hasNormal",i),a}function ve(t,e,n){var r=function(){var t=arguments.length?n.apply(null,arguments):n({});return(t=t&&"object"==typeof t&&!Array.isArray(t)?[t]:ce(t))&&(0===t.length||1===t.length&&t[0].isComment)?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:r,enumerable:!0,configurable:!0}),r}function me(t,e){return function(){return t[e]}}function ge(t,e){var n,r,a,o,s;if(Array.isArray(t)||"string"==typeof t)for(n=new Array(t.length),r=0,a=t.length;rdocument.createEvent("Event").timeStamp&&(ln=function(){return cn.now()})}function un(){var t,e;for(sn=ln(),an=!0,tn.sort((function(t,e){return t.id-e.id})),on=0;onon&&tn[n].id>t.id;)n--;tn.splice(n+1,0,t)}else tn.push(t);rn||(rn=!0,ee(un))}}(this)},pn.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||l(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){Ut(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},pn.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},pn.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},pn.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||y(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var fn={enumerable:!0,configurable:!0,get:O,set:O};function hn(t,e,n){fn.get=function(){return this[e][n]},fn.set=function(t){this[e][n]=t},Object.defineProperty(t,n,fn)}function vn(t){t._watchers=[];var e=t.$options;e.props&&function(t,e){var n=t.$options.propsData||{},r=t._props={},a=t.$options._propKeys=[];t.$parent&&Rt(!1);var i=function(i){a.push(i);var o=Pt(i,e,n,t);Ct(r,i,o),i in t||hn(t,"_props",i)};for(var o in e)i(o);Rt(!0)}(t,e.props),e.methods&&function(t,e){t.$options.props;for(var n in e)t[n]="function"!=typeof e[n]?O:$(e[n],t)}(t,e.methods),e.data?function(t){var e=t.$options.data;u(e=t._data="function"==typeof e?function(t,e){pt();try{return t.call(e,e)}catch(t){return Ut(t,e,"data()"),{}}finally{ft()}}(e,t):e||{})||(e={});var n=Object.keys(e),r=t.$options.props,a=(t.$options.methods,n.length);for(;a--;){var i=n[a];0,r&&_(r,i)||(o=void 0,36!==(o=(i+"").charCodeAt(0))&&95!==o&&hn(t,"_data",i))}var o;Et(e,!0)}(t):Et(t._data={},!0),e.computed&&function(t,e){var n=t._computedWatchers=Object.create(null),r=rt();for(var a in e){var i=e[a],o="function"==typeof i?i:i.get;0,r||(n[a]=new pn(t,o||O,O,mn)),a in t||gn(t,a,i)}}(t,e.computed),e.watch&&e.watch!==tt&&function(t,e){for(var n in e){var r=e[n];if(Array.isArray(r))for(var a=0;a-1:"string"==typeof t?t.split(",").indexOf(e)>-1:!!d(t)&&t.test(e)}function $n(t,e){var n=t.cache,r=t.keys,a=t._vnode;for(var i in n){var o=n[i];if(o){var s=En(o.componentOptions);s&&!e(s)&&Sn(n,i,r,a)}}}function Sn(t,e,n,r){var a=t[e];!a||r&&a.tag===r.tag||a.componentInstance.$destroy(),t[e]=null,y(n,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=xn++,e._isVue=!0,t&&t._isComponent?function(t,e){var n=t.$options=Object.create(t.constructor.options),r=e._parentVnode;n.parent=e.parent,n._parentVnode=r;var a=r.componentOptions;n.propsData=a.propsData,n._parentListeners=a.listeners,n._renderChildren=a.children,n._componentTag=a.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=Nt(wn(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&Ye(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,n=t.$vnode=e._parentVnode,a=n&&n.context;t.$slots=pe(e._renderChildren,a),t.$scopedSlots=r,t._c=function(e,n,r,a){return Le(t,e,n,r,a,!1)},t.$createElement=function(e,n,r,a){return Le(t,e,n,r,a,!0)};var i=n&&n.data;Ct(t,"$attrs",i&&i.attrs||r,null,!0),Ct(t,"$listeners",e._parentListeners||r,null,!0)}(e),Qe(e,"beforeCreate"),function(t){var e=de(t.$options.inject,t);e&&(Rt(!1),Object.keys(e).forEach((function(n){Ct(t,n,e[n])})),Rt(!0))}(e),vn(e),function(t){var e=t.$options.provide;e&&(t._provided="function"==typeof e?e.call(t):e)}(e),Qe(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}(Rn),function(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=$t,t.prototype.$delete=St,t.prototype.$watch=function(t,e,n){if(u(e))return _n(this,t,e,n);(n=n||{}).user=!0;var r=new pn(this,t,e,n);if(n.immediate)try{e.call(this,r.value)}catch(t){Ut(t,this,'callback for immediate watcher "'+r.expression+'"')}return function(){r.teardown()}}}(Rn),function(t){var e=/^hook:/;t.prototype.$on=function(t,n){var r=this;if(Array.isArray(t))for(var a=0,i=t.length;a1?S(n):n;for(var r=S(arguments,1),a='event handler for "'+t+'"',i=0,o=n.length;iparseInt(this.max)&&Sn(o,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={get:function(){return L}};Object.defineProperty(t,"config",e),t.util={warn:lt,extend:k,mergeOptions:Nt,defineReactive:Ct},t.set=$t,t.delete=St,t.nextTick=ee,t.observable=function(t){return Et(t),t},t.options=Object.create(null),j.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,k(t.options.components,Fn),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=S(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=Nt(this.options,t),this}}(t),An(t),function(t){j.forEach((function(e){t[e]=function(t,n){return n?("component"===e&&u(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}))}(t)}(Rn),Object.defineProperty(Rn.prototype,"$isServer",{get:rt}),Object.defineProperty(Rn.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(Rn,"FunctionalRenderContext",{value:Me}),Rn.version="2.6.10";var On=m("style,class"),Mn=m("input,textarea,option,select,progress"),Dn=m("contenteditable,draggable,spellcheck"),Tn=m("events,caret,typing,plaintext-only"),In=m("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Nn="http://www.w3.org/1999/xlink",jn=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Pn=function(t){return jn(t)?t.slice(6,t.length):""},Ln=function(t){return null==t||!1===t};function Bn(t){for(var e=t.data,n=t,r=t;i(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(e=Hn(r.data,e));for(;i(n=n.parent);)n&&n.data&&(e=Hn(e,n.data));return function(t,e){if(i(t)||i(e))return Un(t,Gn(e));return""}(e.staticClass,e.class)}function Hn(t,e){return{staticClass:Un(t.staticClass,e.staticClass),class:i(t.class)?[t.class,e.class]:e.class}}function Un(t,e){return t?e?t+" "+e:t:e||""}function Gn(t){return Array.isArray(t)?function(t){for(var e,n="",r=0,a=t.length;r-1?pr(t,e,n):In(e)?Ln(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):Dn(e)?t.setAttribute(e,function(t,e){return Ln(e)||"false"===e?"false":"contenteditable"===t&&Tn(e)?e:"true"}(e,n)):jn(e)?Ln(n)?t.removeAttributeNS(Nn,Pn(e)):t.setAttributeNS(Nn,e,n):pr(t,e,n)}function pr(t,e,n){if(Ln(n))t.removeAttribute(e);else{if(K&&!X&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var fr={create:ur,update:ur};function hr(t,e){var n=e.elm,r=e.data,o=t.data;if(!(a(r.staticClass)&&a(r.class)&&(a(o)||a(o.staticClass)&&a(o.class)))){var s=Bn(e),l=n._transitionClasses;i(l)&&(s=Un(s,Gn(l))),s!==n._prevClass&&(n.setAttribute("class",s),n._prevClass=s)}}var vr,mr={create:hr,update:hr};function gr(t,e,n){var r=vr;return function a(){var i=e.apply(null,arguments);null!==i&&_r(t,a,n,r)}}var yr=Vt&&!(Q&&Number(Q[1])<=53);function br(t,e,n,r){if(yr){var a=sn,i=e;e=i._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=a||t.timeStamp<=0||t.target.ownerDocument!==document)return i.apply(this,arguments)}}vr.addEventListener(t,e,et?{capture:n,passive:r}:n)}function _r(t,e,n,r){(r||vr).removeEventListener(t,e._wrapper||e,n)}function xr(t,e){if(!a(t.data.on)||!a(e.data.on)){var n=e.data.on||{},r=t.data.on||{};vr=e.elm,function(t){if(i(t.__r)){var e=K?"change":"input";t[e]=[].concat(t.__r,t[e]||[]),delete t.__r}i(t.__c)&&(t.change=[].concat(t.__c,t.change||[]),delete t.__c)}(n),oe(n,r,br,_r,gr,e.context),vr=void 0}}var wr,Rr={create:xr,update:xr};function Ar(t,e){if(!a(t.data.domProps)||!a(e.data.domProps)){var n,r,o=e.elm,s=t.data.domProps||{},l=e.data.domProps||{};for(n in i(l.__ob__)&&(l=e.data.domProps=k({},l)),s)n in l||(o[n]="");for(n in l){if(r=l[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),r===s[n])continue;1===o.childNodes.length&&o.removeChild(o.childNodes[0])}if("value"===n&&"PROGRESS"!==o.tagName){o._value=r;var c=a(r)?"":String(r);Er(o,c)&&(o.value=c)}else if("innerHTML"===n&&qn(o.tagName)&&a(o.innerHTML)){(wr=wr||document.createElement("div")).innerHTML=""+r+"";for(var u=wr.firstChild;o.firstChild;)o.removeChild(o.firstChild);for(;u.firstChild;)o.appendChild(u.firstChild)}else if(r!==s[n])try{o[n]=r}catch(t){}}}}function Er(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(t,e)||function(t,e){var n=t.value,r=t._vModifiers;if(i(r)){if(r.number)return v(n)!==v(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}(t,e))}var Cr={create:Ar,update:Ar},$r=x((function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach((function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}})),e}));function Sr(t){var e=kr(t.style);return t.staticStyle?k(t.staticStyle,e):e}function kr(t){return Array.isArray(t)?F(t):"string"==typeof t?$r(t):t}var Fr,Or=/^--/,Mr=/\s*!important$/,Dr=function(t,e,n){if(Or.test(e))t.style.setProperty(e,n);else if(Mr.test(n))t.style.setProperty(C(e),n.replace(Mr,""),"important");else{var r=Ir(e);if(Array.isArray(n))for(var a=0,i=n.length;a-1?e.split(Pr).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function Br(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Pr).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function Hr(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&k(e,Ur(t.name||"v")),k(e,t),e}return"string"==typeof t?Ur(t):void 0}}var Ur=x((function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}})),Gr=W&&!X,zr="transition",Wr="transitionend",qr="animation",Vr="animationend";Gr&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(zr="WebkitTransition",Wr="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(qr="WebkitAnimation",Vr="webkitAnimationEnd"));var Yr=W?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Kr(t){Yr((function(){Yr(t)}))}function Xr(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),Lr(t,e))}function Zr(t,e){t._transitionClasses&&y(t._transitionClasses,e),Br(t,e)}function Jr(t,e,n){var r=ta(t,e),a=r.type,i=r.timeout,o=r.propCount;if(!a)return n();var s="transition"===a?Wr:Vr,l=0,c=function(){t.removeEventListener(s,u),n()},u=function(e){e.target===t&&++l>=o&&c()};setTimeout((function(){l0&&(n="transition",u=o,d=i.length):"animation"===e?c>0&&(n="animation",u=c,d=l.length):d=(n=(u=Math.max(o,c))>0?o>c?"transition":"animation":null)?"transition"===n?i.length:l.length:0,{type:n,timeout:u,propCount:d,hasTransform:"transition"===n&&Qr.test(r[zr+"Property"])}}function ea(t,e){for(;t.length1}function sa(t,e){!0!==e.data.show&&ra(e)}var la=function(t){var e,n,r={},l=t.modules,c=t.nodeOps;for(e=0;eh?b(t,a(n[g+1])?null:n[g+1].elm,n,f,g,r):f>g&&x(0,e,p,h)}(p,m,g,n,u):i(g)?(i(t.text)&&c.setTextContent(p,""),b(p,null,g,0,g.length-1,n)):i(m)?x(0,m,0,m.length-1):i(t.text)&&c.setTextContent(p,""):t.text!==e.text&&c.setTextContent(p,e.text),i(h)&&i(f=h.hook)&&i(f=f.postpatch)&&f(t,e)}}}function E(t,e,n){if(o(n)&&i(t.parent))t.parent.data.pendingInsert=e;else for(var r=0;r-1,o.selected!==i&&(o.selected=i);else if(T(fa(o),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));a||(t.selectedIndex=-1)}}function pa(t,e){return e.every((function(e){return!T(e,t)}))}function fa(t){return"_value"in t?t._value:t.value}function ha(t){t.target.composing=!0}function va(t){t.target.composing&&(t.target.composing=!1,ma(t.target,"input"))}function ma(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function ga(t){return!t.componentInstance||t.data&&t.data.transition?t:ga(t.componentInstance._vnode)}var ya={model:ca,show:{bind:function(t,e,n){var r=e.value,a=(n=ga(n)).data&&n.data.transition,i=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&a?(n.data.show=!0,ra(n,(function(){t.style.display=i}))):t.style.display=r?i:"none"},update:function(t,e,n){var r=e.value;!r!=!e.oldValue&&((n=ga(n)).data&&n.data.transition?(n.data.show=!0,r?ra(n,(function(){t.style.display=t.__vOriginalDisplay})):aa(n,(function(){t.style.display="none"}))):t.style.display=r?t.__vOriginalDisplay:"none")},unbind:function(t,e,n,r,a){a||(t.style.display=t.__vOriginalDisplay)}}},ba={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function _a(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?_a(ze(e.children)):t}function xa(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var a=n._parentListeners;for(var i in a)e[R(i)]=a[i];return e}function wa(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var Ra=function(t){return t.tag||Ge(t)},Aa=function(t){return"show"===t.name},Ea={name:"transition",props:ba,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(Ra)).length){0;var r=this.mode;0;var a=n[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return a;var i=_a(a);if(!i)return a;if(this._leaving)return wa(t,a);var o="__transition-"+this._uid+"-";i.key=null==i.key?i.isComment?o+"comment":o+i.tag:s(i.key)?0===String(i.key).indexOf(o)?i.key:o+i.key:i.key;var l=(i.data||(i.data={})).transition=xa(this),c=this._vnode,u=_a(c);if(i.data.directives&&i.data.directives.some(Aa)&&(i.data.show=!0),u&&u.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(i,u)&&!Ge(u)&&(!u.componentInstance||!u.componentInstance._vnode.isComment)){var d=u.data.transition=k({},l);if("out-in"===r)return this._leaving=!0,se(d,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),wa(t,a);if("in-out"===r){if(Ge(i))return c;var p,f=function(){p()};se(l,"afterEnter",f),se(l,"enterCancelled",f),se(d,"delayLeave",(function(t){p=t}))}}return a}}},Ca=k({tag:String,moveClass:String},ba);function $a(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function Sa(t){t.data.newPos=t.elm.getBoundingClientRect()}function ka(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,a=e.top-n.top;if(r||a){t.data.moved=!0;var i=t.elm.style;i.transform=i.WebkitTransform="translate("+r+"px,"+a+"px)",i.transitionDuration="0s"}}delete Ca.mode;var Fa={Transition:Ea,TransitionGroup:{props:Ca,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var a=Xe(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,a(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,a=this.$slots.default||[],i=this.children=[],o=xa(this),s=0;s-1?Yn[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:Yn[t]=/HTMLUnknownElement/.test(e.toString())},k(Rn.options.directives,ya),k(Rn.options.components,Fa),Rn.prototype.__patch__=W?la:O,Rn.prototype.$mount=function(t,e){return function(t,e,n){var r;return t.$el=e,t.$options.render||(t.$options.render=mt),Qe(t,"beforeMount"),r=function(){t._update(t._render(),n)},new pn(t,r,O,{before:function(){t._isMounted&&!t._isDestroyed&&Qe(t,"beforeUpdate")}},!0),n=!1,null==t.$vnode&&(t._isMounted=!0,Qe(t,"mounted")),t}(this,t=t&&W?function(t){if("string"==typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}(t):void 0,e)},W&&setTimeout((function(){L.devtools&&at&&at.emit("init",Rn)}),0),e.default=Rn}.call(this,n(62),n(90).setImmediate)},function(t,e){var n,r,a=Object.create(null);"undefined"!=typeof window&&(window.__VUE_HOT_MAP__=a);var i=!1,o="beforeCreate";function s(t,e){if(e.functional){var n=e.render;e.render=function(e,r){var i=a[t].instances;return r&&i.indexOf(r.parent)<0&&i.push(r.parent),n(e,r)}}else l(e,o,(function(){var e=a[t];e.Ctor||(e.Ctor=this.constructor),e.instances.push(this)})),l(e,"beforeDestroy",(function(){var e=a[t].instances;e.splice(e.indexOf(this),1)}))}function l(t,e,n){var r=t[e];t[e]=r?Array.isArray(r)?r.concat(n):[r,n]:[n]}function c(t){return function(e,n){try{t(e,n)}catch(t){console.error(t),console.warn("Something went wrong during Vue component hot-reload. Full reload required.")}}}function u(t,e){for(var n in t)n in e||delete t[n];for(var r in e)t[r]=e[r]}e.install=function(t,a){i||(i=!0,n=t.__esModule?t.default:t,r=n.version.split(".").map(Number),a,n.config._lifecycleHooks.indexOf("init")>-1&&(o="init"),e.compatible=r[0]>=2,e.compatible||console.warn("[HMR] You are using a version of vue-hot-reload-api that is only compatible with Vue.js core ^2.0.0."))},e.createRecord=function(t,e){if(!a[t]){var n=null;"function"==typeof e&&(e=(n=e).options),s(t,e),a[t]={Ctor:n,options:e,instances:[]}}},e.isRecorded=function(t){return void 0!==a[t]},e.rerender=c((function(t,e){var n=a[t];if(e){if("function"==typeof e&&(e=e.options),n.Ctor)n.Ctor.options.render=e.render,n.Ctor.options.staticRenderFns=e.staticRenderFns,n.instances.slice().forEach((function(t){t.$options.render=e.render,t.$options.staticRenderFns=e.staticRenderFns,t._staticTrees&&(t._staticTrees=[]),Array.isArray(n.Ctor.options.cached)&&(n.Ctor.options.cached=[]),Array.isArray(t.$options.cached)&&(t.$options.cached=[]);var r=function(t){if(!t._u)return;var e=t._u;return t._u=function(t){try{return e(t,!0)}catch(n){return e(t,null,!0)}},function(){t._u=e}}(t);t.$forceUpdate(),t.$nextTick(r)}));else if(n.options.render=e.render,n.options.staticRenderFns=e.staticRenderFns,n.options.functional){if(Object.keys(e).length>2)u(n.options,e);else{var r=n.options._injectStyles;if(r){var i=e.render;n.options.render=function(t,e){return r.call(e),i(t,e)}}}n.options._Ctor=null,Array.isArray(n.options.cached)&&(n.options.cached=[]),n.instances.slice().forEach((function(t){t.$forceUpdate()}))}}else n.instances.slice().forEach((function(t){t.$forceUpdate()}))})),e.reload=c((function(t,e){var n=a[t];if(e)if("function"==typeof e&&(e=e.options),s(t,e),n.Ctor){r[1]<2&&(n.Ctor.extendOptions=e);var i=n.Ctor.super.extend(e);n.Ctor.options=i.options,n.Ctor.cid=i.cid,n.Ctor.prototype=i.prototype,i.release&&i.release()}else u(n.options,e);n.instances.slice().forEach((function(t){t.$vnode&&t.$vnode.context?t.$vnode.context.$forceUpdate():console.warn("Root or manually mounted instance modified. Full reload required.")}))}))},function(t,e,n){"use strict";n.d(e,"a",(function(){return r}));var r={data:[],update:function(t){this.data=t}}},function(t,e,n){"use strict";n.d(e,"a",(function(){return r}));var r={data:{},update:function(t){this.data=t}}},function(t,e,n){"use strict";function r(t){$(t).on({mouseover:function(){var t=$(this).attr("title");$(this).data("tipText",t).removeAttr("title"),$('

').text(t).appendTo("#app").fadeIn("fast")},mouseout:function(){$(this).attr("title",$(this).data("tipText"));for(var t=document.querySelectorAll(".tooltip"),e=0;en.parts.length&&(r.parts.length=n.parts.length)}else{var o=[];for(a=0;a svg").clone().css({verticalAlign:"top",width:"166px",height:"100px"});$("#print-map").append(n),$("#print-fuel-mix").append($("#fuelMixContainer").clone()),$("#print-fuel-mix svg").css({marginTop:"0",height:"480px",width:"347px"}),$("#print-emission-rates").append("

Emission Rates

"),$("#print-emission-rates").append($("#emRatesDescription").clone()),$("#print-emission-rates").append($("#subco2EmissionRate").clone().css({display:"inline-block",height:"443px"})),$("#print-emission-rates").append($("#subso2EmissionRate").clone().css({display:"inline-block",height:"443px"})),$("#print-emission-rates").append($("#subnoxEmissionRate").clone().css({display:"inline-block",height:"443px"})),$("#printReportMain").hide(),t.showReport=!0}else $("#print-main-map").html(""),$("#print-main-fuel-mix").html(""),$("#print-main-emission-rates").html(""),$("#print-main-map").append("

eGRID Subregion Map

"),$("#print-main-map").append($("#subregionMap > svg").clone().css({width:"296px",height:"178px"})),$("#print-main-fuel-mix").append($("#nationalFuelMix").clone()),$("#print-main-fuel-mix #fuelRadios").css({display:"none"}),$("#print-main-emission-rates").append("

Emission Rates

"),$("#print-main-emission-rates").append($("#nationalEmissionRate > p:nth-child(2)").clone()),$("#print-main-emission-rates").append($("#nationalEmissionRateGraph").clone()),$("#print-main-emission-rates > #nationalEmissionRateGraph > svg").css({display:"inline-block"}),$("#printReport").hide(),t.showMainReport=!0})),window.addEventListener("afterprint",(function(e){t.showReport=!1,t.showMainReport=!1})),$(window).width()<950?(h.a.data.fuelMixOrientation="vertical",h.a.data.emissionRatesOrientation="vertical"):(h.a.data.fuelMixOrientation="horizontal",h.a.data.emissionRatesOrientation="horizontal"),"home"==this.$route.name&&(this.showMain=!0)},watch:{$route:function(t,e){"home"==t.name&&(this.showMain=!0),$("#result").hide()}}};e.a=v},function(t,e,n){"use strict";var r=n(6),a=n(2),i=(n(7),n(83)),o=n(84),s=n(85),l={components:{subregionFuelMixChart:i.a,subregionEmissionRateChart:o.a,emissionsCalculator:s.a},data:function(){return{subregion:{},dataLoaded:!1}},mounted:function(){this.subregion=a.a.data,this.dataLoaded=!0,this.$root.$children[0].subregionSelected=!0,this.$root.$children[0].showMain=!1},watch:{$route:function(t,e){t!==e&&(this.subregion=a.a.data,this.$children[1].update(),this.$children[2].update())}},beforeCreate:function(){var t=this.$router.history.current.params.subregion,e=r.a.data.filter((function(e){return e.properties.name==t}));e.length>0?($(".map").css({fill:""}),$("."+e[0].properties.name).css({fill:"steelblue"}),$("#regionSelectionDropdown").val(e[0].properties.name),a.a.update(e[0])):(this.dataLoaded=!1,this.$router.push("/"))}};e.a=l},function(t,e,n){"use strict";var r={components:{subregionSelection:n(73).a}};e.a=r},function(t,e,n){"use strict";var r={components:{appDescription:n(59).a},mounted:function(){document.getElementById("more-info-ok").focus(),$("#appDescription").show()}};e.a=r},function(t,e,n){"use strict";var r={mounted:function(){document.getElementById("resources-ok").focus()}};e.a=r},function(t,e,n){"use strict";var r={mounted:function(){document.getElementById("subregions-ok").focus()}};e.a=r},function(t,e,n){"use strict";var r={mounted:function(){document.getElementById("megawatt-ok").focus()}};e.a=r},function(t,e,n){"use strict";var r=n(6),a=n(7),i=n(2),o=n(1),s=n(3),l=n(80),c=n(8),u={components:{emissionRateChart:l.a},data:function(){return{nationalFeature:{},subregionData:[],w:0,h:0,domElement:"",sortState:"alphabetically",fuels:["gas","coal","nuclear","hydro","wind","biomass","solar","oil","geothermal","otherFossilFuel","otherUnknownFuel"],renewableAndNon:["renewable","non-renewable"],renewableNonNuclearAndHydro:["hydro","renewable (excluding hydro)","non-renewable (excluding nuclear)","nuclear"],allFuelsColorRange:["#fdae61","#313695","#f46d43","#74add1","#abd9e9","#4575b4","#ffffbf","#d73027","#fee090","#e0f3f8","#a50026"],renewableAndNonColors:["#abdda4","#d7191c"],renewableNonNuclearAndHydroColors:["#2b83ba","#abdda4","#d7191c","#fdae61"],subregions:{},sortedFuel:"",selectedFuelCategory:"allFuels",orientation:"",selectedRegion:{}}},mounted:function(){var t=this;this.orientation=o.a.data.fuelMixOrientation,this.initialize($("#main-charts").width(),350,"#nationalFuelMix"),this.subregionData=r.a.data,this.nationalFeature=a.a.data,this.display(this.selectedFuelCategory),this.selectedRegion=i.a.data,this.show(this.selectedRegion),$("#resetNationalFuelMix").css("visibility","hidden"),$(window).on("resize",(function(){$(window).width()<950?(t.orientation="vertical",t.$children[0].orientation="vertical"):(t.orientation="horizontal",t.$children[0].orientation="horizontal"),t.reset()}))},methods:{initialize:function(t,e,n){this.w=t,this.h=e,this.domElement=n},display:function(t){var e,n,r,a=this;$(this.domElement).show();"alphabetically"==this.sortState?this.subregionData.sort((function(t,e){return d3.ascending(t.properties.name,e.properties.name)})):"ascending"==this.sortState?this.subregionData.sort((function(t,e){return d3.ascending(t.properties.emissionFactor[a.$children[0].selectedPollutantAll].value,e.properties.emissionFactor[a.$children[0].selectedPollutantAll].value)})):"descending"==this.sortState?this.subregionData.sort((function(t,e){return d3.descending(t.properties.emissionFactor[a.$children[0].selectedPollutantAll].value,e.properties.emissionFactor[a.$children[0].selectedPollutantAll].value)})):"subregionFuels"==this.sortState&&this.subregionData.sort((function(t,e){return d3.descending(t.properties.fuelMix[""],e.properties.fuelMix[""])})),"allFuels"==t?(e=this.fuels,n="fuelMix",r=this.allFuelsColorRange):"renewableAndNon"==t?(e=this.renewableAndNon,n="fuelMixCategories",r=this.renewableAndNonColors):"renewableNonNuclearAndHydro"==t&&(e=this.renewableNonNuclearAndHydro,n="fuelMixCategories",r=this.renewableNonNuclearAndHydroColors),"horizontal"==this.orientation?this.displayHorizontal(r,e,n):"vertical"==this.orientation&&this.displayVertical(r,e,n),Object(c.a)(".fuelMixTooltip")},displayHorizontal:function(t,e,n){for(var r=this,a=30,i=60,o=140,l=70,c=this.w-l-i,u=this.h-a-o,d=d3.scale.ordinal().rangeRoundBands([0,c],.2),p=d3.scale.linear().range([u,0]),f=d3.scale.ordinal().range(t).domain(e),h=d3.svg.axis().scale(d).outerTickSize(0).orient("bottom"),v=d3.svg.axis().scale(p).orient("left").tickFormat((function(t){return t+"%"})),m=d3.select(r.domElement).append("svg").attr("width",c+l+i).attr("height",u+a+o).append("g").attr("transform","translate("+l+","+a+")"),g=0;gn&&(n=t.length),"translate(0,-60)";if(1===e)return t.length>n&&(n=t.length),"translate(0,-120)";if(2===e)return t.length>n&&(n=t.length),"translate(0,-100)";if(3===e)return t.length>n&&(n=t.length),"translate(0,-80)"}else{if(0===e)return t.length>n&&(n=t.length),"translate(0,-100)";if(1===e)return t.length>n&&(n=t.length),"translate(0,-80)";if(2===e)return t.length>n&&(n=t.length),"translate(0,-60)";if(3===e)return t.length>a&&(a=t.length),"translate("+(n+80)+","+-100+")";if(4===e)return t.length>a&&(a=t.length),"translate("+(n+80)+","+-80+")";if(5===e)return t.length>a&&(a=t.length),"translate("+(n+80)+","+-60+")";if(6===e)return"translate("+(a+160+20)+","+-100+")";if(7===e)return"translate("+(a+160+20)+","+-80+")";if(8===e)return"translate("+(a+160+20)+","+-60+")";if(9===e)return"translate("+(a+160+140)+","+-100+")";if(10===e)return"translate("+(a+160+140)+","+-70+")"}})).on("click",(function(t){var e={name:t,chart:r.selectedFuelCategory};d3.selectAll(".textselected").style("font-weight",(function(t){return t==e.name?"bold":"normal"})),r.selectedFuel=e.name,r.handleFuelClick(e,n,d,p,_,v,h,r.orientation)}));C.append("rect").attr("x",0).attr("y",0).attr("width",10).attr("height",10).style("fill",f),C.append("text").attr("x",20).attr("y",10).text((function(t,e){if("otherFossilFuel"!=t&&"otherUnknownFuel"!=t)return Object(s.c)(t)})).attr("class",(function(t){return"otherFossilFuel"==t||"otherUnknownFuel"==t?"lgLabel textselected":"textselected"})).style("text-anchor","start").style("font-size",15);var $,S=d3.selectAll(".lgLabel");S.append("tspan").text((function(t){return $=t.match(/[A-Z]*[^A-Z]+/g),"otherFossilFuel"==t?$[0].charAt(0).toUpperCase(1)+$[0].substr(1)+" "+$[1]:$[0].charAt(0).toUpperCase(1)+$[0].substr(1)})),S.append("tspan").attr("x",20).attr("y",25).attr("class",(function(t){if("otherUnknownFuel"==t)return"unknown"})).text((function(t){return"otherFossilFuel"==t?$[2]:"otherUnknownFuel"==t?$[1]:void 0})),d3.selectAll(".unknown").append("tspan").attr("x",20).attr("y",40).text((function(t){return"Fuel"}));r.sortedFuel&&r.sortVerticalBarChart(r.sortedFuel,{sub:300,x:0},n,d,p,_,h),Object(s.a)(m,c-60,u+50)},sortVerticalBarChart:function(t,e,n,r,a,i,s){var l=this;l.sortedFuel=t,o.a.sortedFuel=l.sortedFuel,$("#resetNationalFuelMix").css("visibility","visible");var c=[],u=a.domain(l.subregionData.sort((function(e,r){return r.properties[n][t.name]-e.properties[n][t.name]})).map((function(t){return t.properties.name}))).copy();d3.selectAll("."+t.chart).style("opacity",(function(e){return e.name==t.name?1:.5})).attr("x",(function(e){if(e.name==t.name)return d3.select(this).attr("class",t.chart+" selected"),c.push({subregion:e.subregion,newBase:e.val}),r(0);d3.select(this).attr("class",t.chart+" unselected")})),d3.selectAll(".unselected").attr("x",(function(e){if(e.name!=t.name)for(var n=0;n a").show(),$("#nationalFuelMixSortingStatus").html("This chart is sorted by decreasing % of "+this.selectedFuel+"."),$("#nationalEmissionRateSortingStatus").html("This chart is sorted by decreasing % of "+this.selectedFuel+"."),this.updateChild("subregionFuels",t)},handleSortReset:function(){this.subregionData.sort((function(t,e){return d3.ascending(t.properties.name,e.properties.name)})),this.sortState="alphabetically",o.a.sortedFuel="",this.sortedFuel=o.a.sortedFuel,this.reset(),this.updateChild("alphabetically",""),$("#resetNationalFuelMix").css("visibility","hidden"),$("#sortAlphabeticallyEmissionRate").css("display","none"),$("#sortAscendingEmissionRate").css("display","inline"),$("#sortDescendingEmissionRate").css("display","inline"),$("#nationalEmissionRateSortingStatus").html("This chart is sorted alphabetically A → Z by region."),$("#nationalFuelMixSortingStatus").html("This chart is sorted alphabetically A → Z by region.")},addHovertext:function(t,e,n){return"non-renewable (excluding nuclear)"==t.name?e="non-renewable":"renewable (excluding hydro)"==t.name&&(e="renewable"),Object(s.c)(e)+" accounts for "+n(t.val)+"% of the fuel mix "+Object(s.b)(t.subregion)},updateChild:function(t,e){var n=this.$children[0];e&&(n.selectedFuel=e.name),o.a.sortState=t,n.update()}},watch:{selectedFuelCategory:function(){this.reset(),this.show(this.selectedRegion)},orientation:function(t){o.a.data.fuelMixOrientation=t,this.reset()},selectedRegion:function(){this.reset(),this.show(this.selectedRegion)}}};e.a=u},function(t,e,n){"use strict";var r=n(2),a={data:function(){return{subregion:{},dataLoaded:!1}},mounted:function(){this.subregion=r.a.data,this.dataLoaded=!0},watch:{$route:function(t,e){t!==e&&(this.subregion=r.a.data)}}};e.a=a},function(t,e,n){"use strict";var r=n(3),a=n(7),i=n(2),o=n(8),s={data:function(){return{graphData:[]}},mounted:function(){var t=this;this.graphData.push(a.a.data[0]),this.graphData.push(i.a.data),this.display(this.graphData),$(window).on("resize",(function(){t.update()}))},methods:{display:function(t){for(var e=40,n=30,a=180,i=50,s=$("#fuelMix").width()-i-n,l=500-e-a,c=d3.scale.ordinal().rangeRoundBands([0,s],.3),u=d3.scale.linear().rangeRound([l,0]),d=d3.scale.ordinal().range(["#fdae61","#313695","#f46d43","#74add1","#abd9e9","#4575b4","#ffffbf","#d73027","#fee090","#e0f3f8","#a50026"]).domain(["gas","coal","nuclear","hydro","wind","biomass","solar","oil","geothermal","otherFossilFuel","otherUnknownFuel"]),p=d3.svg.axis().scale(c).outerTickSize(0).orient("bottom"),f=d3.svg.axis().scale(u).orient("left").tickFormat((function(t){return t+"%"})),h=d3.select("#fuelMix").append("svg").attr("width",s+i+n).attr("height",l+e+a).append("g").attr("transform","translate("+i+","+e+")"),v=0;v svg").css("margin-top","25%"),Object(o.a)(".subFuelMixTooltip")},update:function(){this.graphData=[],this.graphData.push(a.a.data[0]),this.graphData.push(i.a.data),d3.selectAll("#fuelMix svg").remove(),this.display(this.graphData)}}};e.a=s},function(t,e,n){"use strict";var r=n(3),a=n(7),i=n(2),o=n(8),s={data:function(){return{data:[],selectedPollutantSub:"co2EmissionRate"}},mounted:function(){var t=this;this.data=[a.a.data[0],i.a.data],this.display(this.data),$(window).on("resize",(function(){d3.selectAll("#emissionRate svg").remove(),t.update()})),$("#pollutantSelectSub button").on("click",(function(e){$(this).css({"background-color":"#2B7D3B"}),$(this).siblings().css({"background-color":"#0071bc"}),t.selectedPollutantSub=$(this).val(),$("#sub"+t.selectedPollutantSub).show(),$("#sub"+t.selectedPollutantSub).siblings("svg").hide()})),$("#defaultPollutantSub").trigger("click")},methods:{display:function(t){for(var e=$("#emissionRate").width(),n=500-($("#select-offset-2").height()-20),a=["so2EmissionRate","co2EmissionRate","noxEmissionRate"],i={national:"#2b83ba",subregion:"#e66101",co2EmissionRate:"#d7191c",so2EmissionRate:"#008837",noxEmissionRate:"#7b3294"},s=0;s950?this.emissionsResultsWidth=$(window).width()/4:this.emissionsResultsWidth=250,this.emissionsResultsHeight=340},methods:{displayMonthlyAverage:function(){var t=this;this.resultsFunction="monthlyAverage";var e=$("#userMonthlyAverageInput").val(),n=12*e;function r(e,n){return 12*n*e*.001*(1+t.gridLoss.value)}this.userEmissions={co2:r(this.emissionFactors.co2EmissionRate.value,e),so2:r(this.emissionFactors.so2EmissionRate.value,e),nox:r(this.emissionFactors.noxEmissionRate.value,e)},this.subregionEmissions={co2:t.calculateSubregionEmissions(this.emissionFactors.co2EmissionRate.value,this.gridLoss.value),so2:t.calculateSubregionEmissions(this.emissionFactors.so2EmissionRate.value,this.gridLoss.value),nox:t.calculateSubregionEmissions(this.emissionFactors.noxEmissionRate.value,this.gridLoss.value)},this.nationalEmissions={co2:t.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.co2EmissionRate.value),so2:t.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.so2EmissionRate.value),nox:t.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.noxEmissionRate.value)};var a=Math.round(this.userEmissions.co2).toLocaleString(),i=Math.round(this.userEmissions.nox).toLocaleString(),o=Math.round(this.userEmissions.so2).toLocaleString();$("#egrid-subregion-acronym").html(this.selectedSubregion.properties.name),$("#egrid-subregion-name").html(this.selectedSubregion.properties.fullName),$("#percent-line-loss").html(this.gridLoss.display),$("#estimated-annual-electricity-use").html(n.toLocaleString()),$("#pounds-of-co2").html(a),$("#pounds-of-so2").html(o),$("#pounds-of-nox").html(i),$("#no-of-tree-seedlings").html(t.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).trees),$("#acres-of-forests").html(t.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).acres);var s=24e3;12*e>s&&(s=12*e);var l=100,c=12*e/(12*this.nationalAverage)*100;c>l&&(l=c),d3.selectAll("#chart-gauge svg").remove(),$("#chart-gauge").attr("class","pane-content row cols-3"),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,s,12*this.nationalAverage,"National Annual","Electricity Use",!1),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,s,12*e,"Your Annual","Electricity Use",!1),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,l,c,"Your Electricity Use","Compared to the National Average",!0),d3.selectAll("#resultGraphs svg").remove(),d3.selectAll("#resultGraphs-rpt svg").remove(),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs",this.emissionsResultsWidth,this.emissionsResultsHeight),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs-rpt",247,340),$("#resultGraphs").show(),$("#annual-results-text").show(),$("#national-avg-annual-results-text").hide(),$("#result-subheader").html("Average Monthly Electricity Use"),$("#result").show()},displayMonthlyActual:function(){var t=this;this.resultsFunction="monthlyActual";var e=$("#calculateMonthlyActualForm input").map((function(){return $(this).val()})).get().reduce((function(t,e){return parseFloat(t)+parseFloat(e)}),0);function n(e,n){return n*e/1e3*(1+t.gridLoss.value)}this.nationalEmissions={co2:this.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.co2EmissionRate.value),so2:this.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.so2EmissionRate.value),nox:this.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.noxEmissionRate.value)},this.subregionEmissions={co2:this.calculateSubregionEmissions(this.emissionFactors.co2EmissionRate.value,this.gridLoss.value),so2:this.calculateSubregionEmissions(this.emissionFactors.so2EmissionRate.value,this.gridLoss.value),nox:this.calculateSubregionEmissions(this.emissionFactors.noxEmissionRate.value,this.gridLoss.value)},this.userEmissions={co2:n(this.emissionFactors.co2EmissionRate.value,e),so2:n(this.emissionFactors.so2EmissionRate.value,e),nox:n(this.emissionFactors.noxEmissionRate.value,e)};var r=Math.round(this.userEmissions.co2).toLocaleString(),a=Math.round(this.userEmissions.nox).toLocaleString(),i=Math.round(this.userEmissions.so2).toLocaleString();$("#egrid-subregion-acronym").html(this.selectedSubregion.properties.name),$("#egrid-subregion-name").html(this.selectedSubregion.properties.fullName),$("#percent-line-loss").html(this.gridLoss.display),$("#estimated-annual-electricity-use").html(e.toLocaleString()),$("#pounds-of-co2").html(r),$("#pounds-of-so2").html(i),$("#pounds-of-nox").html(a),$("#no-of-tree-seedlings").html(this.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).trees),$("#acres-of-forests").html(this.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).acres);var o=24e3;e>o&&(o=e);var s=100,l=e/(12*this.nationalAverage)*100;l>s&&(s=l),d3.selectAll("#chart-gauge svg").remove(),$("#chart-gauge").attr("class","pane-content row cols-3"),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,o,12*this.nationalAverage,"National Annual","Electricity Use",!1),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,o,e,"Your Annual","Electricity Use",!1),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,s,l,"Your Annual Electricity Use","Compared to the National Average",!0),d3.selectAll("#resultGraphs svg").remove(),d3.selectAll("#resultGraphs-rpt svg").remove(),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs",this.emissionsResultsWidth,this.emissionsResultsHeight),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs-rpt",247,340),$("#resultGraphs").show(),$("#annual-results-text").show(),$("#national-avg-annual-results-text").hide(),$("#result-subheader").html("Actual Monthly Electricity Use"),$("#result").show()},displayNationalAverage:function(t){var e=this;function n(t,n){return 12*n*t/1e3*(1+e.gridLoss.value)}if(this.resultsFunction="nationalAverage",this.nationalEmissions={co2:n(this.nationalFeature[0].properties.emissionFactor.co2EmissionRate.value,this.nationalAverage),so2:n(this.nationalFeature[0].properties.emissionFactor.so2EmissionRate.value,this.nationalAverage),nox:n(this.nationalFeature[0].properties.emissionFactor.noxEmissionRate.value,this.nationalAverage)},this.subregionEmissions={},this.userEmissions={co2:n(this.emissionFactors.co2EmissionRate.value,this.nationalAverage),so2:n(this.emissionFactors.so2EmissionRate.value,this.nationalAverage),nox:n(this.emissionFactors.noxEmissionRate.value,this.nationalAverage)},$("#chart-gauge").children.length>3&&d3.selectAll("#chart-gauge svg").remove(),0==this.residentialMode){var r=24e3;this.nationalAverage=1.22*this.squareFootage,$("#resultGraphs").hide(),$("#result-subheader").html("National Average Electricity Use for Commercial Customers"),d3.selectAll("#chart-gauge svg").remove(),$("#chart-gauge").attr("class","pane-content row cols-4"),12*this.nationalAverage>24e3&&(r=12*this.nationalAverage),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,r,12*this.nationalAverage,"Your Annual","Electricity Use",!1),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#chart-gauge",this.emissionsResultsWidth,this.emissionsResultsHeight),d3.selectAll("#resultGraphs-rpt svg").remove(),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs-rpt",247,340)}else this.nationalAverage=1011,$("#resultGraphs").hide(),$("#result-subheader").html("National Average Electricity Use"),$("#commercialCustomersForm").hide(),d3.selectAll("#chart-gauge svg").remove(),$("#chart-gauge").attr("class","pane-content row cols-4"),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,24e3,12*this.nationalAverage,"Your Annual","Electricity Use",!1),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#chart-gauge",this.emissionsResultsWidth,this.emissionsResultsHeight),d3.selectAll("#resultGraphs-rpt svg").remove(),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs-rpt",247,340);var a=Math.round(this.userEmissions.co2).toLocaleString(),i=Math.round(this.userEmissions.nox).toLocaleString(),o=Math.round(this.userEmissions.so2).toLocaleString();$("#nat-egrid-subregion-acronym").html(this.selectedSubregion.properties.name),$("#nat-egrid-subregion-name").html(this.selectedSubregion.properties.fullName),$("#nat-percent-line-loss").html(this.gridLoss.display),$("#nat-estimated-annual-electricity-use").html((12*this.nationalAverage).toLocaleString()),$("#nat-pounds-of-co2").html(a),$("#nat-pounds-of-so2").html(o),$("#nat-pounds-of-nox").html(i),$("#nat-no-of-tree-seedlings").html(this.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).trees),$("#nat-acres-of-forests").html(this.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).acres),$("#commercialCustomersLink").click((function(){this.commercialCustomerForm=!0,$("#residentialCustomersButton").show(),$("#customerText").hide(),$("#commercialCustomersForm").show()})),$("#commercialCustomersForm").on("submit",(function(t){t.preventDefault(),this.squareFootage=$("#squareFootage").val(),this.residentialMode=!1,$("#nationalAverageLink").trigger("click"),$("#nat-em-rpt-intro-2").html("estimated from the national average electricity consumption of 1.22 kWh/sq. ft./month for commercial customers and")})),$("#residentialCustomersButton").click((function(){this.commercialCustomerForm=!1,this.residentialMode=!0,$("#nationalAverageLink").trigger("click"),$("#nat-em-rpt-intro-2").html("estimated from the average home consumption of 1,011 kWh/month and")})),$("#annual-results-text").hide(),$("#national-avg-annual-results-text").show(),$("#result").show()},gaugeChart:function(t,e,n,r,a,i,o){var s=Math.PI;d=0,p=0;var l=d3.svg.arc().innerRadius(60).outerRadius(80).startAngle(s/180*-90),c=d3.select("#chart-gauge").append("svg").attr("width",t).attr("height",e).attr("class","col").append("g").attr("transform","translate("+(t/2-20)+","+(e/2+50)+")");c.append("text").attr("class","gauge-title").attr("transform","translate(0,-105)").attr("text-anchor","middle").text(a),c.append("text").attr("class","gauge-title").attr("transform","translate(0,-90)").attr("text-anchor","middle").text(i);c.append("path").datum({endAngle:s/180*90}).style("fill","#ddd").attr("d",l);var u=c.append("path").datum({endAngle:s/180*-90}).style("fill","#008837").attr("d",l),d=(c.append("text").attr("transform","translate(70,15)").attr("text-anchor","middle").attr("class","gauge-chart-label").style("font-family","Helvetica").text((function(){return 1==o?Math.round(n).toLocaleString()+"%":Math.round(n).toLocaleString()+" kWh"})),c.append("text").attr("transform","translate(-70,15)").attr("text-anchor","middle").style("font-family","Helvetica").text(d)),p=c.append("text").attr("transform","translate(0,-15)").attr("text-anchor","middle").style("font-size","15").style("font-family","Helvetica").text(p),f=Math.floor(r-n/2)*(s/n);p.transition().text((function(){return 1==o?Math.round(r).toLocaleString()+"%":Math.round(r).toLocaleString()})),u.transition().duration((function(t){return 750})).styleTween("fill",(function(){return d3.interpolate("#008837","#008837")})).call((function(t,e){t.attrTween("d",(function(t){var n=d3.interpolate(t.endAngle,e);return function(e){return t.endAngle=n(e),l(t)}}))}),f),d3.selectAll("#chart-gauge svg text").style("font-family","'Source Sans Pro', 'Helvetica Neue', 'Helvetica', 'Roboto', 'Arial', sans-serif"),d3.selectAll("#chart-gauge svg .y.axis path, #resultGraphs svg .axis line").style("fill","none").style("stroke","#000").style("shape-rendering","crispEdges")},calculateNationalEmissions:function(t){return 12132*t/1e3*1.0448},calculateSubregionEmissions:function(t,e){return 12132*t/1e3*(1+e)},calculateCarbonOffset:function(t){return{trees:(t/(44/12*23.2)).toLocaleString(void 0,{maximumFractionDigits:0}),acres:(t/(.85*2204.6)).toLocaleString(void 0,{maximumFractionDigits:0})}},displayUserAndNationalEmissions:function(t,e,n,r,a,o){for(var s=["co2","so2","nox"],l=0;l1){$("#errorMessage").hide(),$("#utilitySelect").children()&&$("#utilitySelect").show(),e.utilArr=[];for(var r=[],a=[""],o=0;o"+t[o].UtilName+""),-1==r.indexOf(t[o].SUBRGN)&&r.push(t[o].SUBRGN);if(r.length>1)$("#utilitySelect").html(a.join()),$("#utilitySelect").attr("required",!0),$("#utilitySelectDiv").show();else{var s=i.a.data.filter((function(t){for(var e=0;ePlease enter a valid zip code.

")})):($("#errorMessage").show(),$("#errorMessage").html("

Please enter a valid zip code.

"))},handleSelectChange:function(t){$("#userLocation").val(""),$("#utilitySelectDiv").hide();var e=t.target.options[t.target.options.selectedIndex].value;this.selectedSubregion=i.a.data.filter((function(t){return t.properties.name==e}))[0],this.$root.$emit("subregionSelected",this.selectedSubregion)}},mounted:function(){var t=this;document.getElementById("zipForm").addEventListener("submit",this.processZipForm),$("#utilitySelect").on("change",(function(e){var n=$("#utilitySelect").val(),r=i.a.data.filter((function(e){return e.properties.name==t.utilArr[n].SUBRGN}));t.$root.$emit("subregionSelected",r[0])}))}};e.a=o},function(t,e,n){"use strict";var r=n(6),a=n(7),i=n(2),o=n(3),s=n(81),l=n(82),c=n(1),u=n(8),d={components:{emissionRateMap:s.a,renewablesMap:l.a},data:function(){return{nationalFeature:{},subregionData:[],subregions:{},w:0,h:0,domElement:"",orientation:"",parameters:["so2EmissionRate","co2EmissionRate","noxEmissionRate"],emRatesColors:{national:"#2b83ba",subregion:"#e66101",co2EmissionRate:"#d7191c",so2EmissionRate:"#008837",noxEmissionRate:"#7b3294"},selectedRegion:{},selectedPollutantAll:"co2EmissionRate",pollutantText:"CO2",sortState:"alphabetically",selectedFuel:"",currentMap:1}},mounted:function(){var t=this;this.orientation=c.a.data.emissionRatesOrientation,this.initialize($("#main-charts").width(),290,"#nationalEmissionRateGraph"),this.display(this.orientation),this.selectedRegion=i.a.data,$("#defaultPollutantAll").css({"background-color":"#2B7D3B"}),$("#sortAlphabeticallyEmissionRate").hide(),$(window).on("resize",(function(){"home"==t.$route.name&&t.update()})),c.a.sortState&&(this.sortState=c.a.sortState,"ascending"==this.sortState?$("#sortAscendingEmissionRate").trigger("click"):"descending"==this.sortState?$("#sortDescendingEmissionRate").trigger("click"):"alphabetically"==this.sortState&&$("#sortAlphabeticallyEmissionRate").trigger("click"))},methods:{initialize:function(t,e,n){this.w=t,this.h=e,this.domElement=n,this.subregionData=r.a.data,this.nationalFeature=a.a.data},display:function(t){$(this.domElement).show();for(var e=0;eThis chart is sorted by "+e+" "+t+" emission rates.
":"alphabetically"==e?"This chart is sorted alphabetically A → Z by region.":void 0},handlePollutantButton:function(t){var e=t.target;"BUTTON"!==e.tagName&&(e=e.parentNode),$(e).css({"background-color":"#2B7D3B"}),$(e).siblings().css({"background-color":"#0071bc"}),this.selectedPollutantAll=$(e).val(),c.a.selectedPollutantAll=$(e).val(),this.update(),this.$children[0].clear&&(this.$children[0].clear(),this.$children[0].display(this.selectedPollutantAll,this.orientation)),this.pollutantText=$(e).html();var n=this.updateStatus(this.pollutantText,this.sortState);$("#nationalEmissionRateSortingStatus").html(n),$("#nationalFuelMixSortingStatus").html(n)},handleSortLink:function(t){var e=t.srcElement,n=e.id;if(this.setPollutantText(),"sortAlphabeticallyEmissionRate"==n){c.a.sortState="alphabetically";var r=this.updateStatus(this.pollutantText,c.a.sortState);$(e).hide(),$(e).siblings().show(),$("#nationalEmissionRateSortingStatus").html(r),$("#nationalFuelMixSortingStatus").html(r),$("#resetNationalFuelMix").css("visibility","hidden")}else if("sortAscendingEmissionRate"==n){c.a.sortState="ascending";r=this.updateStatus(this.pollutantText,c.a.sortState);$(e).hide(),$(e).siblings().show(),$("#nationalEmissionRateSortingStatus").html(r),$("#nationalFuelMixSortingStatus").html(r),$("#resetNationalFuelMix").css("visibility","visible")}else if("sortDescendingEmissionRate"==n){c.a.sortState="descending";r=this.updateStatus(this.pollutantText,c.a.sortState);$(e).hide(),$(e).siblings().show(),$("#nationalEmissionRateSortingStatus").html(r),$("#nationalFuelMixSortingStatus").html(r),$("#resetNationalFuelMix").css("visibility","visible")}this.update(),c.a.sortedFuel="",this.$parent.reset(),this.$parent.show(this.$parent.selectedRegion)}},watch:{selectedRegion:function(){this.clear(),this.sort(this.sortState,this.selectedPollutantAll),this.display(this.orientation),this.show(this.subregionData),this.showSelection(this.selectedPollutantAll)},orientation:function(t){c.a.data.emissionRatesOrientation=t,this.clear(),this.initialize($("#main-charts").width(),290,"#nationalEmissionRateGraph"),this.display(this.orientation)},currentMap:function(t){c.a.currentMap=t}}};e.a=d},function(t,e,n){"use strict";var r=n(9),a=n(6),i=n(7),o=n(8),s={data:function(){return{allData:[],nationalFeature:{},subregionData:[],w:425,h:255}},beforeCreate:function(){var t=this;$.ajax({url:r.a.SUBREGION_JSON,success:function(e){t.allData=e.features,t.nationalFeature=e.features.slice(52,53),t.subregionData=e.features.slice(53,e.features.length),a.a.update(t.subregionData),i.a.update(t.nationalFeature),t.$parent.$parent.$parent.subregionJSONLoaded=!0,t.displayMap("#subregionMap",t.allData)}})},methods:{displayMap:function(t,e){var n=this,r=d3.geo.albersUsa().translate([this.w/2,this.h/2]).scale([this.w+100]),a=d3.geo.path().projection(r),i=d3.select(t).append("svg").attr("width",this.w).attr("height",this.h).attr("viewBox",(function(){return"0 0 "+n.w+" "+n.h})).attr("preserveAspectRatio","xMidYMid meet").attr("fill","gainsboro"),s=this.w/this.h;$(window).on("resize",(function(){var t=$("#subregionMap").width();i.attr("width",t),i.attr("height",Math.round(t/s))})).trigger("resize"),i.selectAll("g").data(e).enter().append("g").attr("class","mapTooltip").attr("title",(function(t){if(t.properties.name)return t.properties.name+" ("+t.properties.fullName+")"})).append("path").attr("class",(function(t){return t.properties.hasOwnProperty("STATE")?"state":"map "+t.properties.name})).attr("d",a).style("stroke",(function(t){return t.properties.hasOwnProperty("STATE")?"#a9a9a9":"#2B2B2B"})).style("stroke-width","1").on("click",(function(t){$("#userLocation").val(""),$("#utilitySelectDiv").hide(),n.$root.$emit("subregionSelected",t)})),Object(o.a)(".mapTooltip")}}};e.a=s},function(t,e,n){"use strict";var r=n(3),a=n(32),i=n(6),o=n(1),s=n(8),l={data:function(){return{orientation:"",width:600,height:300,domElement:"",projection:{},path:{},containerHeight:0,subregionData:[]}},mounted:function(){this.orientation=o.a.data.emissionRatesOrientation,this.initialize(600,300,"#emissionRatesHeatMap"),this.createProjection(),this.display(this.$parent.selectedPollutantAll,this.orientation)},methods:{initialize:function(t,e,n){this.width=t,this.height=e,this.domElement=n,this.subregionData=i.a.data},createProjection:function(){this.projection=d3.geo.albersUsa().translate([this.width/2,this.height/2]).scale([this.width+100]),this.path=d3.geo.path().projection(this.projection)},clear:function(){d3.selectAll("#emissionRatesHeatMap svg").remove()},hide:function(){$(this.domElement).parent().hide()},show:function(){$(this.domElement).parent().show(),$(window).trigger("resize")},display:function(t,e){var n=d3.select(this.domElement).append("svg").attr("class","col size-4of5").attr("width",this.width).attr("height",this.height).attr("viewBox","0 0 "+this.width+" "+this.height).attr("preserveAspectRatio","xMidYMid meet").attr("fill","gainsboro"),i=this.width/this.height;$(window).on("resize",(function(){var t=$("#main-charts").width();n.attr("width",t),n.attr("height",Math.round(t/i))})).trigger("resize");var o=d3.max(this.subregionData,(function(e){return e.properties.emissionFactor[t].value})),l=d3.scale.linear().domain([0,o]).range(["#eeeeee",this.$parent.emRatesColors[t]]);"horizontal"==this.orientation?(this.containerHeight=400,this.svgGradient=d3.select(this.domElement).append("svg").attr("class","col size-1of5").attr("width",100).attr("height",this.containerHeight)):"vertical"==this.orientation&&(this.containerHeight=120,this.svgGradient=d3.select(this.domElement).append("svg").attr("width",400).attr("height",this.containerHeight));var c="",u=(this.svgGradient.append("text").attr("y",20).attr("x",20).append("tspan").text((function(){return"co2EmissionRate"==t?(c="carbon dioxide","CO"):"so2EmissionRate"==t?(c="sulfur dioxide","SO"):"noxEmissionRate"==t?(c="nitrogen oxides","NO"):void 0})).append("tspan").attr("baseline-shift","sub").text((function(){return"co2EmissionRate"==t||"so2EmissionRate"==t?"2":"noxEmissionRate"==t?"x":void 0})),this.svgGradient.append("defs").append("linearGradient").attr("class","legend").attr("id","linear-gradient"));if("horizontal"==this.orientation){u.attr("x1","0%").attr("y1","100%").attr("x2","0%").attr("y2","0%"),u.append("stop").attr("offset","0%").attr("stop-color","#eeeeee"),u.append("stop").attr("offset","100%").attr("stop-color",this.$parent.emRatesColors[t]);var d=1*this.containerHeight/5;this.svgGradient.append("rect").attr("width",30).attr("height",.6*this.containerHeight).attr("transform","translate(20,"+d+")").attr("stroke","black").style("fill","url(#linear-gradient)"),this.svgGradient.append("text").attr("x",20).attr("y",50).text("(lbs/MWh)");var p=d3.scale.linear().domain(l.domain()).range([.6*this.containerHeight,0]),f=d3.svg.axis().scale(p).orient("right").tickFormat((function(e){return"co2EmissionRate"!==t?d3.format(".2n")(e):0==e?e:d3.format(",.2r")(e)}));0==o&&svgGradient.attr("display","none"),this.svgGradient.attr("class","axis gradient").append("g").attr("transform","translate(50, "+d+")").call(f),d3.selectAll("#emissionRatesHeatMap .tick line").attr("x1","-30"),d3.selectAll("#emissionRatesHeatMap .tick line").attr("x2","0")}else if("vertical"==this.orientation){u.attr("x1","0%").attr("y1","0%").attr("x2","100%").attr("y2","0%"),u.append("stop").attr("offset","0%").attr("stop-color","#eeeeee"),u.append("stop").attr("offset","100%").attr("stop-color",this.$parent.emRatesColors[t]);d=1*this.containerHeight/5+20;this.svgGradient.append("rect").attr("width",370).attr("height",this.containerHeight/6).attr("transform","translate(20,"+d+")").attr("stroke","black").style("fill","url(#linear-gradient)"),this.svgGradient.append("text").attr("x",50).attr("y",20).text("(lbs/MWh)");p=d3.scale.linear().domain(l.domain()).range([0,370]),f=d3.svg.axis().scale(p).orient("bottom").tickFormat((function(e){return"co2EmissionRate"!==t?d3.format(".2n")(e):0==e?e:d3.format(",.2r")(e)}));0==o&&svgGradient.attr("display","none"),this.svgGradient.attr("class","axis gradient").append("g").attr("transform","translate(20, "+(d+20)+")").call(f),d3.selectAll("#emissionRatesHeatMap .tick line").attr("y1","-20").attr("y2","5")}n.selectAll("g").data(this.subregionData).enter().append("g").attr("class","emissionRateMapTooltip").attr("title",(function(e){return e.properties.fullName+" average "+c+" rate: "+e.properties.emissionFactor[t].display+" lbs/MWh"})).append("path").attr("class",(function(t){return t.properties.hasOwnProperty("STATE")?"state":"heatmap name"+t.properties.name})).attr("d",this.path).style("stroke",(function(t){return t.properties.hasOwnProperty("STATE")?"#a9a9a9":"#2B2B2B"})).style("stroke-width","1").style("fill",(function(e){var n=e.properties.emissionFactor[t].value;return n?l(n):"rgb(213,222,217)"}));var h=n.append("g");Object(a.a)(h,this.path,this.subregionData),"horizontal"==e?Object(r.a)(this.svgGradient,30,this.containerHeight-30):"vertical"==e&&Object(r.a)(this.svgGradient,30,this.containerHeight),Object(s.a)(".emissionRateMapTooltip")}}};e.a=l},function(t,e,n){"use strict";var r=n(3),a=n(32),i=n(6),o=n(1),s=n(8),l={data:function(){return{orientation:"",width:600,height:300,domElement:"#renewablesMap",projection:{},path:{},containerHeight:0,subregionData:[],selectedRenewable:"renewable"}},mounted:function(){this.orientation=o.a.data.emissionRatesOrientation,this.subregionData=i.a.data,this.createProjection(),this.display(this.selectedRenewable,this.$parent.orientation)},methods:{createProjection:function(){this.projection=d3.geo.albersUsa().translate([this.width/2,this.height/2]).scale([this.width+100]),this.path=d3.geo.path().projection(this.projection)},display:function(t,e){var n=d3.scale.ordinal().domain([10,20,30,40,50,60,70,80,90,100]).range(["#D73027","#F46D43","#FDAE61","#FEE08B","#FFFFBF","#D9EF8B","#A6D96A","#66BD63","#1A9850","#006837"]),i=d3.select(this.domElement).append("svg").attr("class","col size-4of5").attr("width",this.width).attr("height",this.height).attr("viewBox","0 0 "+this.width+" "+this.height).attr("preserveAspectRatio","xMidYMid meet").attr("fill","gainsboro"),o=this.width/this.height;$(window).on("resize",(function(){var t=$("#main-charts").width();i.attr("width",t),i.attr("height",Math.round(t/o))})).trigger("resize"),i.selectAll("g").data(this.subregionData).enter().append("g").attr("class","renewablesMapTooltip").attr("title",(function(e){return e.properties.fullName+" "+t+" generation: "+e.properties.fuelMixCategories[t]+"%"})).append("path").attr("class",(function(t){return t.properties.hasOwnProperty("STATE")?"state":"renewablesmap name"+t.properties.name})).attr("d",this.path).style("stroke",(function(t){return t.properties.hasOwnProperty("STATE")?"#a9a9a9":"#2B2B2B"})).style("stroke-width","1").style("fill",(function(e){var r=e.properties.fuelMixCategories[t];if(r){var a=10*Math.ceil(r/10);return n(a)}return"rgb(213,222,217)"}));var l=i.append("g");if(Object(s.a)(".renewablesMapTooltip"),"horizontal"==e){var c=d3.select(this.domElement).append("svg").attr("class","col size-1of5").attr("width",150).attr("height",this.height+107),u=c.selectAll(".renewables-legend").data(n.domain()).enter().append("g").attr("class","renewables-legend"),d=-20;u.append("rect").attr("x",0).attr("y",(function(t,e){return e+(d+=25)})).attr("width",15).attr("height",15).style("fill",n);var p=-5;u.append("text").attr("x",25).attr("y",(function(t,e){return e+(p+=25)})).style("fill","black").text((function(t,e){return n.domain()[e]-10+"-"+n.domain()[e]+"%"})),Object(a.a)(l,this.path,this.subregionData),Object(r.a)(c,30,this.height)}else{var f=d3.select(this.domElement).append("svg").attr("width",this.width+70).attr("height",40),h=f.selectAll(".renewables-legend").data(n.domain()).enter().append("g").attr("class","renewables-legend"),v=-40;h.append("rect").attr("y",0).attr("x",(function(t,e){return e+(v+=50)})).attr("width",15).attr("height",15).style("fill",n);var m=-50;h.append("text").attr("y",40).attr("x",(function(t,e){return e+(m+=50)})).style("fill","black").text((function(t,e){return n.domain()[e]-10+"-"+n.domain()[e]+"%"})),Object(a.a)(l,this.path,this.subregionData),Object(r.a)(f,30,this.height)}}}};e.a=l},function(t,e,n){"use strict";var r=n(16),a=n(0),i=Object(a.a)({},r.render,r.staticRenderFns,!1,null,null,null),o=n(5);o.install(n(4)),o.compatible&&(t.hot.accept(),t.hot.data?o.reload("4087686a",i.options):o.createRecord("4087686a",i.options),t.hot.accept(16,function(t){r=n(16),o.rerender("4087686a",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),i.options.__file="src/components/AppDescription.vue",e.a=i.exports},function(t,e,n){"use strict";var r=n(13),a=n(43),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("41df47ae",o.options):s.createRecord("41df47ae",o.options),t.hot.accept(13,function(t){r=n(13),s.rerender("41df47ae",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionCharts.vue",e.a=o.exports},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n.map:hover {\r\n fill-opacity: .7;\r\n fill: steelblue;\n}\n.map {\r\n fill-opacity: .5;\n}\r\n",""])},function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#selectionBox > .pane-content {\r\n padding: 0;\n}\n#zipFormDiv {\r\n color: white;\r\n position: relative;\r\n margin: 0 auto;\r\n width: 100%;\r\n background-position: 50%;\r\n background-repeat: no-repeat;\r\n height: 378px;\r\n text-align: center;\r\n background-image: url(https://www.epa.gov/sites/production/files/2018-12/power-profiler-sm-no-text.png);\n}\n#zipFormDiv h2 {\r\n padding-top: 1em;\n}\n#regionSelectionDiv {\r\n background-color: #FAFAFA;\r\n padding-top: 1em;\r\n text-align: center;\n}\n#subregionMapContainer {\r\n background-color: #FAFAFA;\n}\n#formContainer{\r\n padding-bottom: 0;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#intro {\r\n padding: 1.3529em 1em;\n}\r\n\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n.legendBottom, .legendTop {\r\n cursor: pointer;\n}\n.ui-tooltip{\r\n pointer-events: none;\n}\n#nationalFuelMix > h3 , #nationalEmissionRate > h3 {\r\n display: inline-block;\n}\n#nationalEmissionRate {\r\n margin-top: 20px;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#select-fuel-category, #fuelRadios, #resetNationalFuelMixDiv, #sortingDiv {\r\n text-align: center;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#result {\r\n display: none;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#printReport {\r\n width: 900px;\n}\n#kpis-and-map h3 {\r\n display: inline-block;\n}\n#kpis-print > p {\r\n display: inline-block;\r\n margin-left: 50px;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#printReportMain {\r\n width: 900px;\n}\n.page-break {\r\n display: block;\r\n page-break-after: always;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,'\ninput[type=number]::-webkit-inner-spin-button, \r\ninput[type=number]::-webkit-outer-spin-button { \r\n -webkit-appearance: none; \r\n margin: 0;\n}\n.subregionLabels, .selectedRegionValue, .nationalX text, .nationalBar text, .y.axis text, .ui-tooltip {\r\n font-size: 15px;\n}\n.axis line, .y.axis path, .nationalY > .domain, .nationalBarV > .domain {\r\n fill: none;\r\n stroke: #000;\r\n shape-rendering: crispEdges;\n}\n.x.axis path, #emissionRatesHeatMap > svg.axis.gradient > g > path {\r\n display: none;\n}\n#emissionRatesHeatMap > svg.axis > g > path {\r\n fill: none;\n}\n#kpis div, #kpis .pane-title,#mapSelect, .select-pollutant-label, #pollutantSelectAll, #pollutantSelectSub {\r\n text-align: center;\n}\n#app p {\r\n padding-bottom: 0.7em;\n}\n#app {\r\n padding-left: 1em;\n}\n.select-pollutant-label, #nationalEmissionRateSortingStatus, #nationalFuelMixSortingStatus{\r\n padding-bottom: 0 !important;\n}\n#sidebar {\r\n background-color: #FAFAFA;\r\n border: 1px solid black;\n}\n.modal-mask {\r\n position: fixed;\r\n z-index: 9998;\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n height: 100%;\r\n background-color: rgba(0, 0, 0, .5);\r\n display: table;\r\n transition: opacity .3s ease;\n}\n.modal-wrapper {\r\n display: table-cell;\r\n vertical-align: middle;\n}\n.modal-container {\r\n width: 70%;\r\n margin: 0px auto;\r\n padding: 20px 30px;\r\n background-color: #fff;\r\n border-radius: 2px;\r\n box-shadow: 0 2px 8px rgba(0, 0, 0, .33);\r\n transition: all .3s ease;\r\n font-family: Helvetica, Arial, sans-serif;\n}\n.modal-body {\r\n margin: 20px 0;\n}\n.modal-default-button {\r\n float: right;\n}\n.tooltip {\r\n\tdisplay:none;\r\n\tposition:absolute;\r\n\tborder:1px solid #D3D3D3;\r\n\tbackground-color:#fff;\r\n\tborder-radius:5px;\r\n\tpadding:8px;\r\n\tcolor:#161616;\r\n\tfont-size:12px Arial;\n}\r\n/* transition="modal" styles */\n.modal-enter {\r\n opacity: 0;\n}\n.modal-leave-active {\r\n opacity: 0;\n}\n.modal-enter .modal-container,\r\n.modal-leave-active .modal-container {\r\n -webkit-transform: scale(1.1);\r\n transform: scale(1.1);\n}\n#appDescription, #printReportMain, #printReport {\r\n display: none;\n}\n@media print {\n#app, #block-pane-official-website-header, .sitewide-alert, .ui-tooltip, footer, nav, .skip-links {\r\n display: none;\n}\nheader {\r\n padding: 0 0 0 0;\n}\n#appDescription, #printReportMain, #printReport {\r\n display: block;\n}\n}\r\n',""])},function(t,e,n){"use strict";var r=n(12),a=n(42),i=(n(100),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("7ba5bd90",o.options):s.createRecord("7ba5bd90",o.options),t.hot.accept(12,function(t){r=n(12),s.rerender("7ba5bd90",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/App.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(14),a=n(44),i=(n(94),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("3eca7188",o.options):s.createRecord("3eca7188",o.options),t.hot.accept(14,function(t){r=n(14),s.rerender("3eca7188",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SideBar.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(27),a=n(54),i=(n(93),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("97fa4630",o.options):s.createRecord("97fa4630",o.options),t.hot.accept(27,function(t){r=n(27),s.rerender("97fa4630",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionSelection.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(29),a=n(56),i=(n(89),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("0f7d0bb8",o.options):s.createRecord("0f7d0bb8",o.options),t.hot.accept(29,function(t){r=n(29),s.rerender("0f7d0bb8",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionMap.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(15),a=n(45),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("03f5295e",o.options):s.createRecord("03f5295e",o.options),t.hot.accept(15,function(t){r=n(15),s.rerender("03f5295e",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/modals/MoreInfoModal.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(17),a=n(46),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("12dcf111",o.options):s.createRecord("12dcf111",o.options),t.hot.accept(17,function(t){r=n(17),s.rerender("12dcf111",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/modals/ResourcesModal.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(18),a=n(47),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("2c108a16",o.options):s.createRecord("2c108a16",o.options),t.hot.accept(18,function(t){r=n(18),s.rerender("2c108a16",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/modals/SubregionsModal.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(19),a=n(48),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("2be4cad8",o.options):s.createRecord("2be4cad8",o.options),t.hot.accept(19,function(t){r=n(19),s.rerender("2be4cad8",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/modals/MegawattModal.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(20),a=n(49),i=(n(95),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("44adda9e",o.options):s.createRecord("44adda9e",o.options),t.hot.accept(20,function(t){r=n(20),s.rerender("44adda9e",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/MainCharts.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(28),a=n(55),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("79c68597",o.options):s.createRecord("79c68597",o.options),t.hot.accept(28,function(t){r=n(28),s.rerender("79c68597",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/EmissionRateChart.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(30),a=n(57),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("1a110f56",o.options):s.createRecord("1a110f56",o.options),t.hot.accept(30,function(t){r=n(30),s.rerender("1a110f56",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/EmissionRateMap.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(31),a=n(58),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("4d7ad460",o.options):s.createRecord("4d7ad460",o.options),t.hot.accept(31,function(t){r=n(31),s.rerender("4d7ad460",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/RenewablesMap.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(24),a=n(51),i=(n(96),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("740cdc0c",o.options):s.createRecord("740cdc0c",o.options),t.hot.accept(24,function(t){r=n(24),s.rerender("740cdc0c",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionFuelMixChart.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(25),a=n(52),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("dfeefa1a",o.options):s.createRecord("dfeefa1a",o.options),t.hot.accept(25,function(t){r=n(25),s.rerender("dfeefa1a",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionEmissionRateChart.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(26),a=n(53),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("a4edba24",o.options):s.createRecord("a4edba24",o.options),t.hot.accept(26,function(t){r=n(26),s.rerender("a4edba24",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/EmissionsCalculator.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(21),a=(n(97),n(0)),i=Object(a.a)({},r.render,r.staticRenderFns,!1,null,null,null),o=n(5);o.install(n(4)),o.compatible&&(t.hot.accept(),t.hot.data?o.reload("69e40894",i.options):o.createRecord("69e40894",i.options),t.hot.accept(21,function(t){r=n(21),o.rerender("69e40894",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),i.options.__file="src/components/CalculatorResults.vue",e.a=i.exports},function(t,e,n){"use strict";var r=n(22),a=n(50),i=(n(98),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("5aa5b3c1",o.options):s.createRecord("5aa5b3c1",o.options),t.hot.accept(22,function(t){r=n(22),s.rerender("5aa5b3c1",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/PrintReport.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(23),a=(n(99),n(0)),i=Object(a.a)({},r.render,r.staticRenderFns,!1,null,null,null),o=n(5);o.install(n(4)),o.compatible&&(t.hot.accept(),t.hot.data?o.reload("32e028c8",i.options):o.createRecord("32e028c8",i.options),t.hot.accept(23,function(t){r=n(23),o.rerender("32e028c8",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),i.options.__file="src/components/MainPrintReport.vue",e.a=i.exports},function(t,e,n){"use strict";var r=n(33);n.n(r).a},function(t,e,n){(function(t){var r=void 0!==t&&t||"undefined"!=typeof self&&self||window,a=Function.prototype.apply;function i(t,e){this._id=t,this._clearFn=e}e.setTimeout=function(){return new i(a.call(setTimeout,r,arguments),clearTimeout)},e.setInterval=function(){return new i(a.call(setInterval,r,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},i.prototype.unref=i.prototype.ref=function(){},i.prototype.close=function(){this._clearFn.call(r,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout((function(){t._onTimeout&&t._onTimeout()}),e))},n(91),e.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==t&&t.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==t&&t.clearImmediate||this&&this.clearImmediate}).call(this,n(62))},function(t,e,n){(function(t,e){!function(t,n){"use strict";if(!t.setImmediate){var r,a,i,o,s,l=1,c={},u=!1,d=t.document,p=Object.getPrototypeOf&&Object.getPrototypeOf(t);p=p&&p.setTimeout?p:t,"[object process]"==={}.toString.call(t.process)?r=function(t){e.nextTick((function(){h(t)}))}:!function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=n,e}}()?t.MessageChannel?((i=new MessageChannel).port1.onmessage=function(t){h(t.data)},r=function(t){i.port2.postMessage(t)}):d&&"onreadystatechange"in d.createElement("script")?(a=d.documentElement,r=function(t){var e=d.createElement("script");e.onreadystatechange=function(){h(t),e.onreadystatechange=null,a.removeChild(e),e=null},a.appendChild(e)}):r=function(t){setTimeout(h,0,t)}:(o="setImmediate$"+Math.random()+"$",s=function(e){e.source===t&&"string"==typeof e.data&&0===e.data.indexOf(o)&&h(+e.data.slice(o.length))},t.addEventListener?t.addEventListener("message",s,!1):t.attachEvent("onmessage",s),r=function(e){t.postMessage(o+e,"*")}),p.setImmediate=function(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),n=0;n1)for(var n=1;n-1}function o(t,e){for(var n in e)t[n]=e[n];return t}var s={name:"RouterView",functional:!0,props:{name:{type:String,default:"default"}},render:function(t,e){var n=e.props,r=e.children,a=e.parent,i=e.data;i.routerView=!0;for(var s=a.$createElement,l=n.name,c=a.$route,u=a._routerViewCache||(a._routerViewCache={}),d=0,p=!1;a&&a._routerRoot!==a;){var f=a.$vnode&&a.$vnode.data;f&&(f.routerView&&d++,f.keepAlive&&a._inactive&&(p=!0)),a=a.$parent}if(i.routerViewDepth=d,p)return s(u[l],i,r);var h=c.matched[d];if(!h)return u[l]=null,s();var v=u[l]=h.components[l];i.registerRouteInstance=function(t,e){var n=h.instances[l];(e&&n!==t||!e&&n===t)&&(h.instances[l]=e)},(i.hook||(i.hook={})).prepatch=function(t,e){h.instances[l]=e.componentInstance},i.hook.init=function(t){t.data.keepAlive&&t.componentInstance&&t.componentInstance!==h.instances[l]&&(h.instances[l]=t.componentInstance)};var m=i.props=function(t,e){switch(typeof e){case"undefined":return;case"object":return e;case"function":return e(t);case"boolean":return e?t.params:void 0;default:0}}(c,h.props&&h.props[l]);if(m){m=i.props=o({},m);var g=i.attrs=i.attrs||{};for(var y in m)v.props&&y in v.props||(g[y]=m[y],delete m[y])}return s(v,i,r)}};var l=/[!'()*]/g,c=function(t){return"%"+t.charCodeAt(0).toString(16)},u=/%2C/g,d=function(t){return encodeURIComponent(t).replace(l,c).replace(u,",")},p=decodeURIComponent;function f(t){var e={};return(t=t.trim().replace(/^(\?|#|&)/,""))?(t.split("&").forEach((function(t){var n=t.replace(/\+/g," ").split("="),r=p(n.shift()),a=n.length>0?p(n.join("=")):null;void 0===e[r]?e[r]=a:Array.isArray(e[r])?e[r].push(a):e[r]=[e[r],a]})),e):e}function h(t){var e=t?Object.keys(t).map((function(e){var n=t[e];if(void 0===n)return"";if(null===n)return d(e);if(Array.isArray(n)){var r=[];return n.forEach((function(t){void 0!==t&&(null===t?r.push(d(e)):r.push(d(e)+"="+d(t)))})),r.join("&")}return d(e)+"="+d(n)})).filter((function(t){return t.length>0})).join("&"):null;return e?"?"+e:""}var v=/\/?$/;function m(t,e,n,r){var a=r&&r.options.stringifyQuery,i=e.query||{};try{i=g(i)}catch(t){}var o={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:i,params:e.params||{},fullPath:_(e,a),matched:t?b(t):[]};return n&&(o.redirectedFrom=_(n,a)),Object.freeze(o)}function g(t){if(Array.isArray(t))return t.map(g);if(t&&"object"==typeof t){var e={};for(var n in t)e[n]=g(t[n]);return e}return t}var y=m(null,{path:"/"});function b(t){for(var e=[];t;)e.unshift(t),t=t.parent;return e}function _(t,e){var n=t.path,r=t.query;void 0===r&&(r={});var a=t.hash;return void 0===a&&(a=""),(n||"/")+(e||h)(r)+a}function x(t,e){return e===y?t===e:!!e&&(t.path&&e.path?t.path.replace(v,"")===e.path.replace(v,"")&&t.hash===e.hash&&w(t.query,e.query):!(!t.name||!e.name)&&(t.name===e.name&&t.hash===e.hash&&w(t.query,e.query)&&w(t.params,e.params)))}function w(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t),r=Object.keys(e);return n.length===r.length&&n.every((function(n){var r=t[n],a=e[n];return"object"==typeof r&&"object"==typeof a?w(r,a):String(r)===String(a)}))}var R,A={name:"RouterLink",props:{to:{type:[String,Object],required:!0},tag:{type:String,default:"a"},exact:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,event:{type:[String,Array],default:"click"}},render:function(t){var e=this,n=this.$router,r=this.$route,a=n.resolve(this.to,r,this.append),i=a.location,s=a.route,l=a.href,c={},u=n.options.linkActiveClass,d=n.options.linkExactActiveClass,p=null==u?"router-link-active":u,f=null==d?"router-link-exact-active":d,h=null==this.activeClass?p:this.activeClass,g=null==this.exactActiveClass?f:this.exactActiveClass,y=i.path?m(null,i,null,n):s;c[g]=x(r,y),c[h]=this.exact?c[g]:function(t,e){return 0===t.path.replace(v,"/").indexOf(e.path.replace(v,"/"))&&(!e.hash||t.hash===e.hash)&&function(t,e){for(var n in e)if(!(n in t))return!1;return!0}(t.query,e.query)}(r,y);var b=function(t){E(t)&&(e.replace?n.replace(i):n.push(i))},_={click:E};Array.isArray(this.event)?this.event.forEach((function(t){_[t]=b})):_[this.event]=b;var w={class:c};if("a"===this.tag)w.on=_,w.attrs={href:l};else{var R=function t(e){var n;if(e)for(var r=0;r=0&&(e=t.slice(r),t=t.slice(0,r));var a=t.indexOf("?");return a>=0&&(n=t.slice(a+1),t=t.slice(0,a)),{path:t,query:n,hash:e}}(a.path||""),c=e&&e.path||"/",u=l.path?S(l.path,c,n||a.append):c,d=function(t,e,n){void 0===e&&(e={});var r,a=n||f;try{r=a(t||"")}catch(t){r={}}for(var i in e)r[i]=e[i];return r}(l.query,a.query,r&&r.options.parseQuery),p=a.hash||l.hash;return p&&"#"!==p.charAt(0)&&(p="#"+p),{_normalized:!0,path:u,query:d,hash:p}}function Z(t,e){var n=Y(t),r=n.pathList,a=n.pathMap,i=n.nameMap;function o(t,n,o){var s=X(t,n,!1,e),c=s.name;if(c){var u=i[c];if(!u)return l(null,s);var d=u.regex.keys.filter((function(t){return!t.optional})).map((function(t){return t.name}));if("object"!=typeof s.params&&(s.params={}),n&&"object"==typeof n.params)for(var p in n.params)!(p in s.params)&&d.indexOf(p)>-1&&(s.params[p]=n.params[p]);if(u)return s.path=V(u.path,s.params),l(u,s,o)}else if(s.path){s.params={};for(var f=0;f=t.length?n():t[a]?e(t[a],(function(){r(a+1)})):r(a+1)};r(0)}function mt(t){return function(e,n,r){var a=!1,o=0,s=null;gt(t,(function(t,e,n,l){if("function"==typeof t&&void 0===t.cid){a=!0,o++;var c,u=_t((function(e){var a;((a=e).__esModule||bt&&"Module"===a[Symbol.toStringTag])&&(e=e.default),t.resolved="function"==typeof e?e:R.extend(e),n.components[l]=e,--o<=0&&r()})),d=_t((function(t){var e="Failed to resolve async component "+l+": "+t;s||(s=i(t)?t:new Error(e),r(s))}));try{c=t(u,d)}catch(t){d(t)}if(c)if("function"==typeof c.then)c.then(u,d);else{var p=c.component;p&&"function"==typeof p.then&&p.then(u,d)}}})),a||r()}}function gt(t,e){return yt(t.map((function(t){return Object.keys(t.components).map((function(n){return e(t.components[n],t.instances[n],t,n)}))})))}function yt(t){return Array.prototype.concat.apply([],t)}var bt="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;function _t(t){var e=!1;return function(){for(var n=[],r=arguments.length;r--;)n[r]=arguments[r];if(!e)return e=!0,t.apply(this,n)}}var xt=function(t,e){this.router=t,this.base=function(t){if(!t)if(C){var e=document.querySelector("base");t=(t=e&&e.getAttribute("href")||"/").replace(/^https?:\/\/[^\/]+/,"")}else t="/";"/"!==t.charAt(0)&&(t="/"+t);return t.replace(/\/$/,"")}(e),this.current=y,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[]};function wt(t,e,n,r){var a=gt(t,(function(t,r,a,i){var o=function(t,e){"function"!=typeof t&&(t=R.extend(t));return t.options[e]}(t,e);if(o)return Array.isArray(o)?o.map((function(t){return n(t,r,a,i)})):n(o,r,a,i)}));return yt(r?a.reverse():a)}function Rt(t,e){if(e)return function(){return t.apply(e,arguments)}}xt.prototype.listen=function(t){this.cb=t},xt.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},xt.prototype.onError=function(t){this.errorCbs.push(t)},xt.prototype.transitionTo=function(t,e,n){var r=this,a=this.router.match(t,this.current);this.confirmTransition(a,(function(){r.updateRoute(a),e&&e(a),r.ensureURL(),r.ready||(r.ready=!0,r.readyCbs.forEach((function(t){t(a)})))}),(function(t){n&&n(t),t&&!r.ready&&(r.ready=!0,r.readyErrorCbs.forEach((function(e){e(t)})))}))},xt.prototype.confirmTransition=function(t,e,n){var r=this,a=this.current,o=function(t){i(t)&&(r.errorCbs.length?r.errorCbs.forEach((function(e){e(t)})):console.error(t)),n&&n(t)};if(x(t,a)&&t.matched.length===a.matched.length)return this.ensureURL(),o();var s=function(t,e){var n,r=Math.max(t.length,e.length);for(n=0;n-1?decodeURI(t.slice(0,r))+t.slice(r):decodeURI(t)}else n>-1&&(t=decodeURI(t.slice(0,n))+t.slice(n));return t}function kt(t){var e=window.location.href,n=e.indexOf("#");return(n>=0?e.slice(0,n):e)+"#"+t}function Ft(t){lt?ft(kt(t)):window.location.hash=t}function Ot(t){lt?ht(kt(t)):window.location.replace(kt(t))}var Mt=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index+1).concat(t),r.index++,e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index).concat(t),e&&e(t)}),n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var r=this.stack[n];this.confirmTransition(r,(function(){e.index=n,e.updateRoute(r)}))}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(xt),Dt=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=Z(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!lt&&!1!==t.fallback,this.fallback&&(e="hash"),C||(e="abstract"),this.mode=e,e){case"history":this.history=new At(this,t.base);break;case"hash":this.history=new Ct(this,t.base,this.fallback);break;case"abstract":this.history=new Mt(this,t.base);break;default:0}},Tt={currentRoute:{configurable:!0}};function It(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}Dt.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},Tt.currentRoute.get=function(){return this.history&&this.history.current},Dt.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",(function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null)})),!this.app){this.app=t;var n=this.history;if(n instanceof At)n.transitionTo(n.getCurrentLocation());else if(n instanceof Ct){var r=function(){n.setupListeners()};n.transitionTo(n.getCurrentLocation(),r,r)}n.listen((function(t){e.apps.forEach((function(e){e._route=t}))}))}},Dt.prototype.beforeEach=function(t){return It(this.beforeHooks,t)},Dt.prototype.beforeResolve=function(t){return It(this.resolveHooks,t)},Dt.prototype.afterEach=function(t){return It(this.afterHooks,t)},Dt.prototype.onReady=function(t,e){this.history.onReady(t,e)},Dt.prototype.onError=function(t){this.history.onError(t)},Dt.prototype.push=function(t,e,n){this.history.push(t,e,n)},Dt.prototype.replace=function(t,e,n){this.history.replace(t,e,n)},Dt.prototype.go=function(t){this.history.go(t)},Dt.prototype.back=function(){this.go(-1)},Dt.prototype.forward=function(){this.go(1)},Dt.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map((function(t){return Object.keys(t.components).map((function(e){return t.components[e]}))}))):[]},Dt.prototype.resolve=function(t,e,n){var r=X(t,e=e||this.history.current,n,this),a=this.match(r,e),i=a.redirectedFrom||a.fullPath;return{location:r,route:a,href:function(t,e,n){var r="hash"===n?"#"+e:e;return t?k(t+"/"+r):r}(this.history.base,i,this.mode),normalizedTo:r,resolved:a}},Dt.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==y&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(Dt.prototype,Tt),Dt.install=function t(e){if(!t.installed||R!==e){t.installed=!0,R=e;var n=function(t){return void 0!==t},r=function(t,e){var r=t.$options._parentVnode;n(r)&&n(r=r.data)&&n(r=r.registerRouteInstance)&&r(t,e)};e.mixin({beforeCreate:function(){n(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),e.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,r(this,this)},destroyed:function(){r(this)}}),Object.defineProperty(e.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(e.prototype,"$route",{get:function(){return this._routerRoot._route}}),e.component("RouterView",s),e.component("RouterLink",A);var a=e.config.optionMergeStrategies;a.beforeRouteEnter=a.beforeRouteLeave=a.beforeRouteUpdate=a.created}},Dt.version="3.0.6",C&&window.Vue&&window.Vue.use(Dt);var Nt=Dt,jt=n(60);r.default.use(Nt);var Pt=new Nt({routes:[{path:"/",name:"home"},{path:"/:subregion",name:"subregion",component:jt.a}]}),Lt=n(2),Bt=n(9);new r.default({el:"#app",render:function(t){return t(a.a)},router:Pt,beforeCreate:function(){Bt.a.SUBREGION_JSON="/sites/staging/files/2019-02/subregion_0.json",Bt.a.ZIP_UTILITY="/sites/staging/files/2018-07/zip_utility.csv",Bt.a.EGRID_LOGO="/sites/staging/files/2018-09/egrid_text_logo.png"}}).$on("subregionSelected",(function(t){Lt.a.update(t),this.$children[0].$children[4].$children[0].selectedRegion=Lt.a.data,this.$children[0].$children[4].selectedRegion=Lt.a.data,$(".map").css({fill:""}),$("."+t.properties.name).css({fill:"steelblue"}),$("#regionSelectionDropdown").val(t.properties.name),Pt.push(t.properties.name)})),"function"==typeof ga&&Pt.afterEach((function(t){ga("EPA.set","page",location.pathname+"#"+t.fullPath),ga("EPA.send","pageview")}))}]); \ No newline at end of file diff --git a/dist/stag/index.html b/app/dist/stag/index.html similarity index 100% rename from dist/stag/index.html rename to app/dist/stag/index.html diff --git a/package-lock.json b/app/package-lock.json similarity index 72% rename from package-lock.json rename to app/package-lock.json index 6bc046e..f27c6db 100644 --- a/package-lock.json +++ b/app/package-lock.json @@ -5,437 +5,292 @@ "requires": true, "dependencies": { "@babel/code-frame": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz", - "integrity": "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", + "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", "dev": true, "requires": { - "@babel/highlight": "^7.0.0" + "@babel/highlight": "^7.8.3" + } + }, + "@babel/compat-data": { + "version": "7.8.6", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.8.6.tgz", + "integrity": "sha512-CurCIKPTkS25Mb8mz267vU95vy+TyUpnctEX2lV33xWNmHAfjruztgiPBbXZRh3xZZy1CYvGx6XfxyTVS+sk7Q==", + "dev": true, + "requires": { + "browserslist": "^4.8.5", + "invariant": "^2.2.4", + "semver": "^5.5.0" } }, "@babel/core": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.4.0.tgz", - "integrity": "sha512-Dzl7U0/T69DFOTwqz/FJdnOSWS57NpjNfCwMKHABr589Lg8uX1RrlBIJ7L5Dubt/xkLsx0xH5EBFzlBVes1ayA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/generator": "^7.4.0", - "@babel/helpers": "^7.4.0", - "@babel/parser": "^7.4.0", - "@babel/template": "^7.4.0", - "@babel/traverse": "^7.4.0", - "@babel/types": "^7.4.0", - "convert-source-map": "^1.1.0", + "version": "7.8.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.8.7.tgz", + "integrity": "sha512-rBlqF3Yko9cynC5CCFy6+K/w2N+Sq/ff2BPy+Krp7rHlABIr5epbA7OxVeKoMHB39LZOp1UY5SuLjy6uWi35yA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.8.3", + "@babel/generator": "^7.8.7", + "@babel/helpers": "^7.8.4", + "@babel/parser": "^7.8.7", + "@babel/template": "^7.8.6", + "@babel/traverse": "^7.8.6", + "@babel/types": "^7.8.7", + "convert-source-map": "^1.7.0", "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", "json5": "^2.1.0", - "lodash": "^4.17.11", + "lodash": "^4.17.13", "resolve": "^1.3.2", "semver": "^5.4.1", "source-map": "^0.5.0" } }, "@babel/generator": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.4.0.tgz", - "integrity": "sha512-/v5I+a1jhGSKLgZDcmAUZ4K/VePi43eRkUs3yePW1HB1iANOD5tqJXwGSG4BZhSksP8J9ejSlwGeTiiOFZOrXQ==", + "version": "7.8.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.8.7.tgz", + "integrity": "sha512-DQwjiKJqH4C3qGiyQCAExJHoZssn49JTMJgZ8SANGgVFdkupcUhLOdkAeoC6kmHZCPfoDG5M0b6cFlSN5wW7Ew==", "dev": true, "requires": { - "@babel/types": "^7.4.0", + "@babel/types": "^7.8.7", "jsesc": "^2.5.1", - "lodash": "^4.17.11", - "source-map": "^0.5.0", - "trim-right": "^1.0.1" + "lodash": "^4.17.13", + "source-map": "^0.5.0" } }, "@babel/helper-annotate-as-pure": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz", - "integrity": "sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz", + "integrity": "sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw==", "dev": true, "requires": { - "@babel/types": "^7.0.0" + "@babel/types": "^7.8.3" } }, "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz", - "integrity": "sha512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz", + "integrity": "sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw==", "dev": true, "requires": { - "@babel/helper-explode-assignable-expression": "^7.1.0", - "@babel/types": "^7.0.0" + "@babel/helper-explode-assignable-expression": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/helper-call-delegate": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz", - "integrity": "sha512-l79boDFJ8S1c5hvQvG+rc+wHw6IuH7YldmRKsYtpbawsxURu/paVy57FZMomGK22/JckepaikOkY0MoAmdyOlQ==", + "version": "7.8.7", + "resolved": "https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.8.7.tgz", + "integrity": "sha512-doAA5LAKhsFCR0LAFIf+r2RSMmC+m8f/oQ+URnUET/rWeEzC0yTRmAGyWkD4sSu3xwbS7MYQ2u+xlt1V5R56KQ==", "dev": true, "requires": { - "@babel/helper-hoist-variables": "^7.4.4", - "@babel/traverse": "^7.4.4", - "@babel/types": "^7.4.4" - }, - "dependencies": { - "@babel/generator": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.4.4.tgz", - "integrity": "sha512-53UOLK6TVNqKxf7RUh8NE851EHRxOOeVXKbK2bivdb+iziMyk03Sr4eaE9OELCbyZAAafAKPDwF2TPUES5QbxQ==", - "dev": true, - "requires": { - "@babel/types": "^7.4.4", - "jsesc": "^2.5.1", - "lodash": "^4.17.11", - "source-map": "^0.5.0", - "trim-right": "^1.0.1" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz", - "integrity": "sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q==", - "dev": true, - "requires": { - "@babel/types": "^7.4.4" - } - }, - "@babel/parser": { - "version": "7.4.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.4.5.tgz", - "integrity": "sha512-9mUqkL1FF5T7f0WDFfAoDdiMVPWsdD1gZYzSnaXsxUCUqzuch/8of9G3VUSNiZmMBoRxT3neyVsqeiL/ZPcjew==", - "dev": true - }, - "@babel/traverse": { - "version": "7.4.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.4.5.tgz", - "integrity": "sha512-Vc+qjynwkjRmIFGxy0KYoPj4FdVDxLej89kMHFsWScq999uX+pwcX4v9mWRjW0KcAYTPAuVQl2LKP1wEVLsp+A==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/generator": "^7.4.4", - "@babel/helper-function-name": "^7.1.0", - "@babel/helper-split-export-declaration": "^7.4.4", - "@babel/parser": "^7.4.5", - "@babel/types": "^7.4.4", - "debug": "^4.1.0", - "globals": "^11.1.0", - "lodash": "^4.17.11" - } - }, - "@babel/types": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.4.4.tgz", - "integrity": "sha512-dOllgYdnEFOebhkKCjzSVFqw/PmmB8pH6RGOWkY4GsboQNd47b1fBThBSwlHAq9alF9vc1M3+6oqR47R50L0tQ==", - "dev": true, - "requires": { - "esutils": "^2.0.2", - "lodash": "^4.17.11", - "to-fast-properties": "^2.0.0" - } - } + "@babel/helper-hoist-variables": "^7.8.3", + "@babel/traverse": "^7.8.3", + "@babel/types": "^7.8.7" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.8.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.8.7.tgz", + "integrity": "sha512-4mWm8DCK2LugIS+p1yArqvG1Pf162upsIsjE7cNBjez+NjliQpVhj20obE520nao0o14DaTnFJv+Fw5a0JpoUw==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.8.6", + "browserslist": "^4.9.1", + "invariant": "^2.2.4", + "levenary": "^1.1.1", + "semver": "^5.5.0" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.8.6", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.6.tgz", + "integrity": "sha512-bPyujWfsHhV/ztUkwGHz/RPV1T1TDEsSZDsN42JPehndA+p1KKTh3npvTadux0ZhCrytx9tvjpWNowKby3tM6A==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.8.3", + "@babel/helper-regex": "^7.8.3", + "regexpu-core": "^4.6.0" } }, "@babel/helper-define-map": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.4.4.tgz", - "integrity": "sha512-IX3Ln8gLhZpSuqHJSnTNBWGDE9kdkTEWl21A/K7PQ00tseBwbqCHTvNLHSBd9M0R5rER4h5Rsvj9vw0R5SieBg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz", + "integrity": "sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g==", "dev": true, "requires": { - "@babel/helper-function-name": "^7.1.0", - "@babel/types": "^7.4.4", - "lodash": "^4.17.11" - }, - "dependencies": { - "@babel/types": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.4.4.tgz", - "integrity": "sha512-dOllgYdnEFOebhkKCjzSVFqw/PmmB8pH6RGOWkY4GsboQNd47b1fBThBSwlHAq9alF9vc1M3+6oqR47R50L0tQ==", - "dev": true, - "requires": { - "esutils": "^2.0.2", - "lodash": "^4.17.11", - "to-fast-properties": "^2.0.0" - } - } + "@babel/helper-function-name": "^7.8.3", + "@babel/types": "^7.8.3", + "lodash": "^4.17.13" } }, "@babel/helper-explode-assignable-expression": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz", - "integrity": "sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz", + "integrity": "sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw==", "dev": true, "requires": { - "@babel/traverse": "^7.1.0", - "@babel/types": "^7.0.0" + "@babel/traverse": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/helper-function-name": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz", - "integrity": "sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz", + "integrity": "sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==", "dev": true, "requires": { - "@babel/helper-get-function-arity": "^7.0.0", - "@babel/template": "^7.1.0", - "@babel/types": "^7.0.0" + "@babel/helper-get-function-arity": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/helper-get-function-arity": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz", - "integrity": "sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz", + "integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==", "dev": true, "requires": { - "@babel/types": "^7.0.0" + "@babel/types": "^7.8.3" } }, "@babel/helper-hoist-variables": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz", - "integrity": "sha512-VYk2/H/BnYbZDDg39hr3t2kKyifAm1W6zHRfhx8jGjIHpQEBv9dry7oQ2f3+J703TLu69nYdxsovl0XYfcnK4w==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz", + "integrity": "sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg==", "dev": true, "requires": { - "@babel/types": "^7.4.4" - }, - "dependencies": { - "@babel/types": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.4.4.tgz", - "integrity": "sha512-dOllgYdnEFOebhkKCjzSVFqw/PmmB8pH6RGOWkY4GsboQNd47b1fBThBSwlHAq9alF9vc1M3+6oqR47R50L0tQ==", - "dev": true, - "requires": { - "esutils": "^2.0.2", - "lodash": "^4.17.11", - "to-fast-properties": "^2.0.0" - } - } + "@babel/types": "^7.8.3" } }, "@babel/helper-member-expression-to-functions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz", - "integrity": "sha512-avo+lm/QmZlv27Zsi0xEor2fKcqWG56D5ae9dzklpIaY7cQMK5N8VSpaNVPPagiqmy7LrEjK1IWdGMOqPu5csg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz", + "integrity": "sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA==", "dev": true, "requires": { - "@babel/types": "^7.0.0" + "@babel/types": "^7.8.3" } }, "@babel/helper-module-imports": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz", - "integrity": "sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz", + "integrity": "sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==", "dev": true, "requires": { - "@babel/types": "^7.0.0" + "@babel/types": "^7.8.3" } }, "@babel/helper-module-transforms": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.4.4.tgz", - "integrity": "sha512-3Z1yp8TVQf+B4ynN7WoHPKS8EkdTbgAEy0nU0rs/1Kw4pDgmvYH3rz3aI11KgxKCba2cn7N+tqzV1mY2HMN96w==", + "version": "7.8.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.8.6.tgz", + "integrity": "sha512-RDnGJSR5EFBJjG3deY0NiL0K9TO8SXxS9n/MPsbPK/s9LbQymuLNtlzvDiNS7IpecuL45cMeLVkA+HfmlrnkRg==", "dev": true, "requires": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/helper-simple-access": "^7.1.0", - "@babel/helper-split-export-declaration": "^7.4.4", - "@babel/template": "^7.4.4", - "@babel/types": "^7.4.4", - "lodash": "^4.17.11" - }, - "dependencies": { - "@babel/helper-split-export-declaration": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz", - "integrity": "sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q==", - "dev": true, - "requires": { - "@babel/types": "^7.4.4" - } - }, - "@babel/parser": { - "version": "7.4.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.4.5.tgz", - "integrity": "sha512-9mUqkL1FF5T7f0WDFfAoDdiMVPWsdD1gZYzSnaXsxUCUqzuch/8of9G3VUSNiZmMBoRxT3neyVsqeiL/ZPcjew==", - "dev": true - }, - "@babel/template": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.4.4.tgz", - "integrity": "sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.4.4", - "@babel/types": "^7.4.4" - } - }, - "@babel/types": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.4.4.tgz", - "integrity": "sha512-dOllgYdnEFOebhkKCjzSVFqw/PmmB8pH6RGOWkY4GsboQNd47b1fBThBSwlHAq9alF9vc1M3+6oqR47R50L0tQ==", - "dev": true, - "requires": { - "esutils": "^2.0.2", - "lodash": "^4.17.11", - "to-fast-properties": "^2.0.0" - } - } + "@babel/helper-module-imports": "^7.8.3", + "@babel/helper-replace-supers": "^7.8.6", + "@babel/helper-simple-access": "^7.8.3", + "@babel/helper-split-export-declaration": "^7.8.3", + "@babel/template": "^7.8.6", + "@babel/types": "^7.8.6", + "lodash": "^4.17.13" } }, "@babel/helper-optimise-call-expression": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz", - "integrity": "sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz", + "integrity": "sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ==", "dev": true, "requires": { - "@babel/types": "^7.0.0" + "@babel/types": "^7.8.3" } }, "@babel/helper-plugin-utils": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz", - "integrity": "sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz", + "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==", "dev": true }, "@babel/helper-regex": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.4.4.tgz", - "integrity": "sha512-Y5nuB/kESmR3tKjU8Nkn1wMGEx1tjJX076HBMeL3XLQCu6vA/YRzuTW0bbb+qRnXvQGn+d6Rx953yffl8vEy7Q==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.8.3.tgz", + "integrity": "sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ==", "dev": true, "requires": { - "lodash": "^4.17.11" + "lodash": "^4.17.13" } }, "@babel/helper-remap-async-to-generator": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz", - "integrity": "sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz", + "integrity": "sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.0.0", - "@babel/helper-wrap-function": "^7.1.0", - "@babel/template": "^7.1.0", - "@babel/traverse": "^7.1.0", - "@babel/types": "^7.0.0" + "@babel/helper-annotate-as-pure": "^7.8.3", + "@babel/helper-wrap-function": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/traverse": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/helper-replace-supers": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.4.4.tgz", - "integrity": "sha512-04xGEnd+s01nY1l15EuMS1rfKktNF+1CkKmHoErDppjAAZL+IUBZpzT748x262HF7fibaQPhbvWUl5HeSt1EXg==", + "version": "7.8.6", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.8.6.tgz", + "integrity": "sha512-PeMArdA4Sv/Wf4zXwBKPqVj7n9UF/xg6slNRtZW84FM7JpE1CbG8B612FyM4cxrf4fMAMGO0kR7voy1ForHHFA==", "dev": true, "requires": { - "@babel/helper-member-expression-to-functions": "^7.0.0", - "@babel/helper-optimise-call-expression": "^7.0.0", - "@babel/traverse": "^7.4.4", - "@babel/types": "^7.4.4" - }, - "dependencies": { - "@babel/generator": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.4.4.tgz", - "integrity": "sha512-53UOLK6TVNqKxf7RUh8NE851EHRxOOeVXKbK2bivdb+iziMyk03Sr4eaE9OELCbyZAAafAKPDwF2TPUES5QbxQ==", - "dev": true, - "requires": { - "@babel/types": "^7.4.4", - "jsesc": "^2.5.1", - "lodash": "^4.17.11", - "source-map": "^0.5.0", - "trim-right": "^1.0.1" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz", - "integrity": "sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q==", - "dev": true, - "requires": { - "@babel/types": "^7.4.4" - } - }, - "@babel/parser": { - "version": "7.4.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.4.5.tgz", - "integrity": "sha512-9mUqkL1FF5T7f0WDFfAoDdiMVPWsdD1gZYzSnaXsxUCUqzuch/8of9G3VUSNiZmMBoRxT3neyVsqeiL/ZPcjew==", - "dev": true - }, - "@babel/traverse": { - "version": "7.4.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.4.5.tgz", - "integrity": "sha512-Vc+qjynwkjRmIFGxy0KYoPj4FdVDxLej89kMHFsWScq999uX+pwcX4v9mWRjW0KcAYTPAuVQl2LKP1wEVLsp+A==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/generator": "^7.4.4", - "@babel/helper-function-name": "^7.1.0", - "@babel/helper-split-export-declaration": "^7.4.4", - "@babel/parser": "^7.4.5", - "@babel/types": "^7.4.4", - "debug": "^4.1.0", - "globals": "^11.1.0", - "lodash": "^4.17.11" - } - }, - "@babel/types": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.4.4.tgz", - "integrity": "sha512-dOllgYdnEFOebhkKCjzSVFqw/PmmB8pH6RGOWkY4GsboQNd47b1fBThBSwlHAq9alF9vc1M3+6oqR47R50L0tQ==", - "dev": true, - "requires": { - "esutils": "^2.0.2", - "lodash": "^4.17.11", - "to-fast-properties": "^2.0.0" - } - } + "@babel/helper-member-expression-to-functions": "^7.8.3", + "@babel/helper-optimise-call-expression": "^7.8.3", + "@babel/traverse": "^7.8.6", + "@babel/types": "^7.8.6" } }, "@babel/helper-simple-access": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz", - "integrity": "sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz", + "integrity": "sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw==", "dev": true, "requires": { - "@babel/template": "^7.1.0", - "@babel/types": "^7.0.0" + "@babel/template": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/helper-split-export-declaration": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.0.tgz", - "integrity": "sha512-7Cuc6JZiYShaZnybDmfwhY4UYHzI6rlqhWjaIqbsJGsIqPimEYy5uh3akSRLMg65LSdSEnJ8a8/bWQN6u2oMGw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz", + "integrity": "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==", "dev": true, "requires": { - "@babel/types": "^7.4.0" + "@babel/types": "^7.8.3" } }, "@babel/helper-wrap-function": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz", - "integrity": "sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz", + "integrity": "sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ==", "dev": true, "requires": { - "@babel/helper-function-name": "^7.1.0", - "@babel/template": "^7.1.0", - "@babel/traverse": "^7.1.0", - "@babel/types": "^7.2.0" + "@babel/helper-function-name": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/traverse": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/helpers": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.4.2.tgz", - "integrity": "sha512-gQR1eQeroDzFBikhrCccm5Gs2xBjZ57DNjGbqTaHo911IpmSxflOQWMAHPw/TXk8L3isv7s9lYzUkexOeTQUYg==", + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.8.4.tgz", + "integrity": "sha512-VPbe7wcQ4chu4TDQjimHv/5tj73qz88o12EPkO2ValS2QiQS/1F2SsjyIGNnAD0vF/nZS6Cf9i+vW6HIlnaR8w==", "dev": true, "requires": { - "@babel/template": "^7.4.0", - "@babel/traverse": "^7.4.0", - "@babel/types": "^7.4.0" + "@babel/template": "^7.8.3", + "@babel/traverse": "^7.8.4", + "@babel/types": "^7.8.3" } }, "@babel/highlight": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz", - "integrity": "sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.8.3.tgz", + "integrity": "sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==", "dev": true, "requires": { "chalk": "^2.0.0", @@ -444,538 +299,617 @@ } }, "@babel/parser": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.4.2.tgz", - "integrity": "sha512-9fJTDipQFvlfSVdD/JBtkiY0br9BtfvW2R8wo6CX/Ej2eMuV0gWPk1M67Mt3eggQvBqYW1FCEk8BN7WvGm/g5g==", + "version": "7.8.7", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.8.7.tgz", + "integrity": "sha512-9JWls8WilDXFGxs0phaXAZgpxTZhSk/yOYH2hTHC0X1yC7Z78IJfvR1vJ+rmJKq3I35td2XzXzN6ZLYlna+r/A==", "dev": true }, "@babel/plugin-proposal-async-generator-functions": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz", - "integrity": "sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz", + "integrity": "sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/helper-remap-async-to-generator": "^7.8.3", + "@babel/plugin-syntax-async-generators": "^7.8.0" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.3.tgz", + "integrity": "sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-remap-async-to-generator": "^7.1.0", - "@babel/plugin-syntax-async-generators": "^7.2.0" + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-syntax-dynamic-import": "^7.8.0" } }, "@babel/plugin-proposal-json-strings": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz", - "integrity": "sha512-MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.8.3.tgz", + "integrity": "sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.0" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-json-strings": "^7.2.0" + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" } }, "@babel/plugin-proposal-object-rest-spread": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.4.4.tgz", - "integrity": "sha512-dMBG6cSPBbHeEBdFXeQ2QLc5gUpg4Vkaz8octD4aoW/ISO+jBOcsuxYL7bsb5WSu8RLP6boxrBIALEHgoHtO9g==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-8qvuPwU/xxUCt78HocNlv0mXXo0wdh9VT1R04WU8HGOfaOob26pF+9P5/lYjN/q7DHOX1bvX60hnhOvuQUJdbA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-object-rest-spread": "^7.2.0" + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0" } }, "@babel/plugin-proposal-optional-catch-binding": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz", - "integrity": "sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.8.3.tgz", + "integrity": "sha512-QIoIR9abkVn+seDE3OjA08jWcs3eZ9+wJCKSRgo3WdEU2csFYgdScb+8qHB3+WXsGJD55u+5hWCISI7ejXS+kg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-optional-catch-binding": "^7.2.0" + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.0" } }, "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.4.tgz", - "integrity": "sha512-j1NwnOqMG9mFUOH58JTFsA/+ZYzQLUZ/drqWUqxCYLGeu2JFZL8YrNC9hBxKmWtAuOCHPcRpgv7fhap09Fb4kA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.3.tgz", + "integrity": "sha512-1/1/rEZv2XGweRwwSkLpY+s60za9OZ1hJs4YDqFHCw0kYWYwL5IFljVY1MYBL+weT1l9pokDO2uhSTLVxzoHkQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-regex": "^7.4.4", - "regexpu-core": "^4.5.4" + "@babel/helper-create-regexp-features-plugin": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-syntax-async-generators": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz", - "integrity": "sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg==", + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-json-strings": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz", - "integrity": "sha512-5UGYnMSLRE1dqqZwug+1LISpA403HzlSfsg6P9VXU6TBjcSHeNlw4DxDx7LgpF+iKZoOG/+uzqoRHTdcUpiZNg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-object-rest-spread": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz", - "integrity": "sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz", - "integrity": "sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.3.tgz", + "integrity": "sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-arrow-functions": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz", - "integrity": "sha512-ER77Cax1+8/8jCB9fo4Ud161OZzWN5qawi4GusDuRLcDbDG+bIGYY20zb2dfAFdTRGzrfq2xZPvF0R64EHnimg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz", + "integrity": "sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-async-to-generator": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.4.4.tgz", - "integrity": "sha512-YiqW2Li8TXmzgbXw+STsSqPBPFnGviiaSp6CYOq55X8GQ2SGVLrXB6pNid8HkqkZAzOH6knbai3snhP7v0fNwA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz", + "integrity": "sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ==", "dev": true, "requires": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-remap-async-to-generator": "^7.1.0" + "@babel/helper-module-imports": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/helper-remap-async-to-generator": "^7.8.3" } }, "@babel/plugin-transform-block-scoped-functions": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz", - "integrity": "sha512-ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz", + "integrity": "sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-block-scoping": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.4.4.tgz", - "integrity": "sha512-jkTUyWZcTrwxu5DD4rWz6rDB5Cjdmgz6z7M7RLXOJyCUkFBawssDGcGh8M/0FTSB87avyJI1HsTwUXp9nKA1PA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz", + "integrity": "sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "lodash": "^4.17.11" + "@babel/helper-plugin-utils": "^7.8.3", + "lodash": "^4.17.13" } }, "@babel/plugin-transform-classes": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.4.4.tgz", - "integrity": "sha512-/e44eFLImEGIpL9qPxSRat13I5QNRgBLu2hOQJCF7VLy/otSM/sypV1+XaIw5+502RX/+6YaSAPmldk+nhHDPw==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.0.0", - "@babel/helper-define-map": "^7.4.4", - "@babel/helper-function-name": "^7.1.0", - "@babel/helper-optimise-call-expression": "^7.0.0", - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-replace-supers": "^7.4.4", - "@babel/helper-split-export-declaration": "^7.4.4", + "version": "7.8.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.8.6.tgz", + "integrity": "sha512-k9r8qRay/R6v5aWZkrEclEhKO6mc1CCQr2dLsVHBmOQiMpN6I2bpjX3vgnldUWeEI1GHVNByULVxZ4BdP4Hmdg==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.8.3", + "@babel/helper-define-map": "^7.8.3", + "@babel/helper-function-name": "^7.8.3", + "@babel/helper-optimise-call-expression": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/helper-replace-supers": "^7.8.6", + "@babel/helper-split-export-declaration": "^7.8.3", "globals": "^11.1.0" - }, - "dependencies": { - "@babel/helper-split-export-declaration": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz", - "integrity": "sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q==", - "dev": true, - "requires": { - "@babel/types": "^7.4.4" - } - }, - "@babel/types": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.4.4.tgz", - "integrity": "sha512-dOllgYdnEFOebhkKCjzSVFqw/PmmB8pH6RGOWkY4GsboQNd47b1fBThBSwlHAq9alF9vc1M3+6oqR47R50L0tQ==", - "dev": true, - "requires": { - "esutils": "^2.0.2", - "lodash": "^4.17.11", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/plugin-transform-computed-properties": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz", - "integrity": "sha512-kP/drqTxY6Xt3NNpKiMomfgkNn4o7+vKxK2DDKcBG9sHj51vHqMBGy8wbDS/J4lMxnqs153/T3+DmCEAkC5cpA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz", + "integrity": "sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-destructuring": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.4.4.tgz", - "integrity": "sha512-/aOx+nW0w8eHiEHm+BTERB2oJn5D127iye/SUQl7NjHy0lf+j7h4MKMMSOwdazGq9OxgiNADncE+SRJkCxjZpQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.8.3.tgz", + "integrity": "sha512-H4X646nCkiEcHZUZaRkhE2XVsoz0J/1x3VVujnn96pSoGCtKPA99ZZA+va+gK+92Zycd6OBKCD8tDb/731bhgQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-dotall-regex": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.4.4.tgz", - "integrity": "sha512-P05YEhRc2h53lZDjRPk/OektxCVevFzZs2Gfjd545Wde3k+yFDbXORgl2e0xpbq8mLcKJ7Idss4fAg0zORN/zg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz", + "integrity": "sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-regex": "^7.4.4", - "regexpu-core": "^4.5.4" + "@babel/helper-create-regexp-features-plugin": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-duplicate-keys": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.2.0.tgz", - "integrity": "sha512-q+yuxW4DsTjNceUiTzK0L+AfQ0zD9rWaTLiUqHA8p0gxx7lu1EylenfzjeIWNkPy6e/0VG/Wjw9uf9LueQwLOw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.3.tgz", + "integrity": "sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-exponentiation-operator": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz", - "integrity": "sha512-umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz", + "integrity": "sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ==", "dev": true, "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.1.0", - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-for-of": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz", - "integrity": "sha512-9T/5Dlr14Z9TIEXLXkt8T1DU7F24cbhwhMNUziN3hB1AXoZcdzPcTiKGRn/6iOymDqtTKWnr/BtRKN9JwbKtdQ==", + "version": "7.8.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.8.6.tgz", + "integrity": "sha512-M0pw4/1/KI5WAxPsdcUL/w2LJ7o89YHN3yLkzNjg7Yl15GlVGgzHyCU+FMeAxevHGsLVmUqbirlUIKTafPmzdw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-function-name": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz", - "integrity": "sha512-iU9pv7U+2jC9ANQkKeNF6DrPy4GBa4NWQtl6dHB4Pb3izX2JOEvDTFarlNsBj/63ZEzNNIAMs3Qw4fNCcSOXJA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz", + "integrity": "sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ==", "dev": true, "requires": { - "@babel/helper-function-name": "^7.1.0", - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-function-name": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-literals": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz", - "integrity": "sha512-2ThDhm4lI4oV7fVQ6pNNK+sx+c/GM5/SaML0w/r4ZB7sAneD/piDJtwdKlNckXeyGK7wlwg2E2w33C/Hh+VFCg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz", + "integrity": "sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-member-expression-literals": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz", - "integrity": "sha512-HiU3zKkSU6scTidmnFJ0bMX8hz5ixC93b4MHMiYebmk2lUVNGOboPsqQvx5LzooihijUoLR/v7Nc1rbBtnc7FA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz", + "integrity": "sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-modules-amd": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz", - "integrity": "sha512-mK2A8ucqz1qhrdqjS9VMIDfIvvT2thrEsIQzbaTdc5QFzhDjQv2CkJJ5f6BXIkgbmaoax3zBr2RyvV/8zeoUZw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.8.3.tgz", + "integrity": "sha512-MadJiU3rLKclzT5kBH4yxdry96odTUwuqrZM+GllFI/VhxfPz+k9MshJM+MwhfkCdxxclSbSBbUGciBngR+kEQ==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.1.0", - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-module-transforms": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3", + "babel-plugin-dynamic-import-node": "^2.3.0" } }, "@babel/plugin-transform-modules-commonjs": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.4.4.tgz", - "integrity": "sha512-4sfBOJt58sEo9a2BQXnZq+Q3ZTSAUXyK3E30o36BOGnJ+tvJ6YSxF0PG6kERvbeISgProodWuI9UVG3/FMY6iw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.8.3.tgz", + "integrity": "sha512-JpdMEfA15HZ/1gNuB9XEDlZM1h/gF/YOH7zaZzQu2xCFRfwc01NXBMHHSTT6hRjlXJJs5x/bfODM3LiCk94Sxg==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.4.4", - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-simple-access": "^7.1.0" + "@babel/helper-module-transforms": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/helper-simple-access": "^7.8.3", + "babel-plugin-dynamic-import-node": "^2.3.0" } }, "@babel/plugin-transform-modules-systemjs": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.4.4.tgz", - "integrity": "sha512-MSiModfILQc3/oqnG7NrP1jHaSPryO6tA2kOMmAQApz5dayPxWiHqmq4sWH2xF5LcQK56LlbKByCd8Aah/OIkQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.8.3.tgz", + "integrity": "sha512-8cESMCJjmArMYqa9AO5YuMEkE4ds28tMpZcGZB/jl3n0ZzlsxOAi3mC+SKypTfT8gjMupCnd3YiXCkMjj2jfOg==", "dev": true, "requires": { - "@babel/helper-hoist-variables": "^7.4.4", - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-hoist-variables": "^7.8.3", + "@babel/helper-module-transforms": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3", + "babel-plugin-dynamic-import-node": "^2.3.0" } }, "@babel/plugin-transform-modules-umd": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz", - "integrity": "sha512-BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.8.3.tgz", + "integrity": "sha512-evhTyWhbwbI3/U6dZAnx/ePoV7H6OUG+OjiJFHmhr9FPn0VShjwC2kdxqIuQ/+1P50TMrneGzMeyMTFOjKSnAw==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.1.0", - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-module-transforms": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.4.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.5.tgz", - "integrity": "sha512-z7+2IsWafTBbjNsOxU/Iv5CvTJlr5w4+HGu1HovKYTtgJ362f7kBcQglkfmlspKKZ3bgrbSGvLfNx++ZJgCWsg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz", + "integrity": "sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw==", "dev": true, "requires": { - "regexp-tree": "^0.1.6" + "@babel/helper-create-regexp-features-plugin": "^7.8.3" } }, "@babel/plugin-transform-new-target": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz", - "integrity": "sha512-r1z3T2DNGQwwe2vPGZMBNjioT2scgWzK9BCnDEh+46z8EEwXBq24uRzd65I7pjtugzPSj921aM15RpESgzsSuA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.3.tgz", + "integrity": "sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-object-super": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz", - "integrity": "sha512-VMyhPYZISFZAqAPVkiYb7dUe2AsVi2/wCT5+wZdsNO31FojQJa9ns40hzZ6U9f50Jlq4w6qwzdBB2uwqZ00ebg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz", + "integrity": "sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-replace-supers": "^7.1.0" + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/helper-replace-supers": "^7.8.3" } }, "@babel/plugin-transform-parameters": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz", - "integrity": "sha512-oMh5DUO1V63nZcu/ZVLQFqiihBGo4OpxJxR1otF50GMeCLiRx5nUdtokd+u9SuVJrvvuIh9OosRFPP4pIPnwmw==", + "version": "7.8.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.8.7.tgz", + "integrity": "sha512-brYWaEPTRimOctz2NDA3jnBbDi7SVN2T4wYuu0aqSzxC3nozFZngGaw29CJ9ZPweB7k+iFmZuoG3IVPIcXmD2g==", "dev": true, "requires": { - "@babel/helper-call-delegate": "^7.4.4", - "@babel/helper-get-function-arity": "^7.0.0", - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-call-delegate": "^7.8.7", + "@babel/helper-get-function-arity": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-property-literals": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz", - "integrity": "sha512-9q7Dbk4RhgcLp8ebduOpCbtjh7C0itoLYHXd9ueASKAG/is5PQtMR5VJGka9NKqGhYEGn5ITahd4h9QeBMylWQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz", + "integrity": "sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-regenerator": { - "version": "7.4.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz", - "integrity": "sha512-gBKRh5qAaCWntnd09S8QC7r3auLCqq5DI6O0DlfoyDjslSBVqBibrMdsqO+Uhmx3+BlOmE/Kw1HFxmGbv0N9dA==", + "version": "7.8.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.7.tgz", + "integrity": "sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA==", "dev": true, "requires": { - "regenerator-transform": "^0.14.0" + "regenerator-transform": "^0.14.2" } }, "@babel/plugin-transform-reserved-words": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz", - "integrity": "sha512-fz43fqW8E1tAB3DKF19/vxbpib1fuyCwSPE418ge5ZxILnBhWyhtPgz8eh1RCGGJlwvksHkyxMxh0eenFi+kFw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.8.3.tgz", + "integrity": "sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-shorthand-properties": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz", - "integrity": "sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz", + "integrity": "sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-spread": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz", - "integrity": "sha512-KWfky/58vubwtS0hLqEnrWJjsMGaOeSBn90Ezn5Jeg9Z8KKHmELbP1yGylMlm5N6TPKeY9A2+UaSYLdxahg01w==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz", + "integrity": "sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-sticky-regex": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz", - "integrity": "sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz", + "integrity": "sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-regex": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/helper-regex": "^7.8.3" } }, "@babel/plugin-transform-template-literals": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz", - "integrity": "sha512-mQrEC4TWkhLN0z8ygIvEL9ZEToPhG5K7KDW3pzGqOfIGZ28Jb0POUkeWcoz8HnHvhFy6dwAT1j8OzqN8s804+g==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz", + "integrity": "sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.0.0", - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-annotate-as-pure": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-typeof-symbol": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz", - "integrity": "sha512-2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw==", + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.4.tgz", + "integrity": "sha512-2QKyfjGdvuNfHsb7qnBBlKclbD4CfshH2KvDabiijLMGXPHJXGxtDzwIF7bQP+T0ysw8fYTtxPafgfs/c1Lrqg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-unicode-regex": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz", - "integrity": "sha512-il+/XdNw01i93+M9J9u4T7/e/Ue/vWfNZE4IRUQjplu2Mqb/AFTDimkw2tdEdSH50wuQXZAbXSql0UphQke+vA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz", + "integrity": "sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-regex": "^7.4.4", - "regexpu-core": "^4.5.4" + "@babel/helper-create-regexp-features-plugin": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/preset-env": { - "version": "7.4.5", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.4.5.tgz", - "integrity": "sha512-f2yNVXM+FsR5V8UwcFeIHzHWgnhXg3NpRmy0ADvALpnhB0SLbCvrCRr4BLOUYbQNLS+Z0Yer46x9dJXpXewI7w==", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-async-generator-functions": "^7.2.0", - "@babel/plugin-proposal-json-strings": "^7.2.0", - "@babel/plugin-proposal-object-rest-spread": "^7.4.4", - "@babel/plugin-proposal-optional-catch-binding": "^7.2.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-syntax-async-generators": "^7.2.0", - "@babel/plugin-syntax-json-strings": "^7.2.0", - "@babel/plugin-syntax-object-rest-spread": "^7.2.0", - "@babel/plugin-syntax-optional-catch-binding": "^7.2.0", - "@babel/plugin-transform-arrow-functions": "^7.2.0", - "@babel/plugin-transform-async-to-generator": "^7.4.4", - "@babel/plugin-transform-block-scoped-functions": "^7.2.0", - "@babel/plugin-transform-block-scoping": "^7.4.4", - "@babel/plugin-transform-classes": "^7.4.4", - "@babel/plugin-transform-computed-properties": "^7.2.0", - "@babel/plugin-transform-destructuring": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", - "@babel/plugin-transform-duplicate-keys": "^7.2.0", - "@babel/plugin-transform-exponentiation-operator": "^7.2.0", - "@babel/plugin-transform-for-of": "^7.4.4", - "@babel/plugin-transform-function-name": "^7.4.4", - "@babel/plugin-transform-literals": "^7.2.0", - "@babel/plugin-transform-member-expression-literals": "^7.2.0", - "@babel/plugin-transform-modules-amd": "^7.2.0", - "@babel/plugin-transform-modules-commonjs": "^7.4.4", - "@babel/plugin-transform-modules-systemjs": "^7.4.4", - "@babel/plugin-transform-modules-umd": "^7.2.0", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.4.5", - "@babel/plugin-transform-new-target": "^7.4.4", - "@babel/plugin-transform-object-super": "^7.2.0", - "@babel/plugin-transform-parameters": "^7.4.4", - "@babel/plugin-transform-property-literals": "^7.2.0", - "@babel/plugin-transform-regenerator": "^7.4.5", - "@babel/plugin-transform-reserved-words": "^7.2.0", - "@babel/plugin-transform-shorthand-properties": "^7.2.0", - "@babel/plugin-transform-spread": "^7.2.0", - "@babel/plugin-transform-sticky-regex": "^7.2.0", - "@babel/plugin-transform-template-literals": "^7.4.4", - "@babel/plugin-transform-typeof-symbol": "^7.2.0", - "@babel/plugin-transform-unicode-regex": "^7.4.4", - "@babel/types": "^7.4.4", - "browserslist": "^4.6.0", - "core-js-compat": "^3.1.1", + "version": "7.8.7", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.8.7.tgz", + "integrity": "sha512-BYftCVOdAYJk5ASsznKAUl53EMhfBbr8CJ1X+AJLfGPscQkwJFiaV/Wn9DPH/7fzm2v6iRYJKYHSqyynTGw0nw==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.8.6", + "@babel/helper-compilation-targets": "^7.8.7", + "@babel/helper-module-imports": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-proposal-async-generator-functions": "^7.8.3", + "@babel/plugin-proposal-dynamic-import": "^7.8.3", + "@babel/plugin-proposal-json-strings": "^7.8.3", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-proposal-object-rest-spread": "^7.8.3", + "@babel/plugin-proposal-optional-catch-binding": "^7.8.3", + "@babel/plugin-proposal-optional-chaining": "^7.8.3", + "@babel/plugin-proposal-unicode-property-regex": "^7.8.3", + "@babel/plugin-syntax-async-generators": "^7.8.0", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "@babel/plugin-syntax-json-strings": "^7.8.0", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.0", + "@babel/plugin-syntax-top-level-await": "^7.8.3", + "@babel/plugin-transform-arrow-functions": "^7.8.3", + "@babel/plugin-transform-async-to-generator": "^7.8.3", + "@babel/plugin-transform-block-scoped-functions": "^7.8.3", + "@babel/plugin-transform-block-scoping": "^7.8.3", + "@babel/plugin-transform-classes": "^7.8.6", + "@babel/plugin-transform-computed-properties": "^7.8.3", + "@babel/plugin-transform-destructuring": "^7.8.3", + "@babel/plugin-transform-dotall-regex": "^7.8.3", + "@babel/plugin-transform-duplicate-keys": "^7.8.3", + "@babel/plugin-transform-exponentiation-operator": "^7.8.3", + "@babel/plugin-transform-for-of": "^7.8.6", + "@babel/plugin-transform-function-name": "^7.8.3", + "@babel/plugin-transform-literals": "^7.8.3", + "@babel/plugin-transform-member-expression-literals": "^7.8.3", + "@babel/plugin-transform-modules-amd": "^7.8.3", + "@babel/plugin-transform-modules-commonjs": "^7.8.3", + "@babel/plugin-transform-modules-systemjs": "^7.8.3", + "@babel/plugin-transform-modules-umd": "^7.8.3", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.8.3", + "@babel/plugin-transform-new-target": "^7.8.3", + "@babel/plugin-transform-object-super": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.8.7", + "@babel/plugin-transform-property-literals": "^7.8.3", + "@babel/plugin-transform-regenerator": "^7.8.7", + "@babel/plugin-transform-reserved-words": "^7.8.3", + "@babel/plugin-transform-shorthand-properties": "^7.8.3", + "@babel/plugin-transform-spread": "^7.8.3", + "@babel/plugin-transform-sticky-regex": "^7.8.3", + "@babel/plugin-transform-template-literals": "^7.8.3", + "@babel/plugin-transform-typeof-symbol": "^7.8.4", + "@babel/plugin-transform-unicode-regex": "^7.8.3", + "@babel/types": "^7.8.7", + "browserslist": "^4.8.5", + "core-js-compat": "^3.6.2", "invariant": "^2.2.2", - "js-levenshtein": "^1.1.3", + "levenary": "^1.1.1", "semver": "^5.5.0" - }, - "dependencies": { - "@babel/types": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.4.4.tgz", - "integrity": "sha512-dOllgYdnEFOebhkKCjzSVFqw/PmmB8pH6RGOWkY4GsboQNd47b1fBThBSwlHAq9alF9vc1M3+6oqR47R50L0tQ==", - "dev": true, - "requires": { - "esutils": "^2.0.2", - "lodash": "^4.17.11", - "to-fast-properties": "^2.0.0" - } - } + } + }, + "@babel/runtime": { + "version": "7.8.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.8.7.tgz", + "integrity": "sha512-+AATMUFppJDw6aiR5NVPHqIQBlV/Pj8wY/EZH+lmvRdUo9xBaz/rF3alAwFJQavvKfeOlPE7oaaDHVbcySbCsg==", + "dev": true, + "requires": { + "regenerator-runtime": "^0.13.4" } }, "@babel/template": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.4.0.tgz", - "integrity": "sha512-SOWwxxClTTh5NdbbYZ0BmaBVzxzTh2tO/TeLTbF6MO6EzVhHTnff8CdBXx3mEtazFBoysmEM6GU/wF+SuSx4Fw==", + "version": "7.8.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.6.tgz", + "integrity": "sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg==", "dev": true, "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.4.0", - "@babel/types": "^7.4.0" + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.6", + "@babel/types": "^7.8.6" } }, "@babel/traverse": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.4.0.tgz", - "integrity": "sha512-/DtIHKfyg2bBKnIN+BItaIlEg5pjAnzHOIQe5w+rHAw/rg9g0V7T4rqPX8BJPfW11kt3koyjAnTNwCzb28Y1PA==", + "version": "7.8.6", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.8.6.tgz", + "integrity": "sha512-2B8l0db/DPi8iinITKuo7cbPznLCEk0kCxDoB9/N6gGNg/gxOXiR/IcymAFPiBwk5w6TtQ27w4wpElgp9btR9A==", "dev": true, "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/generator": "^7.4.0", - "@babel/helper-function-name": "^7.1.0", - "@babel/helper-split-export-declaration": "^7.4.0", - "@babel/parser": "^7.4.0", - "@babel/types": "^7.4.0", + "@babel/code-frame": "^7.8.3", + "@babel/generator": "^7.8.6", + "@babel/helper-function-name": "^7.8.3", + "@babel/helper-split-export-declaration": "^7.8.3", + "@babel/parser": "^7.8.6", + "@babel/types": "^7.8.6", "debug": "^4.1.0", "globals": "^11.1.0", - "lodash": "^4.17.11" + "lodash": "^4.17.13" } }, "@babel/types": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.4.0.tgz", - "integrity": "sha512-aPvkXyU2SPOnztlgo8n9cEiXW755mgyvueUPcpStqdzoSPm0fjO0vQBjLkt3JKJW7ufikfcnMTTPsN1xaTsBPA==", + "version": "7.8.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.7.tgz", + "integrity": "sha512-k2TreEHxFA4CjGkL+GYjRyx35W0Mr7DP5+9q6WMkyKXB+904bYmG40syjMFV0oLlhhFCwWl0vA0DyzTDkwAiJw==", "dev": true, "requires": { "esutils": "^2.0.2", - "lodash": "^4.17.11", + "lodash": "^4.17.13", "to-fast-properties": "^2.0.0" } }, + "@types/events": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz", + "integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==", + "dev": true + }, + "@types/glob": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz", + "integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==", + "dev": true, + "requires": { + "@types/events": "*", + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/minimatch": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", + "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", + "dev": true + }, + "@types/node": { + "version": "13.7.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-13.7.7.tgz", + "integrity": "sha512-Uo4chgKbnPNlxQwoFmYIwctkQVkMMmsAoGGU4JKwLuvBefF0pCq4FybNSnfkfRCpC7ZW7kttcC/TrRtAJsvGtg==", + "dev": true + }, "@vue/component-compiler-utils": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-2.6.0.tgz", - "integrity": "sha512-IHjxt7LsOFYc0DkTncB7OXJL7UzwOLPPQCfEUNyxL2qt+tF12THV+EO33O1G2Uk4feMSWua3iD39Itszx0f0bw==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.1.1.tgz", + "integrity": "sha512-+lN3nsfJJDGMNz7fCpcoYIORrXo0K3OTsdr8jCM7FuqdI4+70TY6gxY6viJ2Xi1clqyPg7LpeOWwjF31vSMmUw==", "dev": true, "requires": { "consolidate": "^0.15.1", @@ -983,29 +917,12 @@ "lru-cache": "^4.1.2", "merge-source-map": "^1.1.0", "postcss": "^7.0.14", - "postcss-selector-parser": "^5.0.0", - "prettier": "1.16.3", + "postcss-selector-parser": "^6.0.2", + "prettier": "^1.18.2", "source-map": "~0.6.1", "vue-template-es2015-compiler": "^1.9.0" }, "dependencies": { - "cssesc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", - "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", - "dev": true - }, - "postcss-selector-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", - "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", - "dev": true, - "requires": { - "cssesc": "^2.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -1203,25 +1120,19 @@ "dev": true }, "accepts": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz", - "integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=", + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", "dev": true, "requires": { - "mime-types": "~2.1.18", - "negotiator": "0.6.1" + "mime-types": "~2.1.24", + "negotiator": "0.6.2" } }, "acorn": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.1.1.tgz", - "integrity": "sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA==", - "dev": true - }, - "acorn-dynamic-import": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz", - "integrity": "sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.0.tgz", + "integrity": "sha512-gac8OEcQ2Li1dxIEWGZzsp2BitJxwkwcOm0zHAJLcPJaVvm58FRnk6RkuLRpU1EujipU2ZFODv2P9DLMfnV8mw==", "dev": true }, "ajv": { @@ -1359,11 +1270,12 @@ } }, "assert": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz", - "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", "dev": true, "requires": { + "object-assign": "^4.1.1", "util": "0.10.3" }, "dependencies": { @@ -1391,15 +1303,24 @@ "dev": true }, "async": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", - "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", - "dev": true + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } }, "async-each": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.2.tgz", - "integrity": "sha512-6xrbvN0MOBKSJDdonmSSz2OwFSgxRaVtBDes26mj9KIGtDo+g9xosFRSC+i1gQh2oAN/tQ62AI/pGZGQjVOiRg==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", + "dev": true + }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", "dev": true }, "atob": { @@ -1409,15 +1330,24 @@ "dev": true }, "babel-loader": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.0.5.tgz", - "integrity": "sha512-NTnHnVRd2JnRqPC0vW+iOQWU5pchDbYXsG2E6DMXEpMfUcQKclF9gmf3G3ZMhzG7IG9ji4coL0cm+FxeWxDpnw==", + "version": "8.0.6", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.0.6.tgz", + "integrity": "sha512-4BmWKtBOBm13uoUwd08UwjZlaw3O9GWf456R9j+5YykFZ6LUIjIKLc0zEZf+hauxPOJs96C8k6FvYD09vWzhYw==", "dev": true, "requires": { "find-cache-dir": "^2.0.0", "loader-utils": "^1.0.2", "mkdirp": "^0.5.1", - "util.promisify": "^1.0.0" + "pify": "^4.0.1" + } + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz", + "integrity": "sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ==", + "dev": true, + "requires": { + "object.assign": "^4.1.0" } }, "balanced-match": { @@ -1482,9 +1412,9 @@ } }, "base64-js": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz", - "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz", + "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==", "dev": true }, "batch": { @@ -1500,15 +1430,25 @@ "dev": true }, "binary-extensions": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.0.tgz", - "integrity": "sha512-EgmjVLMn22z7eGGv3kcnHwSnJXmFHjISTY9E/S5lIcTD3Oxw05QTcBLNkJFzcb3cNueUdF/IN4U+d78V0zO8Hw==", + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", "dev": true }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, "bluebird": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.3.tgz", - "integrity": "sha512-/qKPUQlaW1OyR51WeCPBvRnAlnZFUJkCSG5HzGnuIqhgyJtF+T94lFnn33eiazjRm2LAHVy2guNnaq48X9SJuw==", + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", "dev": true }, "bn.js": { @@ -1518,23 +1458,29 @@ "dev": true }, "body-parser": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz", - "integrity": "sha1-WykhmP/dVTs6DyDe0FkrlWlVyLQ=", + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", "dev": true, "requires": { - "bytes": "3.0.0", + "bytes": "3.1.0", "content-type": "~1.0.4", "debug": "2.6.9", "depd": "~1.1.2", - "http-errors": "~1.6.3", - "iconv-lite": "0.4.23", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", "on-finished": "~2.3.0", - "qs": "6.5.2", - "raw-body": "2.3.3", - "type-is": "~1.6.16" + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" }, "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "dev": true + }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -1689,20 +1635,20 @@ } }, "browserslist": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.6.0.tgz", - "integrity": "sha512-Jk0YFwXBuMOOol8n6FhgkDzn3mY9PYLYGk29zybF05SbRTsMgPqmTNeQQhOghCxq5oFqAXE3u4sYddr4C0uRhg==", + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.9.1.tgz", + "integrity": "sha512-Q0DnKq20End3raFulq6Vfp1ecB9fh8yUNV55s8sekaDDeqBaCtWlRHCUdaWyUeSSBJM7IbM6HcsyaeYqgeDhnw==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30000967", - "electron-to-chromium": "^1.3.133", - "node-releases": "^1.1.19" + "caniuse-lite": "^1.0.30001030", + "electron-to-chromium": "^1.3.363", + "node-releases": "^1.1.50" } }, "buffer": { - "version": "4.9.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", - "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=", + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", "dev": true, "requires": { "base64-js": "^1.0.2", @@ -1741,27 +1687,48 @@ "dev": true }, "cacache": { - "version": "11.3.2", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-11.3.2.tgz", - "integrity": "sha512-E0zP4EPGDOaT2chM08Als91eYnf8Z+eH1awwwVsngUmgppfM5jjJ8l3z5vO5p5w/I3LsiXawb1sW0VY65pQABg==", + "version": "12.0.3", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.3.tgz", + "integrity": "sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw==", "dev": true, "requires": { - "bluebird": "^3.5.3", + "bluebird": "^3.5.5", "chownr": "^1.1.1", "figgy-pudding": "^3.5.1", - "glob": "^7.1.3", + "glob": "^7.1.4", "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", "lru-cache": "^5.1.1", "mississippi": "^3.0.0", "mkdirp": "^0.5.1", "move-concurrently": "^1.0.1", "promise-inflight": "^1.0.1", - "rimraf": "^2.6.2", + "rimraf": "^2.6.3", "ssri": "^6.0.1", "unique-filename": "^1.1.1", "y18n": "^4.0.0" }, "dependencies": { + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, "lru-cache": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", @@ -1772,9 +1739,9 @@ } }, "yallist": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz", - "integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true } } @@ -1813,9 +1780,9 @@ "dev": true }, "caniuse-lite": { - "version": "1.0.30000969", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000969.tgz", - "integrity": "sha512-Kus0yxkoAJgVc0bax7S4gLSlFifCa7MnSZL9p9VuS/HIKEL4seaqh28KIQAAO50cD/rJ5CiJkJFapkdDAlhFxQ==", + "version": "1.0.30001032", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001032.tgz", + "integrity": "sha512-8joOm7BwcpEN4BfVHtfh0hBXSAPVYk+eUIcNntGtMkUWy/6AKRCDZINCLe3kB1vHhT2vBxBF85Hh9VlPXi/qjA==", "dev": true }, "chalk": { @@ -1830,9 +1797,9 @@ } }, "chokidar": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.5.tgz", - "integrity": "sha512-i0TprVWp+Kj4WRPtInjexJ8Q+BqTE909VpH8xVhXrJkoc5QC8VO9TryGOqTr+2hljzc1sC62t22h5tZePodM/A==", + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", "dev": true, "requires": { "anymatch": "^2.0.0", @@ -1850,15 +1817,15 @@ } }, "chownr": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz", - "integrity": "sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", "dev": true }, "chrome-trace-event": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.0.tgz", - "integrity": "sha512-xDbVgyfDTT2piup/h8dK/y4QZfJRSa73bw1WZ8b4XM1o7fsFubUVGYcE+1ANtOzJJELGpYoG2961z0Z6OAld9A==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", + "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", "dev": true, "requires": { "tslib": "^1.9.0" @@ -1915,29 +1882,29 @@ } }, "cliui": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", - "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", "dev": true, "requires": { - "string-width": "^2.1.1", - "strip-ansi": "^4.0.0", - "wrap-ansi": "^2.0.0" + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" }, "dependencies": { "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "dev": true }, "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "requires": { - "ansi-regex": "^3.0.0" + "ansi-regex": "^4.1.0" } } } @@ -1986,18 +1953,18 @@ "dev": true }, "component-emitter": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", - "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", "dev": true }, "compressible": { - "version": "2.0.16", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.16.tgz", - "integrity": "sha512-JQfEOdnI7dASwCuSPWIeVYwc/zMsu/+tRhoUvEfXz2gxOA2DNjmG5vhtFdBlhWPPGo+RdT9S3tgc/uH5qgDiiA==", + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", "dev": true, "requires": { - "mime-db": ">= 1.38.0 < 2" + "mime-db": ">= 1.43.0 < 2" } }, "compression": { @@ -2051,9 +2018,9 @@ }, "dependencies": { "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, "requires": { "core-util-is": "~1.0.0", @@ -2083,13 +2050,10 @@ "dev": true }, "console-browserify": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", - "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=", - "dev": true, - "requires": { - "date-now": "^0.1.4" - } + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", + "dev": true }, "consolidate": { "version": "0.15.1", @@ -2107,10 +2071,13 @@ "dev": true }, "content-disposition": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", - "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=", - "dev": true + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "dev": true, + "requires": { + "safe-buffer": "5.1.2" + } }, "content-type": { "version": "1.0.4", @@ -2119,18 +2086,18 @@ "dev": true }, "convert-source-map": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz", - "integrity": "sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==", + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", "dev": true, "requires": { "safe-buffer": "~5.1.1" } }, "cookie": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", - "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=", + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", "dev": true }, "cookie-signature": { @@ -2159,30 +2126,83 @@ "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", "dev": true }, - "core-js-compat": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.1.1.tgz", - "integrity": "sha512-RH3kv8NFovFRMdeTEUgu8nMquEWKEVttOY3JFi8mN75sg72zygPqWbpWNTUw4JYEU43562tlzhdWsWqXmdFAnQ==", + "copy-webpack-plugin": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-5.1.1.tgz", + "integrity": "sha512-P15M5ZC8dyCjQHWwd4Ia/dm0SgVvZJMYeykVIVYXbGyqO4dWB5oyPHp9i7wjwo5LhtlhKbiBCdS2NvM07Wlybg==", "dev": true, "requires": { - "browserslist": "^4.6.0", - "core-js-pure": "3.1.1", - "semver": "^6.0.0" + "cacache": "^12.0.3", + "find-cache-dir": "^2.1.0", + "glob-parent": "^3.1.0", + "globby": "^7.1.1", + "is-glob": "^4.0.1", + "loader-utils": "^1.2.3", + "minimatch": "^3.0.4", + "normalize-path": "^3.0.0", + "p-limit": "^2.2.1", + "schema-utils": "^1.0.0", + "serialize-javascript": "^2.1.2", + "webpack-log": "^2.0.0" }, "dependencies": { - "semver": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.0.0.tgz", - "integrity": "sha512-0UewU+9rFapKFnlbirLi3byoOuhrSsli/z/ihNnvM24vgF+8sNBiI1LZPBSH9wJKUwaUbw+s3hToDLCXkrghrQ==", + "globby": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz", + "integrity": "sha1-+yzP+UAfhgCUXfral0QMypcrhoA=", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "dir-glob": "^2.0.0", + "glob": "^7.1.2", + "ignore": "^3.3.5", + "pify": "^3.0.0", + "slash": "^1.0.0" + } + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "p-limit": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.2.tgz", + "integrity": "sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", "dev": true } } }, - "core-js-pure": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.1.1.tgz", - "integrity": "sha512-jH3ZJ0CJ0wwDvWY0olbOComLo6tbWg4kE2x0j4+wlqYnofwF9mYm98YvADuENUzGw69IddmWFCF1FQ2S0jP96A==", - "dev": true + "core-js-compat": { + "version": "3.6.4", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.4.tgz", + "integrity": "sha512-zAa3IZPvsJ0slViBQ2z+vgyyTuhd3MFn1rBQjZSKVEgB0UMYhUkCj9jJUVPgGTGqWvsBVmfnruXgTcNyTlEiSA==", + "dev": true, + "requires": { + "browserslist": "^4.8.3", + "semver": "7.0.0" + }, + "dependencies": { + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "dev": true + } + } }, "core-util-is": { "version": "1.0.2", @@ -2200,6 +2220,16 @@ "elliptic": "^6.0.0" } }, + "create-file-webpack": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/create-file-webpack/-/create-file-webpack-1.0.2.tgz", + "integrity": "sha512-+J6kQTE+Wcobc6gHP8E2zmoeIC+J+p6IXqjFrzoxCl1VYlimWoincPUABAhODuXAJGrZcNZ/Up0PTqq1ISiwvA==", + "dev": true, + "requires": { + "path": "^0.12.7", + "write": "^1.0.3" + } + }, "create-hash": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", @@ -2303,15 +2333,9 @@ "dev": true }, "cyclist": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz", - "integrity": "sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA=", - "dev": true - }, - "date-now": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", - "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=", "dev": true }, "de-indent": { @@ -2342,10 +2366,26 @@ "dev": true }, "deep-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", - "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=", - "dev": true + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dev": true, + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + }, + "dependencies": { + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + } + } }, "default-gateway": { "version": "4.2.0", @@ -2408,25 +2448,18 @@ } }, "del": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/del/-/del-3.0.0.tgz", - "integrity": "sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU=", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", "dev": true, "requires": { + "@types/glob": "^7.1.1", "globby": "^6.1.0", - "is-path-cwd": "^1.0.0", - "is-path-in-cwd": "^1.0.0", - "p-map": "^1.1.1", - "pify": "^3.0.0", - "rimraf": "^2.2.8" - }, - "dependencies": { - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true - } + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" } }, "depd": { @@ -2436,9 +2469,9 @@ "dev": true }, "des.js": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", - "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", "dev": true, "requires": { "inherits": "^2.0.1", @@ -2474,6 +2507,15 @@ "randombytes": "^2.0.0" } }, + "dir-glob": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz", + "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==", + "dev": true, + "requires": { + "path-type": "^3.0.0" + } + }, "dns-equal": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", @@ -2562,9 +2604,9 @@ }, "dependencies": { "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, "requires": { "core-util-is": "~1.0.0", @@ -2594,15 +2636,15 @@ "dev": true }, "electron-to-chromium": { - "version": "1.3.135", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.135.tgz", - "integrity": "sha512-xXLNstRdVsisPF3pL3H9TVZo2XkMILfqtD6RiWIUmDK2sFX1Bjwqmd8LBp0Kuo2FgKO63JXPoEVGm8WyYdwP0Q==", + "version": "1.3.368", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.368.tgz", + "integrity": "sha512-fqzDipW3p+uDkHUHFPrdW3wINRKcJsbnJwBD7hgaQEQwcuLSvNLw6SeUp5gKDpTbmTl7zri7IZfhsdTUTnygJg==", "dev": true }, "elliptic": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz", - "integrity": "sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ==", + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.2.tgz", + "integrity": "sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw==", "dev": true, "requires": { "bn.js": "^4.4.0", @@ -2614,6 +2656,12 @@ "minimalistic-crypto-utils": "^1.0.0" } }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, "emojis-list": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", @@ -2636,14 +2684,50 @@ } }, "enhanced-resolve": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz", - "integrity": "sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz", + "integrity": "sha512-98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA==", "dev": true, "requires": { "graceful-fs": "^4.1.2", - "memory-fs": "^0.4.0", + "memory-fs": "^0.5.0", "tapable": "^1.0.0" + }, + "dependencies": { + "memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } } }, "entities": { @@ -2718,15 +2802,15 @@ } }, "estraverse": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", - "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true }, "esutils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true }, "etag": { @@ -2736,15 +2820,15 @@ "dev": true }, "eventemitter3": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.0.tgz", - "integrity": "sha512-ivIvhpq/Y0uSjcHDcOIccjmYjGLcP09MFGE7ysAwkAvkXfpZlC985pH2/ui64DKazbTW/4kN3yqozUxlXzI6cA==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.0.tgz", + "integrity": "sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg==", "dev": true }, "events": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.0.0.tgz", - "integrity": "sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.1.0.tgz", + "integrity": "sha512-Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg==", "dev": true }, "eventsource": { @@ -2841,39 +2925,39 @@ } }, "express": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/express/-/express-4.16.4.tgz", - "integrity": "sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg==", + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", "dev": true, "requires": { - "accepts": "~1.3.5", + "accepts": "~1.3.7", "array-flatten": "1.1.1", - "body-parser": "1.18.3", - "content-disposition": "0.5.2", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", "content-type": "~1.0.4", - "cookie": "0.3.1", + "cookie": "0.4.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "~1.1.2", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", - "finalhandler": "1.1.1", + "finalhandler": "~1.1.2", "fresh": "0.5.2", "merge-descriptors": "1.0.1", "methods": "~1.1.2", "on-finished": "~2.3.0", - "parseurl": "~1.3.2", + "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.4", - "qs": "6.5.2", - "range-parser": "~1.2.0", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", "safe-buffer": "5.1.2", - "send": "0.16.2", - "serve-static": "1.13.2", - "setprototypeof": "1.1.0", - "statuses": "~1.4.0", - "type-is": "~1.6.16", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" }, @@ -3014,6 +3098,13 @@ "integrity": "sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==", "dev": true }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, "fill-range": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", @@ -3038,17 +3129,17 @@ } }, "finalhandler": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz", - "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", "dev": true, "requires": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "on-finished": "~2.3.0", - "parseurl": "~1.3.2", - "statuses": "~1.4.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", "unpipe": "~1.0.0" }, "dependencies": { @@ -3090,26 +3181,15 @@ } }, "findup-sync": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", - "integrity": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", "dev": true, "requires": { "detect-file": "^1.0.0", - "is-glob": "^3.1.0", + "is-glob": "^4.0.0", "micromatch": "^3.0.4", "resolve-dir": "^1.0.1" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } } }, "flush-write-stream": { @@ -3123,9 +3203,9 @@ }, "dependencies": { "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, "requires": { "core-util-is": "~1.0.0", @@ -3149,12 +3229,12 @@ } }, "follow-redirects": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.7.0.tgz", - "integrity": "sha512-m/pZQy4Gj287eNy94nivy5wchN3Kp+Q5WgUPNy5lJSZ3sgkVKSYV/ZChMAQVIgx1SqfZ2zBZtPA2YlXIWxxJOQ==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.10.0.tgz", + "integrity": "sha512-4eyLK6s6lH32nOvLLwlIOnr9zrL8Sm+OvW4pVTJNoXeGzYIkHVf+pADQi+OJ0E67hiuSLezPVPyBcIZO50TmmQ==", "dev": true, "requires": { - "debug": "^3.2.6" + "debug": "^3.0.0" }, "dependencies": { "debug": { @@ -3206,9 +3286,9 @@ }, "dependencies": { "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, "requires": { "core-util-is": "~1.0.0", @@ -3244,9 +3324,9 @@ }, "dependencies": { "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, "requires": { "core-util-is": "~1.0.0", @@ -3276,14 +3356,15 @@ "dev": true }, "fsevents": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.7.tgz", - "integrity": "sha512-Pxm6sI2MeBD7RdD12RYsqaP0nMiwx8eZBXCa6z2L+mRHm2DYrOYwihmhjpkdjUHwQhslWQjRpEgNq4XvBmaAuw==", + "version": "1.2.11", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.11.tgz", + "integrity": "sha512-+ux3lx6peh0BpvY0JebGyZoiR4D+oYzdPZMKJwkZ+sFkNJzpL7tXc/wehS49gUAxg3tmMHPHZkA8JU2rhhgDHw==", "dev": true, "optional": true, "requires": { - "nan": "^2.9.2", - "node-pre-gyp": "^0.10.0" + "bindings": "^1.5.0", + "nan": "^2.12.1", + "node-pre-gyp": "*" }, "dependencies": { "abbrev": { @@ -3331,7 +3412,7 @@ } }, "chownr": { - "version": "1.1.1", + "version": "1.1.3", "bundled": true, "dev": true, "optional": true @@ -3361,12 +3442,12 @@ "optional": true }, "debug": { - "version": "2.6.9", + "version": "3.2.6", "bundled": true, "dev": true, "optional": true, "requires": { - "ms": "2.0.0" + "ms": "^2.1.1" } }, "deep-extend": { @@ -3388,12 +3469,12 @@ "optional": true }, "fs-minipass": { - "version": "1.2.5", + "version": "1.2.7", "bundled": true, "dev": true, "optional": true, "requires": { - "minipass": "^2.2.1" + "minipass": "^2.6.0" } }, "fs.realpath": { @@ -3419,7 +3500,7 @@ } }, "glob": { - "version": "7.1.3", + "version": "7.1.6", "bundled": true, "dev": true, "optional": true, @@ -3448,7 +3529,7 @@ } }, "ignore-walk": { - "version": "3.0.1", + "version": "3.0.3", "bundled": true, "dev": true, "optional": true, @@ -3467,7 +3548,7 @@ } }, "inherits": { - "version": "2.0.3", + "version": "2.0.4", "bundled": true, "dev": true, "optional": true @@ -3509,7 +3590,7 @@ "optional": true }, "minipass": { - "version": "2.3.5", + "version": "2.9.0", "bundled": true, "dev": true, "optional": true, @@ -3519,12 +3600,12 @@ } }, "minizlib": { - "version": "1.2.1", + "version": "1.3.3", "bundled": true, "dev": true, "optional": true, "requires": { - "minipass": "^2.2.1" + "minipass": "^2.9.0" } }, "mkdirp": { @@ -3537,24 +3618,24 @@ } }, "ms": { - "version": "2.0.0", + "version": "2.1.2", "bundled": true, "dev": true, "optional": true }, "needle": { - "version": "2.2.4", + "version": "2.4.0", "bundled": true, "dev": true, "optional": true, "requires": { - "debug": "^2.1.2", + "debug": "^3.2.6", "iconv-lite": "^0.4.4", "sax": "^1.2.4" } }, "node-pre-gyp": { - "version": "0.10.3", + "version": "0.14.0", "bundled": true, "dev": true, "optional": true, @@ -3568,7 +3649,7 @@ "rc": "^1.2.7", "rimraf": "^2.6.1", "semver": "^5.3.0", - "tar": "^4" + "tar": "^4.4.2" } }, "nopt": { @@ -3582,13 +3663,22 @@ } }, "npm-bundled": { - "version": "1.0.5", + "version": "1.1.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-normalize-package-bin": { + "version": "1.0.1", "bundled": true, "dev": true, "optional": true }, "npm-packlist": { - "version": "1.2.0", + "version": "1.4.7", "bundled": true, "dev": true, "optional": true, @@ -3659,7 +3749,7 @@ "optional": true }, "process-nextick-args": { - "version": "2.0.0", + "version": "2.0.1", "bundled": true, "dev": true, "optional": true @@ -3700,7 +3790,7 @@ } }, "rimraf": { - "version": "2.6.3", + "version": "2.7.1", "bundled": true, "dev": true, "optional": true, @@ -3727,7 +3817,7 @@ "optional": true }, "semver": { - "version": "5.6.0", + "version": "5.7.1", "bundled": true, "dev": true, "optional": true @@ -3780,18 +3870,18 @@ "optional": true }, "tar": { - "version": "4.4.8", + "version": "4.4.13", "bundled": true, "dev": true, "optional": true, "requires": { "chownr": "^1.1.1", "fs-minipass": "^1.2.5", - "minipass": "^2.3.4", - "minizlib": "^1.1.1", + "minipass": "^2.8.6", + "minizlib": "^1.2.1", "mkdirp": "^0.5.0", "safe-buffer": "^5.1.2", - "yallist": "^3.0.2" + "yallist": "^3.0.3" } }, "util-deprecate": { @@ -3816,7 +3906,7 @@ "optional": true }, "yallist": { - "version": "3.0.3", + "version": "3.1.1", "bundled": true, "dev": true, "optional": true @@ -3829,10 +3919,16 @@ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", "dev": true }, + "gensync": { + "version": "1.0.0-beta.1", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz", + "integrity": "sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==", + "dev": true + }, "get-caller-file": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true }, "get-stream": { @@ -3886,14 +3982,25 @@ } }, "global-modules": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", - "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", "dev": true, "requires": { - "global-prefix": "^1.0.1", - "is-windows": "^1.0.1", - "resolve-dir": "^1.0.0" + "global-prefix": "^3.0.0" + }, + "dependencies": { + "global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dev": true, + "requires": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + } + } } }, "global-prefix": { @@ -3910,9 +4017,9 @@ } }, "globals": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.11.0.tgz", - "integrity": "sha512-WHq43gS+6ufNOEqlrDBxVEbb8ntfXrfAUU2ZOpCxrBdGKW3gyv8mCxAfIBD0DroPKGrJ2eSsXsLtY9MPntsyTw==", + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true }, "globby": { @@ -4066,9 +4173,9 @@ }, "dependencies": { "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, "requires": { "core-util-is": "~1.0.0", @@ -4174,30 +4281,31 @@ "dev": true }, "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", "dev": true, "requires": { "depd": "~1.1.2", "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" } }, "http-parser-js": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.0.tgz", - "integrity": "sha512-cZdEF7r4gfRIq7ezX9J0T+kQmJNOub71dWbgAXVHDct80TKP4MCETtZQ31xyv38UwgzkWPYF/Xc0ge55dW9Z9w==", + "version": "0.4.10", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.10.tgz", + "integrity": "sha1-ksnBN0w1CF912zWexWzCV8u5P6Q=", "dev": true }, "http-proxy": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.17.0.tgz", - "integrity": "sha512-Taqn+3nNvYRfJ3bGvKfBSRwy1v6eePlm3oc/aWVxZp57DQr5Eq3xhKJi7Z4hZpS8PC3H4qI+Yly5EmFacGuA/g==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.0.tgz", + "integrity": "sha512-84I2iJM/n1d4Hdgc6y2+qY5mDaz2PUVjlg9znE9byl+q0uC3DeByqBGReQu5tpLK0TAqTIXScRUV+dg7+bUPpQ==", "dev": true, "requires": { - "eventemitter3": "^3.0.0", + "eventemitter3": "^4.0.0", "follow-redirects": "^1.0.0", "requires-port": "^1.0.0" } @@ -4221,9 +4329,9 @@ "dev": true }, "iconv-lite": { - "version": "0.4.23", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", - "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, "requires": { "safer-buffer": ">= 2.1.2 < 3" @@ -4245,9 +4353,9 @@ } }, "ieee754": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz", - "integrity": "sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==", + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", + "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==", "dev": true }, "iferr": { @@ -4256,6 +4364,12 @@ "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", "dev": true }, + "ignore": { + "version": "3.3.10", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", + "dev": true + }, "import-local": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", @@ -4278,10 +4392,10 @@ "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=", "dev": true }, - "indexof": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", - "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=", + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", "dev": true }, "inflight": { @@ -4307,21 +4421,13 @@ "dev": true }, "internal-ip": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.2.0.tgz", - "integrity": "sha512-ZY8Rk+hlvFeuMmG5uH1MXhhdeMntmIaxaInvAmzMq/SHV8rv4Kh+6GiQNNDQd0wZFrcO+FiTBo8lui/osKOyJw==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", "dev": true, "requires": { - "default-gateway": "^4.0.1", + "default-gateway": "^4.2.0", "ipaddr.js": "^1.9.0" - }, - "dependencies": { - "ipaddr.js": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz", - "integrity": "sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==", - "dev": true - } } }, "interpret": { @@ -4358,9 +4464,15 @@ "dev": true }, "ipaddr.js": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.0.tgz", - "integrity": "sha1-6qM9bd16zo9/b+DJygRA5wZzix4=", + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true + }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", "dev": true }, "is-accessor-descriptor": { @@ -4383,6 +4495,12 @@ } } }, + "is-arguments": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.4.tgz", + "integrity": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==", + "dev": true + }, "is-binary-path": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", @@ -4468,9 +4586,9 @@ "dev": true }, "is-glob": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz", - "integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", "dev": true, "requires": { "is-extglob": "^2.1.1" @@ -4497,27 +4615,27 @@ } }, "is-path-cwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", - "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", "dev": true }, "is-path-in-cwd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", - "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", "dev": true, "requires": { - "is-path-inside": "^1.0.0" + "is-path-inside": "^2.1.0" } }, "is-path-inside": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", - "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", "dev": true, "requires": { - "path-is-inside": "^1.0.1" + "path-is-inside": "^1.0.2" } }, "is-plain-object": { @@ -4583,12 +4701,6 @@ "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", "dev": true }, - "js-levenshtein": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz", - "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==", - "dev": true - }, "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -4614,15 +4726,15 @@ "dev": true }, "json3": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz", - "integrity": "sha1-PAQ0dD35Pi9cQq7nsZvLSDV19OE=", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", + "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==", "dev": true }, "json5": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz", - "integrity": "sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.1.tgz", + "integrity": "sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ==", "dev": true, "requires": { "minimist": "^1.2.0" @@ -4635,9 +4747,9 @@ "dev": true }, "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true }, "lcid": { @@ -4649,6 +4761,21 @@ "invert-kv": "^2.0.0" } }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true + }, + "levenary": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/levenary/-/levenary-1.1.1.tgz", + "integrity": "sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==", + "dev": true, + "requires": { + "leven": "^3.1.0" + } + }, "loader-runner": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", @@ -4688,14 +4815,14 @@ } }, "lodash": { - "version": "4.17.11", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz", - "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==" + "version": "4.17.15", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", + "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" }, "loglevel": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.6.1.tgz", - "integrity": "sha1-4PyVEztu8nbNyIh82vJKpvFW+Po=", + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.6.7.tgz", + "integrity": "sha512-cY2eLFrQSAfVPhCgH1s7JI73tMbg9YC3v3+ZHVW67sBS7UxWzNEk/ZBbSfLykBWHp33dqqtOv82gjhKEi81T/A==", "dev": true }, "loose-envify": { @@ -4781,9 +4908,9 @@ "dev": true }, "mem": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/mem/-/mem-4.2.0.tgz", - "integrity": "sha512-5fJxa68urlY0Ir8ijatKa3eRz5lwXnRCTvo9+TbTGAuTFJOwpGcY0X05moBd0nW45965Njt4CDI2GFQoG8DvqA==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", + "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", "dev": true, "requires": { "map-age-cleaner": "^0.1.1", @@ -4802,9 +4929,9 @@ }, "dependencies": { "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, "requires": { "core-util-is": "~1.0.0", @@ -4888,30 +5015,30 @@ } }, "mime": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", - "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "dev": true }, "mime-db": { - "version": "1.38.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.38.0.tgz", - "integrity": "sha512-bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg==", + "version": "1.43.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.43.0.tgz", + "integrity": "sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==", "dev": true }, "mime-types": { - "version": "2.1.22", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.22.tgz", - "integrity": "sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog==", + "version": "2.1.26", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.26.tgz", + "integrity": "sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==", "dev": true, "requires": { - "mime-db": "~1.38.0" + "mime-db": "1.43.0" } }, "mimic-fn": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.0.0.tgz", - "integrity": "sha512-jbex9Yd/3lmICXwYT6gA/j2mNQGU48wCh/VzRd+/Y/PjYQtlg1gLMdZqvu9s/xH7qKvngxRObl56XZR609IMbA==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true }, "minimalistic-assert": { @@ -4960,9 +5087,9 @@ } }, "mixin-deep": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz", - "integrity": "sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", "dev": true, "requires": { "for-in": "^1.0.2", @@ -5012,9 +5139,9 @@ } }, "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, "multicast-dns": { @@ -5034,9 +5161,9 @@ "dev": true }, "nan": { - "version": "2.13.2", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.13.2.tgz", - "integrity": "sha512-TghvYc72wlMGMVMluVo9WRJc0mB8KxxF/gZ4YYFy7V2ZQX9l7rgbPg7vjS9mt6U5HXODVFVI2bOduCzwOMv/lw==", + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz", + "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==", "dev": true, "optional": true }, @@ -5060,15 +5187,15 @@ } }, "negotiator": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", - "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=", + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", "dev": true }, "neo-async": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.0.tgz", - "integrity": "sha512-MFh0d/Wa7vkKO3Y3LlacqAEeHK0mckVqzDieUKTT+KGxi+zIpeVsFxymkIiRpbpDziHc290Xr9A1O4Om7otoRA==", + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz", + "integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==", "dev": true }, "nice-try": { @@ -5087,15 +5214,15 @@ } }, "node-forge": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.7.5.tgz", - "integrity": "sha512-MmbQJ2MTESTjt3Gi/3yG1wGpIMhUfcIypUCGtTizFR9IiccFwxSpfp0vtIZlkFclEqERemxfnSdZEMR9VqqEFQ==", + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.9.0.tgz", + "integrity": "sha512-7ASaDa3pD+lJ3WvXFsxekJQelBKRpne+GOVbLbtHYdd7pFspyeuJHnWfLplGf3SwKGbfs/aYl5V/JCIaHVUKKQ==", "dev": true }, "node-libs-browser": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.0.tgz", - "integrity": "sha512-5MQunG/oyOaBdttrL40dA7bUfPORLRWMUJLQtMg7nluxUvk5XwnLdL9twQHFAjRx/y7mIMkLKT9++qPbbk6BZA==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", "dev": true, "requires": { "assert": "^1.1.1", @@ -5108,7 +5235,7 @@ "events": "^3.0.0", "https-browserify": "^1.0.0", "os-browserify": "^0.3.0", - "path-browserify": "0.0.0", + "path-browserify": "0.0.1", "process": "^0.11.10", "punycode": "^1.2.4", "querystring-es3": "^0.2.0", @@ -5120,7 +5247,7 @@ "tty-browserify": "0.0.0", "url": "^0.11.0", "util": "^0.11.0", - "vm-browserify": "0.0.4" + "vm-browserify": "^1.0.1" }, "dependencies": { "punycode": { @@ -5130,9 +5257,9 @@ "dev": true }, "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, "requires": { "core-util-is": "~1.0.0", @@ -5158,12 +5285,20 @@ } }, "node-releases": { - "version": "1.1.19", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.19.tgz", - "integrity": "sha512-SH/B4WwovHbulIALsQllAVwqZZD1kPmKCqrhGfR29dXjLAVZMHvBjD3S6nL9D/J9QkmZ1R92/0wCMDKXUUvyyA==", + "version": "1.1.50", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.50.tgz", + "integrity": "sha512-lgAmPv9eYZ0bGwUYAKlr8MG6K4CvWliWqnkcT2P8mMAgVrH3lqfBPorFlxiG1pHQnqmavJZ9vbMXUTNyMLbrgQ==", "dev": true, "requires": { - "semver": "^5.3.0" + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } } }, "normalize-path": { @@ -5233,6 +5368,18 @@ } } }, + "object-inspect": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.7.0.tgz", + "integrity": "sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==", + "dev": true + }, + "object-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.0.2.tgz", + "integrity": "sha512-Epah+btZd5wrrfjkJZq1AOB9O6OxUQto45hzFd7lXGrpHPGE0W1k+426yrZV+k6NJOzLNNW/nVsmZdIWsAqoOQ==", + "dev": true + }, "object-keys": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.0.tgz", @@ -5248,6 +5395,18 @@ "isobject": "^3.0.0" } }, + "object.assign": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", + "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", + "dev": true, + "requires": { + "define-properties": "^1.1.2", + "function-bind": "^1.1.1", + "has-symbols": "^1.0.0", + "object-keys": "^1.0.11" + } + }, "object.getownpropertydescriptors": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz", @@ -5345,9 +5504,9 @@ "dev": true }, "p-is-promise": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.0.0.tgz", - "integrity": "sha512-pzQPhYMCAgLAKPWD2jC3Se9fEfrD9npNos0y150EeqZll7akhEgGhTW/slB6lHku8AvYGiJ+YJ5hfHKePPgFWg==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", + "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==", "dev": true }, "p-limit": { @@ -5369,11 +5528,20 @@ } }, "p-map": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz", - "integrity": "sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", "dev": true }, + "p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dev": true, + "requires": { + "retry": "^0.12.0" + } + }, "p-try": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.1.0.tgz", @@ -5381,26 +5549,26 @@ "dev": true }, "pako": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.10.tgz", - "integrity": "sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw==", + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", "dev": true }, "parallel-transform": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz", - "integrity": "sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY=", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", "dev": true, "requires": { - "cyclist": "~0.2.2", + "cyclist": "^1.0.1", "inherits": "^2.0.3", "readable-stream": "^2.1.5" }, "dependencies": { "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, "requires": { "core-util-is": "~1.0.0", @@ -5433,9 +5601,9 @@ } }, "parse-asn1": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.4.tgz", - "integrity": "sha512-Qs5duJcuvNExRfFZ99HDD3z4mAi3r9Wl/FOjEOijlxwCZs7E7mW2vjTpgQ4J8LpTF8x5v+1Vn5UQFejmWT11aw==", + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.5.tgz", + "integrity": "sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==", "dev": true, "requires": { "asn1.js": "^4.0.0", @@ -5453,9 +5621,9 @@ "dev": true }, "parseurl": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", - "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "dev": true }, "pascalcase": { @@ -5464,17 +5632,38 @@ "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", "dev": true }, - "path-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz", - "integrity": "sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo=", - "dev": true - }, - "path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", - "dev": true + "path": { + "version": "0.12.7", + "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", + "integrity": "sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8=", + "dev": true, + "requires": { + "process": "^0.11.1", + "util": "^0.10.3" + }, + "dependencies": { + "util": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", + "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "dev": true, + "requires": { + "inherits": "2.0.3" + } + } + } + }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", + "dev": true + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "dev": true }, "path-exists": { "version": "3.0.0", @@ -5512,6 +5701,23 @@ "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", "dev": true }, + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, "pbkdf2": { "version": "3.0.17", "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz", @@ -5556,30 +5762,24 @@ } }, "portfinder": { - "version": "1.0.20", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.20.tgz", - "integrity": "sha512-Yxe4mTyDzTd59PZJY4ojZR8F+E5e97iq2ZOHPz3HDgSvYC5siNad2tLooQ5y5QHyQhc3xVqvyk/eNA3wuoa7Sw==", + "version": "1.0.25", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.25.tgz", + "integrity": "sha512-6ElJnHBbxVA1XSLgBp7G1FiCkQdlqGzuF7DswL5tcea+E8UpuvPU7beVAjjRwCioTS9ZluNbu+ZyRvgTsmqEBg==", "dev": true, "requires": { - "async": "^1.5.2", - "debug": "^2.2.0", - "mkdirp": "0.5.x" + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.1" }, "dependencies": { "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", "dev": true, "requires": { - "ms": "2.0.0" + "ms": "^2.1.1" } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true } } }, @@ -5675,9 +5875,9 @@ "dev": true }, "prettier": { - "version": "1.16.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.16.3.tgz", - "integrity": "sha512-kn/GU6SMRYPxUakNXhpP0EedT/KmaPzr0H5lIsDogrykbaxOpOfAFfk5XA7DZrJyMAv1wlMV3CPcZruGXVVUZw==", + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz", + "integrity": "sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==", "dev": true }, "pretty-error": { @@ -5715,13 +5915,13 @@ "dev": true }, "proxy-addr": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.4.tgz", - "integrity": "sha512-5erio2h9jp5CHGwcybmxmVqHmnCBZeewlfJ0pex+UW7Qny7OOZXTtH56TGNyBizkgiOwhJtMKrVzDTeKcySZwA==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", + "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", "dev": true, "requires": { "forwarded": "~0.1.2", - "ipaddr.js": "1.8.0" + "ipaddr.js": "1.9.1" } }, "prr": { @@ -5790,9 +5990,9 @@ "dev": true }, "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", "dev": true }, "querystring": { @@ -5833,21 +6033,29 @@ } }, "range-parser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", - "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "dev": true }, "raw-body": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz", - "integrity": "sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==", + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", "dev": true, "requires": { - "bytes": "3.0.0", - "http-errors": "1.6.3", - "iconv-lite": "0.4.23", + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "dev": true + } } }, "readable-stream": { @@ -5873,9 +6081,9 @@ }, "dependencies": { "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, "requires": { "core-util-is": "~1.0.0", @@ -5913,13 +6121,20 @@ "regenerate": "^1.4.0" } }, + "regenerator-runtime": { + "version": "0.13.4", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.4.tgz", + "integrity": "sha512-plpwicqEzfEyTQohIKktWigcLzmNStMGwbOUbykx51/29Z3JOGYldaaNGK7ngNXV+UcoqvIMmloZ48Sr74sd+g==", + "dev": true + }, "regenerator-transform": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.0.tgz", - "integrity": "sha512-rtOelq4Cawlbmq9xuMR5gdFmv7ku/sFoB7sRiywx7aq53bc52b4j6zvH7Te1Vt/X2YveDKnCGUbioieU7FEL3w==", + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.2.tgz", + "integrity": "sha512-V4+lGplCM/ikqi5/mkkpJ06e9Bujq1NFmNLvsCs56zg3ZbzrnUzAtizZ24TXxtRX/W2jcdScwQCnbL0CICTFkQ==", "dev": true, "requires": { - "private": "^0.1.6" + "@babel/runtime": "^7.8.4", + "private": "^0.1.8" } }, "regex-not": { @@ -5932,20 +6147,83 @@ "safe-regex": "^1.1.0" } }, - "regexp-tree": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.10.tgz", - "integrity": "sha512-K1qVSbcedffwuIslMwpe6vGlj+ZXRnGkvjAtFHfDZZZuEdA/h0dxljAPu9vhUo6Rrx2U2AwJ+nSQ6hK+lrP5MQ==", - "dev": true + "regexp.prototype.flags": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz", + "integrity": "sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.0-next.1" + }, + "dependencies": { + "es-abstract": { + "version": "1.17.4", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.4.tgz", + "integrity": "sha512-Ae3um/gb8F0mui/jPL+QiqmglkUsaQf7FwBEHYIFkztkneosu9imhqHpBzQ3h1vit8t5iQ74t6PEVvphBZiuiQ==", + "dev": true, + "requires": { + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.1.5", + "is-regex": "^1.0.5", + "object-inspect": "^1.7.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.0", + "string.prototype.trimleft": "^2.1.1", + "string.prototype.trimright": "^2.1.1" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "has-symbols": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", + "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==", + "dev": true + }, + "is-callable": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.5.tgz", + "integrity": "sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==", + "dev": true + }, + "is-regex": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.5.tgz", + "integrity": "sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + } + } }, "regexpu-core": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.5.4.tgz", - "integrity": "sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.6.0.tgz", + "integrity": "sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg==", "dev": true, "requires": { "regenerate": "^1.4.0", - "regenerate-unicode-properties": "^8.0.2", + "regenerate-unicode-properties": "^8.1.0", "regjsgen": "^0.5.0", "regjsparser": "^0.6.0", "unicode-match-property-ecmascript": "^1.0.4", @@ -5953,15 +6231,15 @@ } }, "regjsgen": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.0.tgz", - "integrity": "sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA==", + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.1.tgz", + "integrity": "sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==", "dev": true }, "regjsparser": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.0.tgz", - "integrity": "sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ==", + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.3.tgz", + "integrity": "sha512-8uZvYbnfAtEm9Ab8NTb3hdLwL4g/LQzEYP7Xs27T96abJCCE2d6r3cPZPQEsLKy0vRSGVNG+/zVGtLr86HQduA==", "dev": true, "requires": { "jsesc": "~0.5.0" @@ -6019,9 +6297,9 @@ "dev": true }, "require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", "dev": true }, "requires-port": { @@ -6031,9 +6309,9 @@ "dev": true }, "resolve": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.10.0.tgz", - "integrity": "sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg==", + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.15.1.tgz", + "integrity": "sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==", "dev": true, "requires": { "path-parse": "^1.0.6" @@ -6056,6 +6334,19 @@ "requires": { "expand-tilde": "^2.0.0", "global-modules": "^1.0.0" + }, + "dependencies": { + "global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "requires": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + } + } } }, "resolve-from": { @@ -6076,10 +6367,16 @@ "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", "dev": true }, + "retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", + "dev": true + }, "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", "dev": true, "requires": { "glob": "^7.1.3" @@ -6143,12 +6440,12 @@ "dev": true }, "selfsigned": { - "version": "1.10.4", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.4.tgz", - "integrity": "sha512-9AukTiDmHXGXWtWjembZ5NDmVvP2695EtpgbCsxCa68w3c88B+alqbmZ4O3hZ4VWGXeGWzEVdvqgAJD8DQPCDw==", + "version": "1.10.7", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.7.tgz", + "integrity": "sha512-8M3wBCzeWIJnQfl43IKwOmC4H/RAp50S8DF60znzjW5GVqTcSe2vWclt7hmYVPkKPlHWOu5EaWOMZ2Y6W8ZXTA==", "dev": true, "requires": { - "node-forge": "0.7.5" + "node-forge": "0.9.0" } }, "semver": { @@ -6158,9 +6455,9 @@ "dev": true }, "send": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", - "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", "dev": true, "requires": { "debug": "2.6.9", @@ -6170,12 +6467,12 @@ "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", - "http-errors": "~1.6.2", - "mime": "1.4.1", - "ms": "2.0.0", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", "on-finished": "~2.3.0", - "range-parser": "~1.2.0", - "statuses": "~1.4.0" + "range-parser": "~1.2.1", + "statuses": "~1.5.0" }, "dependencies": { "debug": { @@ -6185,20 +6482,28 @@ "dev": true, "requires": { "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } } }, "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", "dev": true } } }, "serialize-javascript": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.6.1.tgz", - "integrity": "sha512-A5MOagrPFga4YaKQSWHryl7AXvbQkEqpw4NNYMTNYUNV51bA8ABHgYFpqKx+YFFrw59xMV1qGH1R4AgoNIVgCw==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-2.1.2.tgz", + "integrity": "sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ==", "dev": true }, "serve-index": { @@ -6225,24 +6530,42 @@ "ms": "2.0.0" } }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true } } }, "serve-static": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", - "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", "dev": true, "requires": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", - "parseurl": "~1.3.2", - "send": "0.16.2" + "parseurl": "~1.3.3", + "send": "0.17.1" } }, "set-blocking": { @@ -6252,9 +6575,9 @@ "dev": true }, "set-value": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz", - "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", "dev": true, "requires": { "extend-shallow": "^2.0.1", @@ -6281,9 +6604,9 @@ "dev": true }, "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", "dev": true }, "sha.js": { @@ -6317,6 +6640,12 @@ "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", "dev": true }, + "slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", + "dev": true + }, "snapdragon": { "version": "0.8.2", "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", @@ -6450,9 +6779,9 @@ } }, "sockjs-client": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.3.0.tgz", - "integrity": "sha512-R9jxEzhnnrdxLCNln0xg5uGHqMnkhPSTzUZH2eXcR03S/On9Yvoq2wyUZILRUhZCNVu2PmwWVoyuiPz8th8zbg==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.4.0.tgz", + "integrity": "sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==", "dev": true, "requires": { "debug": "^3.2.5", @@ -6473,9 +6802,9 @@ } }, "faye-websocket": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.1.tgz", - "integrity": "sha1-8O/hjE9W5PQK/H4Gxxn9XuYYjzg=", + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", + "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", "dev": true, "requires": { "websocket-driver": ">=0.5.1" @@ -6496,12 +6825,12 @@ "dev": true }, "source-map-resolve": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", - "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", "dev": true, "requires": { - "atob": "^2.1.1", + "atob": "^2.1.2", "decode-uri-component": "^0.2.0", "resolve-url": "^0.2.1", "source-map-url": "^0.4.0", @@ -6509,9 +6838,9 @@ } }, "source-map-support": { - "version": "0.5.11", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.11.tgz", - "integrity": "sha512-//sajEx/fGL3iw6fltKMdPvy8kL3kJ2O3iuYlRoT3k9Kb4BjOoZ+BZzaNHeuaruSt+Kf3Zk9tnfAQg9/AJqUVQ==", + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.16.tgz", + "integrity": "sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ==", "dev": true, "requires": { "buffer-from": "^1.0.0", @@ -6533,9 +6862,9 @@ "dev": true }, "spdy": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.0.tgz", - "integrity": "sha512-ot0oEGT/PGUpzf/6uk4AWLqkq+irlqHXkrdbk51oWONh3bxQmBuljxPNl66zlRRcIJStWq0QkLUCPOPjgjvU0Q==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.1.tgz", + "integrity": "sha512-HeZS3PBdMA+sZSu0qwpCxl3DeALD5ASx8pAX0jZdKXSpPWbQ6SYGnlg3BBmYLx5LtiZrmkAZfErCm2oECBcioA==", "dev": true, "requires": { "debug": "^4.1.0", @@ -6599,9 +6928,9 @@ } }, "statuses": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", - "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", "dev": true }, "stream-browserify": { @@ -6615,9 +6944,9 @@ }, "dependencies": { "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, "requires": { "core-util-is": "~1.0.0", @@ -6664,9 +6993,9 @@ }, "dependencies": { "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, "requires": { "core-util-is": "~1.0.0", @@ -6690,38 +7019,59 @@ } }, "stream-shift": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz", - "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", "dev": true }, "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", "dev": true, "requires": { + "emoji-regex": "^7.0.1", "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" + "strip-ansi": "^5.1.0" }, "dependencies": { "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "dev": true }, "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "requires": { - "ansi-regex": "^3.0.0" + "ansi-regex": "^4.1.0" } } } }, + "string.prototype.trimleft": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz", + "integrity": "sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "function-bind": "^1.1.1" + } + }, + "string.prototype.trimright": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz", + "integrity": "sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "function-bind": "^1.1.1" + } + }, "string_decoder": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.2.0.tgz", @@ -6762,20 +7112,20 @@ "dev": true }, "terser": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-3.17.0.tgz", - "integrity": "sha512-/FQzzPJmCpjAH9Xvk2paiWrFq+5M6aVOf+2KRbwhByISDX/EujxsK+BAvrhb6H+2rtrLCHK9N01wO014vrIwVQ==", + "version": "4.6.6", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.6.6.tgz", + "integrity": "sha512-4lYPyeNmstjIIESr/ysHg2vUPRGf2tzF9z2yYwnowXVuVzLEamPN1Gfrz7f8I9uEPuHcbFlW4PLIAsJoxXyJ1g==", "dev": true, "requires": { - "commander": "^2.19.0", + "commander": "^2.20.0", "source-map": "~0.6.1", - "source-map-support": "~0.5.10" + "source-map-support": "~0.5.12" }, "dependencies": { "commander": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", - "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==", + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true }, "source-map": { @@ -6787,19 +7137,20 @@ } }, "terser-webpack-plugin": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.2.3.tgz", - "integrity": "sha512-GOK7q85oAb/5kE12fMuLdn2btOS9OBZn4VsecpHDywoUC/jLhSAKOiYo0ezx7ss2EXPMzyEWFoE0s1WLE+4+oA==", + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.3.tgz", + "integrity": "sha512-QMxecFz/gHQwteWwSo5nTc6UaICqN1bMedC5sMtUc7y3Ha3Q8y6ZO0iCR8pq4RJC8Hjf0FEPEHZqcMB/+DFCrA==", "dev": true, "requires": { - "cacache": "^11.0.2", - "find-cache-dir": "^2.0.0", + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", "schema-utils": "^1.0.0", - "serialize-javascript": "^1.4.0", + "serialize-javascript": "^2.1.2", "source-map": "^0.6.1", - "terser": "^3.16.1", - "webpack-sources": "^1.1.0", - "worker-farm": "^1.5.2" + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" }, "dependencies": { "source-map": { @@ -6821,9 +7172,9 @@ }, "dependencies": { "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, "requires": { "core-util-is": "~1.0.0", @@ -6847,15 +7198,15 @@ } }, "thunky": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.0.3.tgz", - "integrity": "sha512-YwT8pjmNcAXBZqrubu22P4FYsh2D4dxRmnWBOL8Jk8bUcRUtc5326kx32tuTmFDAZtLOGEVNl8POAR8j896Iow==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", "dev": true }, "timers-browserify": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz", - "integrity": "sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg==", + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.11.tgz", + "integrity": "sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ==", "dev": true, "requires": { "setimmediate": "^1.0.4" @@ -6915,22 +7266,22 @@ "repeat-string": "^1.6.1" } }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", + "dev": true + }, "toposort": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/toposort/-/toposort-1.0.7.tgz", "integrity": "sha1-LmhELZ9k7HILjMieZEOsbKqVACk=", "dev": true }, - "trim-right": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", - "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", - "dev": true - }, "tslib": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz", - "integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.11.1.tgz", + "integrity": "sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==", "dev": true }, "tty-browserify": { @@ -6940,13 +7291,13 @@ "dev": true }, "type-is": { - "version": "1.6.16", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz", - "integrity": "sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==", + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dev": true, "requires": { "media-typer": "0.3.0", - "mime-types": "~2.1.18" + "mime-types": "~2.1.24" } }, "typedarray": { @@ -7008,38 +7359,15 @@ "dev": true }, "union-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz", - "integrity": "sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ=", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", "dev": true, "requires": { "arr-union": "^3.1.0", "get-value": "^2.0.6", "is-extendable": "^0.1.1", - "set-value": "^0.4.3" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "set-value": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz", - "integrity": "sha1-fbCPnT0i3H945Trzw79GZuzfzPE=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.1", - "to-object-path": "^0.3.0" - } - } + "set-value": "^2.0.1" } }, "uniq": { @@ -7058,9 +7386,9 @@ } }, "unique-slug": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.1.tgz", - "integrity": "sha512-n9cU6+gITaVu7VGj1Z8feKMmfAjEAQGhwD9fE3zvpRRa0wEIx8ODYkVGfSc94M2OX00tUFV8wH3zYbm1I8mxFg==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", "dev": true, "requires": { "imurmurhash": "^0.1.4" @@ -7113,9 +7441,9 @@ } }, "upath": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.2.tgz", - "integrity": "sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", "dev": true }, "upper-case": { @@ -7158,12 +7486,12 @@ } }, "url-parse": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.4.tgz", - "integrity": "sha512-/92DTTorg4JjktLNLe6GPS2/RvAd/RGr6LuktmWSMLEOa6rjnlrFXNgSbSmkNvCoL2T028A0a1JaJLzRMlFoHg==", + "version": "1.4.7", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz", + "integrity": "sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg==", "dev": true, "requires": { - "querystringify": "^2.0.0", + "querystringify": "^2.1.1", "requires-port": "^1.0.0" } }, @@ -7217,9 +7545,9 @@ "dev": true }, "v8-compile-cache": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.2.tgz", - "integrity": "sha512-1wFuMUIM16MDJRCrpbpuEPTUGmM5QMUg0cr3KFwra2XgOgFcPGDQHDh3CszSCD2Zewc/dh/pamNEW8CbfDebUw==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz", + "integrity": "sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w==", "dev": true }, "vary": { @@ -7229,33 +7557,30 @@ "dev": true }, "vm-browserify": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz", - "integrity": "sha1-XX6kW7755Kb/ZflUOOCofDV9WnM=", - "dev": true, - "requires": { - "indexof": "0.0.1" - } + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", + "dev": true }, "vue": { - "version": "2.6.10", - "resolved": "https://registry.npmjs.org/vue/-/vue-2.6.10.tgz", - "integrity": "sha512-ImThpeNU9HbdZL3utgMCq0oiMzAkt1mcgy3/E6zWC/G6AaQoeuFdsl9nDhTDU3X1R6FK7nsIUuRACVcjI+A2GQ==", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/vue/-/vue-2.6.11.tgz", + "integrity": "sha512-VfPwgcGABbGAue9+sfrD4PuwFar7gPb1yl1UK1MwXoQPAw0BKSqWfoYCT/ThFrdEVWoI51dBuyCoiNU9bZDZxQ==", "dev": true }, "vue-hot-reload-api": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.3.tgz", - "integrity": "sha512-KmvZVtmM26BQOMK1rwUZsrqxEGeKiYSZGA7SNWE6uExx8UX/cj9hq2MRV/wWC3Cq6AoeDGk57rL9YMFRel/q+g==", + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz", + "integrity": "sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==", "dev": true }, "vue-loader": { - "version": "15.7.0", - "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.7.0.tgz", - "integrity": "sha512-x+NZ4RIthQOxcFclEcs8sXGEWqnZHodL2J9Vq+hUz+TDZzBaDIh1j3d9M2IUlTjtrHTZy4uMuRdTi8BGws7jLA==", + "version": "15.9.0", + "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.9.0.tgz", + "integrity": "sha512-FeDHvTSpwyLeF7LIV1PYkvqUQgTJ8UmOxhSlCyRSxaXCKk+M6NF4tDQsLsPPNeDPyR7TfRQ8MLg6v+8PsDV9xQ==", "dev": true, "requires": { - "@vue/component-compiler-utils": "^2.5.1", + "@vue/component-compiler-utils": "^3.1.0", "hash-sum": "^1.0.2", "loader-utils": "^1.1.0", "vue-hot-reload-api": "^2.3.0", @@ -7263,9 +7588,9 @@ } }, "vue-router": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.0.6.tgz", - "integrity": "sha512-Ox0ciFLswtSGRTHYhGvx2L44sVbTPNS+uD2kRISuo8B39Y79rOo0Kw0hzupTmiVtftQYCZl87mwldhh2L9Aquw==" + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.1.6.tgz", + "integrity": "sha512-GYhn2ynaZlysZMkFE5oCHRUTqE8BWs/a9YbKpNLi0i7xD6KG1EzDqpHQmv1F5gXjr8kL5iIVS8EOtRaVUEXTqA==" }, "vue-style-loader": { "version": "4.1.2", @@ -7278,9 +7603,9 @@ } }, "vue-template-compiler": { - "version": "2.6.10", - "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.6.10.tgz", - "integrity": "sha512-jVZkw4/I/HT5ZMvRnhv78okGusqe0+qH2A0Em0Cp8aq78+NK9TII263CDVz2QXZsIT+yyV/gZc/j/vlwa+Epyg==", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.6.11.tgz", + "integrity": "sha512-KIq15bvQDrcCjpGjrAhx4mUlyyHfdmTaoNfeoATHLAiWB+MU3cx4lOzMwrnUh9cCxy0Lt1T11hAFY6TQgroUAA==", "dev": true, "requires": { "de-indent": "^1.0.2", @@ -7314,127 +7639,236 @@ } }, "webpack": { - "version": "4.29.6", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.29.6.tgz", - "integrity": "sha512-MwBwpiE1BQpMDkbnUUaW6K8RFZjljJHArC6tWQJoFm0oQtfoSebtg4Y7/QHnJ/SddtjYLHaKGX64CFjG5rehJw==", + "version": "4.42.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.42.0.tgz", + "integrity": "sha512-EzJRHvwQyBiYrYqhyjW9AqM90dE4+s1/XtCfn7uWg6cS72zH+2VPFAlsnW0+W0cDi0XRjNKUMoJtpSi50+Ph6w==", "dev": true, "requires": { "@webassemblyjs/ast": "1.8.5", "@webassemblyjs/helper-module-context": "1.8.5", "@webassemblyjs/wasm-edit": "1.8.5", "@webassemblyjs/wasm-parser": "1.8.5", - "acorn": "^6.0.5", - "acorn-dynamic-import": "^4.0.0", - "ajv": "^6.1.0", - "ajv-keywords": "^3.1.0", - "chrome-trace-event": "^1.0.0", + "acorn": "^6.2.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", "enhanced-resolve": "^4.1.0", - "eslint-scope": "^4.0.0", + "eslint-scope": "^4.0.3", "json-parse-better-errors": "^1.0.2", - "loader-runner": "^2.3.0", - "loader-utils": "^1.1.0", - "memory-fs": "~0.4.1", - "micromatch": "^3.1.8", - "mkdirp": "~0.5.0", - "neo-async": "^2.5.0", - "node-libs-browser": "^2.0.0", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.1", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", "schema-utils": "^1.0.0", - "tapable": "^1.1.0", - "terser-webpack-plugin": "^1.1.0", - "watchpack": "^1.5.0", - "webpack-sources": "^1.3.0" + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.6.0", + "webpack-sources": "^1.4.1" + }, + "dependencies": { + "ajv": { + "version": "6.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.0.tgz", + "integrity": "sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz", + "integrity": "sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==", + "dev": true + }, + "fast-deep-equal": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", + "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==", + "dev": true + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "dev": true + } } }, "webpack-cli": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.0.tgz", - "integrity": "sha512-t1M7G4z5FhHKJ92WRKwZ1rtvi7rHc0NZoZRbSkol0YKl4HvcC8+DsmGDmK7MmZxHSAetHagiOsjOB6MmzC2TUw==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "cross-spawn": "^6.0.5", - "enhanced-resolve": "^4.1.0", - "findup-sync": "^2.0.0", - "global-modules": "^1.0.0", - "import-local": "^2.0.0", - "interpret": "^1.1.0", - "loader-utils": "^1.1.0", - "supports-color": "^5.5.0", - "v8-compile-cache": "^2.0.2", - "yargs": "^12.0.5" + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.11.tgz", + "integrity": "sha512-dXlfuml7xvAFwYUPsrtQAA9e4DOe58gnzSxhgrO/ZM/gyXTBowrsYeubyN4mqGhYdpXMFNyQ6emjJS9M7OBd4g==", + "dev": true, + "requires": { + "chalk": "2.4.2", + "cross-spawn": "6.0.5", + "enhanced-resolve": "4.1.0", + "findup-sync": "3.0.0", + "global-modules": "2.0.0", + "import-local": "2.0.0", + "interpret": "1.2.0", + "loader-utils": "1.2.3", + "supports-color": "6.1.0", + "v8-compile-cache": "2.0.3", + "yargs": "13.2.4" + }, + "dependencies": { + "enhanced-resolve": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz", + "integrity": "sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.4.0", + "tapable": "^1.0.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, "webpack-dev-middleware": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.6.1.tgz", - "integrity": "sha512-XQmemun8QJexMEvNFbD2BIg4eSKrmSIMrTfnl2nql2Sc6OGAYFyb8rwuYrCjl/IiEYYuyTEiimMscu7EXji/Dw==", + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz", + "integrity": "sha512-1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw==", "dev": true, "requires": { "memory-fs": "^0.4.1", - "mime": "^2.3.1", - "range-parser": "^1.0.3", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", "webpack-log": "^2.0.0" }, "dependencies": { "mime": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.0.tgz", - "integrity": "sha512-ikBcWwyqXQSHKtciCcctu9YfPbFYZ4+gbHEmE0Q8jzcTYQg5dHCr3g2wwAZjPoJfQVXZq6KXAjpXOTf5/cjT7w==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz", + "integrity": "sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==", "dev": true } } }, "webpack-dev-server": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.2.1.tgz", - "integrity": "sha512-sjuE4mnmx6JOh9kvSbPYw3u/6uxCLHNWfhWaIPwcXWsvWOPN+nc5baq4i9jui3oOBRXGonK9+OI0jVkaz6/rCw==", + "version": "3.10.3", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.10.3.tgz", + "integrity": "sha512-e4nWev8YzEVNdOMcNzNeCN947sWJNd43E5XvsJzbAL08kGc2frm1tQ32hTJslRS+H65LCb/AaUCYU7fjHCpDeQ==", "dev": true, "requires": { "ansi-html": "0.0.7", "bonjour": "^3.5.0", - "chokidar": "^2.0.0", - "compression": "^1.5.2", - "connect-history-api-fallback": "^1.3.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", "debug": "^4.1.1", - "del": "^3.0.0", - "express": "^4.16.2", - "html-entities": "^1.2.0", - "http-proxy-middleware": "^0.19.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.2.1", + "http-proxy-middleware": "0.19.1", "import-local": "^2.0.0", - "internal-ip": "^4.2.0", + "internal-ip": "^4.3.0", "ip": "^1.1.5", - "killable": "^1.0.0", - "loglevel": "^1.4.1", - "opn": "^5.1.0", - "portfinder": "^1.0.9", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.6", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.25", "schema-utils": "^1.0.0", - "selfsigned": "^1.9.1", - "semver": "^5.6.0", - "serve-index": "^1.7.2", + "selfsigned": "^1.10.7", + "semver": "^6.3.0", + "serve-index": "^1.9.1", "sockjs": "0.3.19", - "sockjs-client": "1.3.0", - "spdy": "^4.0.0", - "strip-ansi": "^3.0.0", + "sockjs-client": "1.4.0", + "spdy": "^4.0.1", + "strip-ansi": "^3.0.1", "supports-color": "^6.1.0", "url": "^0.11.0", - "webpack-dev-middleware": "^3.5.1", + "webpack-dev-middleware": "^3.7.2", "webpack-log": "^2.0.0", - "yargs": "12.0.2" + "ws": "^6.2.1", + "yargs": "12.0.5" }, "dependencies": { - "camelcase": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "cliui": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", + "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", + "dev": true, + "requires": { + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0", + "wrap-ansi": "^2.0.0" + }, + "dependencies": { + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "get-caller-file": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", "dev": true }, - "decamelize": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-2.0.0.tgz", - "integrity": "sha512-Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg==", + "require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", + "dev": true + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", "dev": true, "requires": { - "xregexp": "4.0.0" + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } } }, "supports-color": { @@ -7446,14 +7880,46 @@ "has-flag": "^3.0.0" } }, + "wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "dev": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + }, + "dependencies": { + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + } + } + }, "yargs": { - "version": "12.0.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.2.tgz", - "integrity": "sha512-e7SkEx6N6SIZ5c5H22RTZae61qtn3PYUE8JYbBFlK9sYmh3DMQ6E5ygtaG/2BW0JZi4WGgTR2IV5ChqlqrDGVQ==", + "version": "12.0.5", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", + "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", "dev": true, "requires": { "cliui": "^4.0.0", - "decamelize": "^2.0.0", + "decamelize": "^1.2.0", "find-up": "^3.0.0", "get-caller-file": "^1.0.1", "os-locale": "^3.0.0", @@ -7463,16 +7929,17 @@ "string-width": "^2.0.0", "which-module": "^2.0.0", "y18n": "^3.2.1 || ^4.0.0", - "yargs-parser": "^10.1.0" + "yargs-parser": "^11.1.1" } }, "yargs-parser": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz", - "integrity": "sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==", + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", + "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", "dev": true, "requires": { - "camelcase": "^4.1.0" + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" } } } @@ -7488,17 +7955,17 @@ } }, "webpack-merge": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.1.tgz", - "integrity": "sha512-4p8WQyS98bUJcCvFMbdGZyZmsKuWjWVnVHnAS3FFg0HDaRVrPbkivx2RYCre8UiemD67RsiFFLfn4JhLAin8Vw==", + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.2.tgz", + "integrity": "sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==", "requires": { - "lodash": "^4.17.5" + "lodash": "^4.17.15" } }, "webpack-sources": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.3.0.tgz", - "integrity": "sha512-OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA==", + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", "dev": true, "requires": { "source-list-map": "^2.0.0", @@ -7514,12 +7981,13 @@ } }, "websocket-driver": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.0.tgz", - "integrity": "sha1-DK+dLXVdk67gSdS90NP+LMoqJOs=", + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.3.tgz", + "integrity": "sha512-bpxWlvbbB459Mlipc5GBzzZwhoZgGEZLuqPaR0INBGnPAY1vdBX6hPnoFXiw+3yWxDuHyQjO2oXTMyS8A5haFg==", "dev": true, "requires": { - "http-parser-js": ">=0.4.0", + "http-parser-js": ">=0.4.0 <0.4.11", + "safe-buffer": ">=5.1.0", "websocket-extensions": ">=0.1.1" } }, @@ -7545,42 +8013,38 @@ "dev": true }, "worker-farm": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.6.0.tgz", - "integrity": "sha512-6w+3tHbM87WnSWnENBUvA2pxJPLhQUg5LKwUQHq3r+XPhIM+Gh2R5ycbwPCyuGbNg+lPgdcnQUhuC02kJCvffQ==", + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", "dev": true, "requires": { "errno": "~0.1.7" } }, "wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", "dev": true, "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1" + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" }, "dependencies": { - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "dev": true, - "requires": { - "number-is-nan": "^1.0.0" - } + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" + "ansi-regex": "^4.1.0" } } } @@ -7591,11 +8055,23 @@ "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", "dev": true }, - "xregexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-4.0.0.tgz", - "integrity": "sha512-PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg==", - "dev": true + "write": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", + "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", + "dev": true, + "requires": { + "mkdirp": "^0.5.1" + } + }, + "ws": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", + "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", + "dev": true, + "requires": { + "async-limiter": "~1.0.0" + } }, "xtend": { "version": "4.0.1", @@ -7616,29 +8092,28 @@ "dev": true }, "yargs": { - "version": "12.0.5", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", - "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", + "version": "13.2.4", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.2.4.tgz", + "integrity": "sha512-HG/DWAJa1PAnHT9JAhNa8AbAv3FPaiLzioSjCcmuXXhP8MlpHO5vwls4g4j6n30Z74GVQj8Xa62dWVx1QCGklg==", "dev": true, "requires": { - "cliui": "^4.0.0", - "decamelize": "^1.2.0", + "cliui": "^5.0.0", "find-up": "^3.0.0", - "get-caller-file": "^1.0.1", - "os-locale": "^3.0.0", + "get-caller-file": "^2.0.1", + "os-locale": "^3.1.0", "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", + "require-main-filename": "^2.0.0", "set-blocking": "^2.0.0", - "string-width": "^2.0.0", + "string-width": "^3.0.0", "which-module": "^2.0.0", - "y18n": "^3.2.1 || ^4.0.0", - "yargs-parser": "^11.1.1" + "y18n": "^4.0.0", + "yargs-parser": "^13.1.0" } }, "yargs-parser": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", - "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.1.tgz", + "integrity": "sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ==", "dev": true, "requires": { "camelcase": "^5.0.0", diff --git a/package.json b/app/package.json similarity index 54% rename from package.json rename to app/package.json index 3d8fc42..40b68d2 100644 --- a/package.json +++ b/app/package.json @@ -6,29 +6,33 @@ "scripts": { "clean-stage": "rimraf dist/stag", "clean-prod": "rimraf dist/prod", + "clean-cloudgov": "rimraf dist/cloudgov", "stage": "npm run clean-stage && webpack --mode production --config webpack/stag.config.js", "prod": "npm run clean-prod && webpack --mode production --config webpack/prod.config.js", - "dev": "webpack-dev-server --mode development --config webpack/dev.config.js" + "dev": "webpack-dev-server --mode development --config webpack/dev.config.js", + "cloudgov": "npm run clean-cloudgov && webpack --mode production --config webpack/cloudgov.config.js" }, "author": "Joe Kleinschmidt", "devDependencies": { - "@babel/core": "^7.4.0", - "@babel/preset-env": "^7.4.5", - "babel-loader": "^8.0.5", + "@babel/core": "^7.8.7", + "@babel/preset-env": "^7.8.7", + "babel-loader": "^8.0.6", + "copy-webpack-plugin": "^5.1.1", + "create-file-webpack": "^1.0.2", "css-loader": "^2.1.1", "html-webpack-plugin": "^3.2.0", - "rimraf": "^2.6.3", - "vue": "^2.6.10", - "vue-loader": "^15.7.0", + "rimraf": "^2.7.1", + "vue": "^2.6.11", + "vue-loader": "^15.9.0", "vue-style-loader": "^4.1.2", - "vue-template-compiler": "^2.6.10", - "webpack": "^4.29.6", - "webpack-cli": "^3.3.0", - "webpack-dev-server": "^3.2.1" + "vue-template-compiler": "^2.6.11", + "webpack": "^4.42.0", + "webpack-cli": "^3.3.11", + "webpack-dev-server": "^3.10.3" }, "dependencies": { - "vue-router": "^3.0.6", - "webpack-merge": "^4.2.1" + "vue-router": "^3.1.6", + "webpack-merge": "^4.2.2" }, "browserslist": [ "> 5%", diff --git a/src/App.vue b/app/src/App.vue similarity index 100% rename from src/App.vue rename to app/src/App.vue diff --git a/src/components/AppDescription.vue b/app/src/components/AppDescription.vue similarity index 100% rename from src/components/AppDescription.vue rename to app/src/components/AppDescription.vue diff --git a/src/components/CalculatorResults.vue b/app/src/components/CalculatorResults.vue similarity index 98% rename from src/components/CalculatorResults.vue rename to app/src/components/CalculatorResults.vue index 3f054cd..03957f8 100644 --- a/src/components/CalculatorResults.vue +++ b/app/src/components/CalculatorResults.vue @@ -9,7 +9,7 @@

To find out more about what a reduction in your electricity use means in everyday terms, like miles driven, visit EPA's Greenhouse Gas Equivalencies Calculator. For basic information about GHG emissions, visit EPA's Greenhouse Gas Emissions site.

-

This is an estimate of the pounds of air pollutants caused by the electricity you use in your home or business during one year. Your annual emissions are estimated from the average home consumption of 1,011 kWh/month and the eGRID subregion () emission rates and include a grid region specific adjustment for line losses of percent. Estimate annual emissions for commercial customers here.

+

This is an estimate of the pounds of air pollutants caused by the electricity you use in your home or business during one year. Your annual emissions are estimated from the average home consumption of 1,011 kWh/month and the eGRID subregion () emission rates and include a grid region specific adjustment for line losses of percent. Estimate annual emissions for commercial customers here.

  diff --git a/src/components/EmissionRateChart.vue b/app/src/components/EmissionRateChart.vue similarity index 98% rename from src/components/EmissionRateChart.vue rename to app/src/components/EmissionRateChart.vue index 81420f3..39b8822 100644 --- a/src/components/EmissionRateChart.vue +++ b/app/src/components/EmissionRateChart.vue @@ -2,7 +2,7 @@

Emission Rates

-

This chart compares the average emission rates in pounds per MWh in all eGRID subregions to the national average emission rates for carbon dioxide (CO2), sulfur dioxide (SO2), and nitrogen oxide (NOX).

+

This chart compares the average emission rates in pounds per MWh in all eGRID subregions to the national average emission rates for carbon dioxide (CO2), sulfur dioxide (SO2), and nitrogen oxide (NOX).

Select:

diff --git a/src/components/EmissionRateMap.vue b/app/src/components/EmissionRateMap.vue similarity index 97% rename from src/components/EmissionRateMap.vue rename to app/src/components/EmissionRateMap.vue index 9492d8d..70b163a 100644 --- a/src/components/EmissionRateMap.vue +++ b/app/src/components/EmissionRateMap.vue @@ -1,6 +1,6 @@ diff --git a/src/components/EmissionsCalculator.vue b/app/src/components/EmissionsCalculator.vue similarity index 100% rename from src/components/EmissionsCalculator.vue rename to app/src/components/EmissionsCalculator.vue diff --git a/src/components/MainCharts.vue b/app/src/components/MainCharts.vue similarity index 99% rename from src/components/MainCharts.vue rename to app/src/components/MainCharts.vue index 9b2ec10..9eaae07 100644 --- a/src/components/MainCharts.vue +++ b/app/src/components/MainCharts.vue @@ -2,7 +2,7 @@

Fuel Mix

-

This chart compares fuel mix (%) of sources used to generate electricity in all eGRID subregions. Select a fuel type to sort subregions by fuel.

+

This chart compares fuel mix (%) of sources used to generate electricity in all eGRID subregions. Select a fuel type to sort subregions by fuel.

diff --git a/src/components/MainPrintReport.vue b/app/src/components/MainPrintReport.vue similarity index 100% rename from src/components/MainPrintReport.vue rename to app/src/components/MainPrintReport.vue diff --git a/src/components/PrintReport.vue b/app/src/components/PrintReport.vue similarity index 100% rename from src/components/PrintReport.vue rename to app/src/components/PrintReport.vue diff --git a/src/components/RenewablesMap.vue b/app/src/components/RenewablesMap.vue similarity index 98% rename from src/components/RenewablesMap.vue rename to app/src/components/RenewablesMap.vue index 42ef3f0..d797348 100644 --- a/src/components/RenewablesMap.vue +++ b/app/src/components/RenewablesMap.vue @@ -1,6 +1,6 @@ diff --git a/src/components/SideBar.vue b/app/src/components/SideBar.vue similarity index 87% rename from src/components/SideBar.vue rename to app/src/components/SideBar.vue index fac7810..75fc27c 100644 --- a/src/components/SideBar.vue +++ b/app/src/components/SideBar.vue @@ -20,18 +20,18 @@

- Data source: 2016 data from the Emissions & Generation Resource Integrated Database (eGRID) released February 15, 2018 (2018 data release planned for spring 2020) + >Emissions & Generation Resource Integrated Database (eGRID) released January 28, 2020

Excel version: Power Profiler Emissions Tool 2016 (XLSX) + >Power Profiler Emissions Tool 2018 (XLSX) (3.56M)

@@ -56,7 +56,7 @@

eGRID Summary Tables (XLSX) (1 pg, 293 K) diff --git a/src/components/SubregionCharts.vue b/app/src/components/SubregionCharts.vue similarity index 83% rename from src/components/SubregionCharts.vue rename to app/src/components/SubregionCharts.vue index bbb0d66..0257828 100644 --- a/src/components/SubregionCharts.vue +++ b/app/src/components/SubregionCharts.vue @@ -32,13 +32,13 @@

Fuel Mix

-

This chart compares fuel mix (%) of sources used to generate electricity in the selected eGRID subregion to the national fuel mix (%).

+

This chart compares fuel mix (%) of sources used to generate electricity in the selected eGRID subregion to the national fuel mix (%).

Emission Rates

-

This chart compares the average emission rates (lbs/MWh) in the selected eGRID subregion to the national average emission rates (lbs/MWh) for carbon dioxide (CO2), sulfur dioxide (SO2), and nitrogen oxide (NOX).

+

This chart compares the average emission rates (lbs/MWh) in the selected eGRID subregion to the national average emission rates (lbs/MWh) for carbon dioxide (CO2), sulfur dioxide (SO2), and nitrogen oxide (NOX).

diff --git a/src/components/SubregionEmissionRateChart.vue b/app/src/components/SubregionEmissionRateChart.vue similarity index 100% rename from src/components/SubregionEmissionRateChart.vue rename to app/src/components/SubregionEmissionRateChart.vue diff --git a/src/components/SubregionFuelMixChart.vue b/app/src/components/SubregionFuelMixChart.vue similarity index 100% rename from src/components/SubregionFuelMixChart.vue rename to app/src/components/SubregionFuelMixChart.vue diff --git a/src/components/SubregionMap.vue b/app/src/components/SubregionMap.vue similarity index 100% rename from src/components/SubregionMap.vue rename to app/src/components/SubregionMap.vue diff --git a/src/components/SubregionSelection.vue b/app/src/components/SubregionSelection.vue similarity index 100% rename from src/components/SubregionSelection.vue rename to app/src/components/SubregionSelection.vue diff --git a/src/components/modals/MegawattModal.vue b/app/src/components/modals/MegawattModal.vue similarity index 100% rename from src/components/modals/MegawattModal.vue rename to app/src/components/modals/MegawattModal.vue diff --git a/src/components/modals/MoreInfoModal.vue b/app/src/components/modals/MoreInfoModal.vue similarity index 100% rename from src/components/modals/MoreInfoModal.vue rename to app/src/components/modals/MoreInfoModal.vue diff --git a/src/components/modals/ResourcesModal.vue b/app/src/components/modals/ResourcesModal.vue similarity index 100% rename from src/components/modals/ResourcesModal.vue rename to app/src/components/modals/ResourcesModal.vue diff --git a/src/components/modals/SubregionsModal.vue b/app/src/components/modals/SubregionsModal.vue similarity index 100% rename from src/components/modals/SubregionsModal.vue rename to app/src/components/modals/SubregionsModal.vue diff --git a/src/config/env.js b/app/src/config/env.js similarity index 100% rename from src/config/env.js rename to app/src/config/env.js diff --git a/src/helpers/ChartHelpers.js b/app/src/helpers/ChartHelpers.js similarity index 100% rename from src/helpers/ChartHelpers.js rename to app/src/helpers/ChartHelpers.js diff --git a/src/helpers/MapHelpers.js b/app/src/helpers/MapHelpers.js similarity index 100% rename from src/helpers/MapHelpers.js rename to app/src/helpers/MapHelpers.js diff --git a/src/helpers/Tooltip.js b/app/src/helpers/Tooltip.js similarity index 100% rename from src/helpers/Tooltip.js rename to app/src/helpers/Tooltip.js diff --git a/src/index.html b/app/src/index.html similarity index 100% rename from src/index.html rename to app/src/index.html diff --git a/src/main.js b/app/src/main.js similarity index 100% rename from src/main.js rename to app/src/main.js diff --git a/src/router/router.js b/app/src/router/router.js similarity index 100% rename from src/router/router.js rename to app/src/router/router.js diff --git a/src/stores/allSubregions.js b/app/src/stores/allSubregions.js similarity index 100% rename from src/stores/allSubregions.js rename to app/src/stores/allSubregions.js diff --git a/src/stores/nationalFeature.js b/app/src/stores/nationalFeature.js similarity index 100% rename from src/stores/nationalFeature.js rename to app/src/stores/nationalFeature.js diff --git a/src/stores/selectedSubregion.js b/app/src/stores/selectedSubregion.js similarity index 100% rename from src/stores/selectedSubregion.js rename to app/src/stores/selectedSubregion.js diff --git a/src/stores/userSelection.js b/app/src/stores/userSelection.js similarity index 100% rename from src/stores/userSelection.js rename to app/src/stores/userSelection.js diff --git a/app/webpack/cloudgov.config.js b/app/webpack/cloudgov.config.js new file mode 100644 index 0000000..ce19c7b --- /dev/null +++ b/app/webpack/cloudgov.config.js @@ -0,0 +1,56 @@ +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const VueLoaderPlugin = require('vue-loader/lib/plugin'); +const webpack = require('webpack'); +const path = require('path'); +const CopyPlugin = require('copy-webpack-plugin'); +const CreateFileWebpack = require('create-file-webpack'); + +module.exports = env => { + return { + entry: './src/main.js', + output: { + filename: 'bundle.js', + path: path.resolve( __dirname, '..', 'dist/cloudgov') + }, + module: { + rules: [ + { test: /\.js$/, use: 'babel-loader' }, + { test: /\.vue$/, use: 'vue-loader' }, + { test: /\.css$/, use: ['vue-style-loader', 'css-loader']}, + { test: /\.csv$/, use: 'raw-loader' }, + { test: /\.json$/, use: 'raw-loader' } + ] + }, + target: "web", + plugins: [ + new HtmlWebpackPlugin({ + template: './src/index.html', + }), + new VueLoaderPlugin(), + new webpack.HotModuleReplacementPlugin(), + new webpack.DefinePlugin({ + 'process.env':{ + 'NODE_ENV': JSON.stringify('development'), + 'VUE_APP_SUBREGION_JSON': JSON.stringify("./data/subregion.json"), + 'VUE_APP_ZIP_UTILITY':JSON.stringify("./data/zip.csv"), + 'VUE_APP_EGRID_LOGO':JSON.stringify("./assets/img/egrid-text-logo.png"), + } + }), + new CopyPlugin([ + { + from: './data/*', + to: '.', + }, + { + from: './assets/img/*', + to: '.' + } + ]), + new CreateFileWebpack({ + path: './dist/cloudgov', + fileName: 'Staticfile', + content: 'directory: visible' + }) + ] + }; +}; diff --git a/webpack/dev.config.js b/app/webpack/dev.config.js similarity index 100% rename from webpack/dev.config.js rename to app/webpack/dev.config.js diff --git a/webpack/prod.config.js b/app/webpack/prod.config.js similarity index 100% rename from webpack/prod.config.js rename to app/webpack/prod.config.js diff --git a/webpack/stag.config.js b/app/webpack/stag.config.js similarity index 100% rename from webpack/stag.config.js rename to app/webpack/stag.config.js diff --git a/dist/prod/bundle.js b/dist/prod/bundle.js deleted file mode 100644 index d55fb09..0000000 --- a/dist/prod/bundle.js +++ /dev/null @@ -1,7 +0,0 @@ -!function(t){var e=window.webpackHotUpdate;window.webpackHotUpdate=function(t,n){!function(t,e){if(!x[t]||!_[t])return;for(var n in _[t]=!1,e)Object.prototype.hasOwnProperty.call(e,n)&&(v[n]=e[n]);0==--g&&0===y&&E()}(t,n),e&&e(t,n)};var n,r=!0,a="33546f628cd24dd6209d",i=1e4,o={},s=[],l=[];function c(t){var e=$[t];if(!e)return S;var r=function(r){return e.hot.active?($[r]?-1===$[r].parents.indexOf(t)&&$[r].parents.push(t):(s=[t],n=r),-1===e.children.indexOf(r)&&e.children.push(r)):(console.warn("[HMR] unexpected require("+r+") from disposed module "+t),s=[]),S(r)},a=function(t){return{configurable:!0,enumerable:!0,get:function(){return S[t]},set:function(e){S[t]=e}}};for(var i in S)Object.prototype.hasOwnProperty.call(S,i)&&"e"!==i&&"t"!==i&&Object.defineProperty(r,i,a(i));return r.e=function(t){return"ready"===p&&f("prepare"),y++,S.e(t).then(e,function(t){throw e(),t});function e(){y--,"prepare"===p&&(b[t]||A(t),0===y&&0===g&&E())}},r.t=function(t,e){return 1&e&&(t=r(t)),S.t(t,-2&e)},r}function u(t){var e={_acceptedDependencies:{},_declinedDependencies:{},_selfAccepted:!1,_selfDeclined:!1,_disposeHandlers:[],_main:n!==t,active:!0,accept:function(t,n){if(void 0===t)e._selfAccepted=!0;else if("function"==typeof t)e._selfAccepted=t;else if("object"==typeof t)for(var r=0;r=0&&e._disposeHandlers.splice(n,1)},check:R,apply:C,status:function(t){if(!t)return p;d.push(t)},addStatusHandler:function(t){d.push(t)},removeStatusHandler:function(t){var e=d.indexOf(t);e>=0&&d.splice(e,1)},data:o[t]};return n=void 0,e}var d=[],p="idle";function f(t){p=t;for(var e=0;e0;){var a=r.pop(),i=a.id,o=a.chain;if((l=$[i])&&!l.hot._selfAccepted){if(l.hot._selfDeclined)return{type:"self-declined",chain:o,moduleId:i};if(l.hot._main)return{type:"unaccepted",chain:o,moduleId:i};for(var s=0;s ")),R.type){case"self-declined":e.onDeclined&&e.onDeclined(R),e.ignoreDeclined||(A=new Error("Aborted because of self decline: "+R.moduleId+k));break;case"declined":e.onDeclined&&e.onDeclined(R),e.ignoreDeclined||(A=new Error("Aborted because of declined dependency: "+R.moduleId+" in "+R.parentId+k));break;case"unaccepted":e.onUnaccepted&&e.onUnaccepted(R),e.ignoreUnaccepted||(A=new Error("Aborted because "+c+" is not accepted"+k));break;case"accepted":e.onAccepted&&e.onAccepted(R),E=!0;break;case"disposed":e.onDisposed&&e.onDisposed(R),C=!0;break;default:throw new Error("Unexception type "+R.type)}if(A)return f("abort"),Promise.reject(A);if(E)for(c in y[c]=v[c],d(g,R.outdatedModules),R.outdatedDependencies)Object.prototype.hasOwnProperty.call(R.outdatedDependencies,c)&&(h[c]||(h[c]=[]),d(h[c],R.outdatedDependencies[c]));C&&(d(g,[R.moduleId]),y[c]=b)}var F,O=[];for(r=0;r0;)if(c=T.pop(),l=$[c]){var I={},N=l.hot._disposeHandlers;for(i=0;i=0&&j.parents.splice(F,1))}}for(c in h)if(Object.prototype.hasOwnProperty.call(h,c)&&(l=$[c]))for(D=h[c],i=0;i=0&&l.children.splice(F,1);for(c in f("apply"),a=m,y)Object.prototype.hasOwnProperty.call(y,c)&&(t[c]=y[c]);var P=null;for(c in h)if(Object.prototype.hasOwnProperty.call(h,c)&&(l=$[c])){D=h[c];var L=[];for(r=0;r=0&&Math.floor(e)===e&&isFinite(t)}function f(t){return i(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function h(t){return null==t?"":Array.isArray(t)||u(t)&&t.toString===c?JSON.stringify(t,null,2):String(t)}function v(t){var e=parseFloat(t);return isNaN(e)?t:e}function m(t,e){for(var n=Object.create(null),r=t.split(","),a=0;a-1)return t.splice(n,1)}}var b=Object.prototype.hasOwnProperty;function _(t,e){return b.call(t,e)}function x(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}var w=/-(\w)/g,R=x(function(t){return t.replace(w,function(t,e){return e?e.toUpperCase():""})}),A=x(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),E=/\B([A-Z])/g,C=x(function(t){return t.replace(E,"-$1").toLowerCase()});var $=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n};function S(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function k(t,e){for(var n in e)t[n]=e[n];return t}function F(t){for(var e={},n=0;n0,J=K&&K.indexOf("edge/")>0,Q=(K&&K.indexOf("android"),K&&/iphone|ipad|ipod|ios/.test(K)||"ios"===Y),tt=(K&&/chrome\/\d+/.test(K),K&&/phantomjs/.test(K),K&&K.match(/firefox\/(\d+)/)),et={}.watch,nt=!1;if(q)try{var rt={};Object.defineProperty(rt,"passive",{get:function(){nt=!0}}),window.addEventListener("test-passive",null,rt)}catch(t){}var at=function(){return void 0===z&&(z=!q&&!V&&void 0!==t&&(t.process&&"server"===t.process.env.VUE_ENV)),z},it=q&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ot(t){return"function"==typeof t&&/native code/.test(t.toString())}var st,lt="undefined"!=typeof Symbol&&ot(Symbol)&&"undefined"!=typeof Reflect&&ot(Reflect.ownKeys);st="undefined"!=typeof Set&&ot(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var ct=O,ut=0,dt=function(){this.id=ut++,this.subs=[]};dt.prototype.addSub=function(t){this.subs.push(t)},dt.prototype.removeSub=function(t){y(this.subs,t)},dt.prototype.depend=function(){dt.target&&dt.target.addDep(this)},dt.prototype.notify=function(){var t=this.subs.slice();for(var e=0,n=t.length;e-1)if(i&&!_(a,"default"))o=!1;else if(""===o||o===C(t)){var l=Ht(String,a.type);(l<0||s0&&(ue((c=t(c,(n||"")+"_"+l))[0])&&ue(d)&&(r[u]=yt(d.text+c[0].text),c.shift()),r.push.apply(r,c)):s(c)?ue(d)?r[u]=yt(d.text+c):""!==c&&r.push(yt(c)):ue(c)&&ue(d)?r[u]=yt(d.text+c.text):(o(e._isVList)&&i(c.tag)&&a(c.key)&&i(n)&&(c.key="__vlist"+n+"_"+l+"__"),r.push(c)));return r}(t):void 0}function ue(t){return i(t)&&i(t.text)&&!1===t.isComment}function de(t,e){if(t){for(var n=Object.create(null),r=lt?Reflect.ownKeys(t):Object.keys(t),a=0;a0,o=t?!!t.$stable:!i,s=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(o&&n&&n!==r&&s===n.$key&&!i&&!n.$hasNormal)return n;for(var l in a={},t)t[l]&&"$"!==l[0]&&(a[l]=ve(e,l,t[l]))}else a={};for(var c in e)c in a||(a[c]=me(e,c));return t&&Object.isExtensible(t)&&(t._normalized=a),U(a,"$stable",o),U(a,"$key",s),U(a,"$hasNormal",i),a}function ve(t,e,n){var r=function(){var t=arguments.length?n.apply(null,arguments):n({});return(t=t&&"object"==typeof t&&!Array.isArray(t)?[t]:ce(t))&&(0===t.length||1===t.length&&t[0].isComment)?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:r,enumerable:!0,configurable:!0}),r}function me(t,e){return function(){return t[e]}}function ge(t,e){var n,r,a,o,s;if(Array.isArray(t)||"string"==typeof t)for(n=new Array(t.length),r=0,a=t.length;rdocument.createEvent("Event").timeStamp&&(un=function(){return dn.now()})}function pn(){var t,e;for(cn=un(),sn=!0,nn.sort(function(t,e){return t.id-e.id}),ln=0;lnln&&nn[n].id>t.id;)n--;nn.splice(n+1,0,t)}else nn.push(t);on||(on=!0,ee(pn))}}(this)},hn.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||l(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){Ut(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},hn.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},hn.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},hn.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||y(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var vn={enumerable:!0,configurable:!0,get:O,set:O};function mn(t,e,n){vn.get=function(){return this[e][n]},vn.set=function(t){this[e][n]=t},Object.defineProperty(t,n,vn)}function gn(t){t._watchers=[];var e=t.$options;e.props&&function(t,e){var n=t.$options.propsData||{},r=t._props={},a=t.$options._propKeys=[];t.$parent&&At(!1);var i=function(i){a.push(i);var o=Pt(i,e,n,t);$t(r,i,o),i in t||mn(t,"_props",i)};for(var o in e)i(o);At(!0)}(t,e.props),e.methods&&function(t,e){t.$options.props;for(var n in e)t[n]="function"!=typeof e[n]?O:$(e[n],t)}(t,e.methods),e.data?function(t){var e=t.$options.data;u(e=t._data="function"==typeof e?function(t,e){ft();try{return t.call(e,e)}catch(t){return Ut(t,e,"data()"),{}}finally{ht()}}(e,t):e||{})||(e={});var n=Object.keys(e),r=t.$options.props,a=(t.$options.methods,n.length);for(;a--;){var i=n[a];0,r&&_(r,i)||(o=void 0,36!==(o=(i+"").charCodeAt(0))&&95!==o&&mn(t,"_data",i))}var o;Ct(e,!0)}(t):Ct(t._data={},!0),e.computed&&function(t,e){var n=t._computedWatchers=Object.create(null),r=at();for(var a in e){var i=e[a],o="function"==typeof i?i:i.get;0,r||(n[a]=new hn(t,o||O,O,yn)),a in t||bn(t,a,i)}}(t,e.computed),e.watch&&e.watch!==et&&function(t,e){for(var n in e){var r=e[n];if(Array.isArray(r))for(var a=0;a-1:"string"==typeof t?t.split(",").indexOf(e)>-1:!!d(t)&&t.test(e)}function kn(t,e){var n=t.cache,r=t.keys,a=t._vnode;for(var i in n){var o=n[i];if(o){var s=$n(o.componentOptions);s&&!e(s)&&Fn(n,i,r,a)}}}function Fn(t,e,n,r){var a=t[e];!a||r&&a.tag===r.tag||a.componentInstance.$destroy(),t[e]=null,y(n,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=Rn++,e._isVue=!0,t&&t._isComponent?function(t,e){var n=t.$options=Object.create(t.constructor.options),r=e._parentVnode;n.parent=e.parent,n._parentVnode=r;var a=r.componentOptions;n.propsData=a.propsData,n._parentListeners=a.listeners,n._renderChildren=a.children,n._componentTag=a.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=Nt(An(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&Xe(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,n=t.$vnode=e._parentVnode,a=n&&n.context;t.$slots=pe(e._renderChildren,a),t.$scopedSlots=r,t._c=function(e,n,r,a){return He(t,e,n,r,a,!1)},t.$createElement=function(e,n,r,a){return He(t,e,n,r,a,!0)};var i=n&&n.data;$t(t,"$attrs",i&&i.attrs||r,null,!0),$t(t,"$listeners",e._parentListeners||r,null,!0)}(e),en(e,"beforeCreate"),function(t){var e=de(t.$options.inject,t);e&&(At(!1),Object.keys(e).forEach(function(n){$t(t,n,e[n])}),At(!0))}(e),gn(e),function(t){var e=t.$options.provide;e&&(t._provided="function"==typeof e?e.call(t):e)}(e),en(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}(En),function(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=St,t.prototype.$delete=kt,t.prototype.$watch=function(t,e,n){if(u(e))return wn(this,t,e,n);(n=n||{}).user=!0;var r=new hn(this,t,e,n);if(n.immediate)try{e.call(this,r.value)}catch(t){Ut(t,this,'callback for immediate watcher "'+r.expression+'"')}return function(){r.teardown()}}}(En),function(t){var e=/^hook:/;t.prototype.$on=function(t,n){var r=this;if(Array.isArray(t))for(var a=0,i=t.length;a1?S(e):e;for(var n=S(arguments,1),r='event handler for "'+t+'"',a=0,i=e.length;aparseInt(this.max)&&Fn(o,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={get:function(){return B}};Object.defineProperty(t,"config",e),t.util={warn:ct,extend:k,mergeOptions:Nt,defineReactive:$t},t.set=St,t.delete=kt,t.nextTick=ee,t.observable=function(t){return Ct(t),t},t.options=Object.create(null),P.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,k(t.options.components,Mn),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=S(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=Nt(this.options,t),this}}(t),Cn(t),function(t){P.forEach(function(e){t[e]=function(t,n){return n?("component"===e&&u(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}})}(t)}(En),Object.defineProperty(En.prototype,"$isServer",{get:at}),Object.defineProperty(En.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(En,"FunctionalRenderContext",{value:Me}),En.version="2.6.10";var Dn=m("style,class"),Tn=m("input,textarea,option,select,progress"),In=m("contenteditable,draggable,spellcheck"),Nn=m("events,caret,typing,plaintext-only"),jn=function(t,e){return Un(e)||"false"===e?"false":"contenteditable"===t&&Nn(e)?e:"true"},Pn=m("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Ln="http://www.w3.org/1999/xlink",Bn=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Hn=function(t){return Bn(t)?t.slice(6,t.length):""},Un=function(t){return null==t||!1===t};function Gn(t){for(var e=t.data,n=t,r=t;i(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(e=zn(r.data,e));for(;i(n=n.parent);)n&&n.data&&(e=zn(e,n.data));return function(t,e){if(i(t)||i(e))return Wn(t,qn(e));return""}(e.staticClass,e.class)}function zn(t,e){return{staticClass:Wn(t.staticClass,e.staticClass),class:i(t.class)?[t.class,e.class]:e.class}}function Wn(t,e){return t?e?t+" "+e:t:e||""}function qn(t){return Array.isArray(t)?function(t){for(var e,n="",r=0,a=t.length;r-1?vr(t,e,n):Pn(e)?Un(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):In(e)?t.setAttribute(e,jn(e,n)):Bn(e)?Un(n)?t.removeAttributeNS(Ln,Hn(e)):t.setAttributeNS(Ln,e,n):vr(t,e,n)}function vr(t,e,n){if(Un(n))t.removeAttribute(e);else{if(X&&!Z&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var mr={create:fr,update:fr};function gr(t,e){var n=e.elm,r=e.data,o=t.data;if(!(a(r.staticClass)&&a(r.class)&&(a(o)||a(o.staticClass)&&a(o.class)))){var s=Gn(e),l=n._transitionClasses;i(l)&&(s=Wn(s,qn(l))),s!==n._prevClass&&(n.setAttribute("class",s),n._prevClass=s)}}var yr,br={create:gr,update:gr},_r="__r",xr="__c";function wr(t,e,n){var r=yr;return function a(){null!==e.apply(null,arguments)&&Er(t,a,n,r)}}var Rr=Vt&&!(tt&&Number(tt[1])<=53);function Ar(t,e,n,r){if(Rr){var a=cn,i=e;e=i._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=a||t.timeStamp<=0||t.target.ownerDocument!==document)return i.apply(this,arguments)}}yr.addEventListener(t,e,nt?{capture:n,passive:r}:n)}function Er(t,e,n,r){(r||yr).removeEventListener(t,e._wrapper||e,n)}function Cr(t,e){if(!a(t.data.on)||!a(e.data.on)){var n=e.data.on||{},r=t.data.on||{};yr=e.elm,function(t){if(i(t[_r])){var e=X?"change":"input";t[e]=[].concat(t[_r],t[e]||[]),delete t[_r]}i(t[xr])&&(t.change=[].concat(t[xr],t.change||[]),delete t[xr])}(n),oe(n,r,Ar,Er,wr,e.context),yr=void 0}}var $r,Sr={create:Cr,update:Cr};function kr(t,e){if(!a(t.data.domProps)||!a(e.data.domProps)){var n,r,o=e.elm,s=t.data.domProps||{},l=e.data.domProps||{};for(n in i(l.__ob__)&&(l=e.data.domProps=k({},l)),s)n in l||(o[n]="");for(n in l){if(r=l[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),r===s[n])continue;1===o.childNodes.length&&o.removeChild(o.childNodes[0])}if("value"===n&&"PROGRESS"!==o.tagName){o._value=r;var c=a(r)?"":String(r);Fr(o,c)&&(o.value=c)}else if("innerHTML"===n&&Kn(o.tagName)&&a(o.innerHTML)){($r=$r||document.createElement("div")).innerHTML=""+r+"";for(var u=$r.firstChild;o.firstChild;)o.removeChild(o.firstChild);for(;u.firstChild;)o.appendChild(u.firstChild)}else if(r!==s[n])try{o[n]=r}catch(t){}}}}function Fr(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(t,e)||function(t,e){var n=t.value,r=t._vModifiers;if(i(r)){if(r.number)return v(n)!==v(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}(t,e))}var Or={create:kr,update:kr},Mr=x(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e});function Dr(t){var e=Tr(t.style);return t.staticStyle?k(t.staticStyle,e):e}function Tr(t){return Array.isArray(t)?F(t):"string"==typeof t?Mr(t):t}var Ir,Nr=/^--/,jr=/\s*!important$/,Pr=function(t,e,n){if(Nr.test(e))t.style.setProperty(e,n);else if(jr.test(n))t.style.setProperty(C(e),n.replace(jr,""),"important");else{var r=Br(e);if(Array.isArray(n))for(var a=0,i=n.length;a-1?e.split(Gr).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function Wr(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Gr).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function qr(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&k(e,Vr(t.name||"v")),k(e,t),e}return"string"==typeof t?Vr(t):void 0}}var Vr=x(function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}}),Yr=q&&!Z,Kr="transition",Xr="animation",Zr="transition",Jr="transitionend",Qr="animation",ta="animationend";Yr&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Zr="WebkitTransition",Jr="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Qr="WebkitAnimation",ta="webkitAnimationEnd"));var ea=q?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function na(t){ea(function(){ea(t)})}function ra(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),zr(t,e))}function aa(t,e){t._transitionClasses&&y(t._transitionClasses,e),Wr(t,e)}function ia(t,e,n){var r=sa(t,e),a=r.type,i=r.timeout,o=r.propCount;if(!a)return n();var s=a===Kr?Jr:ta,l=0,c=function(){t.removeEventListener(s,u),n()},u=function(e){e.target===t&&++l>=o&&c()};setTimeout(function(){l0&&(n=Kr,u=o,d=i.length):e===Xr?c>0&&(n=Xr,u=c,d=l.length):d=(n=(u=Math.max(o,c))>0?o>c?Kr:Xr:null)?n===Kr?i.length:l.length:0,{type:n,timeout:u,propCount:d,hasTransform:n===Kr&&oa.test(r[Zr+"Property"])}}function la(t,e){for(;t.length1}function ha(t,e){!0!==e.data.show&&ua(e)}var va=function(t){var e,n,r={},l=t.modules,c=t.nodeOps;for(e=0;eh?b(t,a(n[g+1])?null:n[g+1].elm,n,f,g,r):f>g&&x(0,e,p,h)}(p,m,g,n,u):i(g)?(i(t.text)&&c.setTextContent(p,""),b(p,null,g,0,g.length-1,n)):i(m)?x(0,m,0,m.length-1):i(t.text)&&c.setTextContent(p,""):t.text!==e.text&&c.setTextContent(p,e.text),i(h)&&i(f=h.hook)&&i(f=f.postpatch)&&f(t,e)}}}function E(t,e,n){if(o(n)&&i(t.parent))t.parent.data.pendingInsert=e;else for(var r=0;r-1,o.selected!==i&&(o.selected=i);else if(T(_a(o),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));a||(t.selectedIndex=-1)}}function ba(t,e){return e.every(function(e){return!T(e,t)})}function _a(t){return"_value"in t?t._value:t.value}function xa(t){t.target.composing=!0}function wa(t){t.target.composing&&(t.target.composing=!1,Ra(t.target,"input"))}function Ra(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Aa(t){return!t.componentInstance||t.data&&t.data.transition?t:Aa(t.componentInstance._vnode)}var Ea={model:ma,show:{bind:function(t,e,n){var r=e.value,a=(n=Aa(n)).data&&n.data.transition,i=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&a?(n.data.show=!0,ua(n,function(){t.style.display=i})):t.style.display=r?i:"none"},update:function(t,e,n){var r=e.value;!r!=!e.oldValue&&((n=Aa(n)).data&&n.data.transition?(n.data.show=!0,r?ua(n,function(){t.style.display=t.__vOriginalDisplay}):da(n,function(){t.style.display="none"})):t.style.display=r?t.__vOriginalDisplay:"none")},unbind:function(t,e,n,r,a){a||(t.style.display=t.__vOriginalDisplay)}}},Ca={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function $a(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?$a(qe(e.children)):t}function Sa(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var a=n._parentListeners;for(var i in a)e[R(i)]=a[i];return e}function ka(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var Fa=function(t){return t.tag||We(t)},Oa=function(t){return"show"===t.name},Ma={name:"transition",props:Ca,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(Fa)).length){0;var r=this.mode;0;var a=n[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return a;var i=$a(a);if(!i)return a;if(this._leaving)return ka(t,a);var o="__transition-"+this._uid+"-";i.key=null==i.key?i.isComment?o+"comment":o+i.tag:s(i.key)?0===String(i.key).indexOf(o)?i.key:o+i.key:i.key;var l=(i.data||(i.data={})).transition=Sa(this),c=this._vnode,u=$a(c);if(i.data.directives&&i.data.directives.some(Oa)&&(i.data.show=!0),u&&u.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(i,u)&&!We(u)&&(!u.componentInstance||!u.componentInstance._vnode.isComment)){var d=u.data.transition=k({},l);if("out-in"===r)return this._leaving=!0,se(d,"afterLeave",function(){e._leaving=!1,e.$forceUpdate()}),ka(t,a);if("in-out"===r){if(We(i))return c;var p,f=function(){p()};se(l,"afterEnter",f),se(l,"enterCancelled",f),se(d,"delayLeave",function(t){p=t})}}return a}}},Da=k({tag:String,moveClass:String},Ca);function Ta(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function Ia(t){t.data.newPos=t.elm.getBoundingClientRect()}function Na(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,a=e.top-n.top;if(r||a){t.data.moved=!0;var i=t.elm.style;i.transform=i.WebkitTransform="translate("+r+"px,"+a+"px)",i.transitionDuration="0s"}}delete Da.mode;var ja={Transition:Ma,TransitionGroup:{props:Da,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var a=Je(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,a(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,a=this.$slots.default||[],i=this.children=[],o=Sa(this),s=0;s-1?Zn[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:Zn[t]=/HTMLUnknownElement/.test(e.toString())},k(En.options.directives,Ea),k(En.options.components,ja),En.prototype.__patch__=q?va:O,En.prototype.$mount=function(t,e){return function(t,e,n){var r;return t.$el=e,t.$options.render||(t.$options.render=gt),en(t,"beforeMount"),r=function(){t._update(t._render(),n)},new hn(t,r,O,{before:function(){t._isMounted&&!t._isDestroyed&&en(t,"beforeUpdate")}},!0),n=!1,null==t.$vnode&&(t._isMounted=!0,en(t,"mounted")),t}(this,t=t&&q?function(t){if("string"==typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}(t):void 0,e)},q&&setTimeout(function(){B.devtools&&it&&it.emit("init",En)},0),e.default=En}.call(this,n(62),n(90).setImmediate)},function(t,e){var n,r,a=Object.create(null);"undefined"!=typeof window&&(window.__VUE_HOT_MAP__=a);var i=!1,o="beforeCreate";function s(t,e){if(e.functional){var n=e.render;e.render=function(e,r){var i=a[t].instances;return r&&i.indexOf(r.parent)<0&&i.push(r.parent),n(e,r)}}else l(e,o,function(){var e=a[t];e.Ctor||(e.Ctor=this.constructor),e.instances.push(this)}),l(e,"beforeDestroy",function(){var e=a[t].instances;e.splice(e.indexOf(this),1)})}function l(t,e,n){var r=t[e];t[e]=r?Array.isArray(r)?r.concat(n):[r,n]:[n]}function c(t){return function(e,n){try{t(e,n)}catch(t){console.error(t),console.warn("Something went wrong during Vue component hot-reload. Full reload required.")}}}function u(t,e){for(var n in t)n in e||delete t[n];for(var r in e)t[r]=e[r]}e.install=function(t,a){i||(i=!0,n=t.__esModule?t.default:t,r=n.version.split(".").map(Number),a,n.config._lifecycleHooks.indexOf("init")>-1&&(o="init"),e.compatible=r[0]>=2,e.compatible||console.warn("[HMR] You are using a version of vue-hot-reload-api that is only compatible with Vue.js core ^2.0.0."))},e.createRecord=function(t,e){if(!a[t]){var n=null;"function"==typeof e&&(e=(n=e).options),s(t,e),a[t]={Ctor:n,options:e,instances:[]}}},e.isRecorded=function(t){return void 0!==a[t]},e.rerender=c(function(t,e){var n=a[t];if(e){if("function"==typeof e&&(e=e.options),n.Ctor)n.Ctor.options.render=e.render,n.Ctor.options.staticRenderFns=e.staticRenderFns,n.instances.slice().forEach(function(t){t.$options.render=e.render,t.$options.staticRenderFns=e.staticRenderFns,t._staticTrees&&(t._staticTrees=[]),Array.isArray(n.Ctor.options.cached)&&(n.Ctor.options.cached=[]),Array.isArray(t.$options.cached)&&(t.$options.cached=[]);var r=function(t){if(!t._u)return;var e=t._u;return t._u=function(t){try{return e(t,!0)}catch(n){return e(t,null,!0)}},function(){t._u=e}}(t);t.$forceUpdate(),t.$nextTick(r)});else if(n.options.render=e.render,n.options.staticRenderFns=e.staticRenderFns,n.options.functional){if(Object.keys(e).length>2)u(n.options,e);else{var r=n.options._injectStyles;if(r){var i=e.render;n.options.render=function(t,e){return r.call(e),i(t,e)}}}n.options._Ctor=null,Array.isArray(n.options.cached)&&(n.options.cached=[]),n.instances.slice().forEach(function(t){t.$forceUpdate()})}}else n.instances.slice().forEach(function(t){t.$forceUpdate()})}),e.reload=c(function(t,e){var n=a[t];if(e)if("function"==typeof e&&(e=e.options),s(t,e),n.Ctor){r[1]<2&&(n.Ctor.extendOptions=e);var i=n.Ctor.super.extend(e);n.Ctor.options=i.options,n.Ctor.cid=i.cid,n.Ctor.prototype=i.prototype,i.release&&i.release()}else u(n.options,e);n.instances.slice().forEach(function(t){t.$vnode&&t.$vnode.context?t.$vnode.context.$forceUpdate():console.warn("Root or manually mounted instance modified. Full reload required.")})})},function(t,e,n){"use strict";n.d(e,"a",function(){return r});var r={data:[],update:function(t){this.data=t}}},function(t,e,n){"use strict";n.d(e,"a",function(){return r});var r={data:{},update:function(t){this.data=t}}},function(t,e,n){"use strict";function r(t){$(t).on({mouseover:function(){var t=$(this).attr("title");$(this).data("tipText",t).removeAttr("title"),$('

').text(t).appendTo("#app").fadeIn("fast")},mouseout:function(){$(this).attr("title",$(this).data("tipText"));for(var t=document.querySelectorAll(".tooltip"),e=0;en.parts.length&&(r.parts.length=n.parts.length)}else{var o=[];for(a=0;a svg").clone().css({verticalAlign:"top",width:"166px",height:"100px"});$("#print-map").append(n),$("#print-fuel-mix").append($("#fuelMixContainer").clone()),$("#print-fuel-mix svg").css({marginTop:"0",height:"480px",width:"347px"}),$("#print-emission-rates").append("

Emission Rates

"),$("#print-emission-rates").append($("#emRatesDescription").clone()),$("#print-emission-rates").append($("#subco2EmissionRate").clone().css({display:"inline-block",height:"443px"})),$("#print-emission-rates").append($("#subso2EmissionRate").clone().css({display:"inline-block",height:"443px"})),$("#print-emission-rates").append($("#subnoxEmissionRate").clone().css({display:"inline-block",height:"443px"})),$("#printReportMain").hide(),t.showReport=!0}else $("#print-main-map").html(""),$("#print-main-fuel-mix").html(""),$("#print-main-emission-rates").html(""),$("#print-main-map").append("

eGRID Subregion Map

"),$("#print-main-map").append($("#subregionMap > svg").clone().css({width:"296px",height:"178px"})),$("#print-main-fuel-mix").append($("#nationalFuelMix").clone()),$("#print-main-fuel-mix #fuelRadios").css({display:"none"}),$("#print-main-emission-rates").append("

Emission Rates

"),$("#print-main-emission-rates").append($("#nationalEmissionRate > p:nth-child(2)").clone()),$("#print-main-emission-rates").append($("#nationalEmissionRateGraph").clone()),$("#print-main-emission-rates > #nationalEmissionRateGraph > svg").css({display:"inline-block"}),$("#printReport").hide(),t.showMainReport=!0}),window.addEventListener("afterprint",function(e){t.showReport=!1,t.showMainReport=!1}),$(window).width()<950?(h.a.data.fuelMixOrientation="vertical",h.a.data.emissionRatesOrientation="vertical"):(h.a.data.fuelMixOrientation="horizontal",h.a.data.emissionRatesOrientation="horizontal"),"home"==this.$route.name&&(this.showMain=!0)},watch:{$route:function(t,e){"home"==t.name&&(this.showMain=!0),$("#result").hide()}}};e.a=v},function(t,e,n){"use strict";var r=n(6),a=n(2),i=(n(7),n(83)),o=n(84),s=n(85),l={components:{subregionFuelMixChart:i.a,subregionEmissionRateChart:o.a,emissionsCalculator:s.a},data:function(){return{subregion:{},dataLoaded:!1}},mounted:function(){this.subregion=a.a.data,this.dataLoaded=!0,this.$root.$children[0].subregionSelected=!0,this.$root.$children[0].showMain=!1},watch:{$route:function(t,e){t!==e&&(this.subregion=a.a.data,this.$children[1].update(),this.$children[2].update())}},beforeCreate:function(){var t=this.$router.history.current.params.subregion,e=r.a.data.filter(function(e){return e.properties.name==t});e.length>0?($(".map").css({fill:""}),$("."+e[0].properties.name).css({fill:"steelblue"}),$("#regionSelectionDropdown").val(e[0].properties.name),a.a.update(e[0])):(this.dataLoaded=!1,this.$router.push("/"))}};e.a=l},function(t,e,n){"use strict";var r=n(6),a=n(7),i=n(2),o=n(1),s=n(3),l=n(80),c=n(8),u={components:{emissionRateChart:l.a},data:function(){return{nationalFeature:{},subregionData:[],w:0,h:0,domElement:"",sortState:"alphabetically",fuels:["gas","coal","nuclear","hydro","wind","biomass","solar","oil","geothermal","otherFossilFuel","otherUnknownFuel"],renewableAndNon:["renewable","non-renewable"],renewableNonNuclearAndHydro:["hydro","renewable (excluding hydro)","non-renewable (excluding nuclear)","nuclear"],allFuelsColorRange:["#fdae61","#313695","#f46d43","#74add1","#abd9e9","#4575b4","#ffffbf","#d73027","#fee090","#e0f3f8","#a50026"],renewableAndNonColors:["#abdda4","#d7191c"],renewableNonNuclearAndHydroColors:["#2b83ba","#abdda4","#d7191c","#fdae61"],subregions:{},sortedFuel:"",selectedFuelCategory:"allFuels",orientation:"",selectedRegion:{}}},mounted:function(){var t=this;this.orientation=o.a.data.fuelMixOrientation,this.initialize($("#main-charts").width(),350,"#nationalFuelMix"),this.subregionData=r.a.data,this.nationalFeature=a.a.data,this.display(this.selectedFuelCategory),this.selectedRegion=i.a.data,this.show(this.selectedRegion),$("#resetNationalFuelMix").css("visibility","hidden"),$(window).on("resize",function(){$(window).width()<950?(t.orientation="vertical",t.$children[0].orientation="vertical"):(t.orientation="horizontal",t.$children[0].orientation="horizontal"),t.reset()})},methods:{initialize:function(t,e,n){this.w=t,this.h=e,this.domElement=n},display:function(t){var e,n,r,a=this;$(this.domElement).show();"alphabetically"==this.sortState?this.subregionData.sort(function(t,e){return d3.ascending(t.properties.name,e.properties.name)}):"ascending"==this.sortState?this.subregionData.sort(function(t,e){return d3.ascending(t.properties.emissionFactor[a.$children[0].selectedPollutantAll].value,e.properties.emissionFactor[a.$children[0].selectedPollutantAll].value)}):"descending"==this.sortState?this.subregionData.sort(function(t,e){return d3.descending(t.properties.emissionFactor[a.$children[0].selectedPollutantAll].value,e.properties.emissionFactor[a.$children[0].selectedPollutantAll].value)}):"subregionFuels"==this.sortState&&this.subregionData.sort(function(t,e){return d3.descending(t.properties.fuelMix[""],e.properties.fuelMix[""])}),"allFuels"==t?(e=this.fuels,n="fuelMix",r=this.allFuelsColorRange):"renewableAndNon"==t?(e=this.renewableAndNon,n="fuelMixCategories",r=this.renewableAndNonColors):"renewableNonNuclearAndHydro"==t&&(e=this.renewableNonNuclearAndHydro,n="fuelMixCategories",r=this.renewableNonNuclearAndHydroColors),"horizontal"==this.orientation?this.displayHorizontal(r,e,n):"vertical"==this.orientation&&this.displayVertical(r,e,n),Object(c.a)(".fuelMixTooltip")},displayHorizontal:function(t,e,n){for(var r=this,a=30,i=60,o=140,l=70,c=this.w-l-i,u=this.h-a-o,d=d3.scale.ordinal().rangeRoundBands([0,c],.2),p=d3.scale.linear().range([u,0]),f=d3.scale.ordinal().range(t).domain(e),h=d3.svg.axis().scale(d).outerTickSize(0).orient("bottom"),v=d3.svg.axis().scale(p).orient("left").tickFormat(function(t){return t+"%"}),m=d3.select(r.domElement).append("svg").attr("width",c+l+i).attr("height",u+a+o).append("g").attr("transform","translate("+l+","+a+")"),g=0;gn&&(n=t.length),"translate(0,-60)";if(1===e)return t.length>n&&(n=t.length),"translate(0,-120)";if(2===e)return t.length>n&&(n=t.length),"translate(0,-100)";if(3===e)return t.length>n&&(n=t.length),"translate(0,-80)"}else{if(0===e)return t.length>n&&(n=t.length),"translate(0,-100)";if(1===e)return t.length>n&&(n=t.length),"translate(0,-80)";if(2===e)return t.length>n&&(n=t.length),"translate(0,-60)";if(3===e)return t.length>a&&(a=t.length),"translate("+(n+80)+","+-100+")";if(4===e)return t.length>a&&(a=t.length),"translate("+(n+80)+","+-80+")";if(5===e)return t.length>a&&(a=t.length),"translate("+(n+80)+","+-60+")";if(6===e)return"translate("+(a+160+20)+","+-100+")";if(7===e)return"translate("+(a+160+20)+","+-80+")";if(8===e)return"translate("+(a+160+20)+","+-60+")";if(9===e)return"translate("+(a+160+140)+","+-100+")";if(10===e)return"translate("+(a+160+140)+","+-70+")"}}).on("click",function(t){var e={name:t,chart:r.selectedFuelCategory};d3.selectAll(".textselected").style("font-weight",function(t){return t==e.name?"bold":"normal"}),r.selectedFuel=e.name,r.handleFuelClick(e,n,d,p,_,v,h,r.orientation)});C.append("rect").attr("x",0).attr("y",0).attr("width",10).attr("height",10).style("fill",f),C.append("text").attr("x",20).attr("y",10).text(function(t,e){if("otherFossilFuel"!=t&&"otherUnknownFuel"!=t)return Object(s.c)(t)}).attr("class",function(t){return"otherFossilFuel"==t||"otherUnknownFuel"==t?"lgLabel textselected":"textselected"}).style("text-anchor","start").style("font-size",15);var $,S=d3.selectAll(".lgLabel");S.append("tspan").text(function(t){return $=t.match(/[A-Z]*[^A-Z]+/g),"otherFossilFuel"==t?$[0].charAt(0).toUpperCase(1)+$[0].substr(1)+" "+$[1]:$[0].charAt(0).toUpperCase(1)+$[0].substr(1)}),S.append("tspan").attr("x",20).attr("y",25).attr("class",function(t){if("otherUnknownFuel"==t)return"unknown"}).text(function(t){return"otherFossilFuel"==t?$[2]:"otherUnknownFuel"==t?$[1]:void 0}),d3.selectAll(".unknown").append("tspan").attr("x",20).attr("y",40).text(function(t){return"Fuel"});r.sortedFuel&&r.sortVerticalBarChart(r.sortedFuel,{sub:300,x:0},n,d,p,_,h),Object(s.a)(m,c-60,u+50)},sortVerticalBarChart:function(t,e,n,r,a,i,s){var l=this;l.sortedFuel=t,o.a.sortedFuel=l.sortedFuel,$("#resetNationalFuelMix").css("visibility","visible");var c=[],u=a.domain(l.subregionData.sort(function(e,r){return r.properties[n][t.name]-e.properties[n][t.name]}).map(function(t){return t.properties.name})).copy();d3.selectAll("."+t.chart).style("opacity",function(e){return e.name==t.name?1:.5}).attr("x",function(e){if(e.name==t.name)return d3.select(this).attr("class",t.chart+" selected"),c.push({subregion:e.subregion,newBase:e.val}),r(0);d3.select(this).attr("class",t.chart+" unselected")}),d3.selectAll(".unselected").attr("x",function(e){if(e.name!=t.name)for(var n=0;n a").show(),$("#nationalFuelMixSortingStatus").html("This chart is sorted by decreasing % of "+this.selectedFuel+"."),$("#nationalEmissionRateSortingStatus").html("This chart is sorted by decreasing % of "+this.selectedFuel+"."),this.updateChild("subregionFuels",t)},handleSortReset:function(){this.subregionData.sort(function(t,e){return d3.ascending(t.properties.name,e.properties.name)}),this.sortState="alphabetically",o.a.sortedFuel="",this.sortedFuel=o.a.sortedFuel,this.reset(),this.updateChild("alphabetically",""),$("#resetNationalFuelMix").css("visibility","hidden"),$("#sortAlphabeticallyEmissionRate").css("display","none"),$("#sortAscendingEmissionRate").css("display","inline"),$("#sortDescendingEmissionRate").css("display","inline"),$("#nationalEmissionRateSortingStatus").html("This chart is sorted alphabetically A → Z by region."),$("#nationalFuelMixSortingStatus").html("This chart is sorted alphabetically A → Z by region.")},addHovertext:function(t,e,n){return"non-renewable (excluding nuclear)"==t.name?e="non-renewable":"renewable (excluding hydro)"==t.name&&(e="renewable"),Object(s.c)(e)+" accounts for "+n(t.val)+"% of the fuel mix "+Object(s.b)(t.subregion)},updateChild:function(t,e){var n=this.$children[0];e&&(n.selectedFuel=e.name),o.a.sortState=t,n.update()}},watch:{selectedFuelCategory:function(){this.reset(),this.show(this.selectedRegion)},orientation:function(t){o.a.data.fuelMixOrientation=t,this.reset()},selectedRegion:function(){this.reset(),this.show(this.selectedRegion)}}};e.a=u},function(t,e,n){"use strict";var r={components:{appDescription:n(59).a},mounted:function(){document.getElementById("more-info-ok").focus(),$("#appDescription").show()}};e.a=r},function(t,e,n){"use strict";var r={mounted:function(){document.getElementById("subregions-ok").focus()}};e.a=r},function(t,e,n){"use strict";var r={mounted:function(){document.getElementById("megawatt-ok").focus()}};e.a=r},function(t,e,n){"use strict";var r={components:{subregionSelection:n(73).a}};e.a=r},function(t,e,n){"use strict";var r={mounted:function(){document.getElementById("resources-ok").focus()}};e.a=r},function(t,e,n){"use strict";var r=n(2),a=n(7),i=n(3);function o(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var s={data:function(){var t;return o(t={showAverageInput:!0,resultsFunction:"",selectedSubregion:{},nationalFeature:{},emissionFactors:{},userEmissions:{},gridLoss:{},subregionEmissions:{},nationalEmissions:{},nationalAverage:1011,emRatesColors:{national:"#2b83ba",subregion:"#e66101",co2EmissionRate:"#d7191c",so2EmissionRate:"#008837",noxEmissionRate:"#7b3294"}},"resultsFunction",""),o(t,"emissionsResultsWidth",0),o(t,"emissionsResultsHeight",0),o(t,"residentialMode",!0),o(t,"commercialCustomerForm",!1),o(t,"squareFootage",0),t},mounted:function(){this.selectedSubregion=r.a.data,this.nationalFeature=a.a.data,this.emissionFactors=this.selectedSubregion.properties.emissionFactor,this.gridLoss=this.selectedSubregion.properties.gridLoss,$(window).width()>950?this.emissionsResultsWidth=$(window).width()/4:this.emissionsResultsWidth=250,this.emissionsResultsHeight=340},methods:{displayMonthlyAverage:function(){var t=this;this.resultsFunction="monthlyAverage";var e=$("#userMonthlyAverageInput").val(),n=12*e;function r(e,n){return 12*n*e*.001*(1+t.gridLoss.value)}this.userEmissions={co2:r(this.emissionFactors.co2EmissionRate.value,e),so2:r(this.emissionFactors.so2EmissionRate.value,e),nox:r(this.emissionFactors.noxEmissionRate.value,e)},this.subregionEmissions={co2:t.calculateSubregionEmissions(this.emissionFactors.co2EmissionRate.value,this.gridLoss.value),so2:t.calculateSubregionEmissions(this.emissionFactors.so2EmissionRate.value,this.gridLoss.value),nox:t.calculateSubregionEmissions(this.emissionFactors.noxEmissionRate.value,this.gridLoss.value)},this.nationalEmissions={co2:t.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.co2EmissionRate.value),so2:t.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.so2EmissionRate.value),nox:t.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.noxEmissionRate.value)};var a=Math.round(this.userEmissions.co2).toLocaleString(),i=Math.round(this.userEmissions.nox).toLocaleString(),o=Math.round(this.userEmissions.so2).toLocaleString();$("#egrid-subregion-acronym").html(this.selectedSubregion.properties.name),$("#egrid-subregion-name").html(this.selectedSubregion.properties.fullName),$("#percent-line-loss").html(this.gridLoss.display),$("#estimated-annual-electricity-use").html(n.toLocaleString()),$("#pounds-of-co2").html(a),$("#pounds-of-so2").html(o),$("#pounds-of-nox").html(i),$("#no-of-tree-seedlings").html(t.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).trees),$("#acres-of-forests").html(t.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).acres);var s=24e3;12*e>s&&(s=12*e);var l=100,c=12*e/(12*this.nationalAverage)*100;c>l&&(l=c),d3.selectAll("#chart-gauge svg").remove(),$("#chart-gauge").attr("class","pane-content row cols-3"),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,s,12*this.nationalAverage,"National Annual","Electricity Use",!1),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,s,12*e,"Your Annual","Electricity Use",!1),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,l,c,"Your Electricity Use","Compared to the National Average",!0),d3.selectAll("#resultGraphs svg").remove(),d3.selectAll("#resultGraphs-rpt svg").remove(),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs",this.emissionsResultsWidth,this.emissionsResultsHeight),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs-rpt",247,340),$("#resultGraphs").show(),$("#annual-results-text").show(),$("#national-avg-annual-results-text").hide(),$("#result-subheader").html("Average Monthly Electricity Use"),$("#result").show()},displayMonthlyActual:function(){var t=this;this.resultsFunction="monthlyActual";var e=$("#calculateMonthlyActualForm input").map(function(){return $(this).val()}).get().reduce(function(t,e){return parseFloat(t)+parseFloat(e)},0);function n(e,n){return n*e/1e3*(1+t.gridLoss.value)}this.nationalEmissions={co2:this.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.co2EmissionRate.value),so2:this.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.so2EmissionRate.value),nox:this.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.noxEmissionRate.value)},this.subregionEmissions={co2:this.calculateSubregionEmissions(this.emissionFactors.co2EmissionRate.value,this.gridLoss.value),so2:this.calculateSubregionEmissions(this.emissionFactors.so2EmissionRate.value,this.gridLoss.value),nox:this.calculateSubregionEmissions(this.emissionFactors.noxEmissionRate.value,this.gridLoss.value)},this.userEmissions={co2:n(this.emissionFactors.co2EmissionRate.value,e),so2:n(this.emissionFactors.so2EmissionRate.value,e),nox:n(this.emissionFactors.noxEmissionRate.value,e)};var r=Math.round(this.userEmissions.co2).toLocaleString(),a=Math.round(this.userEmissions.nox).toLocaleString(),i=Math.round(this.userEmissions.so2).toLocaleString();$("#egrid-subregion-acronym").html(this.selectedSubregion.properties.name),$("#egrid-subregion-name").html(this.selectedSubregion.properties.fullName),$("#percent-line-loss").html(this.gridLoss.display),$("#estimated-annual-electricity-use").html(e.toLocaleString()),$("#pounds-of-co2").html(r),$("#pounds-of-so2").html(i),$("#pounds-of-nox").html(a),$("#no-of-tree-seedlings").html(this.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).trees),$("#acres-of-forests").html(this.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).acres);var o=24e3;e>o&&(o=e);var s=100,l=e/(12*this.nationalAverage)*100;l>s&&(s=l),d3.selectAll("#chart-gauge svg").remove(),$("#chart-gauge").attr("class","pane-content row cols-3"),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,o,12*this.nationalAverage,"National Annual","Electricity Use",!1),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,o,e,"Your Annual","Electricity Use",!1),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,s,l,"Your Annual Electricity Use","Compared to the National Average",!0),d3.selectAll("#resultGraphs svg").remove(),d3.selectAll("#resultGraphs-rpt svg").remove(),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs",this.emissionsResultsWidth,this.emissionsResultsHeight),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs-rpt",247,340),$("#resultGraphs").show(),$("#annual-results-text").show(),$("#national-avg-annual-results-text").hide(),$("#result-subheader").html("Actual Monthly Electricity Use"),$("#result").show()},displayNationalAverage:function(t){var e=this;function n(t,n){return 12*n*t/1e3*(1+e.gridLoss.value)}if(this.resultsFunction="nationalAverage",this.nationalEmissions={co2:n(this.nationalFeature[0].properties.emissionFactor.co2EmissionRate.value,this.nationalAverage),so2:n(this.nationalFeature[0].properties.emissionFactor.so2EmissionRate.value,this.nationalAverage),nox:n(this.nationalFeature[0].properties.emissionFactor.noxEmissionRate.value,this.nationalAverage)},this.subregionEmissions={},this.userEmissions={co2:n(this.emissionFactors.co2EmissionRate.value,this.nationalAverage),so2:n(this.emissionFactors.so2EmissionRate.value,this.nationalAverage),nox:n(this.emissionFactors.noxEmissionRate.value,this.nationalAverage)},$("#chart-gauge").children.length>3&&d3.selectAll("#chart-gauge svg").remove(),0==this.residentialMode){var r=24e3;this.nationalAverage=1.22*this.squareFootage,$("#resultGraphs").hide(),$("#result-subheader").html("National Average Electricity Use for Commercial Customers"),d3.selectAll("#chart-gauge svg").remove(),$("#chart-gauge").attr("class","pane-content row cols-4"),12*this.nationalAverage>24e3&&(r=12*this.nationalAverage),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,r,12*this.nationalAverage,"Your Annual","Electricity Use",!1),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#chart-gauge",this.emissionsResultsWidth,this.emissionsResultsHeight),d3.selectAll("#resultGraphs-rpt svg").remove(),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs-rpt",247,340)}else this.nationalAverage=1011,$("#resultGraphs").hide(),$("#result-subheader").html("National Average Electricity Use"),$("#commercialCustomersForm").hide(),d3.selectAll("#chart-gauge svg").remove(),$("#chart-gauge").attr("class","pane-content row cols-4"),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,24e3,12*this.nationalAverage,"Your Annual","Electricity Use",!1),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#chart-gauge",this.emissionsResultsWidth,this.emissionsResultsHeight),d3.selectAll("#resultGraphs-rpt svg").remove(),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs-rpt",247,340);var a=Math.round(this.userEmissions.co2).toLocaleString(),i=Math.round(this.userEmissions.nox).toLocaleString(),o=Math.round(this.userEmissions.so2).toLocaleString();$("#nat-egrid-subregion-acronym").html(this.selectedSubregion.properties.name),$("#nat-egrid-subregion-name").html(this.selectedSubregion.properties.fullName),$("#nat-percent-line-loss").html(this.gridLoss.display),$("#nat-estimated-annual-electricity-use").html((12*this.nationalAverage).toLocaleString()),$("#nat-pounds-of-co2").html(a),$("#nat-pounds-of-so2").html(o),$("#nat-pounds-of-nox").html(i),$("#nat-no-of-tree-seedlings").html(this.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).trees),$("#nat-acres-of-forests").html(this.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).acres),$("#commercialCustomersLink").click(function(){this.commercialCustomerForm=!0,$("#residentialCustomersButton").show(),$("#customerText").hide(),$("#commercialCustomersForm").show()}),$("#commercialCustomersForm").on("submit",function(t){t.preventDefault(),this.squareFootage=$("#squareFootage").val(),this.residentialMode=!1,$("#nationalAverageLink").trigger("click"),$("#nat-em-rpt-intro-2").html("estimated from the national average electricity consumption of 1.22 kWh/sq. ft./month for commercial customers and")}),$("#residentialCustomersButton").click(function(){this.commercialCustomerForm=!1,this.residentialMode=!0,$("#nationalAverageLink").trigger("click"),$("#nat-em-rpt-intro-2").html("estimated from the average home consumption of 1,011 kWh/month and")}),$("#annual-results-text").hide(),$("#national-avg-annual-results-text").show(),$("#result").show()},gaugeChart:function(t,e,n,r,a,i,o){var s=Math.PI;d=0,p=0;var l=d3.svg.arc().innerRadius(60).outerRadius(80).startAngle(s/180*-90),c=d3.select("#chart-gauge").append("svg").attr("width",t).attr("height",e).attr("class","col").append("g").attr("transform","translate("+(t/2-20)+","+(e/2+50)+")");c.append("text").attr("class","gauge-title").attr("transform","translate(0,-105)").attr("text-anchor","middle").text(a),c.append("text").attr("class","gauge-title").attr("transform","translate(0,-90)").attr("text-anchor","middle").text(i);c.append("path").datum({endAngle:s/180*90}).style("fill","#ddd").attr("d",l);var u=c.append("path").datum({endAngle:s/180*-90}).style("fill","#008837").attr("d",l),d=(c.append("text").attr("transform","translate(70,15)").attr("text-anchor","middle").attr("class","gauge-chart-label").style("font-family","Helvetica").text(function(){return 1==o?Math.round(n).toLocaleString()+"%":Math.round(n).toLocaleString()+" kWh"}),c.append("text").attr("transform","translate(-70,15)").attr("text-anchor","middle").style("font-family","Helvetica").text(d)),p=c.append("text").attr("transform","translate(0,-15)").attr("text-anchor","middle").style("font-size","15").style("font-family","Helvetica").text(p),f=Math.floor(r-n/2)*(s/n);p.transition().text(function(){return 1==o?Math.round(r).toLocaleString()+"%":Math.round(r).toLocaleString()}),u.transition().duration(function(t){return 750}).styleTween("fill",function(){return d3.interpolate("#008837","#008837")}).call(function(t,e){t.attrTween("d",function(t){var n=d3.interpolate(t.endAngle,e);return function(e){return t.endAngle=n(e),l(t)}})},f),d3.selectAll("#chart-gauge svg text").style("font-family","'Source Sans Pro', 'Helvetica Neue', 'Helvetica', 'Roboto', 'Arial', sans-serif"),d3.selectAll("#chart-gauge svg .y.axis path, #resultGraphs svg .axis line").style("fill","none").style("stroke","#000").style("shape-rendering","crispEdges")},calculateNationalEmissions:function(t){return 12132*t/1e3*1.0448},calculateSubregionEmissions:function(t,e){return 12132*t/1e3*(1+e)},calculateCarbonOffset:function(t){return{trees:(t/(44/12*23.2)).toLocaleString(void 0,{maximumFractionDigits:0}),acres:(t/(.85*2204.6)).toLocaleString(void 0,{maximumFractionDigits:0})}},displayUserAndNationalEmissions:function(t,e,n,r,a,o){for(var s=["co2","so2","nox"],l=0;l svg").css("margin-top","25%"),Object(o.a)(".subFuelMixTooltip")},update:function(){this.graphData=[],this.graphData.push(a.a.data[0]),this.graphData.push(i.a.data),d3.selectAll("#fuelMix svg").remove(),this.display(this.graphData)}}};e.a=s},function(t,e,n){"use strict";var r=n(9),a=n(74),i=n(6),o={components:{subregionMap:a.a},data:function(){return{userZip:"",selectedSubregion:{},utilArr:[]}},methods:{processZipForm:function(t){t.preventDefault(),$("#errorMessage").hide(),$("#utilitySelectDiv").hide();var e=this;e.userZip=$("#userLocation").val(),this.userZip?d3.csv(r.a.ZIP_UTILITY,function(t){if(e.userZip==t.zip)return t},function(t){if(1==t.length){var n=i.a.data.filter(function(e){return e.properties.name==t[0].SUBRGN});$("#utilitySelect").hide(),e.$root.$emit("subregionSelected",n[0])}else if(t.length>1){$("#errorMessage").hide(),$("#utilitySelect").children()&&$("#utilitySelect").show(),e.utilArr=[];for(var r=[],a=[""],o=0;o"+t[o].UtilName+""),-1==r.indexOf(t[o].SUBRGN)&&r.push(t[o].SUBRGN);if(r.length>1)$("#utilitySelect").html(a.join()),$("#utilitySelect").attr("required",!0),$("#utilitySelectDiv").show();else{var s=i.a.data.filter(function(t){for(var e=0;ePlease enter a valid zip code.

")}):($("#errorMessage").show(),$("#errorMessage").html("

Please enter a valid zip code.

"))},handleSelectChange:function(t){$("#userLocation").val(""),$("#utilitySelectDiv").hide();var e=t.target.options[t.target.options.selectedIndex].value;this.selectedSubregion=i.a.data.filter(function(t){return t.properties.name==e})[0],this.$root.$emit("subregionSelected",this.selectedSubregion)}},mounted:function(){var t=this;document.getElementById("zipForm").addEventListener("submit",this.processZipForm),$("#utilitySelect").on("change",function(e){var n=$("#utilitySelect").val(),r=i.a.data.filter(function(e){return e.properties.name==t.utilArr[n].SUBRGN});t.$root.$emit("subregionSelected",r[0])})}};e.a=o},function(t,e,n){"use strict";var r=n(6),a=n(7),i=n(2),o=n(3),s=n(81),l=n(82),c=n(1),u=n(8),d={components:{emissionRateMap:s.a,renewablesMap:l.a},data:function(){return{nationalFeature:{},subregionData:[],subregions:{},w:0,h:0,domElement:"",orientation:"",parameters:["so2EmissionRate","co2EmissionRate","noxEmissionRate"],emRatesColors:{national:"#2b83ba",subregion:"#e66101",co2EmissionRate:"#d7191c",so2EmissionRate:"#008837",noxEmissionRate:"#7b3294"},selectedRegion:{},selectedPollutantAll:"co2EmissionRate",pollutantText:"CO2",sortState:"alphabetically",selectedFuel:"",currentMap:1}},mounted:function(){var t=this;this.orientation=c.a.data.emissionRatesOrientation,this.initialize($("#main-charts").width(),290,"#nationalEmissionRateGraph"),this.display(this.orientation),this.selectedRegion=i.a.data,$("#defaultPollutantAll").css({"background-color":"#2B7D3B"}),$("#sortAlphabeticallyEmissionRate").hide(),$(window).on("resize",function(){"home"==t.$route.name&&t.update()}),c.a.sortState&&(this.sortState=c.a.sortState,"ascending"==this.sortState?$("#sortAscendingEmissionRate").trigger("click"):"descending"==this.sortState?$("#sortDescendingEmissionRate").trigger("click"):"alphabetically"==this.sortState&&$("#sortAlphabeticallyEmissionRate").trigger("click"))},methods:{initialize:function(t,e,n){this.w=t,this.h=e,this.domElement=n,this.subregionData=r.a.data,this.nationalFeature=a.a.data},display:function(t){$(this.domElement).show();for(var e=0;eThis chart is sorted by "+e+" "+t+" emission rates.
":"alphabetically"==e?"This chart is sorted alphabetically A → Z by region.":void 0},handlePollutantButton:function(t){var e=t.target;"BUTTON"!==e.tagName&&(e=e.parentNode),$(e).css({"background-color":"#2B7D3B"}),$(e).siblings().css({"background-color":"#0071bc"}),this.selectedPollutantAll=$(e).val(),c.a.selectedPollutantAll=$(e).val(),this.update(),this.$children[0].clear&&(this.$children[0].clear(),this.$children[0].display(this.selectedPollutantAll,this.orientation)),this.pollutantText=$(e).html();var n=this.updateStatus(this.pollutantText,this.sortState);$("#nationalEmissionRateSortingStatus").html(n),$("#nationalFuelMixSortingStatus").html(n)},handleSortLink:function(t){var e=t.srcElement,n=e.id;if(this.setPollutantText(),"sortAlphabeticallyEmissionRate"==n){c.a.sortState="alphabetically";var r=this.updateStatus(this.pollutantText,c.a.sortState);$(e).hide(),$(e).siblings().show(),$("#nationalEmissionRateSortingStatus").html(r),$("#nationalFuelMixSortingStatus").html(r),$("#resetNationalFuelMix").css("visibility","hidden")}else if("sortAscendingEmissionRate"==n){c.a.sortState="ascending";r=this.updateStatus(this.pollutantText,c.a.sortState);$(e).hide(),$(e).siblings().show(),$("#nationalEmissionRateSortingStatus").html(r),$("#nationalFuelMixSortingStatus").html(r),$("#resetNationalFuelMix").css("visibility","visible")}else if("sortDescendingEmissionRate"==n){c.a.sortState="descending";r=this.updateStatus(this.pollutantText,c.a.sortState);$(e).hide(),$(e).siblings().show(),$("#nationalEmissionRateSortingStatus").html(r),$("#nationalFuelMixSortingStatus").html(r),$("#resetNationalFuelMix").css("visibility","visible")}this.update(),c.a.sortedFuel="",this.$parent.reset(),this.$parent.show(this.$parent.selectedRegion)}},watch:{selectedRegion:function(){this.clear(),this.sort(this.sortState,this.selectedPollutantAll),this.display(this.orientation),this.show(this.subregionData),this.showSelection(this.selectedPollutantAll)},orientation:function(t){c.a.data.emissionRatesOrientation=t,this.clear(),this.initialize($("#main-charts").width(),290,"#nationalEmissionRateGraph"),this.display(this.orientation)},currentMap:function(t){c.a.currentMap=t}}};e.a=d},function(t,e,n){"use strict";var r=n(3),a=n(32),i=n(6),o=n(1),s=n(8),l={data:function(){return{orientation:"",width:600,height:300,domElement:"#renewablesMap",projection:{},path:{},containerHeight:0,subregionData:[],selectedRenewable:"renewable"}},mounted:function(){this.orientation=o.a.data.emissionRatesOrientation,this.subregionData=i.a.data,this.createProjection(),this.display(this.selectedRenewable,this.$parent.orientation)},methods:{createProjection:function(){this.projection=d3.geo.albersUsa().translate([this.width/2,this.height/2]).scale([this.width+100]),this.path=d3.geo.path().projection(this.projection)},display:function(t,e){var n=d3.scale.ordinal().domain([10,20,30,40,50,60,70,80,90,100]).range(["#D73027","#F46D43","#FDAE61","#FEE08B","#FFFFBF","#D9EF8B","#A6D96A","#66BD63","#1A9850","#006837"]),i=d3.select(this.domElement).append("svg").attr("class","col size-4of5").attr("width",this.width).attr("height",this.height).attr("viewBox","0 0 "+this.width+" "+this.height).attr("preserveAspectRatio","xMidYMid meet").attr("fill","gainsboro"),o=this.width/this.height;$(window).on("resize",function(){var t=$("#main-charts").width();i.attr("width",t),i.attr("height",Math.round(t/o))}).trigger("resize"),i.selectAll("g").data(this.subregionData).enter().append("g").attr("class","renewablesMapTooltip").attr("title",function(e){return e.properties.fullName+" "+t+" generation: "+e.properties.fuelMixCategories[t]+"%"}).append("path").attr("class",function(t){return t.properties.hasOwnProperty("STATE")?"state":"renewablesmap name"+t.properties.name}).attr("d",this.path).style("stroke",function(t){return t.properties.hasOwnProperty("STATE")?"#a9a9a9":"#2B2B2B"}).style("stroke-width","1").style("fill",function(e){var r=e.properties.fuelMixCategories[t];if(r){var a=10*Math.ceil(r/10);return n(a)}return"rgb(213,222,217)"});var l=i.append("g");if(Object(s.a)(".renewablesMapTooltip"),"horizontal"==e){var c=d3.select(this.domElement).append("svg").attr("class","col size-1of5").attr("width",150).attr("height",this.height+107),u=c.selectAll(".renewables-legend").data(n.domain()).enter().append("g").attr("class","renewables-legend"),d=-20;u.append("rect").attr("x",0).attr("y",function(t,e){return e+(d+=25)}).attr("width",15).attr("height",15).style("fill",n);var p=-5;u.append("text").attr("x",25).attr("y",function(t,e){return e+(p+=25)}).style("fill","black").text(function(t,e){return n.domain()[e]-10+"-"+n.domain()[e]+"%"}),Object(a.a)(l,this.path,this.subregionData),Object(r.a)(c,30,this.height)}else{var f=d3.select(this.domElement).append("svg").attr("width",this.width+70).attr("height",40),h=f.selectAll(".renewables-legend").data(n.domain()).enter().append("g").attr("class","renewables-legend"),v=-40;h.append("rect").attr("y",0).attr("x",function(t,e){return e+(v+=50)}).attr("width",15).attr("height",15).style("fill",n);var m=-50;h.append("text").attr("y",40).attr("x",function(t,e){return e+(m+=50)}).style("fill","black").text(function(t,e){return n.domain()[e]-10+"-"+n.domain()[e]+"%"}),Object(a.a)(l,this.path,this.subregionData),Object(r.a)(f,30,this.height)}}}};e.a=l},function(t,e,n){"use strict";var r=n(3),a=n(32),i=n(6),o=n(1),s=n(8),l={data:function(){return{orientation:"",width:600,height:300,domElement:"",projection:{},path:{},containerHeight:0,subregionData:[]}},mounted:function(){this.orientation=o.a.data.emissionRatesOrientation,this.initialize(600,300,"#emissionRatesHeatMap"),this.createProjection(),this.display(this.$parent.selectedPollutantAll,this.orientation)},methods:{initialize:function(t,e,n){this.width=t,this.height=e,this.domElement=n,this.subregionData=i.a.data},createProjection:function(){this.projection=d3.geo.albersUsa().translate([this.width/2,this.height/2]).scale([this.width+100]),this.path=d3.geo.path().projection(this.projection)},clear:function(){d3.selectAll("#emissionRatesHeatMap svg").remove()},hide:function(){$(this.domElement).parent().hide()},show:function(){$(this.domElement).parent().show(),$(window).trigger("resize")},display:function(t,e){var n=d3.select(this.domElement).append("svg").attr("class","col size-4of5").attr("width",this.width).attr("height",this.height).attr("viewBox","0 0 "+this.width+" "+this.height).attr("preserveAspectRatio","xMidYMid meet").attr("fill","gainsboro"),i=this.width/this.height;$(window).on("resize",function(){var t=$("#main-charts").width();n.attr("width",t),n.attr("height",Math.round(t/i))}).trigger("resize");var o=d3.max(this.subregionData,function(e){return e.properties.emissionFactor[t].value}),l=d3.scale.linear().domain([0,o]).range(["#eeeeee",this.$parent.emRatesColors[t]]);"horizontal"==this.orientation?(this.containerHeight=400,this.svgGradient=d3.select(this.domElement).append("svg").attr("class","col size-1of5").attr("width",100).attr("height",this.containerHeight)):"vertical"==this.orientation&&(this.containerHeight=120,this.svgGradient=d3.select(this.domElement).append("svg").attr("width",400).attr("height",this.containerHeight));var c="",u=(this.svgGradient.append("text").attr("y",20).attr("x",20).append("tspan").text(function(){return"co2EmissionRate"==t?(c="carbon dioxide","CO"):"so2EmissionRate"==t?(c="sulfur dioxide","SO"):"noxEmissionRate"==t?(c="nitrogen oxides","NO"):void 0}).append("tspan").attr("baseline-shift","sub").text(function(){return"co2EmissionRate"==t?"2":"so2EmissionRate"==t?"2":"noxEmissionRate"==t?"x":void 0}),this.svgGradient.append("defs").append("linearGradient").attr("class","legend").attr("id","linear-gradient"));if("horizontal"==this.orientation){u.attr("x1","0%").attr("y1","100%").attr("x2","0%").attr("y2","0%"),u.append("stop").attr("offset","0%").attr("stop-color","#eeeeee"),u.append("stop").attr("offset","100%").attr("stop-color",this.$parent.emRatesColors[t]);var d=1*this.containerHeight/5;this.svgGradient.append("rect").attr("width",30).attr("height",.6*this.containerHeight).attr("transform","translate(20,"+d+")").attr("stroke","black").style("fill","url(#linear-gradient)"),this.svgGradient.append("text").attr("x",20).attr("y",50).text("(lbs/MWh)");var p=d3.scale.linear().domain(l.domain()).range([.6*this.containerHeight,0]),f=d3.svg.axis().scale(p).orient("right").tickFormat(function(e){return"co2EmissionRate"!==t?d3.format(".2n")(e):0==e?e:d3.format(",.2r")(e)});0==o&&svgGradient.attr("display","none"),this.svgGradient.attr("class","axis gradient").append("g").attr("transform","translate(50, "+d+")").call(f),d3.selectAll("#emissionRatesHeatMap .tick line").attr("x1","-30"),d3.selectAll("#emissionRatesHeatMap .tick line").attr("x2","0")}else if("vertical"==this.orientation){u.attr("x1","0%").attr("y1","0%").attr("x2","100%").attr("y2","0%"),u.append("stop").attr("offset","0%").attr("stop-color","#eeeeee"),u.append("stop").attr("offset","100%").attr("stop-color",this.$parent.emRatesColors[t]);d=1*this.containerHeight/5+20;this.svgGradient.append("rect").attr("width",370).attr("height",this.containerHeight/6).attr("transform","translate(20,"+d+")").attr("stroke","black").style("fill","url(#linear-gradient)"),this.svgGradient.append("text").attr("x",50).attr("y",20).text("(lbs/MWh)");p=d3.scale.linear().domain(l.domain()).range([0,370]),f=d3.svg.axis().scale(p).orient("bottom").tickFormat(function(e){return"co2EmissionRate"!==t?d3.format(".2n")(e):0==e?e:d3.format(",.2r")(e)});0==o&&svgGradient.attr("display","none"),this.svgGradient.attr("class","axis gradient").append("g").attr("transform","translate(20, "+(d+20)+")").call(f),d3.selectAll("#emissionRatesHeatMap .tick line").attr("y1","-20").attr("y2","5")}n.selectAll("g").data(this.subregionData).enter().append("g").attr("class","emissionRateMapTooltip").attr("title",function(e){return e.properties.fullName+" average "+c+" rate: "+e.properties.emissionFactor[t].display+" lbs/MWh"}).append("path").attr("class",function(t){return t.properties.hasOwnProperty("STATE")?"state":"heatmap name"+t.properties.name}).attr("d",this.path).style("stroke",function(t){return t.properties.hasOwnProperty("STATE")?"#a9a9a9":"#2B2B2B"}).style("stroke-width","1").style("fill",function(e){var n=e.properties.emissionFactor[t].value;return n?l(n):"rgb(213,222,217)"});var h=n.append("g");Object(a.a)(h,this.path,this.subregionData),"horizontal"==e?Object(r.a)(this.svgGradient,30,this.containerHeight-30):"vertical"==e&&Object(r.a)(this.svgGradient,30,this.containerHeight),Object(s.a)(".emissionRateMapTooltip")}}};e.a=l},function(t,e,n){"use strict";var r=n(9),a=n(6),i=n(7),o=n(8),s={data:function(){return{allData:[],nationalFeature:{},subregionData:[],w:425,h:255}},beforeCreate:function(){var t=this;$.ajax({url:r.a.SUBREGION_JSON,success:function(e){t.allData=e.features,t.nationalFeature=e.features.slice(52,53),t.subregionData=e.features.slice(53,e.features.length),a.a.update(t.subregionData),i.a.update(t.nationalFeature),t.$parent.$parent.$parent.subregionJSONLoaded=!0,t.displayMap("#subregionMap",t.allData)}})},methods:{displayMap:function(t,e){var n=this,r=d3.geo.albersUsa().translate([this.w/2,this.h/2]).scale([this.w+100]),a=d3.geo.path().projection(r),i=d3.select(t).append("svg").attr("width",this.w).attr("height",this.h).attr("viewBox",function(){return"0 0 "+n.w+" "+n.h}).attr("preserveAspectRatio","xMidYMid meet").attr("fill","gainsboro"),s=this.w/this.h;$(window).on("resize",function(){var t=$("#subregionMap").width();i.attr("width",t),i.attr("height",Math.round(t/s))}).trigger("resize"),i.selectAll("g").data(e).enter().append("g").attr("class","mapTooltip").attr("title",function(t){if(t.properties.name)return t.properties.name+" ("+t.properties.fullName+")"}).append("path").attr("class",function(t){return t.properties.hasOwnProperty("STATE")?"state":"map "+t.properties.name}).attr("d",a).style("stroke",function(t){return t.properties.hasOwnProperty("STATE")?"#a9a9a9":"#2B2B2B"}).style("stroke-width","1").on("click",function(t){$("#userLocation").val(""),$("#utilitySelectDiv").hide(),n.$root.$emit("subregionSelected",t)}),Object(o.a)(".mapTooltip")}}};e.a=s},function(t,e,n){"use strict";var r=n(2),a={data:function(){return{subregion:{},dataLoaded:!1}},mounted:function(){this.subregion=r.a.data,this.dataLoaded=!0},watch:{$route:function(t,e){t!==e&&(this.subregion=r.a.data)}}};e.a=a},function(t,e,n){"use strict";var r=n(15),a=n(0),i=Object(a.a)({},r.render,r.staticRenderFns,!1,null,null,null),o=n(5);o.install(n(4)),o.compatible&&(t.hot.accept(),t.hot.data?o.reload("4087686a",i.options):o.createRecord("4087686a",i.options),t.hot.accept(15,function(t){r=n(15),o.rerender("4087686a",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),i.options.__file="src/components/AppDescription.vue",e.a=i.exports},function(t,e,n){"use strict";var r=n(13),a=n(43),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("41df47ae",o.options):s.createRecord("41df47ae",o.options),t.hot.accept(13,function(t){r=n(13),s.rerender("41df47ae",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionCharts.vue",e.a=o.exports},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n.map:hover {\r\n fill-opacity: .7;\r\n fill: steelblue;\n}\n.map {\r\n fill-opacity: .5;\n}\r\n",""])},function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#selectionBox > .pane-content {\r\n padding: 0;\n}\n#zipFormDiv {\r\n color: white;\r\n position: relative;\r\n margin: 0 auto;\r\n width: 100%;\r\n background-position: 50%;\r\n background-repeat: no-repeat;\r\n height: 378px;\r\n text-align: center;\r\n background-image: url(https://www.epa.gov/sites/production/files/2018-12/power-profiler-sm-no-text.png);\n}\n#zipFormDiv h2 {\r\n padding-top: 1em;\n}\n#regionSelectionDiv {\r\n background-color: #FAFAFA;\r\n padding-top: 1em;\r\n text-align: center;\n}\n#subregionMapContainer {\r\n background-color: #FAFAFA;\n}\n#formContainer{\r\n padding-bottom: 0;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#intro {\r\n padding: 1.3529em 1em;\n}\r\n\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n.legendBottom, .legendTop {\r\n cursor: pointer;\n}\n.ui-tooltip{\r\n pointer-events: none;\n}\n#nationalFuelMix > h3 , #nationalEmissionRate > h3 {\r\n display: inline-block;\n}\n#nationalEmissionRate {\r\n margin-top: 20px;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#select-fuel-category, #fuelRadios, #resetNationalFuelMixDiv, #sortingDiv {\r\n text-align: center;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#result {\r\n display: none;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#printReport {\r\n width: 900px;\n}\n#kpis-and-map h3 {\r\n display: inline-block;\n}\n#kpis-print > p {\r\n display: inline-block;\r\n margin-left: 50px;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#printReportMain {\r\n width: 900px;\n}\n.page-break {\r\n display: block;\r\n page-break-after: always;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,'\ninput[type=number]::-webkit-inner-spin-button, \r\ninput[type=number]::-webkit-outer-spin-button { \r\n -webkit-appearance: none; \r\n margin: 0;\n}\n.subregionLabels, .selectedRegionValue, .nationalX text, .nationalBar text, .y.axis text, .ui-tooltip {\r\n font-size: 15px;\n}\n.axis line, .y.axis path, .nationalY > .domain, .nationalBarV > .domain {\r\n fill: none;\r\n stroke: #000;\r\n shape-rendering: crispEdges;\n}\n.x.axis path, #emissionRatesHeatMap > svg.axis.gradient > g > path {\r\n display: none;\n}\n#emissionRatesHeatMap > svg.axis > g > path {\r\n fill: none;\n}\n#kpis div, #kpis .pane-title,#mapSelect, .select-pollutant-label, #pollutantSelectAll, #pollutantSelectSub {\r\n text-align: center;\n}\n#app p {\r\n padding-bottom: 0.7em;\n}\n#app {\r\n padding-left: 1em;\n}\n.select-pollutant-label, #nationalEmissionRateSortingStatus, #nationalFuelMixSortingStatus{\r\n padding-bottom: 0 !important;\n}\n#sidebar {\r\n background-color: #FAFAFA;\r\n border: 1px solid black;\n}\n.modal-mask {\r\n position: fixed;\r\n z-index: 9998;\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n height: 100%;\r\n background-color: rgba(0, 0, 0, .5);\r\n display: table;\r\n transition: opacity .3s ease;\n}\n.modal-wrapper {\r\n display: table-cell;\r\n vertical-align: middle;\n}\n.modal-container {\r\n width: 70%;\r\n margin: 0px auto;\r\n padding: 20px 30px;\r\n background-color: #fff;\r\n border-radius: 2px;\r\n box-shadow: 0 2px 8px rgba(0, 0, 0, .33);\r\n transition: all .3s ease;\r\n font-family: Helvetica, Arial, sans-serif;\n}\n.modal-body {\r\n margin: 20px 0;\n}\n.modal-default-button {\r\n float: right;\n}\n.tooltip {\r\n\tdisplay:none;\r\n\tposition:absolute;\r\n\tborder:1px solid #D3D3D3;\r\n\tbackground-color:#fff;\r\n\tborder-radius:5px;\r\n\tpadding:8px;\r\n\tcolor:#161616;\r\n\tfont-size:12px Arial;\n}\r\n/* transition="modal" styles */\n.modal-enter {\r\n opacity: 0;\n}\n.modal-leave-active {\r\n opacity: 0;\n}\n.modal-enter .modal-container,\r\n.modal-leave-active .modal-container {\r\n -webkit-transform: scale(1.1);\r\n transform: scale(1.1);\n}\n#appDescription, #printReportMain, #printReport {\r\n display: none;\n}\n@media print {\n#app, #block-pane-official-website-header, .sitewide-alert, .ui-tooltip, footer, nav, .skip-links {\r\n display: none;\n}\nheader {\r\n padding: 0 0 0 0;\n}\n#appDescription, #printReportMain, #printReport {\r\n display: block;\n}\n}\r\n',""])},function(t,e,n){"use strict";var r=n(22),a=n(42),i=(n(100),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("7ba5bd90",o.options):s.createRecord("7ba5bd90",o.options),t.hot.accept(22,function(t){r=n(22),s.rerender("7ba5bd90",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/App.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(21),a=n(48),i=(n(94),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("3eca7188",o.options):s.createRecord("3eca7188",o.options),t.hot.accept(21,function(t){r=n(21),s.rerender("3eca7188",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SideBar.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(29),a=n(53),i=(n(93),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("97fa4630",o.options):s.createRecord("97fa4630",o.options),t.hot.accept(29,function(t){r=n(29),s.rerender("97fa4630",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionSelection.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(31),a=n(57),i=(n(89),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("0f7d0bb8",o.options):s.createRecord("0f7d0bb8",o.options),t.hot.accept(31,function(t){r=n(31),s.rerender("0f7d0bb8",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionMap.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(14),a=n(45),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("03f5295e",o.options):s.createRecord("03f5295e",o.options),t.hot.accept(14,function(t){r=n(14),s.rerender("03f5295e",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/modals/MoreInfoModal.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(16),a=n(49),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("12dcf111",o.options):s.createRecord("12dcf111",o.options),t.hot.accept(16,function(t){r=n(16),s.rerender("12dcf111",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/modals/ResourcesModal.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(18),a=n(46),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("2c108a16",o.options):s.createRecord("2c108a16",o.options),t.hot.accept(18,function(t){r=n(18),s.rerender("2c108a16",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/modals/SubregionsModal.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(19),a=n(47),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("2be4cad8",o.options):s.createRecord("2be4cad8",o.options),t.hot.accept(19,function(t){r=n(19),s.rerender("2be4cad8",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/modals/MegawattModal.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(20),a=n(44),i=(n(95),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("44adda9e",o.options):s.createRecord("44adda9e",o.options),t.hot.accept(20,function(t){r=n(20),s.rerender("44adda9e",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/MainCharts.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(28),a=n(54),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("79c68597",o.options):s.createRecord("79c68597",o.options),t.hot.accept(28,function(t){r=n(28),s.rerender("79c68597",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/EmissionRateChart.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(30),a=n(56),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("1a110f56",o.options):s.createRecord("1a110f56",o.options),t.hot.accept(30,function(t){r=n(30),s.rerender("1a110f56",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/EmissionRateMap.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(12),a=n(55),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("4d7ad460",o.options):s.createRecord("4d7ad460",o.options),t.hot.accept(12,function(t){r=n(12),s.rerender("4d7ad460",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/RenewablesMap.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(27),a=n(52),i=(n(96),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("740cdc0c",o.options):s.createRecord("740cdc0c",o.options),t.hot.accept(27,function(t){r=n(27),s.rerender("740cdc0c",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionFuelMixChart.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(26),a=n(51),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("dfeefa1a",o.options):s.createRecord("dfeefa1a",o.options),t.hot.accept(26,function(t){r=n(26),s.rerender("dfeefa1a",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionEmissionRateChart.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(25),a=n(50),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("a4edba24",o.options):s.createRecord("a4edba24",o.options),t.hot.accept(25,function(t){r=n(25),s.rerender("a4edba24",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/EmissionsCalculator.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(23),a=(n(97),n(0)),i=Object(a.a)({},r.render,r.staticRenderFns,!1,null,null,null),o=n(5);o.install(n(4)),o.compatible&&(t.hot.accept(),t.hot.data?o.reload("69e40894",i.options):o.createRecord("69e40894",i.options),t.hot.accept(23,function(t){r=n(23),o.rerender("69e40894",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),i.options.__file="src/components/CalculatorResults.vue",e.a=i.exports},function(t,e,n){"use strict";var r=n(24),a=n(58),i=(n(98),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("5aa5b3c1",o.options):s.createRecord("5aa5b3c1",o.options),t.hot.accept(24,function(t){r=n(24),s.rerender("5aa5b3c1",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/PrintReport.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(17),a=(n(99),n(0)),i=Object(a.a)({},r.render,r.staticRenderFns,!1,null,null,null),o=n(5);o.install(n(4)),o.compatible&&(t.hot.accept(),t.hot.data?o.reload("32e028c8",i.options):o.createRecord("32e028c8",i.options),t.hot.accept(17,function(t){r=n(17),o.rerender("32e028c8",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),i.options.__file="src/components/MainPrintReport.vue",e.a=i.exports},function(t,e,n){"use strict";var r=n(33);n.n(r).a},function(t,e,n){(function(t){var r=void 0!==t&&t||"undefined"!=typeof self&&self||window,a=Function.prototype.apply;function i(t,e){this._id=t,this._clearFn=e}e.setTimeout=function(){return new i(a.call(setTimeout,r,arguments),clearTimeout)},e.setInterval=function(){return new i(a.call(setInterval,r,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},i.prototype.unref=i.prototype.ref=function(){},i.prototype.close=function(){this._clearFn.call(r,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout(function(){t._onTimeout&&t._onTimeout()},e))},n(91),e.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==t&&t.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==t&&t.clearImmediate||this&&this.clearImmediate}).call(this,n(62))},function(t,e,n){(function(t,e){!function(t,n){"use strict";if(!t.setImmediate){var r,a,i,o,s,l=1,c={},u=!1,d=t.document,p=Object.getPrototypeOf&&Object.getPrototypeOf(t);p=p&&p.setTimeout?p:t,"[object process]"==={}.toString.call(t.process)?r=function(t){e.nextTick(function(){h(t)})}:!function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=n,e}}()?t.MessageChannel?((i=new MessageChannel).port1.onmessage=function(t){h(t.data)},r=function(t){i.port2.postMessage(t)}):d&&"onreadystatechange"in d.createElement("script")?(a=d.documentElement,r=function(t){var e=d.createElement("script");e.onreadystatechange=function(){h(t),e.onreadystatechange=null,a.removeChild(e),e=null},a.appendChild(e)}):r=function(t){setTimeout(h,0,t)}:(o="setImmediate$"+Math.random()+"$",s=function(e){e.source===t&&"string"==typeof e.data&&0===e.data.indexOf(o)&&h(+e.data.slice(o.length))},t.addEventListener?t.addEventListener("message",s,!1):t.attachEvent("onmessage",s),r=function(e){t.postMessage(o+e,"*")}),p.setImmediate=function(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),n=0;n1)for(var n=1;n-1}function o(t,e){for(var n in e)t[n]=e[n];return t}var s={name:"RouterView",functional:!0,props:{name:{type:String,default:"default"}},render:function(t,e){var n=e.props,r=e.children,a=e.parent,i=e.data;i.routerView=!0;for(var s=a.$createElement,l=n.name,c=a.$route,u=a._routerViewCache||(a._routerViewCache={}),d=0,p=!1;a&&a._routerRoot!==a;){var f=a.$vnode&&a.$vnode.data;f&&(f.routerView&&d++,f.keepAlive&&a._inactive&&(p=!0)),a=a.$parent}if(i.routerViewDepth=d,p)return s(u[l],i,r);var h=c.matched[d];if(!h)return u[l]=null,s();var v=u[l]=h.components[l];i.registerRouteInstance=function(t,e){var n=h.instances[l];(e&&n!==t||!e&&n===t)&&(h.instances[l]=e)},(i.hook||(i.hook={})).prepatch=function(t,e){h.instances[l]=e.componentInstance},i.hook.init=function(t){t.data.keepAlive&&t.componentInstance&&t.componentInstance!==h.instances[l]&&(h.instances[l]=t.componentInstance)};var m=i.props=function(t,e){switch(typeof e){case"undefined":return;case"object":return e;case"function":return e(t);case"boolean":return e?t.params:void 0;default:0}}(c,h.props&&h.props[l]);if(m){m=i.props=o({},m);var g=i.attrs=i.attrs||{};for(var y in m)v.props&&y in v.props||(g[y]=m[y],delete m[y])}return s(v,i,r)}};var l=/[!'()*]/g,c=function(t){return"%"+t.charCodeAt(0).toString(16)},u=/%2C/g,d=function(t){return encodeURIComponent(t).replace(l,c).replace(u,",")},p=decodeURIComponent;function f(t){var e={};return(t=t.trim().replace(/^(\?|#|&)/,""))?(t.split("&").forEach(function(t){var n=t.replace(/\+/g," ").split("="),r=p(n.shift()),a=n.length>0?p(n.join("=")):null;void 0===e[r]?e[r]=a:Array.isArray(e[r])?e[r].push(a):e[r]=[e[r],a]}),e):e}function h(t){var e=t?Object.keys(t).map(function(e){var n=t[e];if(void 0===n)return"";if(null===n)return d(e);if(Array.isArray(n)){var r=[];return n.forEach(function(t){void 0!==t&&(null===t?r.push(d(e)):r.push(d(e)+"="+d(t)))}),r.join("&")}return d(e)+"="+d(n)}).filter(function(t){return t.length>0}).join("&"):null;return e?"?"+e:""}var v=/\/?$/;function m(t,e,n,r){var a=r&&r.options.stringifyQuery,i=e.query||{};try{i=g(i)}catch(t){}var o={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:i,params:e.params||{},fullPath:_(e,a),matched:t?b(t):[]};return n&&(o.redirectedFrom=_(n,a)),Object.freeze(o)}function g(t){if(Array.isArray(t))return t.map(g);if(t&&"object"==typeof t){var e={};for(var n in t)e[n]=g(t[n]);return e}return t}var y=m(null,{path:"/"});function b(t){for(var e=[];t;)e.unshift(t),t=t.parent;return e}function _(t,e){var n=t.path,r=t.query;void 0===r&&(r={});var a=t.hash;return void 0===a&&(a=""),(n||"/")+(e||h)(r)+a}function x(t,e){return e===y?t===e:!!e&&(t.path&&e.path?t.path.replace(v,"")===e.path.replace(v,"")&&t.hash===e.hash&&w(t.query,e.query):!(!t.name||!e.name)&&(t.name===e.name&&t.hash===e.hash&&w(t.query,e.query)&&w(t.params,e.params)))}function w(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t),r=Object.keys(e);return n.length===r.length&&n.every(function(n){var r=t[n],a=e[n];return"object"==typeof r&&"object"==typeof a?w(r,a):String(r)===String(a)})}var R,A=[String,Object],E=[String,Array],C={name:"RouterLink",props:{to:{type:A,required:!0},tag:{type:String,default:"a"},exact:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,event:{type:E,default:"click"}},render:function(t){var e=this,n=this.$router,r=this.$route,a=n.resolve(this.to,r,this.append),i=a.location,s=a.route,l=a.href,c={},u=n.options.linkActiveClass,d=n.options.linkExactActiveClass,p=null==u?"router-link-active":u,f=null==d?"router-link-exact-active":d,h=null==this.activeClass?p:this.activeClass,g=null==this.exactActiveClass?f:this.exactActiveClass,y=i.path?m(null,i,null,n):s;c[g]=x(r,y),c[h]=this.exact?c[g]:function(t,e){return 0===t.path.replace(v,"/").indexOf(e.path.replace(v,"/"))&&(!e.hash||t.hash===e.hash)&&function(t,e){for(var n in e)if(!(n in t))return!1;return!0}(t.query,e.query)}(r,y);var b=function(t){S(t)&&(e.replace?n.replace(i):n.push(i))},_={click:S};Array.isArray(this.event)?this.event.forEach(function(t){_[t]=b}):_[this.event]=b;var w={class:c};if("a"===this.tag)w.on=_,w.attrs={href:l};else{var R=function t(e){if(e)for(var n,r=0;r=0&&(e=t.slice(r),t=t.slice(0,r));var a=t.indexOf("?");return a>=0&&(n=t.slice(a+1),t=t.slice(0,a)),{path:t,query:n,hash:e}}(a.path||""),c=e&&e.path||"/",u=l.path?F(l.path,c,n||a.append):c,d=function(t,e,n){void 0===e&&(e={});var r,a=n||f;try{r=a(t||"")}catch(t){r={}}for(var i in e)r[i]=e[i];return r}(l.query,a.query,r&&r.options.parseQuery),p=a.hash||l.hash;return p&&"#"!==p.charAt(0)&&(p="#"+p),{_normalized:!0,path:u,query:d,hash:p}}function Q(t,e){var n=X(t),r=n.pathList,a=n.pathMap,i=n.nameMap;function o(t,n,o){var s=J(t,n,!1,e),c=s.name;if(c){var u=i[c];if(!u)return l(null,s);var d=u.regex.keys.filter(function(t){return!t.optional}).map(function(t){return t.name});if("object"!=typeof s.params&&(s.params={}),n&&"object"==typeof n.params)for(var p in n.params)!(p in s.params)&&d.indexOf(p)>-1&&(s.params[p]=n.params[p]);if(u)return s.path=K(u.path,s.params),l(u,s,o)}else if(s.path){s.params={};for(var f=0;f=t.length?n():t[a]?e(t[a],function(){r(a+1)}):r(a+1)};r(0)}function yt(t){return function(e,n,r){var a=!1,o=0,s=null;bt(t,function(t,e,n,l){if("function"==typeof t&&void 0===t.cid){a=!0,o++;var c,u=wt(function(e){var a;((a=e).__esModule||xt&&"Module"===a[Symbol.toStringTag])&&(e=e.default),t.resolved="function"==typeof e?e:R.extend(e),n.components[l]=e,--o<=0&&r()}),d=wt(function(t){var e="Failed to resolve async component "+l+": "+t;s||(s=i(t)?t:new Error(e),r(s))});try{c=t(u,d)}catch(t){d(t)}if(c)if("function"==typeof c.then)c.then(u,d);else{var p=c.component;p&&"function"==typeof p.then&&p.then(u,d)}}}),a||r()}}function bt(t,e){return _t(t.map(function(t){return Object.keys(t.components).map(function(n){return e(t.components[n],t.instances[n],t,n)})}))}function _t(t){return Array.prototype.concat.apply([],t)}var xt="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;function wt(t){var e=!1;return function(){for(var n=[],r=arguments.length;r--;)n[r]=arguments[r];if(!e)return e=!0,t.apply(this,n)}}var Rt=function(t,e){this.router=t,this.base=function(t){if(!t)if(k){var e=document.querySelector("base");t=(t=e&&e.getAttribute("href")||"/").replace(/^https?:\/\/[^\/]+/,"")}else t="/";"/"!==t.charAt(0)&&(t="/"+t);return t.replace(/\/$/,"")}(e),this.current=y,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[]};function At(t,e,n,r){var a=bt(t,function(t,r,a,i){var o=function(t,e){"function"!=typeof t&&(t=R.extend(t));return t.options[e]}(t,e);if(o)return Array.isArray(o)?o.map(function(t){return n(t,r,a,i)}):n(o,r,a,i)});return _t(r?a.reverse():a)}function Et(t,e){if(e)return function(){return t.apply(e,arguments)}}Rt.prototype.listen=function(t){this.cb=t},Rt.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},Rt.prototype.onError=function(t){this.errorCbs.push(t)},Rt.prototype.transitionTo=function(t,e,n){var r=this,a=this.router.match(t,this.current);this.confirmTransition(a,function(){r.updateRoute(a),e&&e(a),r.ensureURL(),r.ready||(r.ready=!0,r.readyCbs.forEach(function(t){t(a)}))},function(t){n&&n(t),t&&!r.ready&&(r.ready=!0,r.readyErrorCbs.forEach(function(e){e(t)}))})},Rt.prototype.confirmTransition=function(t,e,n){var r=this,a=this.current,o=function(t){i(t)&&(r.errorCbs.length?r.errorCbs.forEach(function(e){e(t)}):console.error(t)),n&&n(t)};if(x(t,a)&&t.matched.length===a.matched.length)return this.ensureURL(),o();var s=function(t,e){var n,r=Math.max(t.length,e.length);for(n=0;n-1?decodeURI(t.slice(0,r))+t.slice(r):decodeURI(t)}else n>-1&&(t=decodeURI(t.slice(0,n))+t.slice(n));return t}function Ot(t){var e=window.location.href,n=e.indexOf("#");return(n>=0?e.slice(0,n):e)+"#"+t}function Mt(t){ut?vt(Ot(t)):window.location.hash=t}function Dt(t){ut?mt(Ot(t)):window.location.replace(Ot(t))}var Tt=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var r=this;this.transitionTo(t,function(t){r.stack=r.stack.slice(0,r.index+1).concat(t),r.index++,e&&e(t)},n)},e.prototype.replace=function(t,e,n){var r=this;this.transitionTo(t,function(t){r.stack=r.stack.slice(0,r.index).concat(t),e&&e(t)},n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var r=this.stack[n];this.confirmTransition(r,function(){e.index=n,e.updateRoute(r)})}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(Rt),It=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=Q(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!ut&&!1!==t.fallback,this.fallback&&(e="hash"),k||(e="abstract"),this.mode=e,e){case"history":this.history=new Ct(this,t.base);break;case"hash":this.history=new St(this,t.base,this.fallback);break;case"abstract":this.history=new Tt(this,t.base);break;default:0}},Nt={currentRoute:{configurable:!0}};function jt(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}It.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},Nt.currentRoute.get=function(){return this.history&&this.history.current},It.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null)}),!this.app){this.app=t;var n=this.history;if(n instanceof Ct)n.transitionTo(n.getCurrentLocation());else if(n instanceof St){var r=function(){n.setupListeners()};n.transitionTo(n.getCurrentLocation(),r,r)}n.listen(function(t){e.apps.forEach(function(e){e._route=t})})}},It.prototype.beforeEach=function(t){return jt(this.beforeHooks,t)},It.prototype.beforeResolve=function(t){return jt(this.resolveHooks,t)},It.prototype.afterEach=function(t){return jt(this.afterHooks,t)},It.prototype.onReady=function(t,e){this.history.onReady(t,e)},It.prototype.onError=function(t){this.history.onError(t)},It.prototype.push=function(t,e,n){this.history.push(t,e,n)},It.prototype.replace=function(t,e,n){this.history.replace(t,e,n)},It.prototype.go=function(t){this.history.go(t)},It.prototype.back=function(){this.go(-1)},It.prototype.forward=function(){this.go(1)},It.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map(function(t){return Object.keys(t.components).map(function(e){return t.components[e]})})):[]},It.prototype.resolve=function(t,e,n){var r=J(t,e=e||this.history.current,n,this),a=this.match(r,e),i=a.redirectedFrom||a.fullPath;return{location:r,route:a,href:function(t,e,n){var r="hash"===n?"#"+e:e;return t?O(t+"/"+r):r}(this.history.base,i,this.mode),normalizedTo:r,resolved:a}},It.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==y&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(It.prototype,Nt),It.install=function t(e){if(!t.installed||R!==e){t.installed=!0,R=e;var n=function(t){return void 0!==t},r=function(t,e){var r=t.$options._parentVnode;n(r)&&n(r=r.data)&&n(r=r.registerRouteInstance)&&r(t,e)};e.mixin({beforeCreate:function(){n(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),e.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,r(this,this)},destroyed:function(){r(this)}}),Object.defineProperty(e.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(e.prototype,"$route",{get:function(){return this._routerRoot._route}}),e.component("RouterView",s),e.component("RouterLink",C);var a=e.config.optionMergeStrategies;a.beforeRouteEnter=a.beforeRouteLeave=a.beforeRouteUpdate=a.created}},It.version="3.0.6",k&&window.Vue&&window.Vue.use(It);var Pt=It,Lt=n(60);r.default.use(Pt);var Bt=new Pt({routes:[{path:"/",name:"home"},{path:"/:subregion",name:"subregion",component:Lt.a}]}),Ht=n(2),Ut=n(9);new r.default({el:"#app",render:function(t){return t(a.a)},router:Bt,beforeCreate:function(){Ut.a.SUBREGION_JSON="/sites/production/files/2019-06/subregion.json",Ut.a.ZIP_UTILITY="/sites/production/files/2018-12/zip.csv",Ut.a.EGRID_LOGO="/sites/production/files/2018-12/egrid-text-logo.png"}}).$on("subregionSelected",function(t){Ht.a.update(t),this.$children[0].$children[4].$children[0].selectedRegion=Ht.a.data,this.$children[0].$children[4].selectedRegion=Ht.a.data,$(".map").css({fill:""}),$("."+t.properties.name).css({fill:"steelblue"}),$("#regionSelectionDropdown").val(t.properties.name),Bt.push(t.properties.name)}),"function"==typeof ga&&Bt.afterEach(function(t){ga("EPA.set","page",location.pathname+"#"+t.fullPath),ga("EPA.send","pageview")})}]); \ No newline at end of file diff --git a/dist/stag/bundle.js b/dist/stag/bundle.js deleted file mode 100644 index 09fa536..0000000 --- a/dist/stag/bundle.js +++ /dev/null @@ -1,7 +0,0 @@ -!function(t){var e=window.webpackHotUpdate;window.webpackHotUpdate=function(t,n){!function(t,e){if(!x[t]||!_[t])return;for(var n in _[t]=!1,e)Object.prototype.hasOwnProperty.call(e,n)&&(v[n]=e[n]);0==--g&&0===y&&E()}(t,n),e&&e(t,n)};var n,r=!0,a="b2beced6aa8896fd27a2",i=1e4,o={},s=[],l=[];function c(t){var e=$[t];if(!e)return S;var r=function(r){return e.hot.active?($[r]?-1===$[r].parents.indexOf(t)&&$[r].parents.push(t):(s=[t],n=r),-1===e.children.indexOf(r)&&e.children.push(r)):(console.warn("[HMR] unexpected require("+r+") from disposed module "+t),s=[]),S(r)},a=function(t){return{configurable:!0,enumerable:!0,get:function(){return S[t]},set:function(e){S[t]=e}}};for(var i in S)Object.prototype.hasOwnProperty.call(S,i)&&"e"!==i&&"t"!==i&&Object.defineProperty(r,i,a(i));return r.e=function(t){return"ready"===p&&f("prepare"),y++,S.e(t).then(e,function(t){throw e(),t});function e(){y--,"prepare"===p&&(b[t]||A(t),0===y&&0===g&&E())}},r.t=function(t,e){return 1&e&&(t=r(t)),S.t(t,-2&e)},r}function u(t){var e={_acceptedDependencies:{},_declinedDependencies:{},_selfAccepted:!1,_selfDeclined:!1,_disposeHandlers:[],_main:n!==t,active:!0,accept:function(t,n){if(void 0===t)e._selfAccepted=!0;else if("function"==typeof t)e._selfAccepted=t;else if("object"==typeof t)for(var r=0;r=0&&e._disposeHandlers.splice(n,1)},check:R,apply:C,status:function(t){if(!t)return p;d.push(t)},addStatusHandler:function(t){d.push(t)},removeStatusHandler:function(t){var e=d.indexOf(t);e>=0&&d.splice(e,1)},data:o[t]};return n=void 0,e}var d=[],p="idle";function f(t){p=t;for(var e=0;e0;){var a=r.pop(),i=a.id,o=a.chain;if((l=$[i])&&!l.hot._selfAccepted){if(l.hot._selfDeclined)return{type:"self-declined",chain:o,moduleId:i};if(l.hot._main)return{type:"unaccepted",chain:o,moduleId:i};for(var s=0;s ")),R.type){case"self-declined":e.onDeclined&&e.onDeclined(R),e.ignoreDeclined||(A=new Error("Aborted because of self decline: "+R.moduleId+k));break;case"declined":e.onDeclined&&e.onDeclined(R),e.ignoreDeclined||(A=new Error("Aborted because of declined dependency: "+R.moduleId+" in "+R.parentId+k));break;case"unaccepted":e.onUnaccepted&&e.onUnaccepted(R),e.ignoreUnaccepted||(A=new Error("Aborted because "+c+" is not accepted"+k));break;case"accepted":e.onAccepted&&e.onAccepted(R),E=!0;break;case"disposed":e.onDisposed&&e.onDisposed(R),C=!0;break;default:throw new Error("Unexception type "+R.type)}if(A)return f("abort"),Promise.reject(A);if(E)for(c in y[c]=v[c],d(g,R.outdatedModules),R.outdatedDependencies)Object.prototype.hasOwnProperty.call(R.outdatedDependencies,c)&&(h[c]||(h[c]=[]),d(h[c],R.outdatedDependencies[c]));C&&(d(g,[R.moduleId]),y[c]=b)}var F,O=[];for(r=0;r0;)if(c=T.pop(),l=$[c]){var I={},N=l.hot._disposeHandlers;for(i=0;i=0&&j.parents.splice(F,1))}}for(c in h)if(Object.prototype.hasOwnProperty.call(h,c)&&(l=$[c]))for(D=h[c],i=0;i=0&&l.children.splice(F,1);for(c in f("apply"),a=m,y)Object.prototype.hasOwnProperty.call(y,c)&&(t[c]=y[c]);var P=null;for(c in h)if(Object.prototype.hasOwnProperty.call(h,c)&&(l=$[c])){D=h[c];var L=[];for(r=0;r=0&&Math.floor(e)===e&&isFinite(t)}function f(t){return i(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function h(t){return null==t?"":Array.isArray(t)||u(t)&&t.toString===c?JSON.stringify(t,null,2):String(t)}function v(t){var e=parseFloat(t);return isNaN(e)?t:e}function m(t,e){for(var n=Object.create(null),r=t.split(","),a=0;a-1)return t.splice(n,1)}}var b=Object.prototype.hasOwnProperty;function _(t,e){return b.call(t,e)}function x(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}var w=/-(\w)/g,R=x(function(t){return t.replace(w,function(t,e){return e?e.toUpperCase():""})}),A=x(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),E=/\B([A-Z])/g,C=x(function(t){return t.replace(E,"-$1").toLowerCase()});var $=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n};function S(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function k(t,e){for(var n in e)t[n]=e[n];return t}function F(t){for(var e={},n=0;n0,J=K&&K.indexOf("edge/")>0,Q=(K&&K.indexOf("android"),K&&/iphone|ipad|ipod|ios/.test(K)||"ios"===Y),tt=(K&&/chrome\/\d+/.test(K),K&&/phantomjs/.test(K),K&&K.match(/firefox\/(\d+)/)),et={}.watch,nt=!1;if(q)try{var rt={};Object.defineProperty(rt,"passive",{get:function(){nt=!0}}),window.addEventListener("test-passive",null,rt)}catch(t){}var at=function(){return void 0===z&&(z=!q&&!V&&void 0!==t&&(t.process&&"server"===t.process.env.VUE_ENV)),z},it=q&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ot(t){return"function"==typeof t&&/native code/.test(t.toString())}var st,lt="undefined"!=typeof Symbol&&ot(Symbol)&&"undefined"!=typeof Reflect&&ot(Reflect.ownKeys);st="undefined"!=typeof Set&&ot(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var ct=O,ut=0,dt=function(){this.id=ut++,this.subs=[]};dt.prototype.addSub=function(t){this.subs.push(t)},dt.prototype.removeSub=function(t){y(this.subs,t)},dt.prototype.depend=function(){dt.target&&dt.target.addDep(this)},dt.prototype.notify=function(){var t=this.subs.slice();for(var e=0,n=t.length;e-1)if(i&&!_(a,"default"))o=!1;else if(""===o||o===C(t)){var l=Ht(String,a.type);(l<0||s0&&(ue((c=t(c,(n||"")+"_"+l))[0])&&ue(d)&&(r[u]=yt(d.text+c[0].text),c.shift()),r.push.apply(r,c)):s(c)?ue(d)?r[u]=yt(d.text+c):""!==c&&r.push(yt(c)):ue(c)&&ue(d)?r[u]=yt(d.text+c.text):(o(e._isVList)&&i(c.tag)&&a(c.key)&&i(n)&&(c.key="__vlist"+n+"_"+l+"__"),r.push(c)));return r}(t):void 0}function ue(t){return i(t)&&i(t.text)&&!1===t.isComment}function de(t,e){if(t){for(var n=Object.create(null),r=lt?Reflect.ownKeys(t):Object.keys(t),a=0;a0,o=t?!!t.$stable:!i,s=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(o&&n&&n!==r&&s===n.$key&&!i&&!n.$hasNormal)return n;for(var l in a={},t)t[l]&&"$"!==l[0]&&(a[l]=ve(e,l,t[l]))}else a={};for(var c in e)c in a||(a[c]=me(e,c));return t&&Object.isExtensible(t)&&(t._normalized=a),U(a,"$stable",o),U(a,"$key",s),U(a,"$hasNormal",i),a}function ve(t,e,n){var r=function(){var t=arguments.length?n.apply(null,arguments):n({});return(t=t&&"object"==typeof t&&!Array.isArray(t)?[t]:ce(t))&&(0===t.length||1===t.length&&t[0].isComment)?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:r,enumerable:!0,configurable:!0}),r}function me(t,e){return function(){return t[e]}}function ge(t,e){var n,r,a,o,s;if(Array.isArray(t)||"string"==typeof t)for(n=new Array(t.length),r=0,a=t.length;rdocument.createEvent("Event").timeStamp&&(un=function(){return dn.now()})}function pn(){var t,e;for(cn=un(),sn=!0,nn.sort(function(t,e){return t.id-e.id}),ln=0;lnln&&nn[n].id>t.id;)n--;nn.splice(n+1,0,t)}else nn.push(t);on||(on=!0,ee(pn))}}(this)},hn.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||l(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){Ut(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},hn.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},hn.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},hn.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||y(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var vn={enumerable:!0,configurable:!0,get:O,set:O};function mn(t,e,n){vn.get=function(){return this[e][n]},vn.set=function(t){this[e][n]=t},Object.defineProperty(t,n,vn)}function gn(t){t._watchers=[];var e=t.$options;e.props&&function(t,e){var n=t.$options.propsData||{},r=t._props={},a=t.$options._propKeys=[];t.$parent&&At(!1);var i=function(i){a.push(i);var o=Pt(i,e,n,t);$t(r,i,o),i in t||mn(t,"_props",i)};for(var o in e)i(o);At(!0)}(t,e.props),e.methods&&function(t,e){t.$options.props;for(var n in e)t[n]="function"!=typeof e[n]?O:$(e[n],t)}(t,e.methods),e.data?function(t){var e=t.$options.data;u(e=t._data="function"==typeof e?function(t,e){ft();try{return t.call(e,e)}catch(t){return Ut(t,e,"data()"),{}}finally{ht()}}(e,t):e||{})||(e={});var n=Object.keys(e),r=t.$options.props,a=(t.$options.methods,n.length);for(;a--;){var i=n[a];0,r&&_(r,i)||(o=void 0,36!==(o=(i+"").charCodeAt(0))&&95!==o&&mn(t,"_data",i))}var o;Ct(e,!0)}(t):Ct(t._data={},!0),e.computed&&function(t,e){var n=t._computedWatchers=Object.create(null),r=at();for(var a in e){var i=e[a],o="function"==typeof i?i:i.get;0,r||(n[a]=new hn(t,o||O,O,yn)),a in t||bn(t,a,i)}}(t,e.computed),e.watch&&e.watch!==et&&function(t,e){for(var n in e){var r=e[n];if(Array.isArray(r))for(var a=0;a-1:"string"==typeof t?t.split(",").indexOf(e)>-1:!!d(t)&&t.test(e)}function kn(t,e){var n=t.cache,r=t.keys,a=t._vnode;for(var i in n){var o=n[i];if(o){var s=$n(o.componentOptions);s&&!e(s)&&Fn(n,i,r,a)}}}function Fn(t,e,n,r){var a=t[e];!a||r&&a.tag===r.tag||a.componentInstance.$destroy(),t[e]=null,y(n,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=Rn++,e._isVue=!0,t&&t._isComponent?function(t,e){var n=t.$options=Object.create(t.constructor.options),r=e._parentVnode;n.parent=e.parent,n._parentVnode=r;var a=r.componentOptions;n.propsData=a.propsData,n._parentListeners=a.listeners,n._renderChildren=a.children,n._componentTag=a.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=Nt(An(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&Xe(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,n=t.$vnode=e._parentVnode,a=n&&n.context;t.$slots=pe(e._renderChildren,a),t.$scopedSlots=r,t._c=function(e,n,r,a){return He(t,e,n,r,a,!1)},t.$createElement=function(e,n,r,a){return He(t,e,n,r,a,!0)};var i=n&&n.data;$t(t,"$attrs",i&&i.attrs||r,null,!0),$t(t,"$listeners",e._parentListeners||r,null,!0)}(e),en(e,"beforeCreate"),function(t){var e=de(t.$options.inject,t);e&&(At(!1),Object.keys(e).forEach(function(n){$t(t,n,e[n])}),At(!0))}(e),gn(e),function(t){var e=t.$options.provide;e&&(t._provided="function"==typeof e?e.call(t):e)}(e),en(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}(En),function(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=St,t.prototype.$delete=kt,t.prototype.$watch=function(t,e,n){if(u(e))return wn(this,t,e,n);(n=n||{}).user=!0;var r=new hn(this,t,e,n);if(n.immediate)try{e.call(this,r.value)}catch(t){Ut(t,this,'callback for immediate watcher "'+r.expression+'"')}return function(){r.teardown()}}}(En),function(t){var e=/^hook:/;t.prototype.$on=function(t,n){var r=this;if(Array.isArray(t))for(var a=0,i=t.length;a1?S(e):e;for(var n=S(arguments,1),r='event handler for "'+t+'"',a=0,i=e.length;aparseInt(this.max)&&Fn(o,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={get:function(){return B}};Object.defineProperty(t,"config",e),t.util={warn:ct,extend:k,mergeOptions:Nt,defineReactive:$t},t.set=St,t.delete=kt,t.nextTick=ee,t.observable=function(t){return Ct(t),t},t.options=Object.create(null),P.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,k(t.options.components,Mn),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=S(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=Nt(this.options,t),this}}(t),Cn(t),function(t){P.forEach(function(e){t[e]=function(t,n){return n?("component"===e&&u(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}})}(t)}(En),Object.defineProperty(En.prototype,"$isServer",{get:at}),Object.defineProperty(En.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(En,"FunctionalRenderContext",{value:Me}),En.version="2.6.10";var Dn=m("style,class"),Tn=m("input,textarea,option,select,progress"),In=m("contenteditable,draggable,spellcheck"),Nn=m("events,caret,typing,plaintext-only"),jn=function(t,e){return Un(e)||"false"===e?"false":"contenteditable"===t&&Nn(e)?e:"true"},Pn=m("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Ln="http://www.w3.org/1999/xlink",Bn=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Hn=function(t){return Bn(t)?t.slice(6,t.length):""},Un=function(t){return null==t||!1===t};function Gn(t){for(var e=t.data,n=t,r=t;i(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(e=zn(r.data,e));for(;i(n=n.parent);)n&&n.data&&(e=zn(e,n.data));return function(t,e){if(i(t)||i(e))return Wn(t,qn(e));return""}(e.staticClass,e.class)}function zn(t,e){return{staticClass:Wn(t.staticClass,e.staticClass),class:i(t.class)?[t.class,e.class]:e.class}}function Wn(t,e){return t?e?t+" "+e:t:e||""}function qn(t){return Array.isArray(t)?function(t){for(var e,n="",r=0,a=t.length;r-1?vr(t,e,n):Pn(e)?Un(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):In(e)?t.setAttribute(e,jn(e,n)):Bn(e)?Un(n)?t.removeAttributeNS(Ln,Hn(e)):t.setAttributeNS(Ln,e,n):vr(t,e,n)}function vr(t,e,n){if(Un(n))t.removeAttribute(e);else{if(X&&!Z&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var mr={create:fr,update:fr};function gr(t,e){var n=e.elm,r=e.data,o=t.data;if(!(a(r.staticClass)&&a(r.class)&&(a(o)||a(o.staticClass)&&a(o.class)))){var s=Gn(e),l=n._transitionClasses;i(l)&&(s=Wn(s,qn(l))),s!==n._prevClass&&(n.setAttribute("class",s),n._prevClass=s)}}var yr,br={create:gr,update:gr},_r="__r",xr="__c";function wr(t,e,n){var r=yr;return function a(){null!==e.apply(null,arguments)&&Er(t,a,n,r)}}var Rr=Vt&&!(tt&&Number(tt[1])<=53);function Ar(t,e,n,r){if(Rr){var a=cn,i=e;e=i._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=a||t.timeStamp<=0||t.target.ownerDocument!==document)return i.apply(this,arguments)}}yr.addEventListener(t,e,nt?{capture:n,passive:r}:n)}function Er(t,e,n,r){(r||yr).removeEventListener(t,e._wrapper||e,n)}function Cr(t,e){if(!a(t.data.on)||!a(e.data.on)){var n=e.data.on||{},r=t.data.on||{};yr=e.elm,function(t){if(i(t[_r])){var e=X?"change":"input";t[e]=[].concat(t[_r],t[e]||[]),delete t[_r]}i(t[xr])&&(t.change=[].concat(t[xr],t.change||[]),delete t[xr])}(n),oe(n,r,Ar,Er,wr,e.context),yr=void 0}}var $r,Sr={create:Cr,update:Cr};function kr(t,e){if(!a(t.data.domProps)||!a(e.data.domProps)){var n,r,o=e.elm,s=t.data.domProps||{},l=e.data.domProps||{};for(n in i(l.__ob__)&&(l=e.data.domProps=k({},l)),s)n in l||(o[n]="");for(n in l){if(r=l[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),r===s[n])continue;1===o.childNodes.length&&o.removeChild(o.childNodes[0])}if("value"===n&&"PROGRESS"!==o.tagName){o._value=r;var c=a(r)?"":String(r);Fr(o,c)&&(o.value=c)}else if("innerHTML"===n&&Kn(o.tagName)&&a(o.innerHTML)){($r=$r||document.createElement("div")).innerHTML=""+r+"";for(var u=$r.firstChild;o.firstChild;)o.removeChild(o.firstChild);for(;u.firstChild;)o.appendChild(u.firstChild)}else if(r!==s[n])try{o[n]=r}catch(t){}}}}function Fr(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(t,e)||function(t,e){var n=t.value,r=t._vModifiers;if(i(r)){if(r.number)return v(n)!==v(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}(t,e))}var Or={create:kr,update:kr},Mr=x(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e});function Dr(t){var e=Tr(t.style);return t.staticStyle?k(t.staticStyle,e):e}function Tr(t){return Array.isArray(t)?F(t):"string"==typeof t?Mr(t):t}var Ir,Nr=/^--/,jr=/\s*!important$/,Pr=function(t,e,n){if(Nr.test(e))t.style.setProperty(e,n);else if(jr.test(n))t.style.setProperty(C(e),n.replace(jr,""),"important");else{var r=Br(e);if(Array.isArray(n))for(var a=0,i=n.length;a-1?e.split(Gr).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function Wr(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Gr).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function qr(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&k(e,Vr(t.name||"v")),k(e,t),e}return"string"==typeof t?Vr(t):void 0}}var Vr=x(function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}}),Yr=q&&!Z,Kr="transition",Xr="animation",Zr="transition",Jr="transitionend",Qr="animation",ta="animationend";Yr&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Zr="WebkitTransition",Jr="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Qr="WebkitAnimation",ta="webkitAnimationEnd"));var ea=q?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function na(t){ea(function(){ea(t)})}function ra(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),zr(t,e))}function aa(t,e){t._transitionClasses&&y(t._transitionClasses,e),Wr(t,e)}function ia(t,e,n){var r=sa(t,e),a=r.type,i=r.timeout,o=r.propCount;if(!a)return n();var s=a===Kr?Jr:ta,l=0,c=function(){t.removeEventListener(s,u),n()},u=function(e){e.target===t&&++l>=o&&c()};setTimeout(function(){l0&&(n=Kr,u=o,d=i.length):e===Xr?c>0&&(n=Xr,u=c,d=l.length):d=(n=(u=Math.max(o,c))>0?o>c?Kr:Xr:null)?n===Kr?i.length:l.length:0,{type:n,timeout:u,propCount:d,hasTransform:n===Kr&&oa.test(r[Zr+"Property"])}}function la(t,e){for(;t.length1}function ha(t,e){!0!==e.data.show&&ua(e)}var va=function(t){var e,n,r={},l=t.modules,c=t.nodeOps;for(e=0;eh?b(t,a(n[g+1])?null:n[g+1].elm,n,f,g,r):f>g&&x(0,e,p,h)}(p,m,g,n,u):i(g)?(i(t.text)&&c.setTextContent(p,""),b(p,null,g,0,g.length-1,n)):i(m)?x(0,m,0,m.length-1):i(t.text)&&c.setTextContent(p,""):t.text!==e.text&&c.setTextContent(p,e.text),i(h)&&i(f=h.hook)&&i(f=f.postpatch)&&f(t,e)}}}function E(t,e,n){if(o(n)&&i(t.parent))t.parent.data.pendingInsert=e;else for(var r=0;r-1,o.selected!==i&&(o.selected=i);else if(T(_a(o),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));a||(t.selectedIndex=-1)}}function ba(t,e){return e.every(function(e){return!T(e,t)})}function _a(t){return"_value"in t?t._value:t.value}function xa(t){t.target.composing=!0}function wa(t){t.target.composing&&(t.target.composing=!1,Ra(t.target,"input"))}function Ra(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Aa(t){return!t.componentInstance||t.data&&t.data.transition?t:Aa(t.componentInstance._vnode)}var Ea={model:ma,show:{bind:function(t,e,n){var r=e.value,a=(n=Aa(n)).data&&n.data.transition,i=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&a?(n.data.show=!0,ua(n,function(){t.style.display=i})):t.style.display=r?i:"none"},update:function(t,e,n){var r=e.value;!r!=!e.oldValue&&((n=Aa(n)).data&&n.data.transition?(n.data.show=!0,r?ua(n,function(){t.style.display=t.__vOriginalDisplay}):da(n,function(){t.style.display="none"})):t.style.display=r?t.__vOriginalDisplay:"none")},unbind:function(t,e,n,r,a){a||(t.style.display=t.__vOriginalDisplay)}}},Ca={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function $a(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?$a(qe(e.children)):t}function Sa(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var a=n._parentListeners;for(var i in a)e[R(i)]=a[i];return e}function ka(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var Fa=function(t){return t.tag||We(t)},Oa=function(t){return"show"===t.name},Ma={name:"transition",props:Ca,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(Fa)).length){0;var r=this.mode;0;var a=n[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return a;var i=$a(a);if(!i)return a;if(this._leaving)return ka(t,a);var o="__transition-"+this._uid+"-";i.key=null==i.key?i.isComment?o+"comment":o+i.tag:s(i.key)?0===String(i.key).indexOf(o)?i.key:o+i.key:i.key;var l=(i.data||(i.data={})).transition=Sa(this),c=this._vnode,u=$a(c);if(i.data.directives&&i.data.directives.some(Oa)&&(i.data.show=!0),u&&u.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(i,u)&&!We(u)&&(!u.componentInstance||!u.componentInstance._vnode.isComment)){var d=u.data.transition=k({},l);if("out-in"===r)return this._leaving=!0,se(d,"afterLeave",function(){e._leaving=!1,e.$forceUpdate()}),ka(t,a);if("in-out"===r){if(We(i))return c;var p,f=function(){p()};se(l,"afterEnter",f),se(l,"enterCancelled",f),se(d,"delayLeave",function(t){p=t})}}return a}}},Da=k({tag:String,moveClass:String},Ca);function Ta(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function Ia(t){t.data.newPos=t.elm.getBoundingClientRect()}function Na(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,a=e.top-n.top;if(r||a){t.data.moved=!0;var i=t.elm.style;i.transform=i.WebkitTransform="translate("+r+"px,"+a+"px)",i.transitionDuration="0s"}}delete Da.mode;var ja={Transition:Ma,TransitionGroup:{props:Da,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var a=Je(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,a(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,a=this.$slots.default||[],i=this.children=[],o=Sa(this),s=0;s-1?Zn[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:Zn[t]=/HTMLUnknownElement/.test(e.toString())},k(En.options.directives,Ea),k(En.options.components,ja),En.prototype.__patch__=q?va:O,En.prototype.$mount=function(t,e){return function(t,e,n){var r;return t.$el=e,t.$options.render||(t.$options.render=gt),en(t,"beforeMount"),r=function(){t._update(t._render(),n)},new hn(t,r,O,{before:function(){t._isMounted&&!t._isDestroyed&&en(t,"beforeUpdate")}},!0),n=!1,null==t.$vnode&&(t._isMounted=!0,en(t,"mounted")),t}(this,t=t&&q?function(t){if("string"==typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}(t):void 0,e)},q&&setTimeout(function(){B.devtools&&it&&it.emit("init",En)},0),e.default=En}.call(this,n(62),n(90).setImmediate)},function(t,e){var n,r,a=Object.create(null);"undefined"!=typeof window&&(window.__VUE_HOT_MAP__=a);var i=!1,o="beforeCreate";function s(t,e){if(e.functional){var n=e.render;e.render=function(e,r){var i=a[t].instances;return r&&i.indexOf(r.parent)<0&&i.push(r.parent),n(e,r)}}else l(e,o,function(){var e=a[t];e.Ctor||(e.Ctor=this.constructor),e.instances.push(this)}),l(e,"beforeDestroy",function(){var e=a[t].instances;e.splice(e.indexOf(this),1)})}function l(t,e,n){var r=t[e];t[e]=r?Array.isArray(r)?r.concat(n):[r,n]:[n]}function c(t){return function(e,n){try{t(e,n)}catch(t){console.error(t),console.warn("Something went wrong during Vue component hot-reload. Full reload required.")}}}function u(t,e){for(var n in t)n in e||delete t[n];for(var r in e)t[r]=e[r]}e.install=function(t,a){i||(i=!0,n=t.__esModule?t.default:t,r=n.version.split(".").map(Number),a,n.config._lifecycleHooks.indexOf("init")>-1&&(o="init"),e.compatible=r[0]>=2,e.compatible||console.warn("[HMR] You are using a version of vue-hot-reload-api that is only compatible with Vue.js core ^2.0.0."))},e.createRecord=function(t,e){if(!a[t]){var n=null;"function"==typeof e&&(e=(n=e).options),s(t,e),a[t]={Ctor:n,options:e,instances:[]}}},e.isRecorded=function(t){return void 0!==a[t]},e.rerender=c(function(t,e){var n=a[t];if(e){if("function"==typeof e&&(e=e.options),n.Ctor)n.Ctor.options.render=e.render,n.Ctor.options.staticRenderFns=e.staticRenderFns,n.instances.slice().forEach(function(t){t.$options.render=e.render,t.$options.staticRenderFns=e.staticRenderFns,t._staticTrees&&(t._staticTrees=[]),Array.isArray(n.Ctor.options.cached)&&(n.Ctor.options.cached=[]),Array.isArray(t.$options.cached)&&(t.$options.cached=[]);var r=function(t){if(!t._u)return;var e=t._u;return t._u=function(t){try{return e(t,!0)}catch(n){return e(t,null,!0)}},function(){t._u=e}}(t);t.$forceUpdate(),t.$nextTick(r)});else if(n.options.render=e.render,n.options.staticRenderFns=e.staticRenderFns,n.options.functional){if(Object.keys(e).length>2)u(n.options,e);else{var r=n.options._injectStyles;if(r){var i=e.render;n.options.render=function(t,e){return r.call(e),i(t,e)}}}n.options._Ctor=null,Array.isArray(n.options.cached)&&(n.options.cached=[]),n.instances.slice().forEach(function(t){t.$forceUpdate()})}}else n.instances.slice().forEach(function(t){t.$forceUpdate()})}),e.reload=c(function(t,e){var n=a[t];if(e)if("function"==typeof e&&(e=e.options),s(t,e),n.Ctor){r[1]<2&&(n.Ctor.extendOptions=e);var i=n.Ctor.super.extend(e);n.Ctor.options=i.options,n.Ctor.cid=i.cid,n.Ctor.prototype=i.prototype,i.release&&i.release()}else u(n.options,e);n.instances.slice().forEach(function(t){t.$vnode&&t.$vnode.context?t.$vnode.context.$forceUpdate():console.warn("Root or manually mounted instance modified. Full reload required.")})})},function(t,e,n){"use strict";n.d(e,"a",function(){return r});var r={data:[],update:function(t){this.data=t}}},function(t,e,n){"use strict";n.d(e,"a",function(){return r});var r={data:{},update:function(t){this.data=t}}},function(t,e,n){"use strict";function r(t){$(t).on({mouseover:function(){var t=$(this).attr("title");$(this).data("tipText",t).removeAttr("title"),$('

').text(t).appendTo("#app").fadeIn("fast")},mouseout:function(){$(this).attr("title",$(this).data("tipText"));for(var t=document.querySelectorAll(".tooltip"),e=0;en.parts.length&&(r.parts.length=n.parts.length)}else{var o=[];for(a=0;a svg").clone().css({verticalAlign:"top",width:"166px",height:"100px"});$("#print-map").append(n),$("#print-fuel-mix").append($("#fuelMixContainer").clone()),$("#print-fuel-mix svg").css({marginTop:"0",height:"480px",width:"347px"}),$("#print-emission-rates").append("

Emission Rates

"),$("#print-emission-rates").append($("#emRatesDescription").clone()),$("#print-emission-rates").append($("#subco2EmissionRate").clone().css({display:"inline-block",height:"443px"})),$("#print-emission-rates").append($("#subso2EmissionRate").clone().css({display:"inline-block",height:"443px"})),$("#print-emission-rates").append($("#subnoxEmissionRate").clone().css({display:"inline-block",height:"443px"})),$("#printReportMain").hide(),t.showReport=!0}else $("#print-main-map").html(""),$("#print-main-fuel-mix").html(""),$("#print-main-emission-rates").html(""),$("#print-main-map").append("

eGRID Subregion Map

"),$("#print-main-map").append($("#subregionMap > svg").clone().css({width:"296px",height:"178px"})),$("#print-main-fuel-mix").append($("#nationalFuelMix").clone()),$("#print-main-fuel-mix #fuelRadios").css({display:"none"}),$("#print-main-emission-rates").append("

Emission Rates

"),$("#print-main-emission-rates").append($("#nationalEmissionRate > p:nth-child(2)").clone()),$("#print-main-emission-rates").append($("#nationalEmissionRateGraph").clone()),$("#print-main-emission-rates > #nationalEmissionRateGraph > svg").css({display:"inline-block"}),$("#printReport").hide(),t.showMainReport=!0}),window.addEventListener("afterprint",function(e){t.showReport=!1,t.showMainReport=!1}),$(window).width()<950?(h.a.data.fuelMixOrientation="vertical",h.a.data.emissionRatesOrientation="vertical"):(h.a.data.fuelMixOrientation="horizontal",h.a.data.emissionRatesOrientation="horizontal"),"home"==this.$route.name&&(this.showMain=!0)},watch:{$route:function(t,e){"home"==t.name&&(this.showMain=!0),$("#result").hide()}}};e.a=v},function(t,e,n){"use strict";var r=n(6),a=n(2),i=(n(7),n(83)),o=n(84),s=n(85),l={components:{subregionFuelMixChart:i.a,subregionEmissionRateChart:o.a,emissionsCalculator:s.a},data:function(){return{subregion:{},dataLoaded:!1}},mounted:function(){this.subregion=a.a.data,this.dataLoaded=!0,this.$root.$children[0].subregionSelected=!0,this.$root.$children[0].showMain=!1},watch:{$route:function(t,e){t!==e&&(this.subregion=a.a.data,this.$children[1].update(),this.$children[2].update())}},beforeCreate:function(){var t=this.$router.history.current.params.subregion,e=r.a.data.filter(function(e){return e.properties.name==t});e.length>0?($(".map").css({fill:""}),$("."+e[0].properties.name).css({fill:"steelblue"}),$("#regionSelectionDropdown").val(e[0].properties.name),a.a.update(e[0])):(this.dataLoaded=!1,this.$router.push("/"))}};e.a=l},function(t,e,n){"use strict";var r=n(6),a=n(7),i=n(2),o=n(1),s=n(3),l=n(80),c=n(8),u={components:{emissionRateChart:l.a},data:function(){return{nationalFeature:{},subregionData:[],w:0,h:0,domElement:"",sortState:"alphabetically",fuels:["gas","coal","nuclear","hydro","wind","biomass","solar","oil","geothermal","otherFossilFuel","otherUnknownFuel"],renewableAndNon:["renewable","non-renewable"],renewableNonNuclearAndHydro:["hydro","renewable (excluding hydro)","non-renewable (excluding nuclear)","nuclear"],allFuelsColorRange:["#fdae61","#313695","#f46d43","#74add1","#abd9e9","#4575b4","#ffffbf","#d73027","#fee090","#e0f3f8","#a50026"],renewableAndNonColors:["#abdda4","#d7191c"],renewableNonNuclearAndHydroColors:["#2b83ba","#abdda4","#d7191c","#fdae61"],subregions:{},sortedFuel:"",selectedFuelCategory:"allFuels",orientation:"",selectedRegion:{}}},mounted:function(){var t=this;this.orientation=o.a.data.fuelMixOrientation,this.initialize($("#main-charts").width(),350,"#nationalFuelMix"),this.subregionData=r.a.data,this.nationalFeature=a.a.data,this.display(this.selectedFuelCategory),this.selectedRegion=i.a.data,this.show(this.selectedRegion),$("#resetNationalFuelMix").css("visibility","hidden"),$(window).on("resize",function(){$(window).width()<950?(t.orientation="vertical",t.$children[0].orientation="vertical"):(t.orientation="horizontal",t.$children[0].orientation="horizontal"),t.reset()})},methods:{initialize:function(t,e,n){this.w=t,this.h=e,this.domElement=n},display:function(t){var e,n,r,a=this;$(this.domElement).show();"alphabetically"==this.sortState?this.subregionData.sort(function(t,e){return d3.ascending(t.properties.name,e.properties.name)}):"ascending"==this.sortState?this.subregionData.sort(function(t,e){return d3.ascending(t.properties.emissionFactor[a.$children[0].selectedPollutantAll].value,e.properties.emissionFactor[a.$children[0].selectedPollutantAll].value)}):"descending"==this.sortState?this.subregionData.sort(function(t,e){return d3.descending(t.properties.emissionFactor[a.$children[0].selectedPollutantAll].value,e.properties.emissionFactor[a.$children[0].selectedPollutantAll].value)}):"subregionFuels"==this.sortState&&this.subregionData.sort(function(t,e){return d3.descending(t.properties.fuelMix[""],e.properties.fuelMix[""])}),"allFuels"==t?(e=this.fuels,n="fuelMix",r=this.allFuelsColorRange):"renewableAndNon"==t?(e=this.renewableAndNon,n="fuelMixCategories",r=this.renewableAndNonColors):"renewableNonNuclearAndHydro"==t&&(e=this.renewableNonNuclearAndHydro,n="fuelMixCategories",r=this.renewableNonNuclearAndHydroColors),"horizontal"==this.orientation?this.displayHorizontal(r,e,n):"vertical"==this.orientation&&this.displayVertical(r,e,n),Object(c.a)(".fuelMixTooltip")},displayHorizontal:function(t,e,n){for(var r=this,a=30,i=60,o=140,l=70,c=this.w-l-i,u=this.h-a-o,d=d3.scale.ordinal().rangeRoundBands([0,c],.2),p=d3.scale.linear().range([u,0]),f=d3.scale.ordinal().range(t).domain(e),h=d3.svg.axis().scale(d).outerTickSize(0).orient("bottom"),v=d3.svg.axis().scale(p).orient("left").tickFormat(function(t){return t+"%"}),m=d3.select(r.domElement).append("svg").attr("width",c+l+i).attr("height",u+a+o).append("g").attr("transform","translate("+l+","+a+")"),g=0;gn&&(n=t.length),"translate(0,-60)";if(1===e)return t.length>n&&(n=t.length),"translate(0,-120)";if(2===e)return t.length>n&&(n=t.length),"translate(0,-100)";if(3===e)return t.length>n&&(n=t.length),"translate(0,-80)"}else{if(0===e)return t.length>n&&(n=t.length),"translate(0,-100)";if(1===e)return t.length>n&&(n=t.length),"translate(0,-80)";if(2===e)return t.length>n&&(n=t.length),"translate(0,-60)";if(3===e)return t.length>a&&(a=t.length),"translate("+(n+80)+","+-100+")";if(4===e)return t.length>a&&(a=t.length),"translate("+(n+80)+","+-80+")";if(5===e)return t.length>a&&(a=t.length),"translate("+(n+80)+","+-60+")";if(6===e)return"translate("+(a+160+20)+","+-100+")";if(7===e)return"translate("+(a+160+20)+","+-80+")";if(8===e)return"translate("+(a+160+20)+","+-60+")";if(9===e)return"translate("+(a+160+140)+","+-100+")";if(10===e)return"translate("+(a+160+140)+","+-70+")"}}).on("click",function(t){var e={name:t,chart:r.selectedFuelCategory};d3.selectAll(".textselected").style("font-weight",function(t){return t==e.name?"bold":"normal"}),r.selectedFuel=e.name,r.handleFuelClick(e,n,d,p,_,v,h,r.orientation)});C.append("rect").attr("x",0).attr("y",0).attr("width",10).attr("height",10).style("fill",f),C.append("text").attr("x",20).attr("y",10).text(function(t,e){if("otherFossilFuel"!=t&&"otherUnknownFuel"!=t)return Object(s.c)(t)}).attr("class",function(t){return"otherFossilFuel"==t||"otherUnknownFuel"==t?"lgLabel textselected":"textselected"}).style("text-anchor","start").style("font-size",15);var $,S=d3.selectAll(".lgLabel");S.append("tspan").text(function(t){return $=t.match(/[A-Z]*[^A-Z]+/g),"otherFossilFuel"==t?$[0].charAt(0).toUpperCase(1)+$[0].substr(1)+" "+$[1]:$[0].charAt(0).toUpperCase(1)+$[0].substr(1)}),S.append("tspan").attr("x",20).attr("y",25).attr("class",function(t){if("otherUnknownFuel"==t)return"unknown"}).text(function(t){return"otherFossilFuel"==t?$[2]:"otherUnknownFuel"==t?$[1]:void 0}),d3.selectAll(".unknown").append("tspan").attr("x",20).attr("y",40).text(function(t){return"Fuel"});r.sortedFuel&&r.sortVerticalBarChart(r.sortedFuel,{sub:300,x:0},n,d,p,_,h),Object(s.a)(m,c-60,u+50)},sortVerticalBarChart:function(t,e,n,r,a,i,s){var l=this;l.sortedFuel=t,o.a.sortedFuel=l.sortedFuel,$("#resetNationalFuelMix").css("visibility","visible");var c=[],u=a.domain(l.subregionData.sort(function(e,r){return r.properties[n][t.name]-e.properties[n][t.name]}).map(function(t){return t.properties.name})).copy();d3.selectAll("."+t.chart).style("opacity",function(e){return e.name==t.name?1:.5}).attr("x",function(e){if(e.name==t.name)return d3.select(this).attr("class",t.chart+" selected"),c.push({subregion:e.subregion,newBase:e.val}),r(0);d3.select(this).attr("class",t.chart+" unselected")}),d3.selectAll(".unselected").attr("x",function(e){if(e.name!=t.name)for(var n=0;n a").show(),$("#nationalFuelMixSortingStatus").html("This chart is sorted by decreasing % of "+this.selectedFuel+"."),$("#nationalEmissionRateSortingStatus").html("This chart is sorted by decreasing % of "+this.selectedFuel+"."),this.updateChild("subregionFuels",t)},handleSortReset:function(){this.subregionData.sort(function(t,e){return d3.ascending(t.properties.name,e.properties.name)}),this.sortState="alphabetically",o.a.sortedFuel="",this.sortedFuel=o.a.sortedFuel,this.reset(),this.updateChild("alphabetically",""),$("#resetNationalFuelMix").css("visibility","hidden"),$("#sortAlphabeticallyEmissionRate").css("display","none"),$("#sortAscendingEmissionRate").css("display","inline"),$("#sortDescendingEmissionRate").css("display","inline"),$("#nationalEmissionRateSortingStatus").html("This chart is sorted alphabetically A → Z by region."),$("#nationalFuelMixSortingStatus").html("This chart is sorted alphabetically A → Z by region.")},addHovertext:function(t,e,n){return"non-renewable (excluding nuclear)"==t.name?e="non-renewable":"renewable (excluding hydro)"==t.name&&(e="renewable"),Object(s.c)(e)+" accounts for "+n(t.val)+"% of the fuel mix "+Object(s.b)(t.subregion)},updateChild:function(t,e){var n=this.$children[0];e&&(n.selectedFuel=e.name),o.a.sortState=t,n.update()}},watch:{selectedFuelCategory:function(){this.reset(),this.show(this.selectedRegion)},orientation:function(t){o.a.data.fuelMixOrientation=t,this.reset()},selectedRegion:function(){this.reset(),this.show(this.selectedRegion)}}};e.a=u},function(t,e,n){"use strict";var r={components:{appDescription:n(59).a},mounted:function(){document.getElementById("more-info-ok").focus(),$("#appDescription").show()}};e.a=r},function(t,e,n){"use strict";var r={mounted:function(){document.getElementById("subregions-ok").focus()}};e.a=r},function(t,e,n){"use strict";var r={mounted:function(){document.getElementById("megawatt-ok").focus()}};e.a=r},function(t,e,n){"use strict";var r={components:{subregionSelection:n(73).a}};e.a=r},function(t,e,n){"use strict";var r={mounted:function(){document.getElementById("resources-ok").focus()}};e.a=r},function(t,e,n){"use strict";var r=n(2),a=n(7),i=n(3);function o(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var s={data:function(){var t;return o(t={showAverageInput:!0,resultsFunction:"",selectedSubregion:{},nationalFeature:{},emissionFactors:{},userEmissions:{},gridLoss:{},subregionEmissions:{},nationalEmissions:{},nationalAverage:1011,emRatesColors:{national:"#2b83ba",subregion:"#e66101",co2EmissionRate:"#d7191c",so2EmissionRate:"#008837",noxEmissionRate:"#7b3294"}},"resultsFunction",""),o(t,"emissionsResultsWidth",0),o(t,"emissionsResultsHeight",0),o(t,"residentialMode",!0),o(t,"commercialCustomerForm",!1),o(t,"squareFootage",0),t},mounted:function(){this.selectedSubregion=r.a.data,this.nationalFeature=a.a.data,this.emissionFactors=this.selectedSubregion.properties.emissionFactor,this.gridLoss=this.selectedSubregion.properties.gridLoss,$(window).width()>950?this.emissionsResultsWidth=$(window).width()/4:this.emissionsResultsWidth=250,this.emissionsResultsHeight=340},methods:{displayMonthlyAverage:function(){var t=this;this.resultsFunction="monthlyAverage";var e=$("#userMonthlyAverageInput").val(),n=12*e;function r(e,n){return 12*n*e*.001*(1+t.gridLoss.value)}this.userEmissions={co2:r(this.emissionFactors.co2EmissionRate.value,e),so2:r(this.emissionFactors.so2EmissionRate.value,e),nox:r(this.emissionFactors.noxEmissionRate.value,e)},this.subregionEmissions={co2:t.calculateSubregionEmissions(this.emissionFactors.co2EmissionRate.value,this.gridLoss.value),so2:t.calculateSubregionEmissions(this.emissionFactors.so2EmissionRate.value,this.gridLoss.value),nox:t.calculateSubregionEmissions(this.emissionFactors.noxEmissionRate.value,this.gridLoss.value)},this.nationalEmissions={co2:t.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.co2EmissionRate.value),so2:t.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.so2EmissionRate.value),nox:t.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.noxEmissionRate.value)};var a=Math.round(this.userEmissions.co2).toLocaleString(),i=Math.round(this.userEmissions.nox).toLocaleString(),o=Math.round(this.userEmissions.so2).toLocaleString();$("#egrid-subregion-acronym").html(this.selectedSubregion.properties.name),$("#egrid-subregion-name").html(this.selectedSubregion.properties.fullName),$("#percent-line-loss").html(this.gridLoss.display),$("#estimated-annual-electricity-use").html(n.toLocaleString()),$("#pounds-of-co2").html(a),$("#pounds-of-so2").html(o),$("#pounds-of-nox").html(i),$("#no-of-tree-seedlings").html(t.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).trees),$("#acres-of-forests").html(t.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).acres);var s=24e3;12*e>s&&(s=12*e);var l=100,c=12*e/(12*this.nationalAverage)*100;c>l&&(l=c),d3.selectAll("#chart-gauge svg").remove(),$("#chart-gauge").attr("class","pane-content row cols-3"),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,s,12*this.nationalAverage,"National Annual","Electricity Use",!1),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,s,12*e,"Your Annual","Electricity Use",!1),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,l,c,"Your Electricity Use","Compared to the National Average",!0),d3.selectAll("#resultGraphs svg").remove(),d3.selectAll("#resultGraphs-rpt svg").remove(),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs",this.emissionsResultsWidth,this.emissionsResultsHeight),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs-rpt",247,340),$("#resultGraphs").show(),$("#annual-results-text").show(),$("#national-avg-annual-results-text").hide(),$("#result-subheader").html("Average Monthly Electricity Use"),$("#result").show()},displayMonthlyActual:function(){var t=this;this.resultsFunction="monthlyActual";var e=$("#calculateMonthlyActualForm input").map(function(){return $(this).val()}).get().reduce(function(t,e){return parseFloat(t)+parseFloat(e)},0);function n(e,n){return n*e/1e3*(1+t.gridLoss.value)}this.nationalEmissions={co2:this.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.co2EmissionRate.value),so2:this.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.so2EmissionRate.value),nox:this.calculateNationalEmissions(this.nationalFeature[0].properties.emissionFactor.noxEmissionRate.value)},this.subregionEmissions={co2:this.calculateSubregionEmissions(this.emissionFactors.co2EmissionRate.value,this.gridLoss.value),so2:this.calculateSubregionEmissions(this.emissionFactors.so2EmissionRate.value,this.gridLoss.value),nox:this.calculateSubregionEmissions(this.emissionFactors.noxEmissionRate.value,this.gridLoss.value)},this.userEmissions={co2:n(this.emissionFactors.co2EmissionRate.value,e),so2:n(this.emissionFactors.so2EmissionRate.value,e),nox:n(this.emissionFactors.noxEmissionRate.value,e)};var r=Math.round(this.userEmissions.co2).toLocaleString(),a=Math.round(this.userEmissions.nox).toLocaleString(),i=Math.round(this.userEmissions.so2).toLocaleString();$("#egrid-subregion-acronym").html(this.selectedSubregion.properties.name),$("#egrid-subregion-name").html(this.selectedSubregion.properties.fullName),$("#percent-line-loss").html(this.gridLoss.display),$("#estimated-annual-electricity-use").html(e.toLocaleString()),$("#pounds-of-co2").html(r),$("#pounds-of-so2").html(i),$("#pounds-of-nox").html(a),$("#no-of-tree-seedlings").html(this.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).trees),$("#acres-of-forests").html(this.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).acres);var o=24e3;e>o&&(o=e);var s=100,l=e/(12*this.nationalAverage)*100;l>s&&(s=l),d3.selectAll("#chart-gauge svg").remove(),$("#chart-gauge").attr("class","pane-content row cols-3"),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,o,12*this.nationalAverage,"National Annual","Electricity Use",!1),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,o,e,"Your Annual","Electricity Use",!1),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,s,l,"Your Annual Electricity Use","Compared to the National Average",!0),d3.selectAll("#resultGraphs svg").remove(),d3.selectAll("#resultGraphs-rpt svg").remove(),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs",this.emissionsResultsWidth,this.emissionsResultsHeight),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs-rpt",247,340),$("#resultGraphs").show(),$("#annual-results-text").show(),$("#national-avg-annual-results-text").hide(),$("#result-subheader").html("Actual Monthly Electricity Use"),$("#result").show()},displayNationalAverage:function(t){var e=this;function n(t,n){return 12*n*t/1e3*(1+e.gridLoss.value)}if(this.resultsFunction="nationalAverage",this.nationalEmissions={co2:n(this.nationalFeature[0].properties.emissionFactor.co2EmissionRate.value,this.nationalAverage),so2:n(this.nationalFeature[0].properties.emissionFactor.so2EmissionRate.value,this.nationalAverage),nox:n(this.nationalFeature[0].properties.emissionFactor.noxEmissionRate.value,this.nationalAverage)},this.subregionEmissions={},this.userEmissions={co2:n(this.emissionFactors.co2EmissionRate.value,this.nationalAverage),so2:n(this.emissionFactors.so2EmissionRate.value,this.nationalAverage),nox:n(this.emissionFactors.noxEmissionRate.value,this.nationalAverage)},$("#chart-gauge").children.length>3&&d3.selectAll("#chart-gauge svg").remove(),0==this.residentialMode){var r=24e3;this.nationalAverage=1.22*this.squareFootage,$("#resultGraphs").hide(),$("#result-subheader").html("National Average Electricity Use for Commercial Customers"),d3.selectAll("#chart-gauge svg").remove(),$("#chart-gauge").attr("class","pane-content row cols-4"),12*this.nationalAverage>24e3&&(r=12*this.nationalAverage),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,r,12*this.nationalAverage,"Your Annual","Electricity Use",!1),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#chart-gauge",this.emissionsResultsWidth,this.emissionsResultsHeight),d3.selectAll("#resultGraphs-rpt svg").remove(),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs-rpt",247,340)}else this.nationalAverage=1011,$("#resultGraphs").hide(),$("#result-subheader").html("National Average Electricity Use"),$("#commercialCustomersForm").hide(),d3.selectAll("#chart-gauge svg").remove(),$("#chart-gauge").attr("class","pane-content row cols-4"),this.gaugeChart(this.emissionsResultsWidth,this.emissionsResultsHeight/2,24e3,12*this.nationalAverage,"Your Annual","Electricity Use",!1),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#chart-gauge",this.emissionsResultsWidth,this.emissionsResultsHeight),d3.selectAll("#resultGraphs-rpt svg").remove(),this.displayUserAndNationalEmissions(this.userEmissions,this.subregionEmissions,this.nationalEmissions,"#resultGraphs-rpt",247,340);var a=Math.round(this.userEmissions.co2).toLocaleString(),i=Math.round(this.userEmissions.nox).toLocaleString(),o=Math.round(this.userEmissions.so2).toLocaleString();$("#nat-egrid-subregion-acronym").html(this.selectedSubregion.properties.name),$("#nat-egrid-subregion-name").html(this.selectedSubregion.properties.fullName),$("#nat-percent-line-loss").html(this.gridLoss.display),$("#nat-estimated-annual-electricity-use").html((12*this.nationalAverage).toLocaleString()),$("#nat-pounds-of-co2").html(a),$("#nat-pounds-of-so2").html(o),$("#nat-pounds-of-nox").html(i),$("#nat-no-of-tree-seedlings").html(this.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).trees),$("#nat-acres-of-forests").html(this.calculateCarbonOffset(parseFloat(this.userEmissions.co2)).acres),$("#commercialCustomersLink").click(function(){this.commercialCustomerForm=!0,$("#residentialCustomersButton").show(),$("#customerText").hide(),$("#commercialCustomersForm").show()}),$("#commercialCustomersForm").on("submit",function(t){t.preventDefault(),this.squareFootage=$("#squareFootage").val(),this.residentialMode=!1,$("#nationalAverageLink").trigger("click"),$("#nat-em-rpt-intro-2").html("estimated from the national average electricity consumption of 1.22 kWh/sq. ft./month for commercial customers and")}),$("#residentialCustomersButton").click(function(){this.commercialCustomerForm=!1,this.residentialMode=!0,$("#nationalAverageLink").trigger("click"),$("#nat-em-rpt-intro-2").html("estimated from the average home consumption of 1,011 kWh/month and")}),$("#annual-results-text").hide(),$("#national-avg-annual-results-text").show(),$("#result").show()},gaugeChart:function(t,e,n,r,a,i,o){var s=Math.PI;d=0,p=0;var l=d3.svg.arc().innerRadius(60).outerRadius(80).startAngle(s/180*-90),c=d3.select("#chart-gauge").append("svg").attr("width",t).attr("height",e).attr("class","col").append("g").attr("transform","translate("+(t/2-20)+","+(e/2+50)+")");c.append("text").attr("class","gauge-title").attr("transform","translate(0,-105)").attr("text-anchor","middle").text(a),c.append("text").attr("class","gauge-title").attr("transform","translate(0,-90)").attr("text-anchor","middle").text(i);c.append("path").datum({endAngle:s/180*90}).style("fill","#ddd").attr("d",l);var u=c.append("path").datum({endAngle:s/180*-90}).style("fill","#008837").attr("d",l),d=(c.append("text").attr("transform","translate(70,15)").attr("text-anchor","middle").attr("class","gauge-chart-label").style("font-family","Helvetica").text(function(){return 1==o?Math.round(n).toLocaleString()+"%":Math.round(n).toLocaleString()+" kWh"}),c.append("text").attr("transform","translate(-70,15)").attr("text-anchor","middle").style("font-family","Helvetica").text(d)),p=c.append("text").attr("transform","translate(0,-15)").attr("text-anchor","middle").style("font-size","15").style("font-family","Helvetica").text(p),f=Math.floor(r-n/2)*(s/n);p.transition().text(function(){return 1==o?Math.round(r).toLocaleString()+"%":Math.round(r).toLocaleString()}),u.transition().duration(function(t){return 750}).styleTween("fill",function(){return d3.interpolate("#008837","#008837")}).call(function(t,e){t.attrTween("d",function(t){var n=d3.interpolate(t.endAngle,e);return function(e){return t.endAngle=n(e),l(t)}})},f),d3.selectAll("#chart-gauge svg text").style("font-family","'Source Sans Pro', 'Helvetica Neue', 'Helvetica', 'Roboto', 'Arial', sans-serif"),d3.selectAll("#chart-gauge svg .y.axis path, #resultGraphs svg .axis line").style("fill","none").style("stroke","#000").style("shape-rendering","crispEdges")},calculateNationalEmissions:function(t){return 12132*t/1e3*1.0448},calculateSubregionEmissions:function(t,e){return 12132*t/1e3*(1+e)},calculateCarbonOffset:function(t){return{trees:(t/(44/12*23.2)).toLocaleString(void 0,{maximumFractionDigits:0}),acres:(t/(.85*2204.6)).toLocaleString(void 0,{maximumFractionDigits:0})}},displayUserAndNationalEmissions:function(t,e,n,r,a,o){for(var s=["co2","so2","nox"],l=0;l svg").css("margin-top","25%"),Object(o.a)(".subFuelMixTooltip")},update:function(){this.graphData=[],this.graphData.push(a.a.data[0]),this.graphData.push(i.a.data),d3.selectAll("#fuelMix svg").remove(),this.display(this.graphData)}}};e.a=s},function(t,e,n){"use strict";var r=n(9),a=n(74),i=n(6),o={components:{subregionMap:a.a},data:function(){return{userZip:"",selectedSubregion:{},utilArr:[]}},methods:{processZipForm:function(t){t.preventDefault(),$("#errorMessage").hide(),$("#utilitySelectDiv").hide();var e=this;e.userZip=$("#userLocation").val(),this.userZip?d3.csv(r.a.ZIP_UTILITY,function(t){if(e.userZip==t.zip)return t},function(t){if(1==t.length){var n=i.a.data.filter(function(e){return e.properties.name==t[0].SUBRGN});$("#utilitySelect").hide(),e.$root.$emit("subregionSelected",n[0])}else if(t.length>1){$("#errorMessage").hide(),$("#utilitySelect").children()&&$("#utilitySelect").show(),e.utilArr=[];for(var r=[],a=[""],o=0;o"+t[o].UtilName+""),-1==r.indexOf(t[o].SUBRGN)&&r.push(t[o].SUBRGN);if(r.length>1)$("#utilitySelect").html(a.join()),$("#utilitySelect").attr("required",!0),$("#utilitySelectDiv").show();else{var s=i.a.data.filter(function(t){for(var e=0;ePlease enter a valid zip code.

")}):($("#errorMessage").show(),$("#errorMessage").html("

Please enter a valid zip code.

"))},handleSelectChange:function(t){$("#userLocation").val(""),$("#utilitySelectDiv").hide();var e=t.target.options[t.target.options.selectedIndex].value;this.selectedSubregion=i.a.data.filter(function(t){return t.properties.name==e})[0],this.$root.$emit("subregionSelected",this.selectedSubregion)}},mounted:function(){var t=this;document.getElementById("zipForm").addEventListener("submit",this.processZipForm),$("#utilitySelect").on("change",function(e){var n=$("#utilitySelect").val(),r=i.a.data.filter(function(e){return e.properties.name==t.utilArr[n].SUBRGN});t.$root.$emit("subregionSelected",r[0])})}};e.a=o},function(t,e,n){"use strict";var r=n(6),a=n(7),i=n(2),o=n(3),s=n(81),l=n(82),c=n(1),u=n(8),d={components:{emissionRateMap:s.a,renewablesMap:l.a},data:function(){return{nationalFeature:{},subregionData:[],subregions:{},w:0,h:0,domElement:"",orientation:"",parameters:["so2EmissionRate","co2EmissionRate","noxEmissionRate"],emRatesColors:{national:"#2b83ba",subregion:"#e66101",co2EmissionRate:"#d7191c",so2EmissionRate:"#008837",noxEmissionRate:"#7b3294"},selectedRegion:{},selectedPollutantAll:"co2EmissionRate",pollutantText:"CO2",sortState:"alphabetically",selectedFuel:"",currentMap:1}},mounted:function(){var t=this;this.orientation=c.a.data.emissionRatesOrientation,this.initialize($("#main-charts").width(),290,"#nationalEmissionRateGraph"),this.display(this.orientation),this.selectedRegion=i.a.data,$("#defaultPollutantAll").css({"background-color":"#2B7D3B"}),$("#sortAlphabeticallyEmissionRate").hide(),$(window).on("resize",function(){"home"==t.$route.name&&t.update()}),c.a.sortState&&(this.sortState=c.a.sortState,"ascending"==this.sortState?$("#sortAscendingEmissionRate").trigger("click"):"descending"==this.sortState?$("#sortDescendingEmissionRate").trigger("click"):"alphabetically"==this.sortState&&$("#sortAlphabeticallyEmissionRate").trigger("click"))},methods:{initialize:function(t,e,n){this.w=t,this.h=e,this.domElement=n,this.subregionData=r.a.data,this.nationalFeature=a.a.data},display:function(t){$(this.domElement).show();for(var e=0;eThis chart is sorted by "+e+" "+t+" emission rates.
":"alphabetically"==e?"This chart is sorted alphabetically A → Z by region.":void 0},handlePollutantButton:function(t){var e=t.target;"BUTTON"!==e.tagName&&(e=e.parentNode),$(e).css({"background-color":"#2B7D3B"}),$(e).siblings().css({"background-color":"#0071bc"}),this.selectedPollutantAll=$(e).val(),c.a.selectedPollutantAll=$(e).val(),this.update(),this.$children[0].clear&&(this.$children[0].clear(),this.$children[0].display(this.selectedPollutantAll,this.orientation)),this.pollutantText=$(e).html();var n=this.updateStatus(this.pollutantText,this.sortState);$("#nationalEmissionRateSortingStatus").html(n),$("#nationalFuelMixSortingStatus").html(n)},handleSortLink:function(t){var e=t.srcElement,n=e.id;if(this.setPollutantText(),"sortAlphabeticallyEmissionRate"==n){c.a.sortState="alphabetically";var r=this.updateStatus(this.pollutantText,c.a.sortState);$(e).hide(),$(e).siblings().show(),$("#nationalEmissionRateSortingStatus").html(r),$("#nationalFuelMixSortingStatus").html(r),$("#resetNationalFuelMix").css("visibility","hidden")}else if("sortAscendingEmissionRate"==n){c.a.sortState="ascending";r=this.updateStatus(this.pollutantText,c.a.sortState);$(e).hide(),$(e).siblings().show(),$("#nationalEmissionRateSortingStatus").html(r),$("#nationalFuelMixSortingStatus").html(r),$("#resetNationalFuelMix").css("visibility","visible")}else if("sortDescendingEmissionRate"==n){c.a.sortState="descending";r=this.updateStatus(this.pollutantText,c.a.sortState);$(e).hide(),$(e).siblings().show(),$("#nationalEmissionRateSortingStatus").html(r),$("#nationalFuelMixSortingStatus").html(r),$("#resetNationalFuelMix").css("visibility","visible")}this.update(),c.a.sortedFuel="",this.$parent.reset(),this.$parent.show(this.$parent.selectedRegion)}},watch:{selectedRegion:function(){this.clear(),this.sort(this.sortState,this.selectedPollutantAll),this.display(this.orientation),this.show(this.subregionData),this.showSelection(this.selectedPollutantAll)},orientation:function(t){c.a.data.emissionRatesOrientation=t,this.clear(),this.initialize($("#main-charts").width(),290,"#nationalEmissionRateGraph"),this.display(this.orientation)},currentMap:function(t){c.a.currentMap=t}}};e.a=d},function(t,e,n){"use strict";var r=n(3),a=n(32),i=n(6),o=n(1),s=n(8),l={data:function(){return{orientation:"",width:600,height:300,domElement:"#renewablesMap",projection:{},path:{},containerHeight:0,subregionData:[],selectedRenewable:"renewable"}},mounted:function(){this.orientation=o.a.data.emissionRatesOrientation,this.subregionData=i.a.data,this.createProjection(),this.display(this.selectedRenewable,this.$parent.orientation)},methods:{createProjection:function(){this.projection=d3.geo.albersUsa().translate([this.width/2,this.height/2]).scale([this.width+100]),this.path=d3.geo.path().projection(this.projection)},display:function(t,e){var n=d3.scale.ordinal().domain([10,20,30,40,50,60,70,80,90,100]).range(["#D73027","#F46D43","#FDAE61","#FEE08B","#FFFFBF","#D9EF8B","#A6D96A","#66BD63","#1A9850","#006837"]),i=d3.select(this.domElement).append("svg").attr("class","col size-4of5").attr("width",this.width).attr("height",this.height).attr("viewBox","0 0 "+this.width+" "+this.height).attr("preserveAspectRatio","xMidYMid meet").attr("fill","gainsboro"),o=this.width/this.height;$(window).on("resize",function(){var t=$("#main-charts").width();i.attr("width",t),i.attr("height",Math.round(t/o))}).trigger("resize"),i.selectAll("g").data(this.subregionData).enter().append("g").attr("class","renewablesMapTooltip").attr("title",function(e){return e.properties.fullName+" "+t+" generation: "+e.properties.fuelMixCategories[t]+"%"}).append("path").attr("class",function(t){return t.properties.hasOwnProperty("STATE")?"state":"renewablesmap name"+t.properties.name}).attr("d",this.path).style("stroke",function(t){return t.properties.hasOwnProperty("STATE")?"#a9a9a9":"#2B2B2B"}).style("stroke-width","1").style("fill",function(e){var r=e.properties.fuelMixCategories[t];if(r){var a=10*Math.ceil(r/10);return n(a)}return"rgb(213,222,217)"});var l=i.append("g");if(Object(s.a)(".renewablesMapTooltip"),"horizontal"==e){var c=d3.select(this.domElement).append("svg").attr("class","col size-1of5").attr("width",150).attr("height",this.height+107),u=c.selectAll(".renewables-legend").data(n.domain()).enter().append("g").attr("class","renewables-legend"),d=-20;u.append("rect").attr("x",0).attr("y",function(t,e){return e+(d+=25)}).attr("width",15).attr("height",15).style("fill",n);var p=-5;u.append("text").attr("x",25).attr("y",function(t,e){return e+(p+=25)}).style("fill","black").text(function(t,e){return n.domain()[e]-10+"-"+n.domain()[e]+"%"}),Object(a.a)(l,this.path,this.subregionData),Object(r.a)(c,30,this.height)}else{var f=d3.select(this.domElement).append("svg").attr("width",this.width+70).attr("height",40),h=f.selectAll(".renewables-legend").data(n.domain()).enter().append("g").attr("class","renewables-legend"),v=-40;h.append("rect").attr("y",0).attr("x",function(t,e){return e+(v+=50)}).attr("width",15).attr("height",15).style("fill",n);var m=-50;h.append("text").attr("y",40).attr("x",function(t,e){return e+(m+=50)}).style("fill","black").text(function(t,e){return n.domain()[e]-10+"-"+n.domain()[e]+"%"}),Object(a.a)(l,this.path,this.subregionData),Object(r.a)(f,30,this.height)}}}};e.a=l},function(t,e,n){"use strict";var r=n(3),a=n(32),i=n(6),o=n(1),s=n(8),l={data:function(){return{orientation:"",width:600,height:300,domElement:"",projection:{},path:{},containerHeight:0,subregionData:[]}},mounted:function(){this.orientation=o.a.data.emissionRatesOrientation,this.initialize(600,300,"#emissionRatesHeatMap"),this.createProjection(),this.display(this.$parent.selectedPollutantAll,this.orientation)},methods:{initialize:function(t,e,n){this.width=t,this.height=e,this.domElement=n,this.subregionData=i.a.data},createProjection:function(){this.projection=d3.geo.albersUsa().translate([this.width/2,this.height/2]).scale([this.width+100]),this.path=d3.geo.path().projection(this.projection)},clear:function(){d3.selectAll("#emissionRatesHeatMap svg").remove()},hide:function(){$(this.domElement).parent().hide()},show:function(){$(this.domElement).parent().show(),$(window).trigger("resize")},display:function(t,e){var n=d3.select(this.domElement).append("svg").attr("class","col size-4of5").attr("width",this.width).attr("height",this.height).attr("viewBox","0 0 "+this.width+" "+this.height).attr("preserveAspectRatio","xMidYMid meet").attr("fill","gainsboro"),i=this.width/this.height;$(window).on("resize",function(){var t=$("#main-charts").width();n.attr("width",t),n.attr("height",Math.round(t/i))}).trigger("resize");var o=d3.max(this.subregionData,function(e){return e.properties.emissionFactor[t].value}),l=d3.scale.linear().domain([0,o]).range(["#eeeeee",this.$parent.emRatesColors[t]]);"horizontal"==this.orientation?(this.containerHeight=400,this.svgGradient=d3.select(this.domElement).append("svg").attr("class","col size-1of5").attr("width",100).attr("height",this.containerHeight)):"vertical"==this.orientation&&(this.containerHeight=120,this.svgGradient=d3.select(this.domElement).append("svg").attr("width",400).attr("height",this.containerHeight));var c="",u=(this.svgGradient.append("text").attr("y",20).attr("x",20).append("tspan").text(function(){return"co2EmissionRate"==t?(c="carbon dioxide","CO"):"so2EmissionRate"==t?(c="sulfur dioxide","SO"):"noxEmissionRate"==t?(c="nitrogen oxides","NO"):void 0}).append("tspan").attr("baseline-shift","sub").text(function(){return"co2EmissionRate"==t?"2":"so2EmissionRate"==t?"2":"noxEmissionRate"==t?"x":void 0}),this.svgGradient.append("defs").append("linearGradient").attr("class","legend").attr("id","linear-gradient"));if("horizontal"==this.orientation){u.attr("x1","0%").attr("y1","100%").attr("x2","0%").attr("y2","0%"),u.append("stop").attr("offset","0%").attr("stop-color","#eeeeee"),u.append("stop").attr("offset","100%").attr("stop-color",this.$parent.emRatesColors[t]);var d=1*this.containerHeight/5;this.svgGradient.append("rect").attr("width",30).attr("height",.6*this.containerHeight).attr("transform","translate(20,"+d+")").attr("stroke","black").style("fill","url(#linear-gradient)"),this.svgGradient.append("text").attr("x",20).attr("y",50).text("(lbs/MWh)");var p=d3.scale.linear().domain(l.domain()).range([.6*this.containerHeight,0]),f=d3.svg.axis().scale(p).orient("right").tickFormat(function(e){return"co2EmissionRate"!==t?d3.format(".2n")(e):0==e?e:d3.format(",.2r")(e)});0==o&&svgGradient.attr("display","none"),this.svgGradient.attr("class","axis gradient").append("g").attr("transform","translate(50, "+d+")").call(f),d3.selectAll("#emissionRatesHeatMap .tick line").attr("x1","-30"),d3.selectAll("#emissionRatesHeatMap .tick line").attr("x2","0")}else if("vertical"==this.orientation){u.attr("x1","0%").attr("y1","0%").attr("x2","100%").attr("y2","0%"),u.append("stop").attr("offset","0%").attr("stop-color","#eeeeee"),u.append("stop").attr("offset","100%").attr("stop-color",this.$parent.emRatesColors[t]);d=1*this.containerHeight/5+20;this.svgGradient.append("rect").attr("width",370).attr("height",this.containerHeight/6).attr("transform","translate(20,"+d+")").attr("stroke","black").style("fill","url(#linear-gradient)"),this.svgGradient.append("text").attr("x",50).attr("y",20).text("(lbs/MWh)");p=d3.scale.linear().domain(l.domain()).range([0,370]),f=d3.svg.axis().scale(p).orient("bottom").tickFormat(function(e){return"co2EmissionRate"!==t?d3.format(".2n")(e):0==e?e:d3.format(",.2r")(e)});0==o&&svgGradient.attr("display","none"),this.svgGradient.attr("class","axis gradient").append("g").attr("transform","translate(20, "+(d+20)+")").call(f),d3.selectAll("#emissionRatesHeatMap .tick line").attr("y1","-20").attr("y2","5")}n.selectAll("g").data(this.subregionData).enter().append("g").attr("class","emissionRateMapTooltip").attr("title",function(e){return e.properties.fullName+" average "+c+" rate: "+e.properties.emissionFactor[t].display+" lbs/MWh"}).append("path").attr("class",function(t){return t.properties.hasOwnProperty("STATE")?"state":"heatmap name"+t.properties.name}).attr("d",this.path).style("stroke",function(t){return t.properties.hasOwnProperty("STATE")?"#a9a9a9":"#2B2B2B"}).style("stroke-width","1").style("fill",function(e){var n=e.properties.emissionFactor[t].value;return n?l(n):"rgb(213,222,217)"});var h=n.append("g");Object(a.a)(h,this.path,this.subregionData),"horizontal"==e?Object(r.a)(this.svgGradient,30,this.containerHeight-30):"vertical"==e&&Object(r.a)(this.svgGradient,30,this.containerHeight),Object(s.a)(".emissionRateMapTooltip")}}};e.a=l},function(t,e,n){"use strict";var r=n(9),a=n(6),i=n(7),o=n(8),s={data:function(){return{allData:[],nationalFeature:{},subregionData:[],w:425,h:255}},beforeCreate:function(){var t=this;$.ajax({url:r.a.SUBREGION_JSON,success:function(e){t.allData=e.features,t.nationalFeature=e.features.slice(52,53),t.subregionData=e.features.slice(53,e.features.length),a.a.update(t.subregionData),i.a.update(t.nationalFeature),t.$parent.$parent.$parent.subregionJSONLoaded=!0,t.displayMap("#subregionMap",t.allData)}})},methods:{displayMap:function(t,e){var n=this,r=d3.geo.albersUsa().translate([this.w/2,this.h/2]).scale([this.w+100]),a=d3.geo.path().projection(r),i=d3.select(t).append("svg").attr("width",this.w).attr("height",this.h).attr("viewBox",function(){return"0 0 "+n.w+" "+n.h}).attr("preserveAspectRatio","xMidYMid meet").attr("fill","gainsboro"),s=this.w/this.h;$(window).on("resize",function(){var t=$("#subregionMap").width();i.attr("width",t),i.attr("height",Math.round(t/s))}).trigger("resize"),i.selectAll("g").data(e).enter().append("g").attr("class","mapTooltip").attr("title",function(t){if(t.properties.name)return t.properties.name+" ("+t.properties.fullName+")"}).append("path").attr("class",function(t){return t.properties.hasOwnProperty("STATE")?"state":"map "+t.properties.name}).attr("d",a).style("stroke",function(t){return t.properties.hasOwnProperty("STATE")?"#a9a9a9":"#2B2B2B"}).style("stroke-width","1").on("click",function(t){$("#userLocation").val(""),$("#utilitySelectDiv").hide(),n.$root.$emit("subregionSelected",t)}),Object(o.a)(".mapTooltip")}}};e.a=s},function(t,e,n){"use strict";var r=n(2),a={data:function(){return{subregion:{},dataLoaded:!1}},mounted:function(){this.subregion=r.a.data,this.dataLoaded=!0},watch:{$route:function(t,e){t!==e&&(this.subregion=r.a.data)}}};e.a=a},function(t,e,n){"use strict";var r=n(15),a=n(0),i=Object(a.a)({},r.render,r.staticRenderFns,!1,null,null,null),o=n(5);o.install(n(4)),o.compatible&&(t.hot.accept(),t.hot.data?o.reload("4087686a",i.options):o.createRecord("4087686a",i.options),t.hot.accept(15,function(t){r=n(15),o.rerender("4087686a",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),i.options.__file="src/components/AppDescription.vue",e.a=i.exports},function(t,e,n){"use strict";var r=n(13),a=n(43),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("41df47ae",o.options):s.createRecord("41df47ae",o.options),t.hot.accept(13,function(t){r=n(13),s.rerender("41df47ae",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionCharts.vue",e.a=o.exports},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n.map:hover {\r\n fill-opacity: .7;\r\n fill: steelblue;\n}\n.map {\r\n fill-opacity: .5;\n}\r\n",""])},function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#selectionBox > .pane-content {\r\n padding: 0;\n}\n#zipFormDiv {\r\n color: white;\r\n position: relative;\r\n margin: 0 auto;\r\n width: 100%;\r\n background-position: 50%;\r\n background-repeat: no-repeat;\r\n height: 378px;\r\n text-align: center;\r\n background-image: url(https://www.epa.gov/sites/production/files/2018-12/power-profiler-sm-no-text.png);\n}\n#zipFormDiv h2 {\r\n padding-top: 1em;\n}\n#regionSelectionDiv {\r\n background-color: #FAFAFA;\r\n padding-top: 1em;\r\n text-align: center;\n}\n#subregionMapContainer {\r\n background-color: #FAFAFA;\n}\n#formContainer{\r\n padding-bottom: 0;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#intro {\r\n padding: 1.3529em 1em;\n}\r\n\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n.legendBottom, .legendTop {\r\n cursor: pointer;\n}\n.ui-tooltip{\r\n pointer-events: none;\n}\n#nationalFuelMix > h3 , #nationalEmissionRate > h3 {\r\n display: inline-block;\n}\n#nationalEmissionRate {\r\n margin-top: 20px;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#select-fuel-category, #fuelRadios, #resetNationalFuelMixDiv, #sortingDiv {\r\n text-align: center;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#result {\r\n display: none;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#printReport {\r\n width: 900px;\n}\n#kpis-and-map h3 {\r\n display: inline-block;\n}\n#kpis-print > p {\r\n display: inline-block;\r\n margin-left: 50px;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,"\n#printReportMain {\r\n width: 900px;\n}\n.page-break {\r\n display: block;\r\n page-break-after: always;\n}\r\n",""])},function(t,e,n){(t.exports=n(10)(!1)).push([t.i,'\ninput[type=number]::-webkit-inner-spin-button, \r\ninput[type=number]::-webkit-outer-spin-button { \r\n -webkit-appearance: none; \r\n margin: 0;\n}\n.subregionLabels, .selectedRegionValue, .nationalX text, .nationalBar text, .y.axis text, .ui-tooltip {\r\n font-size: 15px;\n}\n.axis line, .y.axis path, .nationalY > .domain, .nationalBarV > .domain {\r\n fill: none;\r\n stroke: #000;\r\n shape-rendering: crispEdges;\n}\n.x.axis path, #emissionRatesHeatMap > svg.axis.gradient > g > path {\r\n display: none;\n}\n#emissionRatesHeatMap > svg.axis > g > path {\r\n fill: none;\n}\n#kpis div, #kpis .pane-title,#mapSelect, .select-pollutant-label, #pollutantSelectAll, #pollutantSelectSub {\r\n text-align: center;\n}\n#app p {\r\n padding-bottom: 0.7em;\n}\n#app {\r\n padding-left: 1em;\n}\n.select-pollutant-label, #nationalEmissionRateSortingStatus, #nationalFuelMixSortingStatus{\r\n padding-bottom: 0 !important;\n}\n#sidebar {\r\n background-color: #FAFAFA;\r\n border: 1px solid black;\n}\n.modal-mask {\r\n position: fixed;\r\n z-index: 9998;\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n height: 100%;\r\n background-color: rgba(0, 0, 0, .5);\r\n display: table;\r\n transition: opacity .3s ease;\n}\n.modal-wrapper {\r\n display: table-cell;\r\n vertical-align: middle;\n}\n.modal-container {\r\n width: 70%;\r\n margin: 0px auto;\r\n padding: 20px 30px;\r\n background-color: #fff;\r\n border-radius: 2px;\r\n box-shadow: 0 2px 8px rgba(0, 0, 0, .33);\r\n transition: all .3s ease;\r\n font-family: Helvetica, Arial, sans-serif;\n}\n.modal-body {\r\n margin: 20px 0;\n}\n.modal-default-button {\r\n float: right;\n}\n.tooltip {\r\n\tdisplay:none;\r\n\tposition:absolute;\r\n\tborder:1px solid #D3D3D3;\r\n\tbackground-color:#fff;\r\n\tborder-radius:5px;\r\n\tpadding:8px;\r\n\tcolor:#161616;\r\n\tfont-size:12px Arial;\n}\r\n/* transition="modal" styles */\n.modal-enter {\r\n opacity: 0;\n}\n.modal-leave-active {\r\n opacity: 0;\n}\n.modal-enter .modal-container,\r\n.modal-leave-active .modal-container {\r\n -webkit-transform: scale(1.1);\r\n transform: scale(1.1);\n}\n#appDescription, #printReportMain, #printReport {\r\n display: none;\n}\n@media print {\n#app, #block-pane-official-website-header, .sitewide-alert, .ui-tooltip, footer, nav, .skip-links {\r\n display: none;\n}\nheader {\r\n padding: 0 0 0 0;\n}\n#appDescription, #printReportMain, #printReport {\r\n display: block;\n}\n}\r\n',""])},function(t,e,n){"use strict";var r=n(22),a=n(42),i=(n(100),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("7ba5bd90",o.options):s.createRecord("7ba5bd90",o.options),t.hot.accept(22,function(t){r=n(22),s.rerender("7ba5bd90",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/App.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(21),a=n(48),i=(n(94),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("3eca7188",o.options):s.createRecord("3eca7188",o.options),t.hot.accept(21,function(t){r=n(21),s.rerender("3eca7188",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SideBar.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(29),a=n(53),i=(n(93),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("97fa4630",o.options):s.createRecord("97fa4630",o.options),t.hot.accept(29,function(t){r=n(29),s.rerender("97fa4630",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionSelection.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(31),a=n(57),i=(n(89),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("0f7d0bb8",o.options):s.createRecord("0f7d0bb8",o.options),t.hot.accept(31,function(t){r=n(31),s.rerender("0f7d0bb8",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionMap.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(14),a=n(45),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("03f5295e",o.options):s.createRecord("03f5295e",o.options),t.hot.accept(14,function(t){r=n(14),s.rerender("03f5295e",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/modals/MoreInfoModal.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(16),a=n(49),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("12dcf111",o.options):s.createRecord("12dcf111",o.options),t.hot.accept(16,function(t){r=n(16),s.rerender("12dcf111",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/modals/ResourcesModal.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(18),a=n(46),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("2c108a16",o.options):s.createRecord("2c108a16",o.options),t.hot.accept(18,function(t){r=n(18),s.rerender("2c108a16",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/modals/SubregionsModal.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(19),a=n(47),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("2be4cad8",o.options):s.createRecord("2be4cad8",o.options),t.hot.accept(19,function(t){r=n(19),s.rerender("2be4cad8",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/modals/MegawattModal.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(20),a=n(44),i=(n(95),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("44adda9e",o.options):s.createRecord("44adda9e",o.options),t.hot.accept(20,function(t){r=n(20),s.rerender("44adda9e",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/MainCharts.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(28),a=n(54),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("79c68597",o.options):s.createRecord("79c68597",o.options),t.hot.accept(28,function(t){r=n(28),s.rerender("79c68597",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/EmissionRateChart.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(30),a=n(56),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("1a110f56",o.options):s.createRecord("1a110f56",o.options),t.hot.accept(30,function(t){r=n(30),s.rerender("1a110f56",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/EmissionRateMap.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(12),a=n(55),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("4d7ad460",o.options):s.createRecord("4d7ad460",o.options),t.hot.accept(12,function(t){r=n(12),s.rerender("4d7ad460",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/RenewablesMap.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(27),a=n(52),i=(n(96),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("740cdc0c",o.options):s.createRecord("740cdc0c",o.options),t.hot.accept(27,function(t){r=n(27),s.rerender("740cdc0c",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionFuelMixChart.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(26),a=n(51),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("dfeefa1a",o.options):s.createRecord("dfeefa1a",o.options),t.hot.accept(26,function(t){r=n(26),s.rerender("dfeefa1a",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/SubregionEmissionRateChart.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(25),a=n(50),i=n(0),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("a4edba24",o.options):s.createRecord("a4edba24",o.options),t.hot.accept(25,function(t){r=n(25),s.rerender("a4edba24",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/EmissionsCalculator.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(23),a=(n(97),n(0)),i=Object(a.a)({},r.render,r.staticRenderFns,!1,null,null,null),o=n(5);o.install(n(4)),o.compatible&&(t.hot.accept(),t.hot.data?o.reload("69e40894",i.options):o.createRecord("69e40894",i.options),t.hot.accept(23,function(t){r=n(23),o.rerender("69e40894",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),i.options.__file="src/components/CalculatorResults.vue",e.a=i.exports},function(t,e,n){"use strict";var r=n(24),a=n(58),i=(n(98),n(0)),o=Object(i.a)(a.a,r.render,r.staticRenderFns,!1,null,null,null),s=n(5);s.install(n(4)),s.compatible&&(t.hot.accept(),t.hot.data?s.reload("5aa5b3c1",o.options):s.createRecord("5aa5b3c1",o.options),t.hot.accept(24,function(t){r=n(24),s.rerender("5aa5b3c1",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),o.options.__file="src/components/PrintReport.vue",e.a=o.exports},function(t,e,n){"use strict";var r=n(17),a=(n(99),n(0)),i=Object(a.a)({},r.render,r.staticRenderFns,!1,null,null,null),o=n(5);o.install(n(4)),o.compatible&&(t.hot.accept(),t.hot.data?o.reload("32e028c8",i.options):o.createRecord("32e028c8",i.options),t.hot.accept(17,function(t){r=n(17),o.rerender("32e028c8",{render:r.render,staticRenderFns:r.staticRenderFns})}.bind(this))),i.options.__file="src/components/MainPrintReport.vue",e.a=i.exports},function(t,e,n){"use strict";var r=n(33);n.n(r).a},function(t,e,n){(function(t){var r=void 0!==t&&t||"undefined"!=typeof self&&self||window,a=Function.prototype.apply;function i(t,e){this._id=t,this._clearFn=e}e.setTimeout=function(){return new i(a.call(setTimeout,r,arguments),clearTimeout)},e.setInterval=function(){return new i(a.call(setInterval,r,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},i.prototype.unref=i.prototype.ref=function(){},i.prototype.close=function(){this._clearFn.call(r,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout(function(){t._onTimeout&&t._onTimeout()},e))},n(91),e.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==t&&t.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==t&&t.clearImmediate||this&&this.clearImmediate}).call(this,n(62))},function(t,e,n){(function(t,e){!function(t,n){"use strict";if(!t.setImmediate){var r,a,i,o,s,l=1,c={},u=!1,d=t.document,p=Object.getPrototypeOf&&Object.getPrototypeOf(t);p=p&&p.setTimeout?p:t,"[object process]"==={}.toString.call(t.process)?r=function(t){e.nextTick(function(){h(t)})}:!function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=n,e}}()?t.MessageChannel?((i=new MessageChannel).port1.onmessage=function(t){h(t.data)},r=function(t){i.port2.postMessage(t)}):d&&"onreadystatechange"in d.createElement("script")?(a=d.documentElement,r=function(t){var e=d.createElement("script");e.onreadystatechange=function(){h(t),e.onreadystatechange=null,a.removeChild(e),e=null},a.appendChild(e)}):r=function(t){setTimeout(h,0,t)}:(o="setImmediate$"+Math.random()+"$",s=function(e){e.source===t&&"string"==typeof e.data&&0===e.data.indexOf(o)&&h(+e.data.slice(o.length))},t.addEventListener?t.addEventListener("message",s,!1):t.attachEvent("onmessage",s),r=function(e){t.postMessage(o+e,"*")}),p.setImmediate=function(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),n=0;n1)for(var n=1;n-1}function o(t,e){for(var n in e)t[n]=e[n];return t}var s={name:"RouterView",functional:!0,props:{name:{type:String,default:"default"}},render:function(t,e){var n=e.props,r=e.children,a=e.parent,i=e.data;i.routerView=!0;for(var s=a.$createElement,l=n.name,c=a.$route,u=a._routerViewCache||(a._routerViewCache={}),d=0,p=!1;a&&a._routerRoot!==a;){var f=a.$vnode&&a.$vnode.data;f&&(f.routerView&&d++,f.keepAlive&&a._inactive&&(p=!0)),a=a.$parent}if(i.routerViewDepth=d,p)return s(u[l],i,r);var h=c.matched[d];if(!h)return u[l]=null,s();var v=u[l]=h.components[l];i.registerRouteInstance=function(t,e){var n=h.instances[l];(e&&n!==t||!e&&n===t)&&(h.instances[l]=e)},(i.hook||(i.hook={})).prepatch=function(t,e){h.instances[l]=e.componentInstance},i.hook.init=function(t){t.data.keepAlive&&t.componentInstance&&t.componentInstance!==h.instances[l]&&(h.instances[l]=t.componentInstance)};var m=i.props=function(t,e){switch(typeof e){case"undefined":return;case"object":return e;case"function":return e(t);case"boolean":return e?t.params:void 0;default:0}}(c,h.props&&h.props[l]);if(m){m=i.props=o({},m);var g=i.attrs=i.attrs||{};for(var y in m)v.props&&y in v.props||(g[y]=m[y],delete m[y])}return s(v,i,r)}};var l=/[!'()*]/g,c=function(t){return"%"+t.charCodeAt(0).toString(16)},u=/%2C/g,d=function(t){return encodeURIComponent(t).replace(l,c).replace(u,",")},p=decodeURIComponent;function f(t){var e={};return(t=t.trim().replace(/^(\?|#|&)/,""))?(t.split("&").forEach(function(t){var n=t.replace(/\+/g," ").split("="),r=p(n.shift()),a=n.length>0?p(n.join("=")):null;void 0===e[r]?e[r]=a:Array.isArray(e[r])?e[r].push(a):e[r]=[e[r],a]}),e):e}function h(t){var e=t?Object.keys(t).map(function(e){var n=t[e];if(void 0===n)return"";if(null===n)return d(e);if(Array.isArray(n)){var r=[];return n.forEach(function(t){void 0!==t&&(null===t?r.push(d(e)):r.push(d(e)+"="+d(t)))}),r.join("&")}return d(e)+"="+d(n)}).filter(function(t){return t.length>0}).join("&"):null;return e?"?"+e:""}var v=/\/?$/;function m(t,e,n,r){var a=r&&r.options.stringifyQuery,i=e.query||{};try{i=g(i)}catch(t){}var o={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:i,params:e.params||{},fullPath:_(e,a),matched:t?b(t):[]};return n&&(o.redirectedFrom=_(n,a)),Object.freeze(o)}function g(t){if(Array.isArray(t))return t.map(g);if(t&&"object"==typeof t){var e={};for(var n in t)e[n]=g(t[n]);return e}return t}var y=m(null,{path:"/"});function b(t){for(var e=[];t;)e.unshift(t),t=t.parent;return e}function _(t,e){var n=t.path,r=t.query;void 0===r&&(r={});var a=t.hash;return void 0===a&&(a=""),(n||"/")+(e||h)(r)+a}function x(t,e){return e===y?t===e:!!e&&(t.path&&e.path?t.path.replace(v,"")===e.path.replace(v,"")&&t.hash===e.hash&&w(t.query,e.query):!(!t.name||!e.name)&&(t.name===e.name&&t.hash===e.hash&&w(t.query,e.query)&&w(t.params,e.params)))}function w(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t),r=Object.keys(e);return n.length===r.length&&n.every(function(n){var r=t[n],a=e[n];return"object"==typeof r&&"object"==typeof a?w(r,a):String(r)===String(a)})}var R,A=[String,Object],E=[String,Array],C={name:"RouterLink",props:{to:{type:A,required:!0},tag:{type:String,default:"a"},exact:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,event:{type:E,default:"click"}},render:function(t){var e=this,n=this.$router,r=this.$route,a=n.resolve(this.to,r,this.append),i=a.location,s=a.route,l=a.href,c={},u=n.options.linkActiveClass,d=n.options.linkExactActiveClass,p=null==u?"router-link-active":u,f=null==d?"router-link-exact-active":d,h=null==this.activeClass?p:this.activeClass,g=null==this.exactActiveClass?f:this.exactActiveClass,y=i.path?m(null,i,null,n):s;c[g]=x(r,y),c[h]=this.exact?c[g]:function(t,e){return 0===t.path.replace(v,"/").indexOf(e.path.replace(v,"/"))&&(!e.hash||t.hash===e.hash)&&function(t,e){for(var n in e)if(!(n in t))return!1;return!0}(t.query,e.query)}(r,y);var b=function(t){S(t)&&(e.replace?n.replace(i):n.push(i))},_={click:S};Array.isArray(this.event)?this.event.forEach(function(t){_[t]=b}):_[this.event]=b;var w={class:c};if("a"===this.tag)w.on=_,w.attrs={href:l};else{var R=function t(e){if(e)for(var n,r=0;r=0&&(e=t.slice(r),t=t.slice(0,r));var a=t.indexOf("?");return a>=0&&(n=t.slice(a+1),t=t.slice(0,a)),{path:t,query:n,hash:e}}(a.path||""),c=e&&e.path||"/",u=l.path?F(l.path,c,n||a.append):c,d=function(t,e,n){void 0===e&&(e={});var r,a=n||f;try{r=a(t||"")}catch(t){r={}}for(var i in e)r[i]=e[i];return r}(l.query,a.query,r&&r.options.parseQuery),p=a.hash||l.hash;return p&&"#"!==p.charAt(0)&&(p="#"+p),{_normalized:!0,path:u,query:d,hash:p}}function Q(t,e){var n=X(t),r=n.pathList,a=n.pathMap,i=n.nameMap;function o(t,n,o){var s=J(t,n,!1,e),c=s.name;if(c){var u=i[c];if(!u)return l(null,s);var d=u.regex.keys.filter(function(t){return!t.optional}).map(function(t){return t.name});if("object"!=typeof s.params&&(s.params={}),n&&"object"==typeof n.params)for(var p in n.params)!(p in s.params)&&d.indexOf(p)>-1&&(s.params[p]=n.params[p]);if(u)return s.path=K(u.path,s.params),l(u,s,o)}else if(s.path){s.params={};for(var f=0;f=t.length?n():t[a]?e(t[a],function(){r(a+1)}):r(a+1)};r(0)}function yt(t){return function(e,n,r){var a=!1,o=0,s=null;bt(t,function(t,e,n,l){if("function"==typeof t&&void 0===t.cid){a=!0,o++;var c,u=wt(function(e){var a;((a=e).__esModule||xt&&"Module"===a[Symbol.toStringTag])&&(e=e.default),t.resolved="function"==typeof e?e:R.extend(e),n.components[l]=e,--o<=0&&r()}),d=wt(function(t){var e="Failed to resolve async component "+l+": "+t;s||(s=i(t)?t:new Error(e),r(s))});try{c=t(u,d)}catch(t){d(t)}if(c)if("function"==typeof c.then)c.then(u,d);else{var p=c.component;p&&"function"==typeof p.then&&p.then(u,d)}}}),a||r()}}function bt(t,e){return _t(t.map(function(t){return Object.keys(t.components).map(function(n){return e(t.components[n],t.instances[n],t,n)})}))}function _t(t){return Array.prototype.concat.apply([],t)}var xt="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;function wt(t){var e=!1;return function(){for(var n=[],r=arguments.length;r--;)n[r]=arguments[r];if(!e)return e=!0,t.apply(this,n)}}var Rt=function(t,e){this.router=t,this.base=function(t){if(!t)if(k){var e=document.querySelector("base");t=(t=e&&e.getAttribute("href")||"/").replace(/^https?:\/\/[^\/]+/,"")}else t="/";"/"!==t.charAt(0)&&(t="/"+t);return t.replace(/\/$/,"")}(e),this.current=y,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[]};function At(t,e,n,r){var a=bt(t,function(t,r,a,i){var o=function(t,e){"function"!=typeof t&&(t=R.extend(t));return t.options[e]}(t,e);if(o)return Array.isArray(o)?o.map(function(t){return n(t,r,a,i)}):n(o,r,a,i)});return _t(r?a.reverse():a)}function Et(t,e){if(e)return function(){return t.apply(e,arguments)}}Rt.prototype.listen=function(t){this.cb=t},Rt.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},Rt.prototype.onError=function(t){this.errorCbs.push(t)},Rt.prototype.transitionTo=function(t,e,n){var r=this,a=this.router.match(t,this.current);this.confirmTransition(a,function(){r.updateRoute(a),e&&e(a),r.ensureURL(),r.ready||(r.ready=!0,r.readyCbs.forEach(function(t){t(a)}))},function(t){n&&n(t),t&&!r.ready&&(r.ready=!0,r.readyErrorCbs.forEach(function(e){e(t)}))})},Rt.prototype.confirmTransition=function(t,e,n){var r=this,a=this.current,o=function(t){i(t)&&(r.errorCbs.length?r.errorCbs.forEach(function(e){e(t)}):console.error(t)),n&&n(t)};if(x(t,a)&&t.matched.length===a.matched.length)return this.ensureURL(),o();var s=function(t,e){var n,r=Math.max(t.length,e.length);for(n=0;n-1?decodeURI(t.slice(0,r))+t.slice(r):decodeURI(t)}else n>-1&&(t=decodeURI(t.slice(0,n))+t.slice(n));return t}function Ot(t){var e=window.location.href,n=e.indexOf("#");return(n>=0?e.slice(0,n):e)+"#"+t}function Mt(t){ut?vt(Ot(t)):window.location.hash=t}function Dt(t){ut?mt(Ot(t)):window.location.replace(Ot(t))}var Tt=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var r=this;this.transitionTo(t,function(t){r.stack=r.stack.slice(0,r.index+1).concat(t),r.index++,e&&e(t)},n)},e.prototype.replace=function(t,e,n){var r=this;this.transitionTo(t,function(t){r.stack=r.stack.slice(0,r.index).concat(t),e&&e(t)},n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var r=this.stack[n];this.confirmTransition(r,function(){e.index=n,e.updateRoute(r)})}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(Rt),It=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=Q(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!ut&&!1!==t.fallback,this.fallback&&(e="hash"),k||(e="abstract"),this.mode=e,e){case"history":this.history=new Ct(this,t.base);break;case"hash":this.history=new St(this,t.base,this.fallback);break;case"abstract":this.history=new Tt(this,t.base);break;default:0}},Nt={currentRoute:{configurable:!0}};function jt(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}It.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},Nt.currentRoute.get=function(){return this.history&&this.history.current},It.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null)}),!this.app){this.app=t;var n=this.history;if(n instanceof Ct)n.transitionTo(n.getCurrentLocation());else if(n instanceof St){var r=function(){n.setupListeners()};n.transitionTo(n.getCurrentLocation(),r,r)}n.listen(function(t){e.apps.forEach(function(e){e._route=t})})}},It.prototype.beforeEach=function(t){return jt(this.beforeHooks,t)},It.prototype.beforeResolve=function(t){return jt(this.resolveHooks,t)},It.prototype.afterEach=function(t){return jt(this.afterHooks,t)},It.prototype.onReady=function(t,e){this.history.onReady(t,e)},It.prototype.onError=function(t){this.history.onError(t)},It.prototype.push=function(t,e,n){this.history.push(t,e,n)},It.prototype.replace=function(t,e,n){this.history.replace(t,e,n)},It.prototype.go=function(t){this.history.go(t)},It.prototype.back=function(){this.go(-1)},It.prototype.forward=function(){this.go(1)},It.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map(function(t){return Object.keys(t.components).map(function(e){return t.components[e]})})):[]},It.prototype.resolve=function(t,e,n){var r=J(t,e=e||this.history.current,n,this),a=this.match(r,e),i=a.redirectedFrom||a.fullPath;return{location:r,route:a,href:function(t,e,n){var r="hash"===n?"#"+e:e;return t?O(t+"/"+r):r}(this.history.base,i,this.mode),normalizedTo:r,resolved:a}},It.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==y&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(It.prototype,Nt),It.install=function t(e){if(!t.installed||R!==e){t.installed=!0,R=e;var n=function(t){return void 0!==t},r=function(t,e){var r=t.$options._parentVnode;n(r)&&n(r=r.data)&&n(r=r.registerRouteInstance)&&r(t,e)};e.mixin({beforeCreate:function(){n(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),e.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,r(this,this)},destroyed:function(){r(this)}}),Object.defineProperty(e.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(e.prototype,"$route",{get:function(){return this._routerRoot._route}}),e.component("RouterView",s),e.component("RouterLink",C);var a=e.config.optionMergeStrategies;a.beforeRouteEnter=a.beforeRouteLeave=a.beforeRouteUpdate=a.created}},It.version="3.0.6",k&&window.Vue&&window.Vue.use(It);var Pt=It,Lt=n(60);r.default.use(Pt);var Bt=new Pt({routes:[{path:"/",name:"home"},{path:"/:subregion",name:"subregion",component:Lt.a}]}),Ht=n(2),Ut=n(9);new r.default({el:"#app",render:function(t){return t(a.a)},router:Bt,beforeCreate:function(){Ut.a.SUBREGION_JSON="/sites/staging/files/2019-02/subregion_0.json",Ut.a.ZIP_UTILITY="/sites/staging/files/2018-07/zip_utility.csv",Ut.a.EGRID_LOGO="/sites/staging/files/2018-09/egrid_text_logo.png"}}).$on("subregionSelected",function(t){Ht.a.update(t),this.$children[0].$children[4].$children[0].selectedRegion=Ht.a.data,this.$children[0].$children[4].selectedRegion=Ht.a.data,$(".map").css({fill:""}),$("."+t.properties.name).css({fill:"steelblue"}),$("#regionSelectionDropdown").val(t.properties.name),Bt.push(t.properties.name)}),"function"==typeof ga&&Bt.afterEach(function(t){ga("EPA.set","page",location.pathname+"#"+t.fullPath),ga("EPA.send","pageview")})}]); \ No newline at end of file diff --git a/prep/README.md b/prep/README.md new file mode 100644 index 0000000..317d2fc --- /dev/null +++ b/prep/README.md @@ -0,0 +1,46 @@ +# Steps for updating data files + +## Requirements +- Python 3 +- Node.js +- [Mapshaper command line tool](https://github.com/mbloch/mapshaper): +```bash +npm install -g mapshaper +``` + +Power Profiler runs on two data files, `zip.csv` and `subregion.json`. The zip-subregion utility lookup data comes from the "Zip-subregion" tab of the Power Profiler Emissions Tool Excel file. This can be found on [the eGRID website](https://www.epa.gov/energy/emissions-generation-resource-integrated-database-egrid). Follow these steps to update the `subregion.json` file (for a new year of eGRID data, for example): + +## Initial setup + +1. [Download and unzip eGRID shape files from here](https://www.epa.gov/energy/download-egrid2016-shapefiles) +2. Add `.dbf` and `.shp` file to `data/shape` folder. +3. [Download and unzip latest eGRID Excel files from here](https://www.epa.gov/energy/emissions-generation-resource-integrated-database-egrid) +4. Create `.csv` files in the `data/csv` folder from the following tabs in the eGRID Excel file: + - SR (Subregion): `subregion_data.csv` + - US (United States): `national.csv` + - GGL (Gross Grid Loss): `grid_loss.csv` + *Note: you need to remove the top level column headers prior to saving the tabs as csv files. Also if there are formatting changes to any of the eGrid data files you will need to do some preprocessing prior to running these commands. The subregion_data.csv and national.csv need to have percent formatted as 89.0 (not 0.89 or 89.0%). The grid_loss.csv needs to have percent formatted as 89.0%. There should be a more consistent handling of this in the processing scripts.* +5. Run the following command to add renewable/non-renewable breakdowns and create file `subregion_fuel_mix.csv`: +```python +python add_fuel_breakdown.py +``` + +## Using mapshaper to create GeoJSON + +6. Run this command to transform shape file into GeoJSON: +```bash +mapshaper egrid_2016_subregions.shp -simplify 1% -o format=geojson +``` +7. Run the following command to add `states.json` to the file and replace "Subregions" key with "name": +```javascript +node add_states.js +``` +8. Run the following command to add eGRID data values to file: +```python +python add_egrid_data.py +``` +9. Run this command to simplify file further: +```bash +mapshaper subregion.json -simplify dp 5% -o force format=geojson +``` +10. Add the result JSON inside `result` to the app's `data` folder. \ No newline at end of file diff --git a/prep/add_egrid_data.py b/prep/add_egrid_data.py new file mode 100644 index 0000000..f0441c9 --- /dev/null +++ b/prep/add_egrid_data.py @@ -0,0 +1,178 @@ +import pandas as pd +import json +# Load in Subregion data. +sn = pd.read_csv("./data/csv/subregion_data.csv", delimiter=',', thousands=',') +snfm = pd.read_csv("./data/csv/subregion_fuel_mix.csv",delimiter=',',thousands=',') +# Load in Grid Loss data. +gl = pd.read_csv("./data/csv/grid_loss.csv", delimiter=',', thousands=',') +# Load in US-level data. +n = pd.read_csv("./data/csv/national.csv", delimiter=',', thousands=',') +# Convert % strings into floats. +gl['GGRSLOSS_STR'] = gl['GGRSLOSS'] +gl['GGRSLOSS'] = (gl['GGRSLOSS'].str.rstrip('%').astype('float') / 100.0).round(4) +# Renewable/Non-renewables dictionary. +renewables = { + "pctRenewable":"Percent Renewable (Hydro, wind, biomass, solar, geothermal) net generation", + "pctNonRenewable":"Percent Non-renewable (coal, oil, gas, other fossil, other unknown, and Nuclear) net generation", + "pctNonRenewableExcNuclear":"Percent Non-renewable Excluding Nuclear (coal, oil, gas, other fossil, other unknown) net generation", + "pctRenewableExcHydro":"Percent Renewable Excluding Hydro (wind, biomass, solar, geothermal) net generation", + "pctNuclear":"Percent Nuclear net generation", + "pctHydro":"Percent Hydro net generation" +} +# Round values to the tenths for emission rates. Display a comma for thousands. +sn['SRNOXRTA'] = sn['SRNOXRTA'].round(1) +sn['SRSO2RTA'] = sn['SRSO2RTA'].round(1) +sn['SRCO2RTA'] = sn['SRCO2RTA'].round(1) +sn['SRNOXRTA_STR'] = sn['SRNOXRTA'].round(1).astype('str') +sn['SRSO2RTA_STR'] = sn['SRSO2RTA'].round(1).astype('str') +sn['SRCO2RTA_STR'] = sn['SRCO2RTA'].map('{:,.1f}'.format) +n['USNOXRTA'] = n['USNOXRTA'].round(1) +n['USSO2RTA'] = n['USSO2RTA'].round(1) +n['USCO2RTA'] = n['USCO2RTA'].round(1) +n['USNOXRTA_STR'] = n['USNOXRTA'].round(1).astype('str') +n['USSO2RTA_STR'] = n['USSO2RTA'].round(1).astype('str') +n['USCO2RTA_STR'] = n['USCO2RTA'].map('{:,.1f}'.format) +# Set up lists for checking whether subregion is in one of the interconnect power grids. +alaska = ['AKGD','AKMS'] +hawaii = ['HIMS','HIOA'] +ercot = ['ERCT'] +eastern = ['MROE','SRMV','SRMW','RFCW','RFCM','SRTV','SRSO','FRCC','SRVC','RFCE','NYCW','NYLI','NYUP','NEWE','SPSO','SPNO','MROW'] +western = ['CAMX','NWPP','AZNM','RMPA'] +# Read in Subregions json. +with open("./data/shape/egrid_2016_subregions_states.json", "r") as read_file: + data = json.load(read_file) + for feature in data["features"]: + # Add eGRID data values. + for index, row in sn.iterrows(): + if "name" in feature["properties"]: + if feature["properties"]["name"] == row["SUBRGN"]: + feature["properties"]["fullName"] = row["SRNAME"] + feature["properties"]["emissionFactor"] = { + "co2EmissionRate": { + "value": row["SRCO2RTA"], + "display": row["SRCO2RTA_STR"], + "units": "lb/MWh" + }, + "noxEmissionRate": { + "value": row["SRNOXRTA"], + "display": row["SRNOXRTA_STR"], + "units": "lb/MWh" + }, + "so2EmissionRate": { + "value": row["SRSO2RTA"], + "display": row["SRSO2RTA_STR"], + "units": "lb/MWh" + } + } + feature["properties"]["fuelMix"] = { + "coal": row["SRCLPR"], + "oil": row["SROLPR"], + "gas": row["SRGSPR"], + "nuclear": row["SRNCPR"], + "hydro": row["SRHYPR"], + "biomass": row["SRBMPR"], + "wind": row["SRWIPR"], + "solar": row["SRSOPR"], + "geothermal": row["SRGTPR"], + "otherFossilFuel": row["SROFPR"], + "otherUnknownFuel": row["SROPPR"] + } + # Add "gridLoss" to each feature from GGL sheet in eGRID data. + if feature["properties"]["name"] in alaska: + feature["properties"]["gridLoss"] = { + "display": gl[gl['REGION'] == 'Alaska']['GGRSLOSS_STR'].values[0], + "value": gl[gl['REGION'] == 'Alaska']['GGRSLOSS'].values[0] + } + elif feature["properties"]["name"] in hawaii: + feature["properties"]["gridLoss"] = { + "display": gl[gl['REGION'] == 'Hawaii']['GGRSLOSS_STR'].values[0], + "value" : gl[gl['REGION'] == 'Hawaii']['GGRSLOSS'].values[0] + } + elif feature["properties"]["name"] in eastern: + feature["properties"]["gridLoss"] = { + "display": gl[gl['REGION'] == 'Eastern']['GGRSLOSS_STR'].values[0], + "value": gl[gl['REGION'] == 'Eastern']['GGRSLOSS'].values[0] + } + elif feature["properties"]["name"] in western: + feature["properties"]["gridLoss"] = { + "display": gl[gl['REGION'] == 'Western']['GGRSLOSS_STR'].values[0], + "value": gl[gl['REGION'] == 'Western']['GGRSLOSS'].values[0] + } + elif feature["properties"]["name"] in ercot: + feature["properties"]["gridLoss"] = { + "display": gl[gl['REGION'] == 'ERCOT']['GGRSLOSS_STR'].values[0], + "value": gl[gl['REGION'] == 'ERCOT']['GGRSLOSS'].values[0] + } + + # Add other fuel mix categories + for index, row in snfm.iterrows(): + if "name" in feature["properties"]: + + if feature["properties"]["name"] == row["eGRID subregion acronym"]: + feature["properties"]["fuelMixCategories"] = { + "renewable": row[renewables["pctRenewable"]], + "non-renewable": row[renewables["pctNonRenewable"]], + "non-renewable (excluding nuclear)": row[renewables["pctNonRenewableExcNuclear"]], + "renewable (excluding hydro)": row[renewables["pctRenewableExcHydro"]], + "nuclear": row[renewables["pctNuclear"]], + "hydro": row[renewables["pctHydro"]] + } + elif row["eGRID subregion acronym"] == "U.S.": + fmCategories = { + "renewable": row[renewables["pctRenewable"]], + "non-renewable": row[renewables["pctNonRenewable"]], + "non-renewable (excluding nuclear)": row[renewables["pctNonRenewableExcNuclear"]], + "renewable (excluding hydro)": row[renewables["pctRenewableExcHydro"]], + "nuclear": row[renewables["pctNuclear"]], + "hydro": row[renewables["pctHydro"]] + } + + # Add national feature. + national = { + "type":"Feature", + "geometry":{}, + "properties":{ + "name":"National", + "fullName":"National", + "fuelMix":{ + "gas":n['USGSPR'].values[0], + "coal":n['USCLPR'].values[0], + "nuclear":n['USNCPR'].values[0], + "hydro":n['USHYPR'].values[0], + "wind":n['USWIPR'].values[0], + "biomass":n['USBMPR'].values[0], + "solar":n['USSOPR'].values[0], + "oil":n['USOLPR'].values[0], + "geothermal":n['USGTPR'].values[0], + "otherFossilFuel":n['USOFPR'].values[0], + "otherUnknownFuel":n['USOPPR'].values[0] + }, + "fuelMixCategories": fmCategories, + "emissionFactor":{ + "noxEmissionRate":{ + "units":"lb/MWh", + "display":n['USNOXRTA_STR'].values[0], + "value":n['USNOXRTA'].values[0] + }, + "so2EmissionRate":{ + "units":"lb/MWh", + "display":n['USSO2RTA_STR'].values[0], + "value":n['USSO2RTA'].values[0] + }, + "co2EmissionRate":{ + "units":"lb/MWh", + "display":n['USCO2RTA_STR'].values[0], + "value":n['USCO2RTA'].values[0] + } + }, + "gridLoss": { + "display": gl[gl['REGION'] == 'U.S.']['GGRSLOSS_STR'].values[0], + "value": gl[gl['REGION'] == 'U.S.']['GGRSLOSS'].values[0] + } + } + } + + data["features"].insert(52,national) + +with open('./result/subregion.json', 'w') as outfile: + json.dump(data, outfile) \ No newline at end of file diff --git a/prep/add_fuel_breakdown.py b/prep/add_fuel_breakdown.py new file mode 100644 index 0000000..06a7aae --- /dev/null +++ b/prep/add_fuel_breakdown.py @@ -0,0 +1,47 @@ +import pandas as pd +# Load eGRID subregion data +sn = pd.read_csv("./data/csv/subregion_data.csv", delimiter=',', thousands=',') +sn['SRNOXRTA'] = sn['SRNOXRTA'].round(1) +sn['SRSO2RTA'] = sn['SRSO2RTA'].round(1) +sn['SRCO2RTA'] = sn['SRCO2RTA'].round(1) +sn['SRNOXRTA_STR'] = sn['SRNOXRTA'].round(1).astype('str') +sn['SRSO2RTA_STR'] = sn['SRSO2RTA'].round(1).astype('str') +sn['SRCO2RTA_STR'] = sn['SRCO2RTA'].map('{:,.1f}'.format) +# Load eGRID national data +n = pd.read_csv("./data/csv/national.csv", delimiter=',', thousands=',') +n['USNOXRTA'] = n['USNOXRTA'].round(1) +n['USSO2RTA'] = n['USSO2RTA'].round(1) +n['USCO2RTA'] = n['USCO2RTA'].round(1) +n['USNOXRTA_STR'] = n['USNOXRTA'].round(1).astype('str') +n['USSO2RTA_STR'] = n['USSO2RTA'].round(1).astype('str') +n['USCO2RTA_STR'] = n['USCO2RTA'].map('{:,.1f}'.format) +# Column names +cols = [ + "eGRID subregion acronym", + "eGRID subregion name", + "Percent Renewable (Hydro, wind, biomass, solar, geothermal) net generation", + "Percent Non-renewable (coal, oil, gas, other fossil, other unknown, and Nuclear) net generation", + "Percent Non-renewable Excluding Nuclear (coal, oil, gas, other fossil, other unknown) net generation", + "Percent Renewable Excluding Hydro (wind, biomass, solar, geothermal) net generation", + "Percent Nuclear net generation", + "Percent Hydro net generation" +] +# Initialize empty data frame +df = pd.DataFrame( + columns=cols +) +# Add subregion data +df["eGRID subregion acronym"] = sn["SUBRGN"] +df["eGRID subregion name"] = sn["SRNAME"] +df["Percent Renewable (Hydro, wind, biomass, solar, geothermal) net generation"] = sn["SRTRPR"] +df["Percent Non-renewable (coal, oil, gas, other fossil, other unknown, and Nuclear) net generation"] = sn["SRTNPR"] +df["Percent Non-renewable Excluding Nuclear (coal, oil, gas, other fossil, other unknown) net generation"] = sn["SRTNPR"] - sn["SRNCPR"] +df["Percent Non-renewable Excluding Nuclear (coal, oil, gas, other fossil, other unknown) net generation"] = df["Percent Non-renewable Excluding Nuclear (coal, oil, gas, other fossil, other unknown) net generation"].round(1) +df["Percent Renewable Excluding Hydro (wind, biomass, solar, geothermal) net generation"] = sn["SRTHPR"] +df["Percent Nuclear net generation"] = sn["SRNCPR"] +df["Percent Hydro net generation"] = sn["SRHYPR"] +# Add national data +row = ["U.S.", "National", n["USTRPR"].values[0], n["USTNPR"].values[0], (n["USTNPR"] - n["USNCPR"]).round(1).values[0], n["USTHPR"].values[0], n["USNCPR"].values[0], n["USHYPR"].values[0]] +df.loc[26] = row +# Write to .csv file +df.to_csv("./data/csv/subregion_fuel_mix.csv", index=False) \ No newline at end of file diff --git a/prep/add_states.js b/prep/add_states.js new file mode 100644 index 0000000..3925cf6 --- /dev/null +++ b/prep/add_states.js @@ -0,0 +1,16 @@ +// Add states.json to the eGRID subregions GeoJSON. +var fs = require('fs'); +var egrid_file = fs.readFileSync('data/shape/egrid_2016_subregions.json'); +var states_file = fs.readFileSync('data/shape/states.json'); +var egrid_j = JSON.parse(egrid_file); +var states_j = JSON.parse(states_file); +// Replace "Subregions" with new key: "name." +for(var i = 0; i < egrid_j.features.length; i += 1){ + egrid_j.features[i].properties["name"] = egrid_j.features[i].properties.Subregions; + delete egrid_j.features[i].properties["Subregions"]; +} +// Concat the states feature collection with the subregion feature collection. +states_j.features = states_j.features.concat(egrid_j.features); +fs.writeFile('data/shape/egrid_2016_subregions_states.json', JSON.stringify(states_j), 'utf-8', function(err){ + if(err) console.log(err) +}); \ No newline at end of file